.rise_container {
    display: flex;
    justify-content: center;
}

.rise_container_content {
    max-width: 1200px;
    width: 100%;
}

.rise_room {
    width: 100%;
    background-color: rgba(104, 104, 104, 0.18);
    padding: .65rem;
    margin-bottom: 1rem;
    border-radius: .3rem;
}

.rise_room_thumbnail {
    width: 100%;
    position: relative;
    height: 0;
    padding-bottom: calc(9 / 16 * 100%);
}

.rise_room_thumbnail img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: .3rem;
}

.rise_room_title {
    padding: .35rem;
    text-align: center;
}

.rise_search {
    display: flex;
    flex-direction: column;
}

.rise_input {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    justify-content: space-between;
}

.rise_input:not(:first-child) {
    margin-top: 1.5rem;
}

button.rise_search_btn {
    background-color: #2eb0d1;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: .25rem;
    transition: .3s;
}

button.rise_search_btn:hover {
    outline: 1px solid #2eb0d1;
    background-color: transparent;
    color: black;
}

.rise_room_book {
    display: flex;
}

.rise_room_book_field {
    flex: 1;
    display: flex;
    align-items: center;
}

.rise_error {
    background-color: #650505;
    text-align: center;
    width: 100%;
    color: white;
    font-weight: bold;
    padding: .8rem;
    border-radius: .3rem;
}

.rise-checkout-group-title {
    font-size: 1.35rem;
    font-weight: bolder;
    margin-bottom: .65rem;
}

.rise-checkout-coupon-field {
    display: flex;
}

.rise-checkout-coupon-field-left {
    flex: 1;
    margin-right: .3rem;
    padding-left: 20%;
}

.rise-checkout-coupon-field-left input {
    width: 100%;
}

.rise-checkout-field {
    border: 1px solid #dee2e6;
    padding: .75rem;
}

.rise-checkout-field-title {
    color: #757b7e;
    font-weight: bolder;
}

.rise-checkout-new-customer-left, .rise-checkout-new-customer-right {
    flex: 1;
}

span.rise-mandatory-asterisk {
    color: red;
    font-weight: bold;
}

.rise-checkout-payment-methods {
    padding-top: 1.5rem;
}

#rise-checkout-additional-information {
    margin-top: 1.5rem;
}

.rise-payment-instructions {
    padding: 0 1.5rem;
    color: #808080;
    margin-bottom: 1rem;
    font-size: .85rem;
}

.rise-book-information-field-key, .rise-room-information-field-key, .rise-hotel-information-field-key {
    font-weight: bold;
}

.rise-book-information-title h5, .rise-room-information-title h5, .rise-hotel-information-title h5 {
    margin-bottom: .6rem;
}

.rise-old-price {
    text-decoration: line-through;
}

.rise-checkout-applied-coupon-field {
    margin: .6rem 0 .8rem 0;
}

.rise-checkout-coupon-alert {
    padding: .8rem;
    background-color: #730700;
    border-radius: .4rem;
    color: white;
    margin-bottom: .5rem;
}

.rise-footer {
    padding: 1rem 2rem;
    border-top: 1px solid #dfdfdf;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

.rise-powered-by {
    flex: 1;
}

.rise-checkout-button {
    display: flex !important;
    align-items: center;
    height: 100%;
}

.daterangepicker tbody td.available:not(.off), .daterangepicker thead th {
    color: black !important;
}

.daterangepicker tbody td.off:hover {
    color: black !important;
}

.daterangepicker {
    background-color: white !important;
}

.rise-spinner {
    border: 3px solid #111111; /* Light grey */
    border-top: 3px solid #ffffff; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: rise-spin 2s linear infinite;
    margin-left: 10px;
}

.rise-line {
    width: 100%;
    height: 1px;
    background-color: #dee2e6;
}

.rise_search_container {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.rise_search_col {
    flex: 1;
}

.rise_search_col_main {
    min-width: 220px;
    flex: 2;
}

table#rise-search-rooms img {
    max-width: 250px;
}

table#rise-search-rooms tr td.rise-room p {
    margin: 0;
}

table#rise-search-rooms tr td.rise-room {
    text-align: center;
}

table#rise-search-rooms tr td.rise-room a {
    display: block;
}

table#rise-search-rooms tr td.rise-room *:not(:last-child) {
    margin-bottom: .5rem;
}

.rise-remaining-room {
    color: red;
}

.rise-checkout-form-info small {
    color: #a0a0a0;
}

@keyframes rise-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}