.leaflet-control-attribution {
    display: none !important;
}

.map-page {
    position: relative;
    min-height: 100vh;
    padding-bottom: 180px;
    overflow: visible;
}

@media (max-width: 767px) {
    .map-page {
        padding-bottom: 240px;
    }
}

.map-layer {
    position: absolute;
    top: 10px;
    width: 100vw;
}

.map-wrapper {
    margin: 0;
    position: absolute;
    top: 0;
    width: 100vw;
    display: block;
    height: 100%;
    transition: opacity 0.255s ease-in-out;
}

.bg-animated {
    overflow: hidden !important;
}

.map__nav {
    grid-column: 2/3;
    grid-row: 1/2;
    position: relative;
    /*z-index: 1000;*/
    margin-top: -27px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map__nav ul,
.map__floors {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 402;
}

.map__nav li,
.map__floors li {
    position: relative;
    width: 55px;
    height: 55px;
    margin-top: -1px;
}

.map__nav ul li:first-of-type button,
.map__nav ul li:first-of-type button::before,
.map__floors ul li:first-of-type button,
.map__floors ul li:first-of-type button::before {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.map__nav ul li:last-of-type button,
.map__nav ul li:last-of-type button::before,
.map__floors ul li:last-of-type button,
.map__floors ul li:last-of-type button::before {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.map__floors--mob,
button.map__floors-show {
    display: none;
}

.map__nav button::before,
.map__floors button::before {
    content: '';
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    inset: -1px;
    position: absolute;
    border: 1px solid transparent;
    /*z-index: 2;*/
    transition: border-color var(--trans);
}

.map__nav button,
.map__floors button {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #3D4548;
    font-size: 22px;
    text-transform: uppercase;
    border: 1px solid;
    transition: background-color var(--trans), color var(--trans), border-color var(--trans);
    background-color: #ffffff;
    border-color: #DBDBDB;
}

.map__nav button:disabled {
    pointer-events: none;
    color: #ffffff;
    background-color: #DA0251;
}

.map__nav button span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #DA0251;
    display: grid;
    position: absolute;
    place-items: center;
    left: -12px;
    top: 20px;
    /*z-index: 3;*/
    transform-origin: center;
    transition: transform var(--trans);
    transform: scale(0);
    pointer-events: all;
}

.map__nav button.active span {
    transform: scale(1);
}
.header__logo {
    top: 5px!important;
}



.map__nav button:hover {
    background-color: #DA0251;
    color: #ffffff;
}

.map__nav button.active {
    background-color: #DA0251;
    color: #ffffff;
}

.map__nav button.active::before {
    border-color: var(--white);
}

.map__nav .active {
    pointer-events: none;
}

.map__inner {
    position: relative;
    grid-column: 1/2;
    grid-row: 1/2;
    width: 100%;
    height: calc(100vh - 90px);
    overflow: hidden;
    margin-top: -20px;
    background: transparent !important;
}

.map__inner svg {
    width: 100%;
}

[data-floor] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    transform-origin: center;
}

[data-floor].active {
    opacity: 1;
    pointer-events: all;
    cursor: grab;
}

[data-floor] svg {
    width: 100% !important;
    height: 100% !important;
}

@media (min-width: 1280px) {
    .map-wrapper.wrapper {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .map-wrapper.wrapper {
        max-width: 100%;
    }
    .map-wrapper {
        margin-top: 25px;
        margin-bottom: 25px;
        grid-template-columns: unset;
        gap: 0;
    }

    .map__nav {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .nav {
        position: fixed;
        width: 100vw;
        height: 135px;
        padding: 0;
    }

    .map__nav .map__zoom {
        flex-direction: row;
    }

    .map__inner {
        grid-column: unset;
        grid-row: unset;
        height: 500px;
    }

    .nav-panel button {
        font-size: 20px;
    }

    .nav-panel li {
        width: 40px;
        height: 40px;
    }

    .nav-panel li:first-of-type button,
    .nav-panel li:first-of-type button::before {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        border-top-right-radius: 0;
    }

    .nav-panel li:last-of-type button,
    .nav-panel li:last-of-type button::before {
        border-bottom-left-radius: 0;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
}

.nav {
    height: 100vh;
    /*z-index: 100;*/
    bottom: 0;
    background: #fafafa!important;
    display: flex;
    justify-content: space-between;
    width: 100vw;
    padding: 30px 70px;
}

.nav__wrapper {
    display: grid;
    grid-template-rows: repeat(3, max-content);
    gap: 10px;
    align-items: center;
    padding: 0;
    width: 370px;
    height: 100%;
}

.map-search {
    padding: 15px;
    border-radius: 10px;
    background-color: #ffffff;
    position: relative;
    z-index: 500;
    width: 290px;
}

.map-search label {
    background-color: #471f74;
    opacity: 1;
}

.nav__cats {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 401;
    border-radius: 10px;
    cursor: default;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
     max-height: calc(100vh - 20rem);
}

.nav__cats::-webkit-scrollbar {
    width: 0;
    position: absolute;
    display: none;
}

@media (min-width: 1279px) {
    .nav__cats::-webkit-scrollbar {
        width: 6px;
        display: block;
    }
}

.nav__cats::-webkit-scrollbar-track {
    background: #DA0251;
    border-radius: 6px;
}
.nav__cats::-webkit-scrollbar-thumb {
    background-color: #DA0251;
    border-radius: 6px;
}

.nav__cats button {
    color: #3D4548B2;
    font-weight: 500;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 30px;
    transition: background-color var(--trans);
}

.nav__cats button svg {
    margin-left: auto;
    flex-shrink: 0;
}

[data-accordion='element'].is-active {
    margin-bottom: 10px;
}

[data-accordion='element'] {
    width: 100%;
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 10px;
}

.nav__cats > [data-accordion='element'] > button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    height: 56px;
    padding: 5px 20px;
    color: #3D4548;
}

/* .nav__cats > [data-accordion='element'] > button::before {
    content: '';
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background-position: center;
} */

/* .cat-shop::before {
    background-image: url('./icons/shop.svg');
}

.cat-food::before {
    background-image: url('./icons/food.svg');
}

.cat-ents::before {
    background-image: url('./icons/ents.svg');
}

.cat-service::before {
    background-image: url('./icons/service.svg');
} */

.wrapper {
    max-width: 2900px!important;
}

.nav__cats > [data-accordion='element'] > [data-accordion='content'] {
    position: relative;
    top: 10px;
}

[data-accordion='content'] {
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5px;
}

[data-accordion='content'] svg {
    margin-right: 33px;
}

[data-accordion='content'] .is-active button {
    color: #3D4548;
}

.nav__cats > [data-accordion='element'] > [data-accordion='content'] {
    padding-left: 0;
}

.main-cat {
    font-size: 18px;
    font-weight: 500;
}

.sub-cat,
.middle-cat {
    font-weight: 400;
    font-size: 16px;
    padding: 8px 0;
}

.middle-cat + div .sub-cat {
    font-size: 14px;
    padding: 4px 0;
    padding-left: 35px;
    display: grid;
    grid-template-columns: 1fr 20px;
}

.sub-cat span {
    position: relative;
}

.sub-cat span::after {
    content: '';
    display: block;
    width: 80%;
    transition: transform var(--trans), opacity var(--trans);
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background-color: rgba(255, 255, 255, 0.65);
    opacity: 0;
}

.sub-cat.active {
    pointer-events: none;
}

.sub-cat.active span::after {
    transform: scaleX(1);
    opacity: 1;
}

.filter {
    position: relative;
    /*z-index: 401;*/
}

.map__inner svg .shops > g path {
    cursor: pointer;
    color: transparent;
    fill-opacity: 0;
    stroke-opacity: 0;
    transition: color var(--trans), fill-opacity var(--trans), stroke-opacity var(--trans);
}

@media (hover: hover) {
    .map__inner svg .shops > g:hover path {
        fill-opacity: 0.3;
        stroke-width: 3;
        stroke-opacity: 0.8;
    }
}

.map__inner .shops > g.active path {
    fill-opacity: 0.2;
}

svg .shops text {
    pointer-events: none;
    /*transition: opacity 0.17s ease-in-out;*/
    opacity: 0;
    font-weight: 500;
    font-family: 'Montserrat', 'Arial', sans-serif;
    fill: white;
}

@media (max-width: 767px) {
    svg .shops text {
        pointer-events: none;
        opacity: 0;
    }
}

.map__inner svg .shops .active path {
    fill-opacity: 0.2;
    stroke-width: 3;
    stroke-opacity: 0.8;
}

.map__inner .shops [data-type='54'] path {
    color: #9BA2A5;
}

.map__inner .shops [data-type='55'] path {
    color: #dc8358;
}

.map__inner .shops [data-type='57'] path {
    color: #d14d5c;
}

.map__inner .shops [data-type='56'] path {
    color: #f4d122;
}

.map__inner svg .shops .active-white path {
    stroke-opacity: 1;
    fill-opacity: 0.75;
    stroke-width: 3;
}


[data-accordion='content'] > [data-accordion='element'] svg {
    transform-origin: center;
    transition: transform var(--trans);
}

.sub-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* .nav__cats > [data-accordion='element'] > button:hover, */
.nav__cats > [data-accordion='element'].is-active > button {
    background-color: #DA0251;
    color: #ffffff;
    border-radius: 5px;
}

[data-accordion='content'] button:hover {
    text-decoration: underline;
}

path.top,
path.bottom {
    transform-origin: center;
    transition: transform var(--trans);
}

.is-active > button .bottom {
    transform: rotateX(-180deg) translateY(-4px);
}

.is-active > button .top {
    transform: translateY(-2px);
}

.is-active > .middle-cat span {
    text-decoration: underline;
}

.zoomed svg .shops text {
    opacity: 1;
}

.map-search {
    width: 100%;
    position: relative;
    /*z-index: 420;*/
    color: #222;
    border: 1px solid #3D45484D;
}

.map-search input {
    height: 50px;
    padding: 0 10px;
    /*z-index: 2;*/
    border-radius: 5px;
    color: var(--white);
    caret-color: #DA0251;
}

.map-search input:focus {
    color: #222222;
}

.map-search input::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 46px;
    font-family: var(--main-font);
}

.map-search .search__inner {
    border-radius: 5px;
}

.map-search .search__results {
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 0;
    transition: opacity var(--trans), transform var(--trans);
    transform: translateY(10px);
    pointer-events: none;
}

.map-search .search__results.active {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
    border: 1px solid #DA0251;
    border-top: 0;
    top: calc(100% - 3px);
    z-index: 100;
}

.search__results span {
    padding: 10px;
}

.map-search .search__results button {
    transition: background-color var(--trans);
    padding: 15px;
    text-align: left;
    padding-left: 25px;
    color: #DA0251;
}

.map-search .search__results button:hover {
    background-color: #f5eaff;
}

.leaflet-container svg {
    cursor: default;
}

.leaflet-popup-pane {
    pointer-events: none;
}

text {
    pointer-events: none;
}

tspan {
    pointer-events: none;
}

g.hide text {
    opacity: 0 !important;
}

.leaflet-popup-content {
    font-family: var(--main-font);
    color: #222222;
    text-align: center;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup,
.leaflet-popup-tip {
    pointer-events: none;
}

.map__nav div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nav-label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    pointer-events: none;
}

.map__nav .map__floors-show,
.map__menu-show {
    display: none;
}

.map-menu {
    display: none;
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    /*z-index: 400;*/
    transition: opacity var(--trans);
}

body.backdrop-visible {
    overflow: hidden;
}

body.backdrop-visible::before {
    opacity: 1;
}

.map-menu__inner {
    padding: 10px;
}

.map-menu .map-search {
    padding: 0;
}

.map-menu .map-search input::placeholder {
    color: #222222;
}

.map-menu .map-search input {
    background: var(--white);
    border: 1px solid #DA0251;
    color: #DA0251;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 876px) {

.leaflet-container {
    background-color: #ffffff!important;
}


.header__logo
{
    top: 0px !important;
}
    .map-menu {
        display: block;
        transform: translateY(100%);
        pointer-events: none;
        position: fixed;
        width: 100vw;
        height: calc(100vh - 30px);
        border-radius: 10px;
        background: var(--white);
        z-index: 404;
        transition: transform 0.45s ease-in-out;
        overflow: auto;
    }

    .map-menu [data-close] {
        position: relative;
        z-index: 1000;
        width: 100%;
        height: 30px;
        background: transparent;
        display: grid;
        place-items: center;
    }

    .map-search .search__results {
        top: 100%;
    }

    .map-search .search__results button {
        color: #DA0251;
        font-size: 14px;
        padding-left: 8px;
        border-bottom: 1px solid #DA0251;
    }

    .map-menu [data-close]::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background-color: #DA0251;
        border-radius: 5px;
    }

    .map-menu.active {
        transform: translateY(0);
        pointer-events: all;
    }

    .nav {
        padding: 10px;
    }

    .map__nav {
        justify-content: flex-end;
    }
    .nav-label {
        display: none;
    }

    .map-wrapper {
        margin: 0;
    }

    .nav__wrapper,
    .map-layer .zoom {
        display: none;
    }

    .loader svg {
        width: 100%;
        height: 160px;
    }

    .loader .text {
        font-size: 20px;
    }

    .map__inner {
        height: calc(100vh - var(--header-height));
    }

    button.map__floors-show,
    button.map__menu-show {
        position: fixed;
        bottom: 20px;
        left: 5px;
        z-index: 1000000;
        display: flex;
        align-items: center;
        color: #ffffff!important;
        gap: 10px;
        padding: 0 10px;
        min-width: 42px;
        height: 42px;
        border-radius: 50px;
        background: #DA0251;
        box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
        transition: box-shadow var(--trans);
    }

    button.map__menu-show {
        left: unset;
        right: 5px;
        gap: 0;
        display: grid;
        place-items: center;
    }

    button.map__floors-show:focus {
        box-shadow: inset 0px 3px 2px -1px rgba(0, 0, 0, 0.3);
    }

    button.map__floors-show::before {
        display: none;
    }

    .map__floors--desk {
        display: none !important;
    }

    .map__floors--mob {
        display: flex;
        align-items: flex-start;
        position: fixed;
        z-index: 1000000;
        left: 5px;
        bottom: 60px;
        flex-direction: column;
        margin: 0;
        opacity: 0;
        pointer-events: none;
        width: 90px;
        background: #ffffff;
        color: #333333;
        left: 5px;
        transition: transform 0.4s ease-in-out, opacity var(--trans);
        transform: translateY(0%);
        border-radius: 13px;
        align-items: center;
    }

    .map__floors--mob li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .map__floors--mob li:last-of-type {
        border-bottom: 0;
    }

    .nav-panel button {
        font-size: 16px;
        border-radius: 0 !important;
        background: transparent;
        border: 0;
    }

    .map__floors--mob.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav__cats {
        background: transparent;
        margin-top: 25px;
        max-height: 520px;
    }

    .nav__cats button {
        color: #222222;
    }

    /* .nav__cats > [data-accordion='element'] > button:hover, */


    [data-accordion='content'] .is-active button {
        color: #222222;
    }
}



/* Modal styles update */
.modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    pointer-events: none;
}

.modal.modal--map.is-active .modal__backdrop {
    opacity: 1;
    pointer-events: all;
}

.modal.modal--map {
    transition: opacity var(--trans);
}

.modal.modal--map.is-active {
    z-index: 1120;
}

.modal.modal--map.closing-animation {
    opacity: 0;
}

.modal.modal--map.closing-animation .modal__inner {
    transform: scale(1.15);
    opacity: 0;
}

.modal--map .modal__inner {
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    max-height: unset !important;
    min-height: unset !important;
    height: unset !important;
    border-radius: 20px;
    background: #ffffff;
}

.modal--map .modal__content {
    padding: 0;
    color: #3D4548;
}

.modal--map .slider {
    position: static;
    height: 280px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.modal--map .slider img {
    object-position: top;
}

.modal--map .detalization {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    position: relative;
    z-index: 3;
    align-items: flex-start;
    padding: 20px;
    display: grid;
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-title {
    position: relative;
    font-size: 32px;
    user-select: none;
    letter-spacing: 0.03em;
    margin-bottom: 5px;
    display: flex;
    gap: 25px;
    align-items: flex-end;
    color: #3D4548;
}

.modal-title::after {
    flex: 1 0 fit-content;
    min-width: 50px;
    content: attr(data-floors);
    font: inherit;
    font-size: 14px;
    color: #8C92A0;
    display: block;
    width: fit-content;
    font-weight: 400;
    align-self: center;
    line-height: 34px;
    transition: transform var(--trans-medium), opacity var(--trans-medium);
    opacity: 0;
    transform: translateX(-30px);
    transition-delay: 0.35s;
}

.modal--map.animated .modal-title::after {
    transform: translateX(0);
    opacity: 1;
}

.modal--map .cats {
    display: flex;
    gap: 0 15px;
    flex-wrap: wrap;
    font-weight: 500;
    max-width: 100%;
    font-size: 13px;
    margin-bottom: 10px;
    color: #8C92A0;
}

.modal--map .cats a {
    position: relative;
    height: 100%;
    display: block;
    width: 100%;
    padding: 4px 0;
    transition: color var(--trans);
    pointer-events: none; /*    временно*/
}

.modal--map .cats a::after,
.modal-news a::after,
.modal--map .contacts a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 5px;
    transition: background-color var(--trans), transform var(--trans), opacity var(--trans);
    opacity: 1;
}

@media (hover: hover) {
    .modal--map .cats a:hover,
    .modal-news a:hover,
    .modal--map .contacts a:hover {
        color: rgba(61, 69, 72, 0.7);
    }

    .modal--map .cats a:hover::after,
    .modal-news a:hover::after,
    .modal--map .contacts a:hover::after {
        background-color: rgba(0, 0, 0, 0.15);
        transform: translateY(2px);
        opacity: 0;
    }
}

.modal__close {
    z-index: 5;
    color: #3D4548;
}

.modal--map .content-wrapper {
    position: relative;
    max-width: 100%;
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 0.035em;
    margin-bottom: 20px;
    grid-column: 1/-1;
    grid-row: 2/3;
}

.modal--map .content-wrapper::after,
.modal--map .content-wrapper::before {
    display: none;
}

.modal--map .content {
    overflow: auto;
    max-height: 141px;
    padding-top: 7px;
    padding-bottom: 25px;
}

.modal--map .content::-webkit-scrollbar {
    width: 0;
    display: none;
}

.modal--map .schedule {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #5F666D;
}

.modal-news {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    background-color: #F8F9FB;
    color: #5F666D;
    padding: 12px 16px;
    border-top-left-radius: 12px;
    font-size: 13px;
    transform: translateY(105%);
    transition: transform var(--trans-medium);
    transition-delay: 0.35s;
}

.modal-news a {
    position: relative;
    height: 100%;
    display: block;
    width: fit-content;
    padding: 5px 0;
    transition: color var(--trans);
    text-transform: lowercase;
}

.modal-news a:hover {
    color: #111;
}

.modal-news a::after {
    background-color: rgba(0, 0, 0, 0.15);
}

.modal--map.animated .modal-news {
    transform: translateY(0);
}

.contacts-wrapper {
    padding: 0;
    border: 0;
    gap: 6px;
}

.contacts-wrapper,
.modal--map .contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #5F666D;
}

.contacts-wrapper,
.contacts {
    gap: 3px;
}

.contacts-wrapper .phone-wrapper,
.contacts-wrapper .site-wrapper,
.contacts-wrapper .schedule-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal--map .contacts a {
    position: relative;
    height: 100%;
    display: block;
    transition: color var(--trans);
    padding: 5px 0;
    color: #5F666D;
}

.contacts-wrapper .phone-wrapper::before,
.contacts-wrapper .site-wrapper::before,
.contacts-wrapper .schedule-wrapper::before {
    content: '';
    display: block;
    width: 22px;
    flex-shrink: 0;
    height: 22px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    filter: grayscale(1);
    opacity: 0.4;
}

.contacts-wrapper .phone-wrapper::before {
    background-image: url('/bitrix/templates/VEGAS/img/phone2.svg');
}

.contacts-wrapper .site-wrapper::before {
    background-image: url('/bitrix/templates/VEGAS/img/web2.svg');
}

.contacts-wrapper .schedule-wrapper::before {
    background-image: url('/bitrix/templates/VEGAS/img/clock2.svg');
}

.contacts-wrapper * {
    font-size: 14px;
}

.details-button {
    width: 30%;
    grid-column: 1/-1;
    flex-shrink: 0;
    height: 40px;
    background: #DA0251;
    border-color: #DA0251;
    color: #ffffff;
    border-radius: 40px;
    box-shadow: 0 6px 16px rgba(218, 2, 81, 0.25);
}

.details-button:hover {
    background-color: rgb(200, 13, 85);
}

@media (max-width: 767px) {
    .modal--map .modal__inner {
        height: unset;
        max-height: 95vh !important;
    }

    .modal--map .detalization {
        padding: 10px;
        grid-template-columns: unset;
        gap: 0;
    }

    .modal__close {
        top: 5px;
        right: 5px;
    }

    .modal__close svg {
        width: 28px;
        height: 28px;
    }

    .modal--map .slider {
        height: 220px;
    }

    .modal-title {
        font-size: 26px;
        gap: 15px;
    }

    .modal-title::after {
        font-size: 12px;
        align-self: flex-end;
    }

    .modal--map .cats {
        margin-bottom: 10px;
        max-width: 100%;
    }

    .modal--map .content {
        padding: 10px 0;
        max-width: 100%;
        max-height: 150px;
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .modal--map .content-wrapper {
        margin-bottom: 5px;
    }

    .details-button {
        width: 100%;
        order: 5;
    }

    .modal-news {
        position: relative;
        padding: 0;
        transform: none;
        border-radius: 0;
        order: 4;
        width: 100%;
        margin-top: 10px;
        color: #5F666D;
        background: transparent;
    }

    .modal-news a {
        font-size: 14px;
        text-decoration: underline;
    }

    .modal-news a::after {
        display: none;
    }

    .modal--map .modal__inner {
        overflow: auto;
    }

    .detalization .right-col {
        margin-bottom: 20px;
    }
}

.touches g > g {
    opacity: 0;
}


.nw-popup-page
{
    top: 70px;
    z-index: 1017000000!important;
}

@media (max-width: 767px) {

    header
   {
    position: fixed !important;
   }

    .header__logo {
        top: -14px !important;
    }

    
    .nw-popup-page
    {
    top: 65px!important;
    }



  
}


.header__search:hover, .slider--lg .slider__button-lg:hover
{
    background-color: transparent!important;
}

/* Parking Info */
.parking-info {
    display: none;
}

@media (min-width: 768px) {
    .parking-info {
        display: block;
        /* position: absolute;
        bottom: 20px;
        left: 20px; */
        background-color: #ffffff;
        border-radius: 8px;
        padding: 20px;
        max-width: 400px;
        z-index: 1000;
        gap: 15px;
    }

    .parking-info__icon {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background-color: #404647;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .parking-info__icon span {
        color: #DEE0E2;
        font-size: 32px;
        font-weight: bold;
        line-height: 1;
    }

    .parking-info__content {
        flex: 1;
    }

    .parking-infop__flex {
        display: flex;
        justify-content: left;
        gap: 15px;
        margin-bottom: 30px;
        align-items: center;
    }

    .parking-info__title {
        font-size: 50px;
        color: #404647;
        font-family: 'Oswald', sans-serif;
    }

    .parking-info__details {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .parking-info__label {
        margin: 0;
        font-size: 14px;
        color: #404647;
    }

    .parking-info__text {
        margin: 0;
        font-size: 14px;
        color: #404647;
        line-height: 1.4;
    }

    .parking-info__text a {
        color: #404647;
        text-decoration: none;
    }

    .parking-info__text a:hover {
        text-decoration: underline;
    }
}
