div.timeline-container {
	display: flex;
	align-items: flex-start;
	background-repeat: no-repeat;
	background-size: cover;
}

div.timeline-container div.content {
  width: 100%;
  /* background-color: #000; */
  display: flex;
}

div.timeline-container div.content div.menu {
  /* background-color: red; */
  display: flex;
  height:100%;
}

div.timeline-container div.content div.timeline {
  /* background-color: green; */
  display: flex;
  height:100%;
}

div.volume-btn {
    width: 40px;
    height: 40px;
    left: 100%;
    position: absolute;
    cursor: pointer;
    top: 100%;
    transform: translate(-200%, -200%);
	opacity: 0.65;
}

div.imgBox {
    width: 100%;
}

div.volume-btn:hover {
	opacity:0.8;
}

div.volume-btn svg.volume-off {
	width:20px;
	position:absolute;
}

div.volume-btn svg.volume-on {
	width:40px;
	position:absolute;
}

div.volume-btn.on svg.volume-on,
div.volume-btn:not(.on) svg.volume-off {
	display: block;
}

div.volume-btn.on svg.volume-off,
div.volume-btn:not(.on) svg.volume-on {
	display: none;
}

div.timeline-container div.soundmenu-popup {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
}

div.timeline-container div.soundmenu-popup div.text {
	position: absolute;
	top: 46%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
}

div.timeline-container div.soundmenu-popup div.soundmenu-btn {
	position: absolute;
	top: 54%;
	font-size: 24px;
	cursor: pointer;
	opacity: 1;
}

div.timeline-container div.soundmenu-popup div.soundmenu-btn:hover {
	opacity: 0.4;
}

div.timeline-container div.soundmenu-popup div.soundmenu-off {
    left: 50%;
    transform: translate(-120%, -50%);
}

div.timeline-container div.soundmenu-popup div.soundmenu-on {
    left: 50%;
    transform: translate(20%, -50%);
}

div.timeline-container div.textLabel {
    position: absolute;
    top:0px;
    left:0px;
    opacity: 0;
    background-color: white;
    /*border: 1px solid #000000;*/
    padding: 5px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2em;
    transform: translateX(-50%);
    box-shadow: 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
    max-width: 250px;
}

div.timeline-container div.textLabel span.title {
    color: rgba(0,0,0,0.6);
}

g {
	font-family: 'Futura BK BT',Helvetica,Arial,Lucida,sans-serif;
}

g.tick text {
	display: none;
	font-weight: 600;
	font-size: 16px;
}

svg text.soundmenu-text {
	font-family: 'Futura BK BT',Helvetica,Arial,Lucida,sans-serif;
	font-size: 20px;
	fill: #ffffff;
}

div.timeline-container div.detailsContainer {
	position: absolute;
	top:50%;
	left:50%;
	width:100%;
	height:100%;
	max-width: 100%;
	max-height: 100vh;
    transform: translate(-50%, -50%);
	display:none;
    background-color: rgba(0,0,0,0.6);
	cursor: zoom-out;
}

div.timeline-container div.detailsContainer div.detailsContent {
    top: 50%;
    left: 50%;
    background-color: white;
    padding: 10px;
    max-width: fit-content;
    position: relative;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
	opacity: 0;
}

div.timeline-container div.detailsContainer div.detailsContent div.photoContainer {
	position: relative;
	vertical-align: top;
	display: inline-block;
	min-width: 200px;
	min-height: 200px;
	max-width: 350px;
	max-height:350px;
	overflow:hidden;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

ddiv.timeline-container div.detailsContainer div.detailsContent div.photoContainer img {
	position: relative;
	width:100%;
	height:100%;
}

div.timeline-container div.detailsContainer div.detailsContent div.textContainer {
	position: relative;
	vertical-align: top;
	display: inline-block;
	min-width: 200px;
	min-height: 200px;
	max-width: 350px;
	max-height:350px;
	padding: 20px;
	overflow:hidden;
	line-height:1.5em;
	font-size: 16px;
}

div.timeline-container div.detailsContainer div.detailsContent div.textContainer h4 {
	font-size: 16px;
	line-height:1.2em;
    margin-bottom: 5px;
	color: rgba(0,0,0,0.6);
}

div.timeline-container div.detailsContainer div.detailsContent div.textContainer h2 {
    font-size: 20px;
    margin-bottom: 5px;
	line-height:1.2em;
}

g.filterGroup text,
g.filterGroup a.filter-btn text {
	font-size: 20px;
	font-weight: 100;
}

g.filterGroup a.filter-btn text {
	opacity:0.65;
}

g.filterGroup a.filter-btn.clearall:hover text,
g.filterGroup a.filter-btn:not(.disabled):hover text {
	opacity:0.8;
}

g.filterGroup a.filter-btn.disabled {
	opacity:0.2;
}

g.filterGroup a.filter-btn.selected:not(.clearall) text {
	opacity:1;
	font-weight: 600;
}

div.scroll-down {
    top: 100%;
	transform: translate(-150%, -100%) rotate(180deg);
}

div.scroll-up {
    top: 0;
    transform: translate(-150%, 0);
}

div.scroll-down,
div.scroll-up {
    width: 30px;
    height: 30px;
    position: absolute;
    cursor: pointer;
	opacity: 0.65;
}

div.scroll-down:hover,
div.scroll-up:hover {
	opacity:0.8;
}

div#curiositasMap {
    height:800px;
}

/* Optional: Makes the sample page fill the window. */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}


.cluster-circle {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 17.5px;
  -moz-border-radius: 17.5px;
  border-radius: 17.5px;
  color:#ffffff;
  font-size: 14px;
  text-align: center;
  padding-top: 8.75px;
}

.cluster-green {
    background: radial-gradient(rgba(154, 149, 89,1), rgba(154, 149, 89,.6));
}

.cluster-darkgreen {
    background: radial-gradient(rgba(77, 71, 9,1), rgba(77, 71, 9,.6));
}

div.toolbarContainer {
    display:flex;
    width: 25%;
    position: relative;
    top:-240px;
    padding:10px 20px;
}

div#yearSelector {
    width: 80%;
    height: 120px;
    position: relative;
    display: flex;
    padding:5px 0;
}

:root {
  --fc-color: rgba(77,71,9,1);
  --bg-color: #e2d01a;  
}

.range-slider {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-block: 10px;
  width: 100%;
}

.range-slider.dragging {
  cursor: ew-resize;
}

.range-slider > input {
  border: none;
  outline: none;
  background: var(--bg-color);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  min-width: 64px;
}

.range {
  width: 100%;
  display: grid;
  position: relative;
  z-index: 5;
}

.range input {
  grid-row: 2;
  grid-column: 1;
  pointer-events: none;
  appearance: none;
  background: transparent;
}

.range input::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  width: 30px;
  height: 30px;
  background: var(--fc-color);
  border-radius: 50%;
  cursor: pointer;
}

.slider {
  position: absolute;
  height: 10px;
  width: 100%;
  background: var(--bg-color);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  overflow: hidden;
  z-index: -1;
}

.progress {
  position: absolute;
  height: 100%;
  background: var(--fc-color);
  cursor: ew-resize;
}

div.showmanContainer {
  display: flex;
  flex-direction: column;
  width: 25%;
  position: relative;
  top: -250px;
  margin: 0 30px;
}

div.timeContainer {
  display: flex;
  flex-direction: column;
  width: 80%;
  position: relative;
  top: -250px;
  margin: 0 30px;
}

div.showmanContainer.inactive, div.timeContainer.inactive {
    display: none;
}

.showmanContainer #showmandropbox {
    font-size:1rem;
    padding:10px;
    margin: 10px 0;
    height: 150px;
}

button.selectButton {
  border: none;
  outline: none;
  background: var(--bg-color);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  min-width: 64px;
  max-width: 50%;
  margin:10px;
  cursor: pointer;
}

button.selectButton:hover {
    opacity:0.5;
}

button.selectButton.inactive {
  background: #cccccc;
}

div.selectContainer, div.clearConatiner {
    display:inline-block;
}

.modalBox .content,
.modalBox {
    width: 100%!important;
}

.modalBox .content .h5 {
    font-size: 1em!important;
}

.modalBox .content h3 {
    font-size: 1.2em!important;
}

 