.room__search-no-results {
    font-size: 20px;
    color: #444;
    margin-bottom: 40px;
    text-align: center;
}

#form-room-type-search {
    background-color: #f6f6f6;
    border: 1px solid #c2c2c2;
}

#form-room-type-search input[type="text"],
#form-room-type-search select,
#form-room-type-search .age-dropdown {
    background-color: white;
}

.room-type-search {
    grid-template-columns: 1fr 1fr 1fr 40px;
}

.room__search-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.room__search-title a {
    color: #cf5919;
    text-decoration: underline;
}

.room__search-error {
    margin-bottom: 15px;
    color: red;
}

.room-type-search input,
.room-type-search select {
    background-color: white;
    border: 1px solid #c2c2c2;
}

.room__search-items {
    margin-bottom: 40px;
}

.room_search-room-name {
    margin-bottom: 5px;
}

.room__search-item {
    display: grid;
    grid-template-rows: minmax(75px, auto);
    grid-template-columns: 2.5fr 1.5fr 1fr 1fr;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 20px;
    background-color: #f6f6f6;
    border: 1px solid #c2c2c2;
    padding: 0 15px;
}

.hotel-wrap.online-reservations .food-type {
    font-size: 14px;
    text-transform: none;
    font-weight: normal;
}

.hotel-wrap .food-type-text {
    color: #cf5919;
}

.room__search-item-name {
    font-weight: 600;
    text-transform: uppercase;
}

.room__search-item-show-details {
    text-decoration: none;
    color: #05729b;
}

.room__search-item-price {
    display: flex;
    flex-direction: column;
}

.room__search-item-price > div {
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: center;
}

.room__search-item-price .commission {
    text-align: center;
    justify-content: center;
}

.room__search-item-price .commission label {
    color: #05729b;
    cursor: pointer;
}

.room__search-item-price .price span {
    font-size: 20px;
    font-weight: 600;
    color: #ff9b0b;
}

.room__search-item-price.daily .price span {
    font-size: 16px;
    margin-top: 6px;
}

.room__search-item-price.daily .commission a {
    color: #333;
}

.room__search-item-price.--not-authorized label {
    font-size: 12px;
}

.room__search-item-book a {
    font-size: 14px;
    text-align: center;
    color: white;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    margin: 10px 0;
    border-radius: 4px;
    text-transform: none;
}

.room__search-item-book .link-create-reservation {
    background-color: #1ccc78;
}

.room__search-item-book .link-trade {
    background-color: #ff9b0b;
}

.hotel__info-commission {
    margin-bottom: 20px;

}

.hotel__info-commission a {
    color: #05729b;
    margin-bottom: 5px;
    display: block;
}

.hotel__info-commission-value {
    font-weight: 600;
}

.room__search-stop-sale {
    margin-bottom: 20px;
}

.online-hotel-icons {
    border: 1px solid #c2c2c2;
    background-color: #f6f6f6;
    padding: 10px 20px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 15px;
}

.online-hotel-icons .area-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-hotel-icons .area-icon img {
    display: block;
    width: 20px;
    height: 20px;
}

.hotel-price-caption a {
    color: #cf5919;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 10px;
    font-size: inherit;
}

@media (max-width: 767px) {
    .room__search-item {
        padding: 16px;
    }
    .form__search .form-submit {
        font-size: 15px;
    }
    .room__search-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .room__search-item-price {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .room__search-item-price span {
        margin-left: 0;
    }

    .room__search-item {
        grid-gap: 10px;
    }

    .form__search .form-submit {
        margin-top: 0;
    }
    .room_search-room-food-type .food-type {
        justify-content: center;
    }
    .online-hotel-icons {
        grid-template-columns: 1fr;
        text-align: center;
        justify-content: center;
        grid-gap: 10px;
        padding: 10px;
    }
    .room__search-title {
        flex-direction: column;
    }
}