*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "AlmadenSans", "Helvetica Neue", Arial, sans-serif;
    background: #B4D0F8;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ===== Globe Slider — base (mobile) ===== */
.globe-slider-section {
    overflow: hidden;
}

.globe-slider-section h2 {
    margin-bottom: 45px;
}

.globe-slider {
    margin-left: 0;
    margin-right: 0;
}

.globe-slider .placeholder {
    height: 50vh;
}

.globe-slider .globe-container {
    height: 100vh;
    position: relative;
}

.globe-slider .globe-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-20%, -30%);
}

@media (max-aspect-ratio: 1/1) {
    .globe-slider .globe-wrapper {
        transform: translate(-50%, -30%);
    }
}

.globe-slider #globe-popups-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.globe-slider .overlay-img-container {
    position: absolute;
    width: 65px;
    height: 65px;
    display: flex;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
}

.globe-slider .overlay-img-container .overlay-img-wrapper {
    width: 100%;
    transition: transform 0.2s ease-in-out;
}

.globe-slider .overlay-img-container.active {
    z-index: 2;
}

.globe-slider .overlay-img-container.active .overlay-img-wrapper {
    transform: scale(1.5);
}

.globe-slider .overlay-img-container img {
    width: 100%;
    border-radius: 8px;
    transform-origin: center center;
}

.globe-slider #dummy-list {
    position: fixed;
    top: 0;
    right: 0;
    font-family: sans-serif;
}

.globe-slider .slider-btns {
    position: fixed !important;
    right: 40px !important;
    bottom: 360px !important;
    top: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    z-index: 99999 !important;
}

.globe-slider .slider-btns button {
    padding: 0;
    border: none;
    background: none;
    margin-left: 6px;
    margin-right: 6px;
    line-height: 0;
}

.globe-slider #slider-wrapper {
    position: absolute;
    left: 0;
    bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    column-gap: 16px;
    margin-left: -50vw;
}

.globe-slider .slider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    font-size: 21px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.4s ease-in-out;
    width: 48vw;
}

.globe-slider .slider-item > img {
    width: 100%;
    padding: 10px;
}

.globe-slider .slider-item:first-child {
    margin-left: 16px;
}

.globe-slider .slider-item .slider-image-wrapper {
    position: relative;
}

.globe-slider .slider-item .slider-image-wrapper > img {
    max-width: 412px;
    width: 100%;
    height: auto;
}

.globe-slider .slider-item .slider-location-name {
    position: absolute;
    bottom: 28px;
    left: 15px;
    padding: 8px;
    border-radius: 16px;
    color: #2661FF !important;
    font-family: "HappyDisplay", "AlmadenSans", "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    font-size: 13px;
    background-color: #B4D0F8;
    display: flex !important;
    align-items: center;
    column-gap: 4px;
}

.globe-slider .slider-item .slider-location-name img,
.globe-slider .slider-item .slider-location-name svg {
    width: 14px;
    height: auto;
}

.globe-slider .slider-item.active {
    opacity: 1;
}

/* ===== 481px and up ===== */
@media (min-width: 481px) {
    .globe-slider .slider-btns { /* overridden by fixed pos above */ }

    .globe-slider .slider-item .slider-location-name {
        padding: 8px 15px 8px 8px;
        font-size: 16px;
        column-gap: 6px;
    }

    .globe-slider .slider-item .slider-location-name img,
    .globe-slider .slider-item .slider-location-name svg {
        width: 16px;
    }
}

/* ===== 768px and up ===== */
@media (min-width: 768px) {
    .globe-slider .slider-btns { /* overridden by fixed pos above */ }

    .globe-slider #slider-wrapper {
        column-gap: 32px;
        margin-left: -35vw;
    }

    .globe-slider .slider-item {
        width: auto;
    }

    .globe-slider .slider-item:first-child {
        margin-left: 32px;
    }

    .globe-slider .slider-item .slider-location-name {
        bottom: 39px;
        left: 31px;
        padding: 15px 30px 15px 15px;
        border-radius: 20px;
        font-size: 20px;
        column-gap: 13px;
    }

    .globe-slider .slider-item .slider-location-name img,
    .globe-slider .slider-item .slider-location-name svg {
        width: 29px;
    }
}

/* ===== 992px and up ===== */
@media (min-width: 992px) {
    .globe-slider #slider-wrapper {
        margin-left: 32px;
    }
}

/* ===== 1240px and up ===== */
@media (min-width: 1240px) {
    .globe-slider {
        margin-left: 0;
        margin-right: 0;
    }

    .globe-slider .slider-btns { /* overridden by fixed pos above */ }

    .globe-slider .globe-container {
        min-height: 860px;
    }
}
