a {
    -webkit-tap-highlight-color: transparent;  /* Safari and Chrome on iOS */
    -moz-tap-highlight-color: transparent;     /* Firefox on mobile */
    -ms-touch-action: manipulation;            /* Microsoft Edge */
    touch-action: manipulation;                /* For modern browsers */
}

.krpano-loader {
    background-color: #FFFFFF;
    background-image: url('/frontend/images/loader.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100px;
}
.toolbar-button {
    display: none!important;
}

.view-in-ar {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

#playAudio {
    position: absolute;
    z-index: 3;
    left: 24px;
    top: 24px;
    margin-top: 80px;
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: rgba(0,0,0,0.3);
}
#playAudio::before,
#playAudio::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}
#playAudio::before {
    background-image: url("/frontend/images/icons/volume-off.svg");
}
#playAudio::after {
    background-image: url("/frontend/images/icons/volume-on.svg");
}
#playAudio.volume-off::before {
    opacity: 1;
}
#playAudio.volume-on::after {
    opacity: 1;
}
#playAudio span {
    position: absolute;
    top: 100%;
    margin-top: 12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    display: block;
    padding: 3px 8px;
    color: var(--color-white);
    font-weight: 300;
    font-size: 14px;
    text-align: center;
}
#playAudio.volume-off:hover span:nth-child(1) {
    opacity: 1;
}
#playAudio.volume-on:hover span:nth-child(2) {
    opacity: 1;
}


#textContainer {
    height: 7.5em; /* Approximately 5 lines of text */
    overflow: hidden;
    line-height: 1.5em; /* Adjust line-height based on font-size */
    position: relative;
    transition: height 0.3s ease;
}

#textContainer.expanded {
    height: auto;
}

#textContainerReadMoreBtn {
    display: flex;
    align-items: center;
    padding-top: 10px;
    border: none;
    cursor: pointer;
}
#textContainerReadMoreBtn span {
    margin-right: 6px;
    display: block;
}
#textContainerReadMoreBtn::after {
    width: 20px;
    height: 20px;
    content: "";
    background-image: url('/frontend/images/icons/chevron.svg');
    background-size: auto 12px;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
}
#textContainer.expanded + #textContainerReadMoreBtn::after {
    transform: rotate(-270deg);
}
#textContainerReadMoreBtn.hidden {
    display: none; /* Hide the button */
}



.navigation .btn-short.active svg path  {
    stroke: var(--color-blue);
}

/*-----------------------------------------------
    Select2 START
-----------------------------------------------*/

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--bg-gray);
    color: var(--color-blue);
}
.select2-results__option {
    padding: 10px 24px;
    font-weight: 300;
}
.select2-container--open .select2-dropdown {
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
}
.select2-container .select2-selection--single {
    border-radius: 12px!important;
}
/*-----------------------------------------------
    Select2 END
-----------------------------------------------*/

/*-----------------------------------------------
    #Floor MODAL START
-----------------------------------------------*/
.floor-modal {
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}
.floor-modal__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.floor-modal__wrapper > div {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 20px;
    max-width: 1080px;
    height: auto;
}
.floor-modal .floorplan-viewer {
    margin: 0;
}
.floor-modal .floorplan-viewer__footer {
    padding: 0;
    margin-bottom: 20px;
    justify-content: center;
}
.floor-modal .floorplan-tab {
    margin: 0!important;
}
.floor-modal .krpano-floorplan {
    height: auto;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    overflow: hidden;
    padding: 10px;
}
.floor-modal__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.floor-modal .floorplan-viewer__footer {
    background-color: #f6f6f6;
    border-radius: 50px;
    padding: 3px;
}
.floor-modal .floorplan-viewer__footer__element {
    margin: 0;
    color: var(--color-text);
    text-align: center;
    opacity: 0.5;
    min-width: auto;
    width: auto;
    cursor: pointer;
    padding: 9px 12px;
    background-color: transparent;
}
.floor-modal .floorplan-viewer__footer__element:hover {
    opacity: 1;
}
.floor-modal .is-activated--categories {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    opacity: 1;
    pointer-events: none;
}
.floor-modal__close {
    width: 30px;
    margin-bottom: 20px;
    cursor: pointer;
}
.floor-modal .ndd-marker-container {
    cursor: pointer;
}
.floor-modal .floorhotspoticon {
    width: auto;
    height: 100%;
    margin: 0 auto;
    display: block;
    transform: translateY(-50%);
}


.floor-modal .ndd-annotator-main-image {
    max-width: none!important;
}

@media(min-width: 768px) {
    .floor-modal .floorplan-viewer {
        width: 100%;
    }
    .floor-modal .krpano-floorplan {
        padding-bottom: 60%!important;
    }
    .floor-modal #floor-krpano {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .floor-modal .ndd-annotator-container,
    .floor-modal .floorplan-tab,
    .floor-modal .plan,
    .floor-modal .ndd-annotator-content {
        width: 100%!important;
        height: 100%!important;
        left: 0!important;
        top: 0!important;
    }
}

/*-----------------------------------------------
    #Floor MODAL END
-----------------------------------------------*/

/*-----------------------------------------------
    #INFO MODAL START
-----------------------------------------------*/
#info-modal {
    font-size: 15px;
    line-height: 22px;
}
#info-modal .information-modal__body {
    padding-bottom: 0;
}
#info-modal {
    padding: 0 15px;
}

#info-modal .fancybox-button.fancybox-close-small {
    background-color: transparent;
    margin-right: 20px;
    right: 0;
    border-radius: 100%;
}
#info-modal .fancybox-button.fancybox-close-small:hover {
    background-color: var(--color-bg);
}

#info-modal .fancybox-button.fancybox-close-small svg path{
    fill: var(--color-text);
}
.fancybox-slide {
    overflow-x: hidden;
}
.info-modal__contacts-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 24px;
}
/*-----------------------------------------------
    #INFO MODAL END
-----------------------------------------------*/

/*-----------------------------------------------
    #INFORMATION MODAL START
-----------------------------------------------*/
.information-modal .result-card .brand-card__name{
    line-height: 22px;
}

#information-modal .result-card {
    position: absolute;
    left: 0;
    bottom: 100%;
    padding-bottom: 10px;
}

#information-modal .result-card.--dark {
    display: none;
}

#information-modal .fancybox-button.fancybox-close-small {
    background-color: rgba(0, 0, 0, 0.5);
}

/*-----------------------------------------------
    #INFORMATION MODAL END
-----------------------------------------------*/

.information-modal {
    width: 1080px!important;
    height: 100%;
    margin-top: 180px;
    color: #292D3F;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
}
.information-modal__wrapper {
    padding-bottom: 20px
}

.information-modal__body {
    background-color: #FFFFFF;
    border-radius: 22px;
    overflow: hidden;
}

.information-modal__caption {
    padding: 48px 15px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.information-modal__caption p {
    font-size: 16px;
    line-height: 24px;
}

.information-modal__caption > p:not(:last-child) {
    margin-bottom: 10px;
}

.information-modal hr {
    height: 1px;
    background-color: var(--border-gray);
    box-shadow: none;
    border: none;
}

.information-modal__video {
    position: relative;
    padding-bottom: 58%;
}

/* navigation */
.information-modal .navigation {
    justify-content: space-around;
}

.information-modal .navigation .btn-short {
    width: auto;
    height: auto;
}

.information-modal .navigation .btn-short__wrap {
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    font-size: 12px;
    text-align: center;
}

.information-modal .navigation .btn-short__wrap img {
    margin-bottom: 5px;
}

/*location-tooltip*/
.location-tooltip {
    width: 240px;
    display: none;
}
.location-tooltip__img {
    padding-bottom: 42%;
    position: relative;
}
.location-tooltip__img img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.location-tooltip .hotspotPreview {
    border-radius: 16px;
    overflow: hidden;
    width: 240px;
    height: auto;
}
.location-tooltip .hotspotPreview::before {
    display: none;
}
.location-tooltip__caption {
    padding: 16px;
    text-align: center;
    text-transform: uppercase;
    min-height: 65px;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
}

    /* video */
.information-modal__video iframe, .information-modal__video video {
    width: 100%;
    height: 100%;
    display: block;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    position: absolute;
    left: 0;
    top: 0;
}

/*map*/
.information-modal__map {
    width: 100%;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--border-gray)
}
.information-modal__map-wrapper {
    width: 100%;
    padding-bottom: 48%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.information-modal__map-wrapper::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: #000000;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease-in-out;
    z-index: 2;
}

.information-modal__map-wrapper:hover::before {
    opacity: 0.1;
}

.information-modal__map iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    position: absolute;
    left: 0;
    top: 0;
    border: none;
}

.information-modal__address {
    margin-top: 10px;
}

.information-modal__address > div {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

.information-modal__address > div svg {
    margin-right: 5px;
}

/*contact-item*/
.contact-item {
    display: flex;
    align-items: center;
}
.contact-item__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gray);
    background-color: var(--bg-gray);
    border-radius: 100%;
    margin-right: 12px;
}
.contact-item__caption {
    display: flex;
    flex-direction: column;
}
.contact-item:hover .contact-item__icon {
    border-color: var(--color-blue);
}
.contact-item:hover .contact-item__caption span:nth-child(2) {
    color: var(--color-blue);
}

/*socials*/
.information-modal__socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.information-modal__socials > a {
    margin-right: 16px;
}

.btn-short.--facebook:hover {
    background-color: #4267B2;
    border-color: #4267B2;
}
.btn-short.--telegram:hover {
    background-color: #4267B2;
    border-color: #4267B2;
}
.btn-short.--instagram:hover {
    background: rgb(255,206,82);
    background: linear-gradient(45deg, rgba(255,206,82,1) 0%, rgba(255,119,68,1) 28%, rgba(254,105,67,1) 53%, rgba(230,71,112,1) 75%, rgba(205,58,161,1) 100%);
    border-color: rgb(255,206,82);
}
.btn-short.--whatsapp:hover {
    background-color: #0DC143;
    border-color: #0DC143;
}
.btn-short.--twitter:hover {
    background-color: #000000;
    border-color: #000000;
}
.btn-short.--youtube:hover {
    background-color: #FF0000;
    border-color: #FF0000;
}

.btn-short.--facebook:hover img,
.btn-short.--telegram:hover img,
.btn-short.--instagram:hover img,
.btn-short.--whatsapp:hover img,
.btn-short.--twitter:hover img,
.btn-short.--youtube:hover img {
    filter: brightness(0) invert(1);
}

    /*contacts*/
.information-modal__contacts {
    margin-bottom: 48px;
}
.contact-item {
    display: flex;
    align-items: center;
}
.contact-item:not(:last-child) {
    margin-bottom: 16px;
}
.contact-item > div {
    display: flex;
    flex-direction: column;
}
.contact-item > div span {
    display: block;
}
.contact-item .btn-short {
    margin-right: 12px;
}
.contact-item .label {
    margin-bottom: 0;
}


@media(max-width: 992px) {
    .information-modal {
        margin-top: 50px;
        height: auto;
    }
}

.information-modal__padding.text {
    text-align: center;
}

.information-modal .fancybox-button svg path {
    fill: white;
}

.information-modal .heading {
    height: auto;
    margin: 0;
}

.information-modal .heading .title {
    font-size: 24px;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 20px;
}

.information-modal__head {
    padding-bottom: 54%;
    position: relative;
}
/*.information-modal__head::after {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    content: "";*/
/*    background-color: #000000;*/
/*    opacity: 0.5;*/
/*}*/
.information-modal__head .logo {
    float: none;
    position: absolute;
    margin-right: 0;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -70px;
    width: 150px;
    z-index: 2;
}
.information-modal__head .logo img {
    display: block;
    width: 100%;
}
.information-modal__head .image-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.information-modal__head .image-block img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.information-modal__padding {
    padding-left: 10px;
    padding-right: 10px;
}

/*.information-modal .images {*/
/*    margin-bottom: 10px;*/
/*}*/

.information-modal .images a {
    display: block;
}

.information-modal .images img {
    display: block;
}

.information-modal .description {
    margin: 20px 0;
    font-size: 14px;
    text-transform: capitalize;
    white-space: pre-line;
    line-height: 22px;
}

@media (min-width: 992px) {
    .information-buttons {
        position: fixed;
        opacity: 0;
        height: 0;
        display: block;
        width: 60px;
        margin-left: 20px;
        text-align: center;
        flex-direction: column;
        transition: opacity .3s ease-in-out;
    }
}

.information-buttons .information-buttons__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    font-weight: 400;
}

.information-buttons .information-buttons__button span {
    background-color: #FFFFFF;
    border-radius: 100%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    transition: .2s ease-in-out;
}

.information-buttons .information-buttons__button div {
    white-space: nowrap;
}

.information-buttons .information-buttons__button a div {
    min-width: 110px;
}

.information-buttons .information-buttons__button img {
    transition: .2s ease-in-out;
}

.information-buttons .information-buttons__button span:hover {
    background-color: #296CD1;
}

.information-buttons .information-buttons__button span:hover img {
    filter: brightness(0) invert(1);
}

/*-------------------------------------------------------------------------
    share-buttons
-------------------------------------------------------------------------*/

.mainShare {
    border-color: var(--bg-gray);
    position: fixed;
    right: 24px;
    bottom: 24px;
}
.mainShare.active {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}
.mainShare.active img {
    filter: brightness(0) invert(1);
}
.mainShare .custom-share__dropdown {
    left: auto;
    right: 0;
    top: auto;
    bottom: 100%;
    padding-left: 0;
    padding-bottom: 12px;
}
@media(min-width: 992px) {
    .mainShare:hover {
        background-color: var(--color-blue);
        border-color: var(--color-blue);
    }
    .mainShare:hover img {
        filter: brightness(0) invert(1);
    }
}
@media(max-width: 992px) {
    .mainShare {
        right: 15px;
        bottom: 80px;
    }
    .language-btn .language-dropdown {
        display: none;
    }
}

.heading .custom-share {
    display: none;
    position: absolute;
    z-index: 5;
    right: 96px;
    top: 20px;
}

.heading .custom-share a {
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    display: flex;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.heading .custom-share__btn img {
    display: block;
    filter: brightness(0) invert(1);
    width: 20px;
}

.custom-share__dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    padding-left: 25px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease-in-out;
    width: max-content;
}

.hotspot-navigation .custom-share__dropdown {
    right: 0;
    padding-left: 0;
    top: auto;
    bottom: 100%;
    left: auto;
    padding-bottom: 10px;
}

.custom-share.active .custom-share__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.custom-share__dropdown a {
    display: flex;
    align-items: center;
    height: 44px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 15px;
    margin-bottom: 6px;
    padding-right: 10px;
    padding-left: 5px;
    font-weight: 300;
    transition: .3s ease-in-out;
}
.custom-share__dropdown a:hover {
    background-color: #FFFFFF;
    color: var(--color-text);
}

.custom-share__dropdown a:hover img {
    filter: grayscale(1) invert(0.9);
}
.custom-share__dropdown a svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}


/*-------------------------------------------------------------------------
    others
-------------------------------------------------------------------------*/

.wrapper-panel.sharePannel {
    z-index: 99993 !important;
}

@media(min-width: 768px) {
    .catalog-page__sidebar-wrapper {
        position: sticky;
        top: 30px;
    }
}

.gm-style .gm-style-iw-c {
    border-radius: 16px;
}
/*-------------------------------------------------------------------------
    responsive
-------------------------------------------------------------------------*/
@media(max-width: 1400px) and (min-width: 768px) {
    #information-modal {
        width: 960px!important;
    }
}


@media(max-width: 1220px) {
    .information-buttons .custom-share__dropdown a {
        padding-right: 0;
    }
    .information-buttons .custom-share__dropdown a span {
        display: none;
    }
    .information-buttons .custom-share__dropdown a img {
        margin-right: 0;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 992px) {
    .information-modal {
        min-width: auto;
        width: 90%;
    }

    .information-modal {
        padding-bottom: 0;
        margin-bottom: 125px;
    }

    .information-buttons {
        display: none;
    }

    .heading .custom-share__dropdown {
        left: auto;
        right: 100%;
        padding-left: 0;
        padding-right: 10px;
    }

    .heading .custom-share__dropdown-wrapper {
        display: flex;
        flex-direction: row-reverse;
    }

    .heading .custom-share__dropdown a {
        margin-bottom: 0;
        margin-right: 6px;
    }

    .heading .custom-share__dropdown img {
        width: 35px;
        height: 35px;
    }

    .heading .custom-share__dropdown {
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .fancybox-slide--html {
        padding: 0!important;
    }

    .language-btn .language-dropdown {
        top: 120%;
    }

    .info-modal {
        z-index: 4;
        width: 100%;
        max-width: 100% !important;
        padding-top: 0;
        background-color: rgba(0, 0, 0, 0.4);
        font-size: 14px;
    }

    .info-modal__wrapper {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 260px;
        margin-left: auto;
    }

    .info-modal__contacts-wrap {
        padding-left: 0;
    }

    .info-modal__photo,
    .info-modal__map iframe {
        border-radius: 15px;
    }

    .info-modal h2 {
        font-size: 18px;
    }

    .wrapper-panel.sharePannel {
        left: 0 !important;
        top: 0 !important;
        width: 100%;
        margin: 0;
        max-height: 100vh;
        height: 100%;
    }

    .wrapper-panel.sharePannel .sharePanel {
        width: 100%;
        height: 100%;
    }

    .sharePanel__screenshot img {
        object-fit: contain;
        background-color: #f1f1f1;
    }

    .information-modal .heading .title {
        font-size: 22px;
    }

    .information-modal__video iframe, .information-modal__video video {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .information-modal {
        height: 100vh;
        width: 100%!important;
        margin-top: 0;
        margin-bottom: 0;
        position: fixed;
        left: 0;
        top: 0;
    }
    .information-modal__wrapper {
        height: 100%;
        overflow-y: auto;
        padding: 84px 0 0 0;
        position: relative;
        border-radius: 12px 12px 0 0;
    }
    .information-modal__head {
        padding-bottom: 52%;
    }
    .information-modal__body {
        border-radius: 0;
    }

    .information-modal .fancybox-button.fancybox-close-small {
        margin-top: 55px;
    }

    #information-modal .result-card.--dark {
        display: flex;
        position: fixed;
        bottom: auto;
        top: 55px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 15px;
        z-index: 2;
        border-radius: 12px 12px 0 0;
    }

    #information-modal .result-card.--white {
        display: none;
    }

    #information-modal .fancybox-button.fancybox-close-small {
        margin-right: 15px;
        background-color: transparent;
    }
    #information-modal .fancybox-button.fancybox-close-small svg path {
        fill: var(--color-black);
    }

    #information-modal {
        padding-top: 55px;
    }
    #information-modal .information-modal__body {
        padding-bottom: 72px;
    }
    #info-modal {
        padding-top: 55px;
        padding-bottom: 65px;
    }
    #info-modal .information-modal__wrapper .information-modal__body > div:first-child {
        position: fixed;
        left: 0;
        top: 55px;
        width: 100%;
        background-color: #FFFFFF;
        margin: 0!important;
        padding: 15px 0;
        border-radius: 12px 12px 0 0;
        z-index: 2;
    }
    /*#info-modal .information-modal__body {*/
    /*    padding-bottom: 65px;*/
    /*}*/

    .view-in-ar {
        opacity: 1;
        pointer-events: auto;
        user-select: auto;
    }

    .floor-modal__wrapper {
        padding-bottom: 65px;
        padding-top: 0;
    }
    .floorplan-viewer__footer__element__name {
        min-width: 70px;
    }
    .floor-modal__wrapper > div {
        padding: 15px;
    }
    .floor-modal .floorplan-viewer__footer {
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    .floor-modal__close {
        margin-bottom: 15px;
        margin-left: 10px;
        min-width: 30px;
    }
    .floor-modal__nav > div:first-child {
        display: none;
    }

    .category-card:active,
    .category-card:hover {
        background-color: #EAEAEA;
        color: var(--color-text);
    }
    .category-card__img {
        padding-bottom: 69%;
    }
    .category-card__caption {
        padding: 12px;
    }
    .category-card {
        padding: 30px 15px 16px 15px!important;
    }

    .btn-back {
        margin-left: -5px;
    }
    .btn-back span {
        display: none;
    }

    .map-page .map-categories__link {
        color: var(--color-black);
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .map-page .map-categories {
        padding: 9px!important;
    }
    .map-page .map-categories::-webkit-scrollbar,
    .catalog-page .sidebar-links::-webkit-scrollbar {
        display: none;
    }
    .map-page .map-categories,
    .catalog-page .sidebar-links {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .map-page__close {
        top: 70px;
        right: 15px;
    }
}
