.page__hotel-reservation h1 {
    font-size: 26px;
    line-height: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid #05729b;
    margin-bottom: 30px;
}

.hotel-reservation__header {
    display: flex;
    margin-bottom: 45px;
}

.hotel-reservation__info {
    flex: 1;
}

.hotel-reservation__image {
    margin-right: 35px;
}

.hotel-reservation__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 12px;
}

.hotel-reservation__price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 12px;
}

.hotel-reservation__info-row,
.hotel-reservation__info-row label {
    display: flex;
    align-items: center;
}

.hotel-reservation__info-row label {
    color: #616161;
    margin-right: 10px;
}

.hotel-reservation__info-row span {
    font-weight: bold;
}

.hotel-reservation__info-row label:before {
    content: '';
    width: 21px;
    height: 21px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
}

.hotel-reservation__info-row.region label:before {
    background-image: url(../../../img/hotel/marker.png);
}

.hotel-reservation__info-row.room-type label:before {
    background-image: url(../../../img/hotel/ico-room-type.png);
}

.hotel-reservation__info-row.period label:before {
    background-image: url(../../../img/home/ico-departure-date.png);
}

.hotel-reservation__info-row.nights label:before {
    background-image: url(../../../img/home/ico-nights-count.png);
}

.hotel-reservation__info-row.adults label:before {
    background-image: url(../../../img/search/ico-tourists.png);
}

.hotel-reservation__info-row.children-7-11 label:before {
    background-image: url(../../../img/hotel/ico-children.png);
}

.hotel-reservation__info-row.children-2-6 label:before {
    background-image: url(../../../img/hotel/ico-baby.png);
}

.hotel-reservation__info-row.price label:before {
    background-image: url(../../../img/tour/ico-cost.png);
}

.hotel-reservation__info-row.price label {
    font-weight: bold;
}

.hotel-reservation__info-row.price .price-eur {
    font-weight: bold;
    font-size: 22px;
    color: #05729b;
}

.hotel-reservation__info-row.price .price-usd {
    color: #05729b;
}

.hotel-reservation__fields {
    padding-bottom: 25px;
    border-bottom: 1px solid #c5c5c5;
    margin-bottom: 25px;
}

.page__hotel-reservation h2 {
    padding-bottom: 15px;
    border-bottom: 1px solid #c5c5c5;
    margin-bottom: 20px;
    color: black;
}

.hotel-reservation__tourist-fields {
    display: grid;
    grid-template-columns: 3fr 7fr 7fr 5fr 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;
    margin-bottom: 5px;
    display: block;
}

.hotel-reservation__tourist {
    margin-bottom: 20px;
}

.hotel-reservation__tourist h3 {
    color: #05729b;
    margin-bottom: 10px;
}

.hotel-reservation__tourists {
    margin-bottom: 40px;
}

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

.hotel-reservation__submit .stop-sale {
    background-color: red;
    text-transform: uppercase;
}

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

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

.hotel-reservation__order-transfer {
    padding: 20px;
    border: 2px solid #ffc219;
    margin: 20px 0;
}

.hotel-reservation__order-transfer h3 {
    text-align: center;
}

.hotel-reservation__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}

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

@media (max-width: 767px) {
    .hotel-reservation__header {
        flex-direction: column;
    }
    .hotel-reservation__image {
        margin-right: 0;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    .hotel-reservation__fields {
        grid-template-columns: 1fr;
    }
    .hotel-reservation__tourist-fields {
        grid-template-columns: repeat(2, 1fr);
    }
    .hotel-reservation__body form textarea {
        width: 100%;
    }
    .page__hotel-reservation h1 {
        text-align: center;
    }
    .hotel-reservation__body form .half {
        width: 100%;
    }
}


@media (max-width: 575px) {
    .hotel-reservation__row {
        grid-template-columns: 1fr;
    }
}