/* @group Map Box
------------------------------------ */

/* Map Wrapper 
---------------------- */
.box-map .map-wrapper .map {
    height: 73rem;
}
.box-map .map-wrapper :is(.bubble, #important) {
    background-color: var(--dark-purple)!important;
    color: var(--white)!important;
    border: unset!important;
    width: 26rem!important;
    height: auto!important;
    padding: 1.1rem 3rem!important;
    border-radius: 0!important;
}
.box-map .map-wrapper :is(.bubble, #important) :is(p) {
    font-family: var(--ff);
    --ff: var(--font-berthold-ex);
    --fw: 400;
    --fs: 1.6rem;
    --lh: 1.4em;
    --ls: 0;
    margin: 0 0 .3rem;
}
.box-map .map-wrapper :is(.bubble, #important) :is(.name) {
    text-transform: uppercase;
    --ls: 0.02875em;
}
.box-map .map-wrapper :is(.bubble, #important) :is(p) a {
    font: inherit;
}
.box-map .map-wrapper :is(.arrow, #important) > div {
    border-color: var(--dark-purple) transparent transparent!important;
}
.box-map .map-wrapper :is(.bubble_close, #important) {
    top: 1rem!important;
    right: 1.5rem!important;
}
.box-map .map-wrapper :is(.bubble_close, #important)::before {
    content: "\e908";
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--white);
    font-size: 1.7rem;
}
.box-map .map-wrapper .gm-style div:is([role="button"]):last-of-type {
    z-index: 3000!important;
}
.box-map .gm-style .gm-style-iw-tc::after {
    background: var(--dark-purple)!important;
}
.box-map .gm-style :is(.gm-style-iw-d, .gm-style-iw-c, #important) {
    padding: 0;
    overflow: hidden!important;
}
.box-map .gm-style :is(.gm-style-iw-c, #important) {
    border-radius: 0;
    box-shadow: unset;
    -webkit-box-shadow: unset;
}
.box-map .gm-style :is(.gm-style-iw-ch, #important) {
    display: none;
}
.box-map .gm-style :is(.gm-style-iw-chr, #important) {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
.box-map .gm-style :is(.gm-style-iw-chr, #important) .gm-ui-hover-effect > span {
    background-color: var(--white);
    opacity: 1;
}
.box-map .gm-style :is(.gm-style-iw-chr, #important) > .gm-ui-hover-effect, 
.box-map .gm-style :is(.gm-style-iw-chr, #important) > .gm-ui-hover-effect span {
    width: 2.5rem!important;
    height: 2.5rem!important;
    margin: 0!important;
    opacity: 1;
}

/* Filters Wrapper 
---------------------- */
.box-map .filters-wrapper :is(.dropdown, #important) {
    padding: 0;
    margin: 0;
}
.box-map .filters-wrapper .dropdown .has-filters-font-size {
    font-family: var(--ff);
    --ff: var(--font-berthold-ex);
    --fw: 400;
    text-transform: uppercase;
    position: relative;
}

@media only screen
and (min-width : 961px) {
    /* Map Wrapper 
    ---------------------- */
    .box-map .map-wrapper .map {
        height: 71rem;
    }
    .box-map .map-wrapper :is(.bubble, #important) :is(a):hover {
        opacity: .7;
    }
    /* Filters Wrapper 
    ---------------------- */
    .box-map .filters-wrapper .dropdown ul {
        display: flex;
        gap: 3.7rem;
        margin: 0 0 3.2rem;
        color: var(--darkest-purple);
    }
    .box-map .filters-wrapper .dropdown ul li {
        cursor: pointer;
    }
    .box-map .filters-wrapper .dropdown ul li::before {
        content: '';
        width: 0;
        height: 0.5px;
        background-color: var(--darkest-purple);
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 0);
        transition: all .3s;
    }
    .box-map .filters-wrapper .dropdown ul li:is(.active, :hover)::before {
        width: 100%;
    }
    /* Map Wrapper 
    ---------------------- */
    .box-map .map-wrapper :is(.bubble, #important) {
        width: 35rem!important;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .box-map .filters-wrapper .dropdown {
        position: relative;
    }
    .box-map .filters-wrapper .dropdown header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 2.3rem;
        border: 1px solid var(--darkest-purple);
        background: var(--white);
    }
    .box-map .filters-wrapper .dropdown header i {
        font-size: 1.45rem;
        transform: all .5s;
    }
    .box-map .filters-wrapper .dropdown:is(.active) header i {
        scale: -1;
    }
    .box-map .filters-wrapper .dropdown ul {
        color: var(--light-purple);
        background: var(--white);
        border: 1px solid var(--darkest-purple);
        border-top-color: var(--white);
        position: absolute;
        z-index: var(--z-index-lowest);
        top: calc(100% - 1px);
        left: 0;
        right: 0;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transition: all .5s;
    }
    .box-map .filters-wrapper .dropdown:is(.active) ul {
        pointer-events: all;
        opacity: 1;
        max-height: 99999vh;
    }
    .box-map .filters-wrapper .dropdown ul li {
        padding-inline: 8rem 2.5rem;
    }
    .box-map .filters-wrapper .dropdown ul li:not(:last-of-type) {
        margin: 0 0 1rem;
    }
    .box-map .filters-wrapper .dropdown ul li:is(:last-of-type) {
        margin: 0 0 2rem;
    }
    .box-map .filters-wrapper .dropdown ul li:is(.active) {
        color: var(--dark-purple);
    }
    .box-map .map-wrapper {
        padding-inline: 0!important;
    }
    
}

/* @end */
