body { margin: 0; padding: 0; font-family: "Roboto", sans-serif; user-select: none; overflow: hidden; background-color: #000; }
#map { position: absolute; top: 0; bottom: -30px; width: 100%; }
/* #map { height: 103vh; width: 100%; } */
.overlay{ position: absolute; top: 0; bottom: 0; width: 100%; pointer-events: none; z-index: 1; opacity: 0.5; background-image: url('gradient_overlay.png'); background-size: 100% 100%;}
.overlay2{ position: absolute; top: 0; bottom: 0; width: 100%; pointer-events: none; z-index: 1; background: radial-gradient(ellipse at center,  rgba(23, 20, 43, 0) 0%, rgba(23, 5, 45, 0) 30%, rgba(23, 10, 35, 0) 40%, rgba(0, 0, 0, 0.5) 70%, rgb(0, 0, 0) 100%);}

.custom-marker{
	width: 12px;
	height: 12px;
	border-radius: 500px;
	background-color: #ffffff;
	box-shadow: 0px 0px 1px 1px #ffffff1a;
	animation: pulse-animation 2s infinite;
}
.custom-marker-small{
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #ffffff;
	box-shadow: 0px 0px 1px 1px #ffffff1a;
	/* animation: pulse-animation 2s infinite; */
}
.custom-popup{
    max-width: 230px !important;
}
.modal.fade .modal-dialog { 
    transform: scale(0.9); 
}
.modal.fade.show .modal-dialog { 
    transform: scale(1); 
}
.markerContainer{
    font-size: 13px;
    text-shadow: 0px 0px 4px #000, 0px 0px 10px #000;
}
.markerContainer2{
    font-size: 15px;
    text-shadow: 0px 0px 4px #000, 0px 0px 10px #000;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}
.mapboxgl-popup-close-button{
	display: none;
}
.mapboxgl-popup{
	z-index: 10;
}
.mapboxgl-popup-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px -10px rgb(0 0 0);
    padding: 8px 15px;
    box-sizing: border-box;
    pointer-events: auto;
    position: relative;
    width: 100%;
    animation: popupEntrance 0.5s ease-out;
}
.mapboxgl-popup-tip{
    animation: popupEntrance 1s ease-out;
}
.mapboxgl-popup-content h2 {
    font-size:15px;
    margin:10px 0 7px;
}
@keyframes popupEntrance {
    from { opacity: 0; transform: scale3d(0.8, 0.8, 0.8); }
    to { opacity: 1; transform: scale3d(1, 1, 1); }
}
.timeline, .timeline_3{
	margin:0vh 10px 0vh 10px;
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	/* width:150px; */
	height: 100vh;
	z-index: 2;
	border-left: 1px solid #fff;
    -webkit-transform:translateX(-400%);
    transform:translateX(-400%);
    -webkit-transition: transform 0.5s;
    transition: transform 0.5s;
}
.timeline.active,  .timeline_3.active{
    -webkit-transform:translateX(0%);
    transform:translateX(0%);
}
.timeline .swiper, .timeline_3 .swiper2{
	height: 100vh;
}
.timeline .swiper-slide, .timeline_3 .swiper-slide{
	display: flex;
	align-items: center;
}
.timeline .timeline_item:before, .timeline_3 .timeline_item:before{
	display: flex;
	content:'';
	width: 30px;
	height: 1px;
	background-color: #fff;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
}
.timeline .timeline_item.active:before, .timeline_3 .timeline_item.active:before{
	display: flex;
	content:'';
	width: 50px;
	height: 1px;
	background-color: #fff;
}
.timeline .timeline_item, .timeline_3 .timeline_item{
	font-size: 16px;
	cursor: pointer;
	padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 225px;
}
.timeline .timeline_item span, .timeline_3 .timeline_item span{
	font-size: 13px;
	/* font-weight: 300; */
	display: inline-block;
	margin-left:4px
}
.timeline .timeline_item > div, .timeline_3 .timeline_item > div {
    padding:3px 7px;
    border-radius: 3px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #ffffff00;
    color:#fff;
    font-weight: 300;
}
.timeline .timeline_item.active > div, .timeline_3 .timeline_item.active > div {
    background-color: #ffffff;
    color:#000;
    font-weight: 900 !important;
}
.level{
    background-color: #fff;
    color:#000;
    padding:10px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    opacity:0.35;
    cursor: pointer;
    min-width: 250px;
    text-align: center;
    z-index: 1000;
}
.level.active{
    opacity:1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}

.btn_scale{
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}
.btn_scale:active{
    -webkit-transform: scale3d(0.9,0.9,0.9);
    transform: scale3d(0.9,0.9,0.9);
}
.btn_scale_mini{
    padding:8px 16px;
    font-size: 14px;
    min-width: 150px
}

.lang{
    width:46px;
    height:46px;
    border-radius: 100px;
    border:3px solid transparent;
    cursor: pointer;
}
.lang.active{
    border:3px solid #fff
}

.bottomPanel{
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background-color: rgba(9, 9, 15, 0.5);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
}
.leftPanel{
    position: absolute;
    z-index: 2;
    top:0;
    left:0;
    /* padding: 15px; */
    padding-left: 25px;
    padding-right: 25px;
    width: 450px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    /* padding-top: 55px; */
    margin-top: 55px;
    padding-top: 16px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    /* height: 100vh; */
    background-color: rgba(9, 9, 15, 0.5);
    /* -webkit-transform:translateY(0%) scale3d(0.8, 0.8, 0.8);
    transform:translateY(0%) scale3d(0.8, 0.8, 0.8); */
    -webkit-transform:translateY(0%) scale3d(0.96, 0.96, 0.96);
    transform:translateY(0%) scale3d(0.96, 0.96, 0.96);
    /* will-change: transform; */
    -webkit-transition: transform 0.25s ease-out 0s, opacity 0.25s ease-out 0s;
    transition: transform 0.25s ease-out 0s, opacity 0.25s ease-out 0s;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    opacity:0
}
.leftPanel p{
    margin-bottom: 0;
}
.leftPanel.active{
    -webkit-transition: transform 0.25s ease-out 0s, opacity 0.25s ease-out 0s;
    transition: transform 0.25s ease-out 0s, opacity 0.25s ease-out 0s;
    /* -webkit-transform:translateY(0%) scale3d(1, 1, 1);
    transform:translateY(0%) scale3d(1, 1, 1); */
    -webkit-transform:translateY(0%) scale3d(1, 1, 1);
    transform:translateY(0%) scale3d(1, 1, 1);
    opacity:1
}
.mapAndOverlay{
    width: 100%;
    height:100%
}

#content{
    overflow: auto;
    height:100%;
    color:#fff;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 10px;
}
#content img{
    margin-bottom: 10px;
    border-radius: 15px;
    width: 100%;
    display:none;
}
#content video{
    margin-bottom: 10px;
    border-radius: 15px;
    width: 100%;
}
#content h2{
    font-size: 18px;
    margin-top: 10px;
    font-weight: 700;
}
#content p{
    font-size: 15px;
    font-weight: 400;
}

/* width */
#content::-webkit-scrollbar {
    width: 4px;
    border-radius: 10px;
}
  /* Track */
#content::-webkit-scrollbar-track {
    background: #f1f1f100;
    border-radius: 10px;
}
  /* Handle */
#content::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}
  /* Handle on hover */
#content::-webkit-scrollbar-thumb:hover {
    background: #888;
    border-radius: 10px;
}

#content p.bodyText{
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 24px;
}


body.level3TimelineItemActive .level3Place{
    opacity:0.5 !important
}



.modal-content{
    border-radius: 25px;
    border:0px;
    /* backdrop-filter: blur(3px);
    background-color: rgba(255,255,255,0.5); */
}
.modal-header{
    border-bottom: 0px;
    padding-left: 25px;
    padding-right: 25px;
}
.modal-title{
    font-weight: 700;
}
.modal-body{
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 0px;
}
.modal-body p{
    line-height: 30px;
}
.modal.fade .modal-dialog{
    transform: scale(0.9)
}
.modal.fade.show .modal-dialog{
    transform: scale(1)
}

p.floatImageLeft .floatImageLeft_1{
    float:left;
    padding-right: 20px;
    /* user-select: none;
    pointer-events: none; */
}
p.floatImageLeft .floatImageRight_2{
    float:right;
    padding-left: 20px;
    /* user-select: none;
    pointer-events: none; */
}
p.floatImageLeft .floatImageLeft_3{
    float:left;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    /* user-select: none;
    pointer-events: none; */
}

.lightbox-info {
    padding:10px;
    background: #000000;
    border-radius: 8px;
    font-family: "Roboto", sans-serif !important; 
    bottom: -65px !important; 
    margin: 0 auto !important; 
    font-size:14px !important;
    transform: translateX(-50%) !important; 
    left: 50% !important; 
    right: 50% !important; 
    min-width: 600px !important; 
}


.global_level3[data-level3year="nikli"] .level3Place#level3Id16 {
    display:flex !important
}
.global_level3[data-level3year="mouxli"] .level3Place#level3Id16 {
    display:none !important
}
.global_level3[data-level3year="mouxli"] .level3Place#level3Id15 {
    display:flex !important
}
.global_level3[data-level3year="nikli"] .level3Place#level3Id15 {
    display:none !important
}
.global_level3[data-level3HideLocation='show'] .level3Place#level3Id1 {
    display:flex !important
}
.global_level3[data-level3HideLocation='hide'] .level3Place#level3Id1 {
    display:none !important
}















#scrollIndicator{
    position: absolute; 
    z-index: 10; 
    bottom:45%; 
    left:90px; 
    display: block;
    opacity:0.4;
    pointer-events: none;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
}
#scrollIndicator.disabled{
    opacity:0;
}
.psc-bounce {
    animation: bounce 4s ease-in-out infinite;
    transform-origin: center bottom;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-100px);
    }
}