.booking-detail {
    color: var(--text-primary);
    padding-top: 40px;
}
.booking-detail__header {
    display: grid;
    grid-gap: 24px;
    grid-template-areas:
    'headline controls'
    'meta controls';
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
.booking-detail__headline {
    margin: 0 0 40px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #02291B;
}
h1.booking-detail__headline {
    margin: 0;
    grid-area: headline;
}
.booking-detail__controls {
    grid-area: controls;
}
.booking-detail__price {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: right;
}
.booking-button {
    outline: 0;
    cursor: pointer;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    border: 1px solid var(--accent-green);
    background: var(--accent-green);
    user-select: none;
}
.booking-button * {
    pointer-events: none;
}
.booking-button:hover {
    background: var(--accent-green-2);
    border-color: var(--accent-green-2);
}
.booking-button:active {
    background: var(--accent-green);
    border-color: var(--accent-green);
}
.booking-button.lg {
    width: 100%;
    padding: 20px;
}
.booking-button.md {
    padding: 15px 30px;
}
.booking-detail__header .booking-meta {
    grid-area: meta;
}
@media (max-width: 767px){
    .booking-detail__header {
        /*grid-template-areas:
        'headline'
        'meta'
        'controls';*/
        grid-template-areas:
        'headline'
        'meta';
    }
    .booking-detail__controls {
        display: flex;
        align-items: center;
    }
    .booking-detail__controls_alt {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #D8D8D8;
    }
    .booking-detail__price {
        margin-bottom: 0;
        margin-right: auto;
        font-size: 22px;
    }
    .booking-detail__controls_alt .booking-detail__price {
        margin-right: 0;
        margin-bottom: 12px;
        color: var(--text-primary);
    }
    .booking-button.lg {
        padding-left: 0;
        padding-right: 0;
    }
    .booking-detail__headline {
        font-size: 28px;
        margin-bottom: 28px;
    }
}

.booking-detail__body {
    display: grid;
    grid-template-areas:
    'gallery map'
    'info1 info2';
    grid-row-gap: 40px;
    grid-column-gap: 15px;
    grid-template-columns: 1fr 420px;
    margin-bottom: 40px;
}
.booking-detail__body .gallery {
    grid-area: gallery;
}
.booking-detail__body .booking-map {
    grid-area: map;
    height: 100%;
}
.booking-detail__body .gallery + .booking-detail__info {
    grid-area: info1;
}
.booking-detail__body .booking-map + .booking-detail__info {
    grid-area: info2;
}
.booking-detail__wrapper {
    display: grid;
    grid-template-columns: calc(100% - 420px) 420px;
    grid-gap: 40px;
}
.booking-detail__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 20px;
    color: var(--text-primary);
}
.booking-detail__side {
    position: relative;
}
.booking-detail__section {
    padding-top: 40px;
    border-top: 1px solid #D8D8D8;
}
.booking-detail__section:not(:last-child) {
    margin-bottom: 40px;
}
.booking-detail__section > *:last-child {
    margin-bottom: 0;
}
.booking-detail__section > *:first-child {
    margin-top: 0;
}
.booking-detail__text {
    position: relative;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}
.booking-detail__text p {
    margin: 15px 0;
}
.booking-detail__text ul,
.booking-detail__text ol {
    margin: 15px 0;
}
.booking-detail__text li {
    list-style-type: disc;
    list-style-position: inside;
}
.booking-detail__text li:not(:last-child) {
    margin-bottom: 5px;
}
.booking-detail__text > *:first-child {
    margin-top: 0;
}
.booking-detail__text > *:last-child {
    margin-bottom: 0;
}
.review-item__text p:empty {
    display: none;
}
.booking-detail__text.is-short {
    position: relative;
    overflow: hidden;
    max-height: 150px;
    padding-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.review-item__text.is-short {
    position: relative;
    overflow: hidden;
    max-height: 150px;
    padding-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.booking-more {
    outline: 0;
    padding: 0;
    border: 0;
    user-select: none;
    cursor: pointer;
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    text-align: left;
    z-index: 1;
    color: var(--accent-green);
    background-color: #FFF;
    text-decoration: underline;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}
.booking-more:hover {
    text-decoration: none;
}
.booking-detail__text.is-short .booking-more {
    bottom: -1px;
}
.review-item__text .booking-more {
    position: relative;
    background-color: #F9F9F9;
    bottom: 0;
}
.review-item__text.is-short .booking-more {
    position: absolute;
    bottom: -1px;
}
.review-item__prev-btn,
.review-item__next-btn {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto 0;
    outline: 0;
    user-select: none;
    cursor: pointer;
    border: 0;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    padding: 0;
    color: var(--accent-green);
}
.review-item__prev-btn {
    left: 10px;
}
.review-item__next-btn {
    right: 10px;
}
.review-item__prev-btn:hover,
.review-item__next-btn:hover {
    color: var(--accent-green-2);
}
.review-item__prev-btn.swiper-button-hidden,
.review-item__next-btn.swiper-button-hidden,
.review-item__prev-btn.swiper-button-disabled,
.review-item__next-btn.swiper-button-disabled {
    display: none;
}
@media (max-width: 1024px) {
    .booking-detail__wrapper {
        /*display: flex;
        flex-direction: column;
        grid-gap: initial;
        grid-template-columns: initial;
        gap: 40px;*/
        display: block;
    }
    .booking-detail__body {
        /*display: block;*/
        display: flex;
        flex-direction: column;
        grid-row-gap: 0;
        grid-column-gap: 0;
    }
    .booking-detail__side {
        display: none;
    }
    .booking-detail__body .gallery {
        grid-area: initial;
        width: 100%;
        overflow: hidden;
        border-radius: 8px;

        order: 1;
    }
    .booking-detail__body .mob-only {
        order: 2;
    }

    .booking-detail__body .gallery .swiper-slide {
        height: auto;
    }
    .booking-detail__body .booking-detail__info {
        order: 3;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #D8D8D8;
    }

    .booking-detail__body .booking-map {
        grid-area: initial;
        order: 4;

        margin: 0;
    }
    .booking-detail__body .gallery + .booking-detail__info {
        grid-area: initial;
    }
    .booking-detail__body .booking-map + .booking-detail__info {
        grid-area: initial;

        border-bottom: 0;
        margin-bottom: 30px;
        padding-bottom: 0;
    }
    .review-item__prev-btn,
    .review-item__next-btn {
        display: none;
    }
    /*.booking-detail__body {
        grid-template-areas:
        'gallery'
        'info1'
        'map'
        'info2';
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }*/
}

/*booking meta*/
.booking-meta {
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    column-gap: 50px;
}
.booking-meta__item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.booking-meta__rating {
    width: max-content;
    padding: 4px 8px;
    background-color: var(--accent-green-2);
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
    border-radius: 4px;
}
.booking-meta__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-green-2);
    width: fit-content;
    height: 20px;
    flex-shrink: 0;
}
.booking-meta__icon svg {
    width: 100%;
    height: 100%;
}
.booking-meta__text {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}
a.booking-meta__text,
button.booking-meta__text {
    outline: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}
a.booking-meta__text:hover,
button.booking-meta__text:hover {
    text-decoration: none;
}
@media (max-width: 767px) {
    .booking-meta {
        row-gap: 15px;
        column-gap: 15px;
    }

    .booking-meta_alt {
        margin-bottom: 30px;
    }
    .booking-meta_alt .booking-meta__item {
        flex: 1 1 calc(50% - 10px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .booking-meta_alt .booking-meta__item_reverse {
        flex-direction: column-reverse;
    }
}

/*booking stars*/
.stars {
    display: flex;
    align-items: center;
    gap: 5px;
}
.stars__item {
    background: url("/assets/img/star.svg") center/contain no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.stars__item.active {
    background: url("/assets/img/star-fill.svg") center/contain no-repeat;
}

/*booking spec list*/
.spec-list {
    width: 100%;
}
.spec-list.spec-list_column {
    columns: auto 2;
    column-fill: balance;
    column-gap: 50px;
}
.spec-list.spec-list_row {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 15px;
}
.spec-list__item {
    display: flex;
    /*align-items: center;*/
    align-items: flex-start;
    page-break-inside: avoid;
    padding: 10px 0;
}
.spec-list__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-green-2);
}
.spec-list__icon svg {
    width: 100%;
    height: 100%;
}
.spec-list__icon img {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
}
.spec-list__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}
.booking-detail__section .spec-list.spec-list_column {
    columns: auto 3;
    column-gap: 40px;
}
.booking-detail__section .spec-list__item {
    padding: 0;
    margin-bottom: 25px;
}
.spec-list.spec-list_row .spec-list__item {
    margin: 0;
    padding: 0;
}
.spec-list.spec-list_row .spec-list__icon {
    margin-right: 5px;
    color: var(--accent-green);
}
.spec-list.spec-list_row .spec-list__text {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}
@media (max-width: 1024px){
    .booking-detail__section .spec-list.spec-list_column {
        columns: auto 2;
        column-gap: 50px;
    }
    .booking-detail__section .spec-list__item {
        margin-bottom: 20px;
    }
}
@media (max-width: 767px){
    .booking-detail__section_alt {
        border-top: 0;
        padding-top: 0;
    }
    .spec-list.spec-list_alt {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
    }
    .spec-list.spec-list_alt .spec-list__item {
        flex: 1 1 calc(50% - 10px);
        margin: 0 !important;
    }
}
@media (max-width: 600px){
    .spec-list.spec-list_column,
    .booking-detail__section .spec-list.spec-list_column {
        columns: initial;
        column-fill: initial;
        column-gap: initial;
        align-items: flex-start;
    }
    .spec-list__item {
        padding: 0;
    }
    .spec-list__item:not(:last-child) {
        margin-bottom: 20px;
    }
}

/*booking gallery*/
.gallery {
    position: relative;
}
.gallery__item {
    position: relative;
    display: block;
    height: 100%;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.gallery__item.is-over span {
    position: absolute;
    z-index: 2;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.02em;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery__item.is-over:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 8px;
    opacity: .5;
    background-color: #000;
}
.gallery__pagination {
    display: none;
}
@media (max-width: 1280px){
    .gallery__item.is-over span {
        font-size: 20px;
    }
}
@media (min-width: 1025px){
    .gallery .swiper-wrapper {
        display: grid;
        grid-row-gap: 15px;
        grid-column-gap: 10px;
        grid-template-columns: repeat(5, 1fr);
        overflow: initial;
        transform: none;
    }
    .gallery .swiper-wrapper .swiper-slide:first-child {
        grid-column: 1 / 6;
        height: 375px;
    }
    .gallery .swiper-wrapper .swiper-slide:nth-child(n + 7) {
        display: none;
    }
}
@media (max-width: 1024px){
    .gallery {
        margin-bottom: 40px;
    }
    .gallery__item.is-over:after {
        display: none;
    }
    .gallery__item.is-over span {
        display: none;
    }
    .gallery__pagination {
        /*display: flex;*/
        /*justify-content: center;*/
        /*align-items: center;*/
        position: absolute;
        /*bottom: 8px;*/
        /*left: 0;*/
        /*right: 0;*/
        z-index: 10;
        display: block;
        /*gap: 7px;*/
    }
    .gallery__pagination .swiper-pagination-bullet {
        opacity: 0.65;
        /*width: 10px;*/
        /*height: 10px;*/
        border-radius: 50%;
        background-color: #FFF;
        /*margin: 0 !important;*/
    }
    .gallery__pagination .swiper-pagination-bullet-active {
        opacity: 1;
    }
}

.booking-map {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}
@media (max-width: 1024px) {
    .booking-map {
        margin-bottom: 40px;
        height: 320px !important;
    }
}

/*side navigation*/
.side-navigation {
    position: sticky;
    top: 40px;
    z-index: 1;
}
.side-navigation__link {
    display: block;
    background-color: #F9F9F9;
    color: var(--accent-green);
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    outline: 0;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}
.side-navigation__link.active {
    color: #FFF;
    background-color: var(--accent-green-2);
}
.side-navigation__link:not(.active):hover {
    color: var(--accent-green-2);
}
.side-navigation__link:not(:last-child) {
    border-bottom: 1px solid rgba(42,158,151,.15);
}
.side-navigation__link:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.side-navigation__link:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/*review item*/
.review-item {
    padding: 20px 28px;
    border-radius: 8px;
    background-color: #F9F9F9;
    margin-bottom: 34px;
}
.review-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.review-item__date {
    color: #908E8E;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}
.review-item__rating {
    display: flex;
    align-items: center;
    gap: 6px;
}
.review-item__star {
    background: url("/assets/img/star-review-edge.svg") center/contain no-repeat;
    width: 12px;
    height: 12px;
}
.review-item__star.active {
    background: url("/assets/img/star-review-fill.svg") center/contain no-repeat;
}
.review-item__author {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-green);
}
.review-item__text {
    position: relative;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}
.review-item__text p {
    margin: 12px 0;
}
.review-item__text > *:first-child {
    margin-top: 0;
}
.review-item__text > *:last-child {
    margin-bottom: 0;
}
.review-item__gallery {
    margin-top: 16px;
}
.review-item__gallery .swiper-slide {
    width: 200px;
    height: auto;
}
.review-item__slide {
    display: block;
    height: 120px;
    text-decoration: none;
    user-select: none;
}
.review-item__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 1024px) {
    .review-item {
        padding: 15px;
        margin-bottom: 15px;
    }
}

/*select list*/
.select-list {
    background-color: #F9F9F9;
    border-radius: 8px;
    margin-bottom: 25px;
    padding: 32px 45px;
}
.select-list__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.select-list__headline {
    color: var(--accent-green);
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}
.select-list__time {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    background-color: #FFF;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    gap: 12px;
}
.select-list__time svg {
    width: 20px;
    height: 20px;
}
.select-list__item {
    background-color: #F5F5F5;
    border-radius: 8px;
    border: 1px solid #F5F5F5;
}
.select-list__item.is-open {
    background-color: #FFF;
    border-color: #EBEBEB;
}
.select-list__item + .select-list__item {
    margin-top: 15px;
}
.select-list__label {
    position: relative;
    width: 100%;
    text-align: left;
    outline: 0;
    padding: 15px;
    cursor: pointer;
    color: var(--accent-green);
    background-color: transparent;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    user-select: none;
    border-radius: 8px;
}
.select-list__label:hover {
    color: var(--accent-green-2);
}
.select-list__label:after {
    content: '';
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--accent-green);
    border-bottom: 2px solid var(--accent-green);
    transform: rotate(45deg);
}
.select-list__item.is-open .select-list__label:after {
    transform: rotate(315deg);
}
.select-list__text {
    color: var(--accent-green);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    padding: 0 15px 15px;
    display: none;
}
.select-list__item.is-open .select-list__text {
    display: block;
}
.select-list__text p {
    margin: 12px 0;
}
.select-list__text ul {
    margin: 15px 0;
}
.select-list__text li {
    list-style-type: disc;
    list-style-position: inside;
}
.select-list__text > *:first-child {
    margin-top: 0;
}
.select-list__text > *:last-child {
    margin-bottom: 0;
}
@media (max-width: 1024px){
    .select-list {
        padding: 15px;
    }
    .select-list__header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .select-list__time {
        margin-top: 10px;
        width: 100%;
    }
}

/*booking filter*/
.booking-filter {
    padding: 10px 0 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
    margin-bottom: 40px;
}
/*.filter.booking-filter .filter__block.filter__block--date {
    grid-column: 1/3;
}*/
.filter.booking-filter .filter__block.filter__block--quantity {
    margin-left: 0;
}
.filter.booking-filter .filter__block.filter__block--type {
    margin-left: 0;
}
.filter.booking-filter .filter__block.filter__block--btn {
    grid-column: 1 / 3;
    border: none;
}
.filter.booking-filter .filter__block {
    border-radius: 8px;
    border: 1px solid var(--stroke-primmary);
    background: var(--white, #FFF);
}
.filter.booking-filter .filter__block.filter__block--quantity::after {
    display: none;
}
.filter.booking-filter .filter__block.filter__block--type::after {
    display: none;
}
.filter__block.is-waiting {
    pointer-events: none;
    background-color: #efefef !important;
}
@media (max-width: 600px){
    .filter.booking-filter {
        grid-template-columns: 1fr;
        grid-gap: 15px;
        margin-top: 0;
    }
    .filter.booking-filter .filter__block.filter__block--date {
        grid-column: auto;
    }
    .filter.booking-filter .filter__block.filter__block--btn {
        grid-column: auto;
    }
}

/*room item*/
.room-item {
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 20px 30px;
    margin-bottom: 40px;
}
.room-item__main {
    display: flex;
}
.room-item__info {
    flex: 1;
}
.room-item__info .spec-list {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EBEBEB;
}
.room-item__gallery {
    flex: 0 0 270px;
    width: 270px;
    height: 180px;
    margin-left: 35px;
}
.custom-modal .room-item__gallery {
    width: 550px;
    flex: 0 0 550px;
    margin-left: 20px;
    height: auto;
}
.room-item__bar {
    position: relative;
    border-top: 1px solid #EBEBEB;
    padding-top: 15px;
    margin-top: 20px;
    overflow: hidden;
}
.room-item__header {
    margin-bottom: 20px;
}
.room-item__headline {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 0 0 20px;
    color: #02291B;
}
.room-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.room-item__tag {
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #FFF;
}
.room-item__tag div {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent-green);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}
.room-item__tag svg {
    width: 100%;
    height: 100%;
}
.room-item__tag img {
    max-width: 100%;
    max-height: 100%;
}

.room-item__service {
    display: flex;
    align-items: baseline;
    font-size: 14px;
    line-height: 1.2;
    color: var(--text-secondary);
}
.room-item__service:not(:last-child) {
    margin-bottom: 10px;
}
.room-item__service b {
    font-weight: 600;
    display: inline-block;
    margin-left: 8px;
    color: var(--accent-green);
}
.room-item__bar .room-item__more {
    position: absolute;
    top: 17px;
    right: 0;
    z-index: 1;
    color: var(--accent-green);
    text-decoration: underline;
    background: linear-gradient(90deg, rgba(249,249,249,0) 0%, rgba(249,249,249,1) 20%, rgba(249,249,249,1) 100%);
    padding: 0 0 0 70px;
    outline: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}
.room-item__bar .room-item__more:hover {
    text-decoration: none;
}
.room-item__labels {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 10px;
}
.room-item__label {
    color: #fff;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 4px;
}
.room-item__label_orange {
    background: linear-gradient(90deg, rgba(227,113,113,1) 0%, rgba(204,122,76,1) 100%);
}
.room-item__label_purple {
    background: linear-gradient(90deg, rgba(181,135,227,1) 0%, rgba(140,76,204,1) 100%);
}
.room-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}
.room-item__price {
    text-align: right;
    color: var(--accent-green);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}
.room-item__extra {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 12px;
}
.room-item__extra div {
    display: flex;
    align-items: center;
}
.room-item__extra div:not(:first-child) {
    margin-left: 7px;
}
.room-item__extra div:not(:first-child):before {
    content: '';
    display: inline-block;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background-color: var(--text-secondary);
    margin-right: 7px;
}
.room-item__option {
    border-top: 1px solid #D7D7D7;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.room-item__option .room-item__footer {
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    gap: 6px;
}
.room-item__option .room-item__footer .booking-button {
    order: 2;
}
.room-item__option .room-item__price {
    order: 1;
    margin-bottom: 20px;
}

.room-item__text {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--text-primary);
    padding-right: 30px;
}
.room-item__text p,
.room-item__text ul {
    margin: 10px 0;
}
.room-item__text p span {
    color: var(--text-secondary);
}
.room-item__text ul li {
    list-style-type: disc;
    list-style-position: inside;
}
.room-item__text ul li:not(:last-child){
    margin: 0 0 5px;
}
.room-item__text >*:first-child {
    margin-top: 0;
}
.room-item__text >*:last-child {
    margin-bottom: 0;
}

.room-gallery {
    position: relative;
}
.room-gallery__slide {
    display: block;
    text-decoration: none;
    outline: 0;
    height: 180px;
}
.custom-modal .room-gallery__slide {
    height: 400px;
}
.room-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.room-gallery__prev,
.room-gallery__next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto 0;
    outline: 0;
    user-select: none;
    cursor: pointer;
    border: 0;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    padding: 0;
    color: var(--accent-green);
}
.room-gallery__prev {
    left: 10px;
}
.room-gallery__next {
    right: 10px;
}
.room-gallery__prev:hover,
.room-gallery__next:hover {
    color: var(--accent-green-2);
}
.custom-modal .room-gallery__prev {
    left: 20px;
}
.custom-modal .room-gallery__next {
    right: 20px;
}

.room-thumbs {
    margin-top: 10px;
}
.room-thumbs__slide {
    border-radius: 6px;
    height: 45px;
    opacity: .7;
    border: 2px solid #fff;
}
.room-thumbs__slide.swiper-slide-thumb-active {
    opacity: 1;
    border-color: #024C48;
}
.room-thumbs__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
@media (max-width: 1024px) {
    .custom-modal .room-item {
        border-radius: 0;
    }
    .custom-modal .room-item__main {
        display: block;
    }
    .custom-modal .room-item__gallery {
        flex: initial;
        width: 100%;
        margin-top: 40px;
        margin-left: 0;
    }
    .room-thumbs__slide {
        height: 60px;
    }
}
@media (max-width: 767px){
    .room-item {
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #B7B7B7;
    }
    .room-item__main {
        display: block;
    }
    .room-item__gallery {
        flex: initial;
        width: 100%;
        margin-top: 40px;
        margin-left: 0;
    }
    .room-item__bar .room-item__more {
        padding-left: 40px;
    }
    .room-item__footer {
        flex-direction: column;
    }
    .room-item__footer .booking-button {
        order: 2;
        width: 100%;
        margin-top: 15px;
    }
    .room-item__price {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between;
        font-size: 22px;
    }
    .room-item__text {
        padding-right: 0;
    }
    .room-item__extra {
        margin-top: 0;
    }
    .room-item__option {
        flex-direction: column;
    }
    .room-item__option .room-item__footer {
        margin-top: 15px;
    }
    .room-item__option .room-item__price {
        margin-bottom: 0;
    }

    .custom-modal .room-item__gallery {

    }
    .custom-modal .room-gallery__slide {
        height: 300px;
    }
}

.tippy-box[data-theme~='light'] {
    background-color: #FFF;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -.01em;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    border-radius: 8px;
}
.tippy-box[data-theme~='light'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: #FFF;
}
.tippy-box[data-theme~='light'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: #FFF;
}
.tippy-box[data-theme~='light'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: #FFF;
}
.tippy-box[data-theme~='light'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: #FFF;
}
@media (max-width: 767px) {
    .tippy-box[data-theme~='light'] {
        font-size: 11px;
    }
}

/*modal*/
.custom-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    background: rgba(0,0,0,.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: center;
    display: none;
}
.custom-modal.is-open {
    display: flex;
    visibility: visible;
    opacity: 1;
}
.custom-modal__content {
    flex-shrink: 0;
    position: relative;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    max-width: 1240px;
    margin-top: auto;
    margin-bottom: auto;
    color: var(--text-primary);
}
.custom-modal__body {
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 0;
}
.custom-modal__close {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #FFF;
    width: 20px;
    height: 20px;
    border: 0;
    padding: 0;
    outline: 0;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: -30px;
}
.custom-modal__close svg {
    width: 100%;
    height: 100%;
}
body.is-custom-modal-open {
    overflow: hidden;
}
@media (max-width: 1340px){
    .custom-modal__close {
        color: var(--accent-green);
        right: 16px;
        width: 18px;
    }
}
@media (max-width: 1024px){
    .custom-modal__content {
        max-width: 100%;
        height: 100%;
        margin-top: 0;
        margin-bottom: 0;
        border-radius: 0;
        padding: 0;
    }
    .custom-modal__body {
        height: 100%;
        border-radius: 0;
    }
}

.air-datepicker .air-datepicker--content .air-datepicker-cell.-disabled- {
    background: #f3f3f3;
    color: #d3d3d3;
    border-radius: 4px;
    box-shadow: inset 1px 0px 0 0px #fff;
}

div.weather-wrapper.is-loading {
    position: relative;
    color: transparent !important;
    background: #fff;
}
.weather-wrapper.is-loading * {
    pointer-events: none;
}
div.weather-wrapper.is-loading .img-wrapper {
    background: #e2e5e7;
    animation: skeleton-loading 1.5s linear infinite alternate;
}
div.weather-wrapper.is-loading .img-wrapper * {
    opacity: 0;
}
div.weather-wrapper.is-loading .txt {
    color: transparent;
    animation: skeleton-loading 1.5s linear infinite alternate;
}
div.weather-wrapper.is-loading .temp {
    color: transparent;
    animation: skeleton-loading 1.5s linear infinite alternate;
}
div.weather-wrapper.is-error {
    position: relative;
}
div.weather-wrapper.is-error *:not(.msg) {
    opacity: 0;
    pointer-events: none;
}
div.weather-wrapper.is-error .msg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #000;
}
@keyframes skeleton-loading {
    0% {
        background: hsl(0, 0%, 95%);
    }
    100% {
        background: hsl(0, 0%, 78%);
    }
}

.mob-only {
    display: none;
}
@media (max-width: 767px) {
    .mob-hidden {
        display: none;
    }
    .mob-only {
        display: block;
    }
}