.choose_info label {
    font-size: 11px;
    color: #bebebe;
}

.reservation_content {
    padding: 50px 15px;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    padding: 15px;
    font-weight: bold;
}

.bg_secondary {
    background-color: var(--bs-info);
    color: white;
}

.list_seat {
    margin-top: 35px;
}

.layout-drawer svg {
    height: 70px;
    width: 40px;
}

.layout-drawer td:hover {
    cursor: pointer;
}

.layout-drawer td.disabled:hover {
    cursor: not-allowed;
}

.layout-drawer img {
    height: 60px;
    display: block;
    margin: 0px auto;
}

.layout-drawer label:not(.driver) {
    position: absolute;
    margin-top: 40px;
    margin-left: -10px;
    color: white;
    font-weight: bold;
    width: 20px;
}

.layout-drawer .seat {
    display: none;
}

.layout-drawer td.selected svg path {
    fill: var(--bs-teal) !important;
}

.layout-drawer td.reserved svg path {
    fill: var(--bs-red) !important;
}

.box_col span {
    width: 10px;
    height: 10px;
    border: 1px solid #414042;
    display: inline-block;
    margin-top: 10px;
}

.box_col.box_available span {
    background-color: #414042;
}

.box_col.box_choose span {
    background-color: var(--bs-teal);
}

.box_col.box_reserve span {
    background-color: var(--bs-red);
}

.box_col.box_disable span {
    background-color: var(--bs-gray);
}

.bootbox.modal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bootbox .modal-header {
    display: block;
}

.form_group {
    background-color: #f7f7f7;
    padding: 10px 25px;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    margin-bottom: 15px;
}

.form_group label {
    width: 100%;
    color: #393939;
    line-height: 1.5;
    text-transform: uppercase;
    font-size: 12px;
}

.form_group input {
    border: none;
    display: block;
    width: 100%;
    background: 0 0;
    font-family: Montserrat-SemiBold;
    font-size: 18px;
    color: #999;
    line-height: 1.2;
    height: 30px;
    padding-left: 15px;
}

.otp {
    width: 100%;
    border: none;
    border-bottom: 2px solid #414042;
    font-size: 48px;
    text-align: center;
    margin-top: 20px;
    outline: none;
    font-weight: bold;
}

.notes {
    color: red;
    font-size: 11px;
    margin-top: 5px;
    font-weight: bold;
}

.my_btn_close_otp {
    position: absolute;
    right: 20px;
    top: 20px;
}

.my_btn_verification_otp, .my_btn_resend_otp {
    width: 100%;
}

.voucher {
    padding: 15px 10px;
    border-radius: 15px;
    margin-top: 10px;
    position: relative;
    background-color: #f1f1f1;
}

.voucher:before, .voucher:after {
    position: absolute;
    content: "";
    height: 40px;
    border-radius: 40px;
    z-index: 1;
    top: 50px;
    background-color: white;
    width: 40px;
}

.voucher:before {
    left: -20px;
}

.voucher:after {
    right: -20px;
}

.voucher .main {
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
    align-items: center;
}

.voucher .co-img img {
    width: 100px;
    height: 100px;
    margin-left: -10px;
}

.voucher .vertical {
    border-left: 3px dashed #8888;
    height: 100px;
    position: absolute;
    left: 40%;
}

.voucher .content .disc_value {
    font-size: 28px;
    color: red;
}

.voucher_search_result .voucher-not-found {
    padding: 5px;
    color: red;
    font-weight: bold;
    float: right;
}

.voucher .content h2 {
    font-size: 18px;
    color: #565656;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.voucher .content p {
    color: #696969;
    font-size: 14px;
}

.box_seat {
    border: var(--border-primary);
    padding: 15px;
    border-radius: 15px;
    margin: 15px;
}

.box_seat input {
    margin-bottom: 5px;
}

.my_modal {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, .8);
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my_modal .border-box {
    max-width: 450px;
    background: white;
    padding: 20px;
    border-radius: 15px;
}

.send_otp {
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none !important;
    text-align: center;
    text-align: left;
    padding-left: 15px;
    padding-top: 2px;
}

.countdown-border {
    border-radius: 50%;
    width: 27px;
    height: 27px;
    border: 2px solid #414042;
    border-right: 4px dotted #414042;
    position: absolute;
    right: -6px;
    top: 0px;
    animation: spin 2s linear infinite;
}

.countdown label {
    font-size: 11px;
}

.my_close {
    position: absolute;
    color: white;
    font-size: 32px;
    top: 35px;
    right: 35px;
}

@media screen and (max-width: 1200px) {
    .voucher .content .disc_value {
        font-size: 22px;
    }
}

@media screen and (max-width: 1024px) {
    .seat_qty {
        font-size: 32px;
        text-align: center;
    }
}