﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    /* Background Colors */
    --background-primary: #10C6CA;
    --background-secondary: #FB8D20;
    --background-light: #FFF;
    --background-muted: #E1E1E1;
    --background-disabled: #ACACAC;
    /* Hover States */
    --background-primary-hover: #4FD6DA;
    --background-secondary-hover: #FFA633;
    /* Text Colors */
    --text-primary: #444;
    --text-secondary: #10C6CA;
    --text-light: #FFF;
    --text-muted: #ACACAC;
    /* Gohub */
    --primary-background: #10C6CA;
    --secondary-background: #FB8D20;
    --primary-color: #444;
    --secondary-color: #10C6CA;
    --third-color: #FFF;
}
/*--------------------------------------------------------------
# Express Bus
--------------------------------------------------------------*/
.mobile-sub-hero:before {
    content: '';
    background-image: url(/assets/img/bg-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 60px;
    width: 100%;
    height: 221px;
    position: absolute;
    left: 0;
    top: -50px;
}

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    background: #FFF;
}

    #header .logo img {
        max-height: 28px;
    }

.mobile-sub-hero .mobile-main-container {
    position: relative;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    z-index: 3;
    margin-top: 70px;
}

.mobile-search-panel {
    position: relative;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 30px 23px 20px;
}

    .mobile-search-panel .input-box {
        position: relative;
        border-radius: 12px;
        background: #F5F5F5;
        height: 58px;
        cursor: pointer;
        padding-top: 7px;
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 7px;
        display: grid;
        align-items: center;
    }

    .mobile-search-panel .custom-input-box {
        padding-right: 19px;
    }

    .mobile-search-panel .input-box .header-label {
        font-size: 14px;
        color: #ACACAC;
        font-weight: 600;
        line-height: normal;
    }

    .mobile-search-panel .input-box .origin-ellipsis {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
    }

    .mobile-search-panel .input-box input {
        border: 0;
        outline: 0;
        background-color: transparent;
        padding: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
    }

    .mobile-search-panel .input-box .bx-transfer {
        color: var(--background-secondary);
    }

    .mobile-search-panel .input-box .icon {
        position: absolute;
        right: 21px;
        top: 17px;
        font-weight: 900;
    }

    .mobile-search-panel .input-box .bx-x {
        display: none;
        color: #AAA;
    }

    .mobile-search-panel .input-box img {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
    }

    .mobile-search-panel .origin-dropdown,
    .mobile-search-panel .destination-dropdown {
        display: none;
        position: absolute;
        background-color: white;
        border: 1px solid #ccc;
        width: 100%;
        z-index: 1000;
    }

        .mobile-search-panel .origin-dropdown.show,
        .mobile-search-panel .destination-dropdown.show {
            display: block;
        }

    .mobile-search-panel .origin-option,
    .mobile-search-panel .destination-option {
        padding: 8px;
        cursor: pointer;
    }

        .mobile-search-panel .origin-option:hover,
        .mobile-search-panel .destination-option:hover {
            background-color: #f0f0f0;
        }

    .mobile-search-panel .btn-search {
        width: 100%;
        height: 45px;
        color: #FFF;
        background: var(--background-secondary);
        border-radius: 12px;
        border: 0;
        outline: 0;
        font-weight: 700;
    }

.tabcontent {
    margin-top: 10px;
}

.title {
    line-height: normal;
    color: #FFF;
}

    .title h5 {
        font-size: 24px;
        font-weight: 700;
        line-height: normal;
        text-shadow: 0 2px 3px rgb(60 60 60 / 100%);
        margin-bottom: 0;
    }

    .title span {
        font-size: 14px;
        line-height: normal;
        text-shadow: 0px 2px 5px rgba(6, 90, 90, 0.75);
        font-weight: 400;
    }

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/

.mobile-express-modal {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(68, 68, 68, .5);
    overflow: hidden;
    z-index: 1055;
    opacity: 0;
    transition: opacity .4sease-out;
    animation: slideUp .4sease-out forwards;
}

    .mobile-express-modal.open {
        opacity: 1;
    }

    .mobile-express-modal .express-modal-dialog {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .mobile-express-modal .express-modal-content {
        position: relative;
        height: 100%;
        background: #F9F9F9;
        box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.25);
        z-index: 1180;
        overflow-y: scroll;
    }

    .mobile-express-modal .express-modal-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 32px 29px;
    }

        .mobile-express-modal .express-modal-header h5 {
            flex: 1;
            margin-bottom: 0;
            text-align: center;
            font-weight: 700;
            font-size: 16px;
        }

        .mobile-express-modal .express-modal-header i {
            position: absolute;
            right: 18px;
        }

    .mobile-express-modal .express-modal-body {
        padding: 10px 29px;
    }

        .mobile-express-modal .express-modal-body .search-input-box {
            border-radius: 12px;
            border: 1px solid #AAA;
            background: #FFF;
            height: 58px;
            padding: 13px 20px;
            display: flex;
            align-items: center;
            position: relative;
        }

    .mobile-express-modal .search-input-box i {
        margin-right: 1rem;
        color: #AAA;
    }

    .mobile-express-modal .search-input-box input {
        border: 0;
        outline: 0;
        background-color: transparent;
    }

    .mobile-express-modal .search-input-box .bx-x {
        display: none;
        position: absolute;
        right: 0;
        top: 17px;
        font-weight: 900;
    }

#EBOriginDropDown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
}

.mobile-express-modal ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .mobile-express-modal ul li h6 {
        font-size: 14px;
        font-weight: 700;
        line-height: normal;
        margin-top: 25px;
        margin-bottom: 20px;
    }

.mobile-express-modal .recent-wrapper {
    border-radius: 8px;
    background: #FFF;
    display: flex;
    margin-top: 14px;
    height: 84px;
}

    .mobile-express-modal .recent-wrapper .recent-route-item {
        background: #FFF;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        padding: 18px 9px 14px;
    }

        .mobile-express-modal .recent-wrapper .recent-route-item .item {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .mobile-express-modal .recent-wrapper .recent-route-item .icon {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid var(--background-primary);
            margin-bottom: 4px;
        }

        .mobile-express-modal .recent-wrapper .recent-route-item .dotted-line {
            height: 21px;
            border-left: 3px dotted var(--background-primary);
            position: absolute;
            top: 0;
            left: 5px;
            margin-left: 0.08rem;
        }

        .mobile-express-modal .recent-wrapper .recent-route-item .location-icon {
            padding-top: 16px;
        }

    .mobile-express-modal .recent-wrapper .recent-wrapper-item {
        overflow: hidden;
        padding: 15px 13px 14px 15px;
        flex: 1;
    }

        .mobile-express-modal .recent-wrapper .recent-wrapper-item .terminal-items {
            display: flex;
            align-items: center;
            justify-content: space-between;
            line-height: normal;
            position: relative;
        }

        .mobile-express-modal .recent-wrapper .recent-wrapper-item .route-ellipsis {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: block;
            max-width: 225px;
        }

        .mobile-express-modal .recent-wrapper .recent-wrapper-item .route-name {
            font-size: 15px;
            line-height: normal;
            font-weight: 400;
            flex: 1;
        }

        .mobile-express-modal .recent-wrapper .recent-wrapper-item .tcode {
            font-size: 14px;
            font-weight: 400;
            line-height: normal;
            overflow: hidden;
            white-space: nowrap;
            text-align: center;
            position: absolute;
            right: 0;
            color: #888888;
        }

.mobile-express-modal .route-boxs {
    border-radius: 16px;
    background: #FFF;
    width: 100%;
    height: 28px;
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
}

    .mobile-express-modal .route-boxs .icon {
        position: absolute;
        top: 9px;
        left: 9px;
        display: inline-block;
        width: 10px;
        height: 10px;
        border: 2px solid var(--background-primary);
        border-radius: 50%;
    }

    .mobile-express-modal .route-boxs .route-name {
        font-size: 15px;
        font-weight: 400;
        padding-top: 4px;
        padding-left: 40px;
        padding-bottom: 6px;
        padding-right: 15px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        max-width: 295px;
    }

    .mobile-express-modal .route-boxs .tcode {
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
        overflow: hidden;
        white-space: nowrap;
        text-align: center;
        position: absolute;
        top: 7px;
        right: 15px;
        color: #888888;
    }

/*--------------------------------------------------------------
# Bus Ticket
--------------------------------------------------------------*/
.mobile-busticket {
    padding: 0;
}

.mobile-section-header {
    margin-top: 12.5rem;
}

.mobile-header-trip {
    border: 1px solid #AAA;
    background: #FFF;
    width: 100%;
    height: 80px;
    padding-top: 8px;
    padding-left: 80px;
    padding-bottom: 6px;
    padding-right: 78px;
    position: relative;
    background: #FFF;
    border: 1px solid #AAA;
    margin-top: 58px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

    .mobile-header-trip .back-icon {
        position: absolute;
        top: 20px;
        left: 8px;
        color: #AAA;
    }

    .mobile-header-trip .header-date {
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 7px;
    }

    .mobile-header-trip .route-item {
        position: relative;
    }

        .mobile-header-trip .route-item .item {
            display: flex;
            align-items: center;
        }

            .mobile-header-trip .route-item .item .dotted-line {
                border: 2px dotted #10C6CA;
                height: 9px;
                position: absolute;
                top: 16px;
                left: 5px;
            }

            .mobile-header-trip .route-item .item .icon {
                border: 2px solid var(--background-primary);
                border-radius: 50%;
                background: #FFF;
                display: block;
                width: 10px;
                height: 10px;
                margin-left: 2px;
            }

            .mobile-header-trip .route-item .item .route-name {
                font-size: 14px;
                line-height: normal;
                margin-left: 16px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                width: 225px;
                flex: 1;
                margin-bottom: 0;
                font-weight: 400;
            }

        .mobile-header-trip .route-item .tcode {
            font-size: 12px;
            color: #888;
            line-height: normal;
        }

        .mobile-header-trip .route-item .route-p {
            padding-top: 9px;
        }

    .mobile-header-trip .p-icon {
        position: absolute;
        top: 28px;
        right: 20px;
        color: var(--background-primary);
    }

.mobile-filter-trip {
    border-left: 1px solid #AAA;
    border-bottom: 1px solid #AAA;
    border-right: 1px solid #AAA;
    background: #FFF;
    width: 100%;
    height: 62px;
    position: relative;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 138px;
    left: 0;
    right: 0;
    z-index: 10;
}

    .mobile-filter-trip .filter-item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
    }

mobile-filter-trip .filter-icon {
    width: 19px;
    height: 27px;
    display: flex;
    align-items: center;
}

.mobile-filter-trip .filter-txt {
    font-size: 16px;
    line-height: normal;
}

.mobile-filter-trip .filter-txt {
    font-size: 16px;
    line-height: normal;
}

.mobile-filter-trip .filter-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 23px;
    background: #AAA;
}

.mobile-listing-container {
    padding: 1rem;
}

    .mobile-listing-container .mobile-listing-header {
        margin-bottom: 20px;
    }

        .mobile-listing-container .mobile-listing-header .sub-title {
            font-size: 14px;
            color: #ACACAC;
            font-weight: 500;
            line-height: normal;
        }

.mobile-busticket .card {
    padding: 1rem;
    background: var(--third-text-color);
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    margin-bottom: 1rem;
}

#trip-listing-main .dash-border {
    border: 1px dashed #DDD;
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 65%;
}

#trip-listing-main .dash-border {
    border: 1px dashed #DDD;
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 65%;
}

#trip-listing-main .timeseat-lbl {
    font-weight: 400;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

#trip-listing-main .grey-lbl {
    color: #AAA;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
    padding-right: 0.3rem;
}

#trip-listing-main .e-price {
    color: #2DCCD3;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: end;
}

.mobile-modify-express-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 336px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 68, 68, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3sease, visibility .3sease;
}

    .mobile-modify-express-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-modify-express-modal .express-modal-dialog {
        margin-left: var(--l);
        margin-right: var(--r);
        position: relative;
        width: auto;
    }

    .mobile-modify-express-modal .express-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - 0.5rem* 2);
    }

    .mobile-modify-express-modal .express-modal-content {
        background: #FFF;
        width: var(--s);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 16px;
    }

    .mobile-modify-express-modal .express-modal-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 32px 29px 16px;
    }

        .mobile-modify-express-modal .express-modal-header h6 {
            flex: 1;
            margin-bottom: 0;
            text-align: center;
            font-weight: 700;
            font-size: 16px;
        }

        .mobile-modify-express-modal .express-modal-header i {
            position: absolute;
            right: 18px;
        }

    .mobile-modify-express-modal .express-modal-body {
        padding: 11px 25px 26px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

    .mobile-modify-express-modal .mobile-search-panel {
        padding: 0;
        background: unset;
        box-shadow: unset;
        text-align: left;
    }

.filter-eb-modal {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .4sease-out;
    animation: slideUp .4sease-out forwards;
}

    .filter-eb-modal.open {
        opacity: 1;
    }

    .filter-eb-modal .filter-eb-modal-dialog {
        height: 100%;
    }

    .filter-eb-modal .filter-eb-modal-content {
        height: 100%;
        background: #F9F9F9;
    }

    .filter-eb-modal .filter-eb-modal-header {
        position: relative;
        display: flex;
        align-items: center;
        padding: 29px;
        border: 1px solid #AAA;
        background: #FFF;
    }

.bx-chevron-left {
    color: #AAA;
}

.filter-eb-modal .filter-eb-modal-header h6 {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    line-height: normal;
    flex: 1;
}

.filter-eb-modal .filter-eb-modal-body {
    padding: 29px;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    max-height: calc(100% - 80px* 2);
}

.filter-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 19px;
}

.checkbox-wrapper-46 {
    margin-right: 24px;
    display: flex;
    align-items: center;
}

    .checkbox-wrapper-46 .cbx-guest {
        margin: auto;
        -webkit-user-select: none;
        user-select: none;
        cursor: pointer;
        top: 0;
        width: auto;
        height: auto;
        border: none;
    }

    .checkbox-wrapper-46 .cbx-guest .true-box:first-child svg {
        position: absolute;
        top: 4px;
        left: 4px;
        fill: none;
        stroke: #FFF;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 25px;
        stroke-dashoffset: 25px;
        transition: all 0.3sease;
        transition-delay: 0.1s;
        transform: translate3d(0, 0, 0);
    }

    .checkbox-wrapper-46 .inp-cbx:checked + .cbx-guest .true-box:first-child svg {
        stroke-dashoffset: 0;
    }

.countCAll {
    color: #AAA;
    font-size: 14px;
    margin-left: auto;
}

.count {
    color: #AAA;
    font-size: 14px;
    margin-left: 0 !important;
}

.filter-eb-modal .filter-eb-modal-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #F9F9F9;
    box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

    .filter-eb-modal .filter-eb-modal-footer .btn-clear {
        width: 100%;
        max-width: 150px;
        height: 45px;
        border: 1px solid var(--background-primary);
        border-radius: 12px;
        background-color: transparent;
        font-weight: 700;
        line-height: normal;
        color: #10C6CA;
    }

    .filter-eb-modal .filter-eb-modal-footer .btn-save {
        width: 100%;
        max-width: 150px;
        height: 45px;
        border: 0;
        border-radius: 12px;
        background: var(--background-secondary);
        font-weight: 700;
        line-height: normal;
        color: #FFF;
    }

.return-modal, .sort-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 350px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3sease, visibility .3sease;
}

    .return-modal.open, .sort-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .return-modal .return-modal-dialog-centered, .sort-modal .sort-modal-dialog-centered {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .return-modal .return-modal-dialog, .sort-modal .sort-modal-dialog {
        max-width: var(--s);
        margin-left: auto;
        margin-right: auto;
    }

    .sort-modal .sort-modal-content {
        background: #F9F9F9;
        width: 100%;
        border-radius: 12px;
    }

    .sort-modal .sort-modal-header {
        background: #F9F9F9;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        padding-top: 28px;
        padding-bottom: 18px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .sort-modal .sort-modal-header .close-modal {
            position: absolute;
            right: 18px;
        }

    .return-modal .return-modal-body, .sort-modal .sort-modal-body {
        padding: 26px;
    }

.sort-modal-dialog .sort-item {
    position: relative;
    border-radius: 60px;
    background: #FFF;
    border: 1px solid #EEEEEE;
    width: 100%;
    height: 35px;
    margin-bottom: 10px;
    transition: all .3s;
    display: flex;
    text-align: center;
    justify-content: center;
}

    .sort-modal-dialog .sort-item.active {
        background: #10C6CA;
        color: #FFF;
        height: 35px;
        display: flex;
        text-align: center;
        justify-content: center;
    }

        .sort-modal-dialog .sort-item.active > i {
            display: inline-block;
        }

    .sort-modal-dialog .sort-item > i {
        display: none;
        position: absolute;
        top: 4px;
        left: 16px;
    }

    .sort-modal-dialog .sort-item.active .text-center {
        display: flex;
        align-items: center;
    }

#seatlayout {
    background: #F9F9F9;
    border-radius: 16px 16px 0 0;
    height: 100%;
    overflow: auto;
    display: none;
    animation: moveUp .5slinear;
    transform: translateY(100%);
    user-select: none;
}

    #seatlayout.open {
        transform: translateY(0);
    }

    #seatlayout .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        width: 100% !important;
    }

    #seatlayout .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        transform: scale(1);
        width: 37.757px;
        height: 10.488px;
        flex-shrink: 0;
        border-radius: 12px;
        border: 1px solid #CCC;
        background: #10C6CA;
    }

    #seatlayout .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        transform: scale(1);
        width: 37.757px;
        height: 10.488px;
        flex-shrink: 0;
        border-radius: 12px;
        border: 1px solid #CCC;
        background: #FFF;
        opacity: 10;
    }

    #seatlayout .swiper-button-next, .swiper-button-prev {
        position: absolute;
        top: var(--swiper-navigation-top-offset, 50%);
        width: 14px;
        height: 7px;
        margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #AAA;
    }

    #seatlayout .seats {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin-top: 1rem;
    }

    #seatlayout .seat {
        position: relative;
        flex: 1;
        text-align: center;
    }

    #seatlayout .driver-icon {
        width: 53px;
        height: 53px;
        flex-shrink: 0;
    }

    #seatlayout .seat-no {
        display: flex;
        width: 49px;
        height: 30px;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
        position: absolute;
        font-size: 16px;
        color: var(--text-color);
        text-align: center;
        top: 50%;
        left: 50%;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        transform: translate(-50%, -50%);
    }

    #seatlayout .seats .available-icon {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        fill: #EAEAEA;
    }

    #seatlayout .footer-next {
        background: #FFFFFF;
        border: 1px solid #AAAAAA;
        text-align: center;
        position: sticky;
        bottom: 0;
        width: 100%;
        padding-bottom: 1.5rem;
    }

        #seatlayout .footer-next .title-footer {
            color: #AAA;
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: 0.15px;
        }

    #seatlayout .btn-genaral {
        width: 222px;
        font-weight: 700;
        background: #FB8D20;
        color: #FFFFFF;
        width: 290px;
        border-radius: 12px;
        height: 42px;
    }

        #seatlayout .btn-genaral:disabled {
            width: 222px;
            background: #AAA;
            color: #FFF;
        }

    #seatlayout .title-select {
        color: #444;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.15px;
    }

    #seatlayout .seat-no-selected {
        display: flex;
        width: 49px;
        height: 30px;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
        position: absolute;
        font-size: 16px;
        color: #FFF;
        text-align: center;
        top: 50%;
        left: 50%;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        transform: translate(-50%, -50%);
    }

    #seatlayout .footer-next .legend-more {
        display: none;
    }

.btn-skip {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 12px;
}

.skip-modal.open {
    opacity: 1;
    visibility: visible;
}

.skip-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 350px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3sease, visibility .3sease;
}

    .skip-modal .skip-modal-dialog-centered {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .skip-modal .skip-modal-dialog {
        max-width: var(--s);
        margin-left: auto;
        margin-right: auto;
    }

    .skip-modal .skip-modal-content {
        background: #F9F9F9;
        width: 100%;
        border-radius: 12px;
    }

    .skip-modal .skip-modal-header {
        background: #FFF;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        padding-top: 28px;
        padding-bottom: 18px;
        border-bottom: 1px solid #EEE;
    }

        .skip-modal .skip-modal-header h6 {
            margin-bottom: 0;
            font-weight: 700;
            font-size: 16px;
            line-height: normal;
            text-align: center;
        }

    .skip-modal .skip-modal-body {
        padding: 26px;
    }

        .skip-modal .skip-modal-body .body-title {
            line-height: normal;
            margin-bottom: 27px;
            text-align: center;
        }

        .skip-modal .skip-modal-body .btn-yes {
            background: var(--background-secondary);
            color: #FCFCFC;
            font-weight: 700;
            line-height: normal;
            border-radius: 12px;
            outline: 0;
            border: 0;
            padding: 10.5px;
            width: 222px;
            transition: all .3s;
        }

        .skip-modal .skip-modal-body .btn-no {
            background-color: transparent;
            border: 0;
            outline: 0;
            font-weight: 700;
            line-height: normal;
            margin: 30px auto 0;
            width: fit-content;
            color: #444;
        }

.mobile-busticket .no-trip-section {
    padding: 2rem;
    text-align: center;
}

    .mobile-busticket .no-trip-section h4 {
        color: #AAA;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0;
        line-height: normal;
    }

    .mobile-busticket .no-trip-section p {
        color: #CCC;
        font-size: 14px;
        margin-bottom: 0;
        line-height: normal;
    }

.end {
    margin-top: 26px;
}

    .end hr {
        width: 50%;
    }

    .end span {
        margin: 0 54px;
        color: #AAA;
        line-height: normal;
    }

.caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-title {
    font-size: 16px !important;
    font-family: 'Roboto' !important;
}

.caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-title {
    background: #FFF !important;
    border-bottom: 0 !important;
}

.caleran-container-mobile .caleran-input .caleran-calendars .caleran-calendar .caleran-title {
    color: var(--primary-color) !important;
}

.caleran-footer {
    display: none;
}

#sortModal .modal-header, #pickModal .modal-header {
    background: #F9F9F9;
    border-bottom: none;
    border: 0;
}

.modal-dialog .modal-header {
    background: #FFF;
    border-bottom: none;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #AAA;
    padding: 20px;
}

.modal-title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    line-height: normal;
    flex: 1;
    padding-left: 2rem;
}

.btn-genaral {
    background: #FB8D20;
    color: #FFFFFF;
    width: 290px;
    border-radius: 12px;
    height: 42px;
}

.return-modal .return-modal-content {
    background: #FFF;
    width: 100%;
    border-radius: 12px;
}

.return-modal .return-modal-header {
    background: #FFF;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding-top: 28px;
    padding-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .return-modal .return-modal-header h6, .sort-modal .sort-modal-header h6 {
        margin-bottom: 0;
        font-weight: 700;
        font-size: 16px;
        line-height: normal;
        text-align: center;
    }

.return-modal .return-modal-body .body-title {
    line-height: normal;
    margin-bottom: 27px;
    text-align: center;
}

.return-modal .return-modal-body .input-box {
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #AAA;
    background: #FFF;
    height: 58px;
    padding: 6px 20px 10px 20px;
    margin-bottom: 34px;
    cursor: pointer;
}

    .return-modal .return-modal-body .input-box .header-label {
        display: none;
        color: #ACACAC;
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
    }

    .return-modal .return-modal-body .input-box input {
        background-color: transparent;
        outline: 0;
        border: 0;
        padding: 0;
        width: 100%;
        cursor: pointer;
    }

.return-modal .return-modal-body .btn-confirm {
    margin-left: 0;
    width: 222px;
    border-radius: 12px;
    padding: 12px;
    background: var(--background-secondary);
    outline: 0;
    border: 0;
    transition: all .3s;
    color: #FCFCFC;
    font-weight: 700;
}

.return-modal .return-modal-body .btn-skip {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-weight: 700;
    line-height: normal;
    margin: 30px auto 0;
    width: fit-content;
    color: #444;
    font-size: 16px;
    text-decoration: none;
}

.btn-modal {
    background: var(--secondary-background);
    width: 222px;
    font-size: 18px;
    font-weight: 700;
    color: #FCFCFC;
}
