
/*==============================*/

/************Booking form*****************/

.booking_form_step_num{
    margin-right: 10px;
    border-radius: 100%;
    background-color: #F7931E;
    color: #fff;
    padding: 4px;
    width: 26px;
    height: 26px;
    display: inline-block;
    line-height: 1em;
    box-sizing: border-box;
    font-size: 16px;
    text-align: center;
    display: none;
}

.booking-form-block {
    margin-bottom: 10px;
    padding-bottom:  10px;
    border-bottom: 1px solid #aaa;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.booking-form-block > div{
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    flex-grow: 1;
}

.booking-form-block > div.booking_meeting_point_line{
    flex-wrap: nowrap;
    align-items: flex-start;
}

.booking-form-block .booking_form_input_label{
    flex-grow: 13;
}

.booking-form-block input[type="text"].booking_date{
    width: 110px;
}

.booking-form-block input[type="text"].booking_date:hover{
    cursor: pointer;
}

.booking-form-block .booking-date > *{
    display: inline-block;
}

.submit_group{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.submit_group button{
    margin: 5px;
}

.submit_group button .fa{
    margin-right: 5px;
}

.booking_meeting_point_line input{
    float: left;
    margin-right: 5px;
    margin-top: 2px;
}

.booking_meeting_point_line label{
    line-height: 1.3em;
    font-size: 13px;
    display: block;
    margin-bottom: 3px;
}

#booking-guests-result{
    font-size: 14px;
    justify-content: flex-end;
}

#booking-guests-result .select_guests_block{
    display: block;
    margin-bottom: 10px;
}

#total_group{
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#booking_form_total {
    text-align: right;
}

#booking_form_total .currency_amount{
    font-size: 24px;
}

#error_group label{
    color: red;
}

#error_group{
    display: none;
}

#error_group.show_error{
    display: block;
}

.booking-extra-block .booking_form_input_checkbox{
    text-align: right;
    flex-grow: 2;
}

.booking-extra-block .booking-extra-hidden{
    display:none;
    flex-basis: 0;
}

.booking-extra-block .booking-extra-hidden.active{
    display: block;
}

#list_services{
    width: 100%;
}

.list_service{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 5px 0;
    border-bottom: 1px solid #ccc;
}

.list_service label{
    vertical-align: inherit;
}

.list_service input[type="checkbox"]{
    vertical-align: sub;
}

.list_service_title{
    white-space: nowrap;
}

.list_service_title label{
    font-weight: 700;
}

.list_service_title h4{
    margin: 0;
    display: inline-block;
    font-size: 1rem;
}

.list_service_prices{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.list_service_prices .service_price_line{
    white-space: nowrap;
    text-align: right;
    flex-basis: auto;
}

.list_service_prices .service_price_line label {
    display: inline-block;
    color: #aaa;
    padding-right: 5px;
}

.view-list-details{
    display: none;
}

/*===============Input select field styles==========*/

.input_select_field{

}

.input_select_field .input_select_title{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.input_select_field .input_select_title_value{
    padding-right: 16px;
    flex-basis: 60%;
    flex-grow: 1;
    flex-shrink: 1;
}

.input_select_field .input_select_wrapper{
    position: relative;
    flex-basis: 30%;
    flex-grow: 1;
    flex-shrink: 5;
}

.input_select_field .input_select_input{
    width: 100%;
}

.input_select_field i, .input_select_field svg{
    position: absolute;
    right: 0.5em;
    top: 30%;
    padding: 0;
}

.input_select_field:hover, .input_select_field input:hover{
    cursor: pointer;
}

.input_select_field .input_select_list{
    display: none;
    position: absolute;
    box-sizing: border-box;
    top: 100%;
    right: 0;
    margin: 0;
    padding: 0;
    border: 1px solid #eaeaea;
    margin-top: 2px;
    background-color: #fff;
    z-index: 100;
    list-style: none;
    width: 100%;
    max-height: 150px;
    overflow-y: scroll;
}

.input_select_field .input_select_list.active{
    display: block;
}

.input_select_field .input_select_list .term_item{
    padding: 10px 10px;
    margin: 0;
    text-align: left;
}

.input_select_field .input_select_list .term_item:last-child{
    border-bottom: none;
}

.input_select_field .input_select_list .term_item:hover{
    cursor: pointer;
    background-color: #2e2e2e;
    color: #fff;
}

.input_select_field .input_select_list .term_item.term_item_selected{
    background-color: #2e2e2e;
    color: #fff;
}

.input_select_field_booking_time_from .input_select_input, .input_select_field_booking_time_to .input_select_input{
    width: 77px;
}

/*==============Order edit============*/

#form_order_edit{
    margin: 2rem 0;
}

#booking_form_admin{
    padding: 1rem;
    background-color: #fff;
}

#form_order_edit .order_edit_field{
    margin: 1rem 0;
}

#form_order_edit .order_edit_field label{
    color: #444;
}

#form_order_edit .order_edit_field .input_select_field{
    display: inline-block;
}

#form_order_edit input{
    border: 1px solid #ccc;
}

#form_order_edit #list_services h4{
    font-size: 1rem;
    margin: 0;
}

#booking-guests-result{
    font-size: 14px;
    justify-content: flex-end;
}

#booking-guests-result .select_guests_block{
    display: block;
    margin-bottom: 10px;
    flex-grow: 3;
}

.order_edit_info{
    padding: 1rem;
    background-color: honeydew;
    border: 1px gold solid;
}

#form_order_edit .order_edit_submit{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.order_edit_return{
    text-align: center;
    margin: 2rem;
}

.order_edit_return a.button{
    display: block;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background-color: cadetblue;
    text-decoration: none;
}

.order_edit_return a.button:hover{
    text-decoration: none;
    background-color: cornflowerblue;
}

.modal-title{
    text-align: center;
    width: 100%;
}

.modal-footer{
    justify-content: space-between;
}

#order_manual_refund_spinner{
    display: none;
}

#order_manual_refund_spinner.active{
    display: inline-block;
}
