.be-booking,
.be-booking * {
    box-sizing: border-box;
}

.be-booking__header {
    width: calc(100% - 30px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
    background: #F7F7F7;
    transition: 0.3s;
}

.be-booking__header.fixed {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

.be-booking__container {
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

.be-booking__title {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: rgba(61, 61, 61, 0.8);
}

.be-booking--selected .be-booking__title {
    display: none;
}

.be-booking__hotels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1120px;
    padding: 0;
    margin: 0 auto;
    list-style: none
}

.be-booking__hotel.active {
    display: flex;
    align-items: start;
    gap: 40px;
    width: 100%;
}

.be-booking__hotel-name {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    background: rgba(126, 8, 32, 0.12);
    border-radius: 30px;
}

.be-booking__hotel-name:hover {
    background: rgba(159, 16, 45, 0.16);
}

.be-booking__hotel.active .be-booking__hotel-name {
    cursor: default;
    color: #FFFFFF;
    background: #AA3239;
}

.be-booking__hotel-info:not(.be-booking__hotel.active .be-booking__hotel-info) {
    display: none;
}

.be-booking__hotel-info p {
    margin: 0;
}

.be-booking__hotel-info p:not(:last-child) {
    margin-bottom: 6px;
}

.be-booking__hotel-info a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.be-booking__hotel-info a:hover {
    border-bottom: 1px solid #000000;
}

#be-hotel-select {
    display: none;
}

#tl-booking-cart {
    z-index: 1 !important;
}

#be-booking-form {
    display: none;
}

.be-booking--selected #be-booking-form {
    display: block;
}

@media screen and (max-width: 767px) {
    .be-booking__header {
        padding-top: 50px;
    }

    .be-booking__hotel.active {
        flex-direction: column;
        gap: 20px;
    }
}

.page-template-booking main {
    position: static;
}

.page-template-booking .footer__container--bottom {
    position: relative;
    padding: 24px 40px 24px;
}

.page-template-booking .footer__container--bottom-overlay {
    display: none;
}