:root {
    --primaryColor: #c31e2c;
    --whiteColor: #fff;
    --textColor: #000;
    --lightGray: #eee;
}
.wrap {
    background: var(--whiteColor);
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--lightGray);
    box-shadow: 0px 0px 30px rgb(127 137 161 / 15%);
    border-radius: 10px;
}
.sidebar-wrap {
    background-color: var(--whiteColor);
    min-height: 420px;
    padding: 15px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border: 1px solid var(--lightGray);
    border-radius: 10px;
    position: sticky;
    top: 20px;
    margin-bottom: 20px;
    overflow: auto;
}
.page-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.rectan {
    display: inline-block;
    height: 25px;
    width: 25px;
    background: var(--primaryColor);
    margin-right: 10px;
    border-radius: 50%;
    border: 2px dotted var(--whiteColor);
}
.page-heading h1, .page-heading h2 {
    color: #1e3b66;
    font-size: 22px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 700;
}
.timer {
    margin: 0px 16px 5px;
}
#simple_timer, #simple_timer_modal {
    font-size: 35px;
    font-weight: 900;
    color: var(--primaryColor);
    display: block;
    line-height: 35px;
}
.simple_timer_txt {
    color:var(--primaryColor);
    font-weight: 500;
    animation: blinker 1.5s linear infinite;
    border: 1px dashed;
    padding: 2px 5px;
    display: inline-block;
    margin: 5px 0px;
}
@keyframes blinker {
    30% {
        color: #1e3b66;
    }
    60% {
        color: red;
    }
    100% {
        color: #ff9100;
    }
}
.booking_stops {
    display: inline-block;
    list-style: none;
    margin: 0;
    position: relative;
    padding: 0px;
}
.booking_stops li {
    line-height: 20px;
    text-align: left;
    margin-left: 4px;
    position: relative;
}
.booking_stops li::before {
    position: absolute;
    content: '';
    top: 8px;
    bottom: 0;
    left: 0px;
    width: .01rem;
    background: #c9c9c9;
    height: 100%;
}
.booking_stops li span {
    display: inline-block;
    margin-left: 15px;
    font-size: 14px;
    line-height: 26px;
}
.booking_stops .grey {
    background-color: var(--primaryColor);
    width: 10px;
    height: 10px;
    position: absolute;
    left: -4px;
    border-radius: 50%;
    top: 8px;
    z-index: 1;
}
.booking_stops .node_blank {
    background: var(--whiteColor)!important;
    border: 1px solid #c9c9c9!important;
}
.booking_stops li:last-child:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0px;
    width: .01rem;
    background: var(--whiteColor);
    height: 100%;
    top: 15px;
}
.total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.total_data {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}
.book_pay_logo{
    max-width: 100px;
    object-fit: contain;
}
.checkout_btn {
    background: var(--primaryColor);
    border: 0;
    border-radius: 5px;
    width: 100%;
    font-size: 18px;
    color: var(--whiteColor) !important;
    outline: none;
    box-shadow: none;
    padding: 8px;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
    text-transform: capitalize;
}
.checkout_btn:hover {
    opacity: 0.8;
}
.filter_label {
    margin-bottom: 2px;
    text-transform: capitalize;
}
.error_message_show{
    font-size: 14px !important;
    color: var(--primaryColor) !important;
}
.ticket_voucher_message{
    font-size: 14px !important;
    font-weight: 600 !important;
}
.phone_prefix_text_inp {
    border-radius: 0px 5px 5px 0px !important;
}
.seat-reservation-btn {
    background-color: var(--whiteColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px !important;
    border-radius: 5px;
    border: 1px solid #eeee;
}
.seats {
    display: flex;
    width: 100%;
}
.chair {
    margin: 0px 20px;
}
.seat-text {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.seat-reservation-btn:hover {
    background: #eee;
}
.nice-select .list {
    width: 100%;
}

.sidebar-wrap .pbodyb {
    display: flex;
    align-items: baseline;
}
input {
    outline: none !important;
}
.payment_check_box{
    margin-right: 10px;
}
.check_out_payment a{
    color: var(--primaryColor);
}
.check_out_payment a:hover {
    color: var(--textColor);
    text-decoration: underline;
}
/* Modal */
.hidden_bus_seat_layout_panel_bg {
    display: none;
    position: fixed;
    left: 0;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #31738d33;
    height: 100%;
    width: 100%;
    z-index: 88888;
    overflow: hidden !important;
}
.seat-catagory {
    position: absolute;
    background: var(--whiteColor);
    top: 15px !important;
    padding: 30px 30px 15px;
    width: 200px;
    z-index: 9;
    right: 400px;
}
.seat_legend_ttle h5 {
    color: var(--primaryColor);
    font-weight: 600;
    margin-bottom: 15px;
}
.seat-catagory .icon-left {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
.seat-catagory-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.seat-catagory .seat-icon-butn {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--whiteColor);
    border-radius: 10px;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.14);
}
.seat-icon-butn.available {
    background: var(--whiteColor) !important;
    border: 1px solid var(--whiteColor);
}
.seat-catagory-item p {
    margin: 0px;
    margin-left: 15px;
}
.seat-icon-butn.sold {
    background: #eaebed;
    border: 1px solid var(--lightGray);
}
.seat-icon-butn.selected {
    background: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}
.hidden_bus_seat_layout_panel {
    width: 400px;
    background: #eaeff5;
    position: fixed;
    z-index: 99999;
    top: 0px;
    right: 0px;
    bottom: 0px;
    padding-bottom: 50px;
}
.content-head {
    text-align: center;
}
.content-head h2 {
    font-size: 26px;
    margin: 10px 0 0;
    text-transform: capitalize;
    color: var(--primaryColor);
    font-weight: 600;
}
.reserve_location {
    font-size: 13px;
    color: #707070;
}
.close_seat_modal_btn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 30px;
    color: #707070;
    cursor: pointer;
    font-weight: 300;
}
.reservation-body {
    padding: 10px 15px;
}
.reservation_confirm_btn_wraper {
    background: var(--whiteColor);
    z-index: 999;
    width: 100%;
    height: 70px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid var(--lightGray);
    padding: 16px;
}
.reservation_confirm_btn {
    background: var(--primaryColor);
    padding: 0px 42px;
    font-size: 22px;
    color: var(--whiteColor);
    font-weight: 600;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    border-radius: 10px;
    top: 10px;
    transition: all ease-in-out 0.3s;
    border: 0px;
}
.reservation_confirm_btn {
    opacity: 0.8;
}
.busStructure-wrapper {
    padding: 12px !important;
    margin-bottom: 10px !important;
}
.main_status_box {
    background: var(--whiteColor);
    box-shadow: 0px 0px 5px 0px var(--lightGray);
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    border: 1px solid var(--lightGray);
    position: relative;
    overflow-y: auto;
    height: calc(95vh - 110px);
    padding: 0 0 0px  !important;
}
.tkt_check_box+label {
    display: inline-block;
    height: 40px;
    text-align: center;
    margin: 2px 0px;
    font-size: 12px;
    line-height: 40px;
    width: 40px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0px 2px 5px 1px rgb(0 0 0 / 14%);
    color: #333663 !important;
    border: 1px solid var(--whiteColor);
}
.seatStatusSold+label {
    background-color: #EAEBED !important;
    color: #333663;
    border: 1px solid #ddd;
    cursor: no-drop;
}
.tkt_check_box:checked+label {
    display: inline-block;
    background-color: var(--primaryColor) !important;
    border: 1px solid var(--primaryColor);
    cursor: pointer;
    color: var(--whiteColor) !important;
    font-size: 12px;
}
.booking_data_confirm_modal{
    max-width: 1200px;
}
.pay-details-box {
    margin: 5px 0;
    min-height: 435px;
    border: 1px solid #eee;
    border-radius: 10px;
    border-bottom: 3px solid var(--primaryColor);
    position: relative;
    height: 100%;
    max-height: 450px;
    overflow-y: auto;
}
.pay-details-box .title_Ablack {
    background: var(--primaryColor);
    display: block;
    margin: 0;
    padding: 8px 12px;
    border-bottom: 1px solid var(--primaryColor);
    color: var(--whiteColor) !important;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    border-radius: 10px 10px 0 0;
    font-weight: 500;
}
.pay-details-box td {
    padding: 3px 10px;
}
button.close_btn{
    border-radius: 50%;
    border: 1px solid #c31e2c;
    padding: 0px 10px 0px 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 25px;
    width: 35px;
    height: 35px;
}
.tkt_check_box {
    display: none;
}
.main_status_box td {
    border: 0;
    padding: 5px 15px;
    text-align: center !important;
}
.driver_imges{
    height: 50px !important;
}
