.page-online-create-reservation .booking-middle-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.page-online-create-reservation .booking-block .block-row {
    margin-bottom: 15px;
}

.page-online-create-reservation .booking-block .block-row:last-child {
    margin-bottom: 5px;
}

.page-online-create-reservation .booking-block label {
    color: #9cd6f5;
    font-size: 14px;
    font-weight: normal;
}

.page-online-create-reservation .booking-bottom-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.page-online-create-reservation .site-btn {
    width: auto;
    max-width: 100%;
    min-width: 250px;
}

.hotel-reservation__tourist-fields {
    display: grid;
    grid-template-columns: 7fr 7fr 7fr 7fr 4fr 9fr;
    grid-column-gap: 20px;
}

.hotel-reservation__tourist-fields > div {
    display: flex;
    flex-direction: column;
}

.hotel-reservation__body {
    padding-bottom: 40px;
}

.hotel-reservation__body form .half {
    width: 50%;
}

.hotel-reservation__body form label {
    color: #5b5b5b;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.hotel-reservation__bottom_row {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    grid-gap: 20px;
}

.hotel-reservation__submit {
    display: flex;
    justify-content: center;
}

.hotel-reservation-success__body {
    padding: 40px;
    text-align: center;
    color: #424242;
}

.hotel-reservation-success__body p {
    margin-bottom: 10px;
}

.page-online-create-reservation label {
    font-weight: normal;
}

.hotel-reservation__body h2 {
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
}

.modal .hotel-reservation__body h2 {
    margin-bottom: 20px;
}

.toggle-price-info,
.toggle-price-info:hover,
.toggle-price-info:active,
.toggle-price-info:focus,
.toggle-price-info:visited {
    text-decoration: underline;
    color: white;
    font-size: 16px;
}

.hotel-reservation-warning__submit {
    margin: 0 0 30px 0;
}

.want-settlement-block {
    border: 1px solid #c5c5c5;
    padding: 20px 20px 0 20px;
    border-radius: 5px;
    margin-bottom: 40px;
}


@media (max-width: 1199px) {
    .hotel-reservation__tourist-fields {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hotel-reservation__fields {
        grid-template-columns: 1fr;
    }
    .hotel-reservation__tourist-fields {
        grid-template-columns: repeat(1, 1fr);
    }
    .hotel-reservation__body form textarea {
        width: 100%;
    }
    .page__hotel-reservation h1 {
        text-align: center;
    }
    .hotel-reservation__bottom_row {
        display: block;
    }
}