
#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;
}

@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: 476px) {
    .globe-marker {
        max-width: 90%;
    }
}