.filtered-map--container {
    padding: 40px;
    margin-inline: auto;
    max-width: 1280px;
}

@media screen and (min-width: 1360px) {
    .filtered-map--container {
        padding-inline: 0;
    }
}

.filtered-map--header h2 {
    font-size: 40px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 40px !important;
    color: var(--violet);
    margin-bottom: 40px !important;
}

@media screen and (min-width: 992px) {
    .filtered-map--header h2 {
        font-size: 70px !important;
        line-height: 70px !important;
        margin-bottom: 80px !important;
    }
}

.filtered-map--header h2 em {
    font-family: var(--play);
    font-style: italic;
}

.filtered-map--wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (min-width: 1024px) {
    .filtered-map--wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: clamp(32px, 5.56vw, 80px);
    }
}

.filtered-map--map {
    width: 100%;
    max-width: 836px;
    height: clamp(318px, 88.33vw, 450px);
    border-radius: 4px;
    border: 1px solid var(--violet);
}

@media screen and (min-width: 992px) {
    .filtered-map--map {
        height: 548px;
    }
}

.filtered-map--filters {
    width: 100%;
    padding: 32px 20px;
    background: var(--violet);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 1024px) {
    .filtered-map--filters {
        gap: 30px;
        margin-bottom: 0;
        max-width: 368px;
    }
}

.filtered-map--filters .map-multiselect {
    width: 100%;
    position: relative;
}

.filtered-map--filters .map-multiselect--toggle::after {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 16px;
    background: url("images/chevron.svg") no-repeat center;
    background-size: contain;
    transition: transform 0.2s ease;
}

.filtered-map--filters .map-multiselect.is-open .map-multiselect--toggle::after {
    transform: rotate(0.25turn);
}

.filtered-map--filters .map-multiselect--toggle {
    cursor: pointer;
    padding: 12px 16px;
    border: 0;
    border-radius: 0;
    background: white;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: var(--violet);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
}

.map-multiselect--label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (min-width: 992px) {
    .filtered-map--filters .map-multiselect--toggle {
        padding: 16px 28px;
        font-size: 1.125rem;
    }
}

.map-multiselect--count {
    margin-left: auto;
    min-width: 24px;
    padding: 3px 7px;
    border-radius: 999px;
    color: white;
    background: var(--violet);
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

.map-multiselect--options {
    position: absolute;
    z-index: 1001;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    padding: 8px;
    background: white;
    border: 1px solid rgba(114, 33, 129, 0.2);
    box-shadow: 0 10px 24px rgba(31, 15, 35, 0.2);
}

.map-multiselect--options[hidden] {
    display: none;
}

.map-multiselect--options label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 8px;
    color: var(--violet);
    font-size: 15px;
    line-height: 1.25;
    cursor: pointer;
}

.map-multiselect--options label:hover {
    background: rgba(114, 33, 129, 0.08);
}

.map-multiselect--options label.is-selected {
    background: rgba(114, 33, 129, 0.14);
    font-weight: 700;
}

.map-multiselect--options input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    display: block !important;
    position: static !important;
    left: auto !important;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    border: 2px solid var(--violet);
    border-radius: 3px;
    background-color: white;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px;
    cursor: pointer;
}

.map-multiselect--options input[type=checkbox]:checked {
    background-color: var(--violet);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.map-multiselect--options input[type=checkbox]:focus-visible {
    outline: 2px solid var(--violet);
    outline-offset: 2px;
}

.filtered-map--filters button {
    cursor: pointer;
    text-align: center;
    border: 1px solid white;
    color: white;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding: 12px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
    .filtered-map--filters button {
        padding: 16px 28px;
    }
}

.filtered-map--filters button:hover {
    background: white;
    color: var(--violet);
}

.filtered-map--filters button {
    text-wrap: nowrap;
}

.filtered-map--filters input::-moz-placeholder {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: white;
}

.filtered-map--filters input::placeholder {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: white;
}

.filtered-map--panel {
    display: none;
}

.filtered-map--empty {
    width: 100%;
    margin: 0;
    color: white;
    font-size: 0.9375rem;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .filtered-map--panel:not([hidden]) {
        display: block;
        padding: 16px 20px;
        border: 0.5px solid var(--violet);
        border-radius: 4px;
    }
}

@media screen and (max-width: 767px) {
    .filtered-map .leaflet-popup {
        display: none;
    }
}

.filtered-map .leaflet-popup-content-wrapper {
    box-shadow: none;
    border: 0.5px solid var(--violet);
    border-radius: 4px;
}

.filtered-map .map-popup {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filtered-map .map-popup img {
    width: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 0;
}

.filtered-map .map-popup h4 {
    color: var(--violet);
    font-family: var(--play);
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
    padding-right: 48px;
}

.filtered-map .map-popup p,
.filtered-map .map-popup a {
    margin: 0;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    color: var(--violet);
}

@media screen and (min-width: 992px) {

    .filtered-map .map-popup p,
    .filtered-map .map-popup a {
        font-size: 17px;
        line-height: 22px;
    }
}

.filtered-map .map-popup .site {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;
}

.filtered-map .map-popup .site::after {
    content: "";
    width: 24px;
    height: 24px;
    background: url("../../../../libs/images/chevron.svg") no-repeat center;
    background-size: contain;
}

/*# sourceMappingURL=style.css.map */
