body.mpbooking-map-view #left-column,
body.mpbooking-map-view #content-wrapper {
    display: none !important;
}

body.mpbooking-map-view .rome-hero {
    display: none !important;
}

body.mpbooking-map-view .map-layout {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    padding-left: 10px;
    box-sizing: border-box;
}

body.mpbooking-map-view .map-sidebar {
    flex: 0 0 470px;
    max-width: 470px;
    /* background: linear-gradient(180deg, #f7f7f9 0%, #f2f2f6 100%); */
    /* border-radius: 28px; */
    padding-top: 22px;
    /* box-shadow: 0 18px 45px rgba(18, 18, 41, 0.08); */
    overflow: auto;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

body.mpbooking-map-view #wk-map-container {
    flex: 1 1 auto;
    min-height: 600px;
    min-width: 0;
    margin-bottom: -68px;
    z-index: 1;
}

@media (max-width: 991px) {
    body.mpbooking-map-view .map-layout {
        flex-direction: column;
    }

    body.mpbooking-map-view .map-sidebar {
        flex: 1 1 auto;
        max-width: none;
        width: 100%;
        min-height: 0;
    }

    body.mpbooking-map-view #wk-map-container {
        width: 100%;
        min-height: 400px;
    }
}

body.mpbooking-map-view .map-sidebar__toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

body.mpbooking-map-view .map-sidebar__header {
    margin-bottom: 14px;
}

body.mpbooking-map-view .map-sidebar__summary {
    margin: 8px 0 0;
    font-size: 1.125rem;
    line-height: 1.35;
    /* font-weight: 600; */
    color: #3a3d4c;
    word-break: break-word;
}

body.mpbooking-map-view .map-sidebar__eyebrow {
    margin: 0 0 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8d93a1;
}

body.mpbooking-map-view .map-sidebar__title {
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    color: #1f2430;
    word-break: break-word;
}

body.mpbooking-map-view .map-sidebar__sort-dropdown {
    flex: 1 1 0;
    min-width: 0;
}

body.mpbooking-map-view .map-sidebar__active-filters {
    margin-bottom: 14px;
}

body.mpbooking-map-view .map-sidebar__active-filters #mpbooking-active-filters {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #e7e8ef;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

body.mpbooking-map-view .map-sidebar__active-filters #mpbooking-active-filters .block-title {
    margin-bottom: 8px;
}

body.mpbooking-map-view .map-sidebar__active-filters #mpbooking-active-filters .active-filters-list {
    gap: 8px;
}

body.mpbooking-map-view .map-sidebar__active-filters #mpbooking-active-filters .filter-item {
    border-color: #ff1f6b;
}

body.mpbooking-map-view .map-sidebar__active-filters #mpbooking-active-filters .filter-value {
    color: #ff1f6b;
}

body.mpbooking-map-view .map-sidebar__chip,
body.mpbooking-map-view .map-sidebar__switch-btn {
    appearance: none;
    border: 1px solid #ececf2;
    background: #fff;
    color: #3a3d4c;
    border-radius: 6px;
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    font-size: 14px;
    cursor: pointer;
}

body.mpbooking-map-view .map-sidebar__chip:focus,
body.mpbooking-map-view .map-sidebar__switch-btn:focus {
    outline: none;
}

body.mpbooking-map-view .map-sidebar__chip:focus-visible,
body.mpbooking-map-view .map-sidebar__switch-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 31, 107, 0.18), 0 1px 2px rgba(16, 24, 40, 0.04);
}

body.mpbooking-map-view .map-sidebar__chip:focus:not(:focus-visible),
body.mpbooking-map-view .map-sidebar__switch-btn:focus:not(:focus-visible) {
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

body.mpbooking-map-view .map-sidebar__chip--sort {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
}

body.mpbooking-map-view .map-sidebar__chip-label {
    flex: 1 1 auto;
    font-size: 14px;
    /* font-weight: 700; */
    color: #3a3d4c;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.mpbooking-map-view .map-sidebar__sort-dropdown {
    position: relative;
}

body.mpbooking-map-view .map-sidebar__sort-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 100%;
    width: max-content;
    max-width: min(320px, 85vw);
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 20;
}

body.mpbooking-map-view .map-sidebar__sort-dropdown.is-open .map-sidebar__sort-menu {
    display: flex;
}

body.mpbooking-map-view .map-sidebar__sort-option {
    appearance: none;
    border: 0;
    background: #fff;
    /* border-radius: 12px; */
    padding: 5px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #3a3d4c;
    /* font-weight: 600; */
    cursor: pointer;
    text-align: left;
    width: 100%;
}

body.mpbooking-map-view .map-sidebar__sort-option:hover {
    background: #f6f7fb;
}

body.mpbooking-map-view .map-sidebar__sort-option.is-active {
    background: #efefef;
    color: #333;
}

body.mpbooking-map-view .map-sidebar__sort-option i {
    font-size: 18px;
    color: #ff1f6b;
}

body.mpbooking-map-view .map-sidebar__chip i,
body.mpbooking-map-view .map-sidebar__switch-btn i {
    font-size: 18px;
}

body.mpbooking-map-view .map-sidebar__switch {
    margin-left: auto;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8dbe4;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    white-space: nowrap;
}

body.mpbooking-map-view .map-sidebar__switch-btn {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    /* padding: 10px 13px; */
    background: transparent;
    color: #3a3d4c;
    cursor: pointer;
}

body.mpbooking-map-view .map-sidebar__switch-btn + .map-sidebar__switch-btn {
    border-left: 1px solid #d8dbe4;
}

body.mpbooking-map-view .map-sidebar__switch-btn.is-active {
    background: #fff;
}

body.mpbooking-map-view .map-sidebar__switch-btn:hover i {
    color: #ff1f6b;
}

body.mpbooking-map-view .map-sidebar__switch-btn i {
    color: #9aa0ad;
}

body.mpbooking-map-view .map-sidebar__results {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

body.mpbooking-map-view .map-sidebar__pagination {
    margin-top: 20px;
}

body.mpbooking-map-view .map-sidebar__pagination .pagination {
    margin: 0;
}

body.mpbooking-map-view .map-card {
    position: relative;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    background: #fff;
    /* border-radius: 18px; */
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
    overflow: hidden;
}

body.mpbooking-map-view .map-card__thumb {
    display: block;
    width: 104px;
    height: 104px;
    overflow: hidden;
    border-radius: 2px;
    background: #e7e7ec;
}

body.mpbooking-map-view .map-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.mpbooking-map-view .map-card__save {
    position: absolute;
    top: -0.365rem;
    right: -0.365rem;
    z-index: 10;
    width: 42px;
    height: 42px;
    overflow: hidden;
}

body.mpbooking-map-view .map-card__save .wishlist-button {
    display: block;
    width: 100%;
    height: 100%;
}

body.mpbooking-map-view .map-card__save .wishlist-button-add {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

body.mpbooking-map-view .map-card__save .wishlist-button-add::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #dcdcdc;
    border-bottom-left-radius: 100%;
}

body.mpbooking-map-view .map-card__save .wishlist-button-add i {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: #777;
    z-index: 3;
}

body.mpbooking-map-view .map-card__save .wishlist-button-add:hover i {
    color: #ff4d4d;
}

body.mpbooking-map-view .map-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

body.mpbooking-map-view .map-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

body.mpbooking-map-view .map-card__title {
    margin: 0 0 4px;
    font-size: 1.18rem;
    line-height: 1.08;
    font-weight: 800;
    flex: 1 1 auto;
    min-width: 0;
}

body.mpbooking-map-view .map-card__title a {
    color: #ff1f6b;
    text-decoration: none;
    display: block;
    white-space: normal;
    word-break: break-word;
}

body.mpbooking-map-view .map-card__price {
    margin-top: auto;
    align-self: flex-end;
    color: #ff1f6b;
    font-size: 1.34rem;
    font-weight: 800;
    line-height: 1;
    text-align: right;
    padding-top: 0;
}

body.mpbooking-map-view .map-card__rating-row,
body.mpbooking-map-view .map-card__meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

body.mpbooking-map-view .map-card__rating-row {
    /* margin-bottom: 8px; */
}

body.mpbooking-map-view .map-card__review-hook,
body.mpbooking-map-view .wk-map-popup__review-hook {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

body.mpbooking-map-view .map-card__review-hook .customclassic-rating-score,
body.mpbooking-map-view .wk-map-popup__review-hook .customclassic-rating-score {
    color: #ff1f6b;
    font-weight: 800;
    font-size: 0.96rem;
}

body.mpbooking-map-view .wk-map-no-rating {
    color: #8b909b;
    font-size: 0.92rem;
    font-weight: 600;
}

body.mpbooking-map-view .map-card__review-hook .customclassic-rating-reviews,
body.mpbooking-map-view .map-card__review-hook .customclassic-rating-divider,
body.mpbooking-map-view .map-card__review-hook .customclassic-rating-reviews-count,
body.mpbooking-map-view .wk-map-popup__review-hook .customclassic-rating-reviews,
body.mpbooking-map-view .wk-map-popup__review-hook .customclassic-rating-divider,
body.mpbooking-map-view .wk-map-popup__review-hook .customclassic-rating-reviews-count,
body.mpbooking-map-view .map-card__reviews,
body.mpbooking-map-view .map-card__location,
body.mpbooking-map-view .map-card__meta-item {
    color: #7b8190;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.map-card__review-hook .customclassic-rating-reviews {
    margin-left: .625rem;
}

body.mpbooking-map-view .customclassic-rating-divider,
body.mpbooking-map-view .customclassic-rating-reviews-count {
    display: none !important;
}

body.mpbooking-map-view .wk-map-popup__review-hook {
    display: block;
    margin-bottom: 10px;
}

body.mpbooking-map-view .map-card__location {
    color: #ff1f6b;
}

body.mpbooking-map-view .map-card__duration,
body.mpbooking-map-view .wk-map-popup__duration {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #7b8190;
    font-size: 0.92rem;
    margin: 0;
    justify-content: flex-start;
}

body.mpbooking-map-view .map-card__duration-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

body.mpbooking-map-view .wk-map-popup__duration-row {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    margin-left: -3px;
}

body.mpbooking-map-view .map-card__duration i,
body.mpbooking-map-view .wk-map-popup__duration i {
    font-size: 18px;
    color: #c1c5cf;
}

body.mpbooking-map-view .map-card__location i,
body.mpbooking-map-view .map-card__meta-item i,
body.mpbooking-map-view .map-card__review-hook i,
body.mpbooking-map-view .wk-map-popup__review-hook i {
    font-size: 18px;
    color: #c1c5cf;
}

body.mpbooking-map-view .map-card__policy {
    margin-top: 6px;
    color: #377c01;
    border-bottom: .0625rem dotted #377c01;
    width: fit-content;
    font-size: 0.95rem;
    font-weight: 700;
}

body.mpbooking-map-view .map-card__policy a {
    color: #239a00;
    text-decoration: none;
    border-bottom: 1px dotted rgba(35, 154, 0, 0.45);
}

body.mpbooking-map-view .map-sidebar__empty {
    padding: 18px;
    text-align: center;
    color: #717784;
}

body.mpbooking-map-filter-modal-open {
    overflow: hidden;
}

body.mpbooking-map-sort-modal-open {
    overflow: hidden;
}

body.mpbooking-map-view .map-filter-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

body.mpbooking-map-view .map-filter-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.mpbooking-map-view .map-filter-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 26, 0.42);
    backdrop-filter: blur(2px);
}

body.mpbooking-map-view .map-filter-modal__panel {
    position: relative;
    z-index: 1;
    width: min(650px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    display: flex;
    flex-direction: column;
    background: #fff;
    /* border-radius: 24px; */
    box-shadow: 0 24px 70px rgba(15, 17, 26, 0.25);
    overflow: hidden;
}

body.mpbooking-map-view .map-filter-modal__header,
body.mpbooking-map-view .map-filter-modal__footer {
    padding: 18px 22px;
}

body.mpbooking-map-view .map-filter-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #ececf2;
}

body.mpbooking-map-view .map-filter-modal__title {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 800;
    color: #1f2430;
}

body.mpbooking-map-view .map-filter-modal__close {
    appearance: none;
    border: 0;
    background: #f3f4f7;
    color: #4a5060;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body.mpbooking-map-view .map-filter-modal__close i {
    font-size: 20px;
}

body.mpbooking-map-view .map-filter-modal__body {
    flex: 1 1 auto;
    overflow: auto;
    padding: 18px 22px 12px;
    /* background: #f6f6f9; */
}

body.mpbooking-map-view .map-filter-modal__body #mpbooking-faceted-search {
    margin: 0;
    background: transparent;
    border: 0;
    padding: 0;
}

body.mpbooking-map-view .map-filter-modal__body #mpbooking-faceted-search .block-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding: 0;
}

body.mpbooking-map-view .map-filter-modal__body #mpbooking-faceted-search .filter-block {
    min-width: 0;
    padding: 0;
    flex: none;
}

body.mpbooking-map-view .map-filter-modal__body #mpbooking-faceted-search .filter-title {
    border-radius: 4px 4px 0 0;
}

body.mpbooking-map-view .map-filter-modal__footer {
    border-top: 1px solid #ececf2;
    display: flex;
    justify-content: center;
    background: #fff;
}

body.mpbooking-map-view .map-filter-modal__apply {
    appearance: none;
    border: 0;
    min-width: 230px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #ff1f6b;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(255, 31, 107, 0.22);
}

body.mpbooking-map-view .map-filter-modal__apply:hover {
    background: #f20058;
}

body.mpbooking-map-view .map-sort-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

body.mpbooking-map-view .map-sort-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.mpbooking-map-view .map-sort-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 26, 0.42);
    backdrop-filter: blur(2px);
}

body.mpbooking-map-view .map-sort-modal__panel {
    position: relative;
    z-index: 1;
    width: min(420px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(15, 17, 26, 0.25);
    overflow: hidden;
}

body.mpbooking-map-view .map-sort-modal__header {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #ececf2;
}

body.mpbooking-map-view .map-sort-modal__title {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 800;
    color: #1f2430;
}

body.mpbooking-map-view .map-sort-modal__close {
    appearance: none;
    border: 0;
    background: #f3f4f7;
    color: #4a5060;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body.mpbooking-map-view .map-sort-modal__close i {
    font-size: 20px;
}

body.mpbooking-map-view .map-sort-modal__body {
    padding: 12px;
    background: #f6f6f9;
    overflow: auto;
}

body.mpbooking-map-view .map-sort-modal__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.mpbooking-map-view .map-sort-modal__option {
    appearance: none;
    border: 1px solid #e4e7ef;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #2b2f3a;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

body.mpbooking-map-view .map-sort-modal__option.is-active {
    border-color: #ff1f6b;
    box-shadow: 0 0 0 1px rgba(255, 31, 107, 0.14);
}

body.mpbooking-map-view .map-sort-modal__option i {
    font-size: 18px;
    color: #ff1f6b;
}

@media (max-width: 560px) {
    body.mpbooking-map-view .map-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    body.mpbooking-map-view .map-card__price {
        text-align: right;
    }

    body.mpbooking-map-view .map-filter-modal__panel {
        width: 100%;
        max-height: calc(100vh - 24px);
    }

    body.mpbooking-map-view .map-sort-modal__panel {
        width: 100%;
        max-height: calc(100vh - 24px);
    }

    body.mpbooking-map-view .map-filter-modal__body #mpbooking-faceted-search .block-content {
        grid-template-columns: 1fr;
    }

    body.mpbooking-map-view .map-filter-modal__header,
    body.mpbooking-map-view .map-filter-modal__footer,
    body.mpbooking-map-view .map-filter-modal__body {
        padding-left: 16px;
        padding-right: 16px;
    }
}

body.mpbooking-map-view .wk-map-popup-container {
    z-index: 9999;
}

body.mpbooking-map-view .wk-map-popup-container .leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(18, 18, 41, 0.2);
    overflow: hidden;
}

body.mpbooking-map-view .wk-map-popup-container .leaflet-popup-content {
    margin: 0;
    width: 270px !important;
}

body.mpbooking-map-view .wk-map-popup-container .leaflet-popup-tip-container {
    display: none;
}

body.mpbooking-map-view .wk-map-popup-container .leaflet-popup-close-button {
    display: none;
}

body.mpbooking-map-view #wk-map-container .leaflet-marker-icon,
body.mpbooking-map-view #wk-map-container .leaflet-marker-shadow,
body.mpbooking-map-view #wk-map-container .leaflet-interactive,
body.mpbooking-map-view #wk-map-container .marker-cluster,
body.mpbooking-map-view #wk-map-container .marker-cluster div,
body.mpbooking-map-view #wk-map-container .wk-map-popup,
body.mpbooking-map-view #wk-map-container .wk-map-popup__image,
body.mpbooking-map-view #wk-map-container .wk-map-popup__content {
    cursor: pointer !important;
}

body.mpbooking-map-view .wk-map-marker-icon {
    background: transparent !important;
    border: 0 !important;
}

body.mpbooking-map-view .wk-map-marker-icon .wk-map-marker-sprite {
    display: block;
    width: 38px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: 76px 45px;
}

body.mpbooking-map-view .wk-map-popup {
    display: flex;
    flex-direction: column;
    background: #fff;
}

body.mpbooking-map-view .wk-map-popup__image {
    width: 100%;
    height: 156px;
    overflow: hidden;
    background: #e7e7ec;
}

body.mpbooking-map-view .wk-map-popup__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.mpbooking-map-view .wk-map-popup__content {
    position: relative;
    padding: 14px 16px 16px;
    min-height: 138px;
}

body.mpbooking-map-view .wk-map-popup__image + .wk-map-popup__content {
    border-top: 0;
}

body.mpbooking-map-view .wk-map-popup__title {
    margin: 0 0 10px;
    color: #ff1f6b;
    font-size: 1.15rem;
    line-height: 1.12;
    font-weight: 800;
}

body.mpbooking-map-view .wk-map-popup__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    color: #333;
}

body.mpbooking-map-view .wk-map-popup__rating {
    font-size: 0.98rem;
    font-weight: 800;
}

body.mpbooking-map-view .wk-map-popup__reviews {
    font-size: 0.92rem;
    color: #8a8f98;
}

body.mpbooking-map-view .wk-map-popup__lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9a9da7;
    font-size: 0.95rem;
    margin: 0 0 8px;
}

body.mpbooking-map-view .wk-map-popup__lang i {
    font-size: 18px;
    color: #c0c3cc;
}

body.mpbooking-map-view .wk-map-popup__price {
    margin-top: 14px;
    color: #ff1f6b;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1;
    text-align: right;
}

body.mpbooking-map-view .wk-map-popup__link {
    display: none;
}

.wk-map-popup__content .wk-map-popup__review-hook .customclassic-rating-score {
    color: #333 !important;
    font-size: 14px;
}