
#globe-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    touch-action: pan-y;
}

#globeViz {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; 
  left: 0;
}

.globe-marker {
    display: none;
    position: absolute;
    pointer-events: auto;
    z-index: 100;
    width: 100%;
    max-width: 394px;
    transition: opacity 0.3s;
}
.globe-marker.show-marker {
    display: block;
}
.marker-content {
    position: relative;
    color: white;
}

.marker-box {
    background-color: #FF5100;
    border-radius: 20px;
    color: white;
}

.marker-head {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.48px;
    padding: 22px;
    display: flex;
    gap: 24px;
}

.marker-title {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
    background: #555759;
    padding: 19px 22px;
}
.marker-desc {
    margin-bottom: 22px;
}
.marker-main {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    letter-spacing: -0.48px;
    padding: 22px;
  
}

.marker-readmore {
    color: white;
    text-decoration: none;
    margin-top: 15px;
    margin-top: auto;
}

.globe-dot {
    width: 12px;
    height: 12px;
    background: #FF5100;
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 5;
}
.globe-control {
    position: relative;
}
.zoom-slider-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.zoom-slider-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: #333;
}
.row-zoom {
    display: flex;
}

.zoom-slider {
    width: 150px;
    cursor: pointer;
    vertical-align: middle;
    /* background: linear-gradient(to right, #82CFD0 0%, #82CFD0 40%, #fff 40%, #fff 100%);
  border: solid 2px #82CFD0;
  -webkit-appearance: none; */
}
/* .zoom-slider::-webkit-slider-thumb {
    background: #ff5100;
} */
#zoom-value {
    margin-left: 10px;
    font-size: 12px;
    color: #666;
    display: inline-block;
    min-width: 25px;
}

@media(max-width: 1800px) {
    .marker-head {
        font-size: 16px;
        line-height: 1.222;
        padding: 20px;
        gap: 20px;
    }
    .marker-main {
        font-size: 16px;
        line-height: 1.222;
        padding: 20px;
    }
    .marker-title {
        padding: 16px 20px;
    }
}

@media(max-width: 1340px) {
    .globe-marker {
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%!important;
        top: 50%!important;
    }

    #popup-line line {
        display: none!important;
        opacity: 0;
    }
}


@media(max-width: 992px) {
    .marker-head {
        padding: 16px;
        gap: 12px;
    }
    .marker-main {
        padding: 16px;
    }
    .marker-title {
        padding: 16px;
    }
}
@media(max-width: 768px) {
    .globe-control {
        display: none;
    }
}
@media(max-width: 476px) {
    .globe-marker {
        max-width: 90%;
    }
}