.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}
.panel.active, .accordion:hover {
    background-color: #ccc;
}
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.panel-offer {
    display: inline-flex;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('/fonts/fp/nova/ProximaNova-Regular.woff2') format('woff2'),
    url('/fonts/fp/nova/ProximaNova-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('/fonts/fp/nova/ProximaNova-Bold.woff2') format('woff2'),
    url('/fonts/fp/nova/ProximaNova-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('/fonts/fp/nova/ProximaNova-Light.woff2') format('woff2'),
    url('/fonts/fp/nova/ProximaNova-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('/fonts/fp/nova/ProximaNova-Black.woff2') format('woff2'),
    url('/fonts/fp/nova/ProximaNova-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
.hf-offers-title {
    font-size: 36px;
    font-weight: bold;
    font-family: "Proxima Nova", sans-serif;
    margin-bottom: 0;
    color: #0F110F;
}
.hf-offers {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
}
.hf-offers__container {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.hf-offer {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background-color: #fff;
    font-family: "Proxima Nova", sans-serif;
}
.hf-offer__header {
    display: flex;
    flex-direction: row;
    height: 72px;
    font-family: "Proxima Nova", sans-serif;
    font-size: 20px;
    font-weight: bold;
    align-items: center;
    cursor: pointer;
}
.hf-offer__header_name {
    margin-left: 6px;
    margin-right: 8px;
    max-width: 700px;

    color: #000;
    font-family: "Proxima Nova", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.38px;
}
.hf-offer__header_price:before {
    font-family: "Proxima Nova", sans-serif;
    content: "\B7";
    font-size: 20px;
    margin-right: 8px;
    color: #000000;
}
.hf-offer__header_price {
    color: var(--System-Positive, #3B840C);
    font-family: "Proxima Nova", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.38px;
}
@media screen and (max-width: 767px) {
    .hf-offer__header {
        display: none;
        height: auto;
        padding: 8px;
    }
    .hf-offer__header_price {
        display: none;
    }
    .hf-offer__header_name {
        margin-left: 10px;
        padding: 8px 0;
    }
    .hf-offer {
        margin-bottom: 8px;
    }
    .hf-offer__body {
        background-color: #fff;
        border-radius: 24px;
        padding-top: 10px;
    }
}
.hf-offer__body {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.hf-offer__body {
    max-height: 0;
    overflow: hidden;
    margin: 0 6px;
}
.hf-offer__body .fp-mo-offer__gallery {
    margin: 0 16px 0 0;
}
#gallery .fp-gallery-mobile ul.f-carousel__dots {
    top: 0;
    margin-top: -32px !important;
}
@media screen and (max-width: 767px) {
    .hf-offer__body {
        margin: 0 10px;
        flex-direction: column;
    }
    .hf-offer__body .fp-mo-offer__gallery {
        margin: 0 0 10px 0;
    }
}
.hf-offer__header_arrow {
    display: flex;
    margin-left: auto;
    margin-right: 24px;
}
.hf-offer__header.active .hf-offer__header_arrow svg {
    transform: rotate(180deg);
}
.hf-offer__gallery {
    display: flex;
    margin-bottom: 24px;
    margin-right: 24px;
    max-height: 250px;
}
.hf-offer__gallery img {
    min-width: 278px;
    border-radius: 12px;
}
.hf-offer__items {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.hf-offer__item {
    display: flex;
    flex-direction: row;
    border: 1px solid #E2E2E2;
    border-radius: 12px;
    padding: 24px 24px 24px 28px;
    margin-bottom: 24px;
}
.hf-offer__items .fp-mo-offer {
    border-radius: 16px;
    border: 1px solid #E2E2E2;
}
.hf-offer__items .fp-mo-offer:nth-child(n+2) {
    display: none;
}
.show-more-offers-btn {
    display: flex;
    padding: 10px 24px;
    width: fit-content;
    margin-bottom: 16px;
    background-color: #fff;
    border-radius: 100px;
    border: 1px solid var(--Border, #E2E2E2);
    cursor: pointer;
    transition: background-color 0.1s;

    color: var(--Text-Dark, #0E0F0C);
    text-align: right;
    font-family: "Proxima Nova", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.17px;
}

.show-more-offers-btn:hover {
    background-color: #ECEEEB;
}
.hf-offer__items.show-all .fp-mo-offer {
    display: flex;
}
.hf-offer__items .fp-mo-offer:last-child {
    margin-bottom: 16px;
    border-bottom: 1px solid #E2E2E2 !important;
}
.hf-offer__item_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hf-offer-item__price {
    text-align: right;
    font-size: 32px;
    font-weight: bold;
    color: #0E0F0C;
}
.hf-offer-item__button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9FE870;
    font-size: 17px;
    color: #163300;
    padding: 17px 30px;
    font-weight: bold;
    border-radius: 100px;
    cursor: pointer;
    line-height: 17px;
}
.hf-offer-item__button:hover {
    text-decoration: none;
}
.hf-offer__item_left {
    display: flex;
    flex-direction: column;
}
.hf-offer-item__title {
    font-size: 20px;
    line-height: 20px;
    color: #0E0F0C;
    font-weight: bold;
    margin-bottom: 6px;
}
.hf-offer-item__desc {
    font-size: 19px;
    line-height: 23px;
    color: #6A6C6A;
    font-weight: normal;
}
.hf-offer-item__amenities {
    display: flex;
    flex-direction: row;
    margin-top: 12px;
    flex-wrap: wrap;
}
.hf-offer-amenity {
    display: inline-flex;
    align-items: center;
    color: #000000;
    font-size: 18px;
    line-height: 18px;
    font-weight: normal;
    padding: 8px 0;
    margin-right: 16px;
}
.hf-offer-amenity svg {
    margin: 0 8px 0 0;
}
.hf-value {
    font-size: 18px;
    line-height: 18px;
    color: #0E34A0;
    font-weight: 500;
}
.modal, .modal-open {
    overflow-y: hidden;
}
.ya-balloon img {
    max-width: 80px;
}
.is-hotel-finder div.options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.is-hotel-finder div.options span {
    margin-right: 4px;
    margin-bottom: 4px;
}
.hf-offer__body .fotorama__nav-wrap {
    position: absolute;
    bottom: 0;
}
.hf-offer__body .fotorama__dot {
    background-color: #fff;
    border: unset;
}
.hf-offer__body .fotorama__nav__frame.fotorama__active .fotorama__dot {
    margin-top: -1px;
    width: 6px;
    height: 6px;
    border-width: unset;
}
.hf-offer__body .fotorama {
    min-width: 290px;
    margin-right: 24px;
}
.hf-offer__body .fotorama {
    border-radius: 12px;
}