/* @group Example
------------------------------------ */

.box-map {
    position: relative;
}

.box-map .map {
    border-radius: 1rem;
    overflow: hidden;
}

.box-map header {
    text-wrap: balance;
}

:is(.box-map, #important) .bubble {
    height: fit-content !important;
    color: var(--gray);
    background: var(--blue) !important;
    width: 32rem !important;
    padding: 5rem 6.7rem 5rem 3.7rem !important;
}

:is(.box-map, #important) .bubble .bp-button {
    --_color: var(--secondary-alt-rust);
}

:is(.box-map, #important) .bubble .bp-button :is(.bp-text, .bp-icon) {
    pointer-events: none;
}

:is(.box-map, #important) .bubble #name {
    --fs: 2.5rem;
    --lh: 1.45em;
    padding-bottom: 2.5rem;
}

:is(.box-map, #important) .bubble #content {
    padding-bottom: 2.5rem;
    --fw: 600;
    --fs: 2rem;
}

:is(.box-map, #important) .bubble_close {
    --s: 2.7rem;
    --x: 2rem;
    --y: 2rem;

    top: var(--y) !important;
    right: var(--x) !important;
    width: var(--s) !important;
    height: var(--s) !important;
}

:is(.box-map, #important) .arrow div:last-of-type {
    border-color: var(--blue) transparent transparent !important;
}

:is(.box-map, #important) .bubble_close::after {
    content: "\e906";
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--s);
    color: var(--secondary-alt-rust);
}

:is(.box-map, #important) .cluster span {
    font-family: var(--montserratFont);
    font-weight: 500;
    font-size: 3rem;
    color: var(--gray);
}

@media only screen 
and (min-width : 961px) {
    .box-map .map {
        height: 72.8rem;
    }
    :is(.box-map, #important) .bubble {
        width: 54.3rem !important;
        padding: 5rem 12.5rem 5rem 4.7rem!important;
    }
    :is(.box-map, #important) .bubble_close {
        --x: 4.7rem;
        --y: 5rem;
    }
    :is(.box-map, #important) .bubble #name {
        --fs: 3rem;
    }
    :is(.box-map, #important) .bubble #content {
        --fs: 2.3rem;
        --lh: 1.2em;
    }
}

@media only screen 
and (max-width : 960px) {
    .box-map .map {
        height: 45rem;
    }
}


/* @end */


/* Animations
------------------------------------ */
:where(#wrapper) .box-map {
    opacity: 0;
    --duration: 1s;
}
:where(#wrapper) .box-map.animateActive {
    animation: fade var(--duration) forwards;
    animation-delay: var(--delay, 0);
    --delay: 0.3s;
}