@font-face {
    font-family: 'thonburi';
    src: url('../plugin/font/Thonburi.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../plugin/font/Poppins-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sukhumvit';
    src: url('../plugin/font/SukhumvitSet-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Kanit';
    src: url('../plugin/font/Kanit-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

:root {
    --theme-color: #ff6700;
    --title-color: #333333;
    --text-color: #2b2b2b;
    --gray-color: #adb5bd;

    /* --fz-sm: 14px;
    --fz-md: 16px;
    --fz-lg: 18px;
    --fz-xl: 22px;
    --fz-xxl: 26px; */

    --fz-sm: 12px;
    --fz-md: 14px;
    --fz-lg: 16px;
    --fz-xl: 20px;
    --fz-xxl: 24px;

    --fw-sm: 400;
    --fw-md: 500;
    --fw-lg: 600;
    --fw-xl: bold;
    --radius: 16px;
}

body {
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #ffffff;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    font-size: var(--fz-md);
}

.fz-sm {
    color: var(--text-color);
    font-size: var(--fz-sm) !important;
}

.fz-md {
    color: var(--text-color);
    font-size: var(--fz-md) !important;
}

.fz-lg {
    color: var(--text-color);
    font-size: var(--fz-lg) !important;
}

.fz-xl {
    color: var(--text-color);
    font-size: var(--fz-xl) !important;
}

.fz-xxl {
    color: var(--text-color);
    font-size: var(--fz-xxl) !important;
}

.fw-sm {
    font-weight: var(--fw-sm) !important;
}

.fw-md {
    font-weight: var(--fw-md) !important;
}

.fw-lg {
    font-weight: var(--fw-lg) !important;
}

.fw-xl {
    font-weight: var(--fw-xl) !important;
}

.fw-bold {
    font-weight: bold !important;
}

.fw-normal {
    font-weight: normal !important;
}

.fc-text {
    color: var(--text-color) !important;
}

.fc-theme {
    color: var(--theme-color) !important;
}

.fc-title {
    color: var(--title-color) !important;
}

.btn-theme {
    background-color: var(--theme-color);
    text-decoration: none;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: var(--fz-md);
    font-weight: var(--fw-md);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;

    &:hover {
        background-color: #e65c00;
    }
}

.navbar {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0px 1px 6px rgb(0 0 0 / 15%);
    padding: 10px 20px;

    @media (max-width: 500px) {
        & {
            padding: 10px 10px;

            .container-fluid {
                padding: 0;
            }
        }
    }

    .navbar-brand {
        padding-right: 20px;

        img {
            height: 27px;
        }
    }

    .navbar-toggler {
        border: 0;
        background-color: rgb(248, 249, 250);
        color: #000;

        &:focus {
            outline: none;
            box-shadow: none;
        }

        .toggler-icon {
            i {
                font-size: 30px;
                color: var(--text-color);
            }
        }

    }

    .nav-item {
        .nav-link {
            color: var(--text-color);
            font-weight: var(--fw-sm);
            font-size: var(--fz-lg);
            padding: 10px 15px 4px 15px;
            text-decoration: none;

            &:hover {
                color: var(--theme-color);
            }

            &.active {
                color: var(--theme-color);
                font-weight: var(--fw-sm);
            }
        }
    }

    .navbar-contact {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 0;
        gap: 10px;

        .dropdown-action {
            position: relative;
            display: inline-block;

            .btn {
                background-color: transparent;
                border: none;
                padding: 0;
                cursor: pointer;
                outline: none;

                img {
                    width: 30px;
                    height: 30px;
                    border-radius: 50%;
                    transition: all 0.3s ease;
                    margin: 0px 0px 0px 10px;

                    &:hover {
                        transform: scale(1.1);
                    }
                }

                span {
                    font-size: var(--fz-lg);
                    font-weight: var(--fw-sm);
                    color: #1b1b1b;
                }
            }

            .language {
                width: 200px;
                padding: 10px;
                margin: 18px -20px 0px 0px;
                background-color: #fff;
                box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
                border-radius: 10px;
                top: 100%;
                right: 0;
                z-index: 10;


                ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    li {
                        a {
                            display: flex;
                            align-items: center;
                            padding: 10px 20px;
                            text-decoration: none;
                            color: #1b1b1b;

                            img {
                                width: 30px;
                                height: 30px;
                                margin-right: 10px;
                                transition: all 0.3s ease;
                            }

                            span {
                                font-size: var(--fz-lg);
                                font-weight: var(--fw-sm);
                                color: #1b1b1b;
                            }

                            &:hover {
                                background-color: #f0f0f08f;

                                img {
                                    transform: scale(1.1);
                                }

                                span {
                                    color: #3b3b3b;
                                    font-weight: var(--fw-lg);
                                }
                            }
                        }

                        &:first-child {
                            a {
                                &:hover {
                                    border-radius: 10px 10px 0 0;
                                }
                            }
                        }

                        &:last-child {
                            a {
                                &:hover {
                                    border-radius: 0 0 10px 10px;
                                }
                            }
                        }
                    }
                }
            }

            .profile {
                width: 360px;
                padding: 10px;
                margin: 18px 0px 0px 0px;
                background-color: #fff;
                box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
                border-radius: 10px;
                top: 100%;
                right: 0;
                z-index: 10;

                ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    .separator {
                        height: 1px;
                        background-color: #e0e0e0;
                        margin: 10px 0;
                    }

                    li {
                        padding: 10px 20px;

                        a {
                            cursor: pointer;
                            text-decoration: none;
                            color: var(--text-color);
                            font-size: var(--fz-lg);
                            font-weight: var(--fw-sm);

                            &:hover {
                                color: var(--theme-color);
                                font-weight: var(--fw-lg);
                            }

                            &.active {
                                color: var(--theme-color);
                                font-weight: var(--fw-lg);
                            }
                        }

                        .card-profile {
                            background-color: #f1f1f1;
                            border-radius: 10px;
                            padding: 15px 15px;
                            display: flex;
                            align-items: center;
                            text-decoration: none;

                            .card-img {
                                width: 50px;
                                height: 50px;
                                border-radius: 50%;
                                overflow: hidden;
                                margin-right: 10px;

                                img {
                                    width: 100%;
                                    height: auto;
                                }
                            }

                            .card-body {
                                .card-name {
                                    font-size: var(--fz-lg);
                                    font-weight: var(--fw-sm);
                                }

                                .card-type {
                                    font-size: var(--fz-lg);
                                    color: #888;
                                }
                            }
                        }

                        .card-menu {
                            .wrapper {
                                display: flex;
                                flex-direction: row;
                                justify-content: space-between;
                                align-items: center;
                                padding: 15px 10px 5px 10px;

                                .card-item {
                                    display: flex;
                                    align-items: center;
                                    padding: 5px 10px;
                                    cursor: pointer;

                                    a {
                                        display: flex;
                                        flex-direction: column;
                                        align-items: center;
                                        text-decoration: none;

                                        i {
                                            font-size: var(--fz-xl);
                                            color: var(--theme-color);
                                            transition: all 0.3s ease;
                                        }

                                        span {
                                            font-size: var(--fz-sm);
                                            font-weight: var(--fw-sm);
                                            color: var(--text-color);
                                        }

                                        &:hover {
                                            i {
                                                transform: scale(1.1);
                                            }

                                            span {
                                                color: var(--theme-color);
                                                font-weight: var(--fw-lg);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .menu {
                position: absolute;
                visibility: hidden;
                opacity: 0;
                transition: all 0.3s ease;
                transform: translateY(-10px);

                &.show {
                    visibility: visible;
                    opacity: 1;
                    transform: translateY(0);
                }

                &:before {
                    content: " ";
                    position: absolute;
                    top: -10px;
                    right: 20px;
                    z-index: 8;
                    border-width: 5px;
                    border-right: 15px solid transparent;
                    border-left: 15px solid transparent;
                    border-bottom: 10px solid rgb(0 0 0 / 10%);
                }

                &:after {
                    content: " ";
                    position: absolute;
                    top: -9px;
                    right: 20px;
                    z-index: 9;
                    border-width: 5px;
                    border-right: 15px solid transparent;
                    border-left: 15px solid transparent;
                    border-bottom: 10px solid #fff;
                }

            }
        }

        .btn-login {
            background-color: var(--theme-color);
            color: #ffffff;
            padding: 5px 15px;
            font-size: var(--fz-lg);

            &:hover {
                background-color: #e65c00;
            }
        }
    }
}

.sidebar {
    display: none;

    @media (max-width: 991px) {
        & {
            display: flex;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            z-index: 10;
            overflow-x: hidden;
            overflow-y: auto;
            transition: all 0.3s ease;
            transform: translateX(100%);

            &.active {
                transform: translateX(0);
            }

            .sidebar-content {
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                background-color: #ffffff;

                .sidebar-body {
                    background-color: #f8f9fa;
                    padding: 90px 10px 0px 10px;
                    flex: 1;
                    overflow-y: auto;
                    padding-bottom: 0;

                    .sidebar-profile {
                        margin-bottom: 20px;
                        border-bottom: 1px solid #ccc;

                        .card-profile {
                            display: flex;
                            align-items: center;
                            margin-bottom: 10px;
                            padding: 15px 20px;
                            background-color: #ff572217;
                            border-radius: var(--radius);
                            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                            cursor: pointer;

                            .card-img {
                                width: 60px;
                                height: 60px;
                                border-radius: 50%;
                                overflow: hidden;
                                margin-right: 10px;

                                img {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                }
                            }

                            .card-content {
                                .card-account-name {
                                    font-weight: var(--fw-sm);
                                    font-size: var(--fz-md);
                                }

                                .card-account-type {
                                    font-size: var(--fz-md);
                                    color: #6c757d;
                                }
                            }

                            @media (max-width: 400px) {
                                & {
                                    .card-img {
                                        width: 40px;
                                        height: 40px;
                                    }
                                }
                            }
                        }

                        .card-service {
                            display: flex;
                            flex-wrap: nowrap;
                            justify-content: center;
                            align-items: center;
                            margin-bottom: 10px;

                            .card-item {
                                width: 100%;
                                padding: 10px;
                                margin: 0 5px;
                                cursor: pointer;

                                a {
                                    display: flex;
                                    flex-direction: column;
                                    align-items: center;
                                    justify-content: center;
                                    text-decoration: none;
                                    color: var(--text-color);
                                    font-size: var(--fz-md);
                                    display: flex;
                                    align-items: center;

                                    i {
                                        color: var(--theme-color);
                                        font-size: 30px;
                                    }

                                    &:hover {
                                        background-color: unset;
                                    }
                                }

                                @media (max-width: 400px) {
                                    & {
                                        padding: 5px;
                                        margin: 0 2px;

                                        a {
                                            font-size: var(--fz-sm);

                                            i {
                                                font-size: var(--fz-xl);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }

                    .sidebar-menu {
                        ul {
                            list-style: none;
                            padding: 0;
                            margin: 0;

                            li {
                                margin: 20px 0;

                                a {
                                    text-decoration: none;
                                    color: var(--text-color);
                                    font-size: var(--fz-lg);
                                    padding: 10px;
                                    border-radius: 5px;

                                    &:hover {
                                        background-color: unset;
                                    }

                                    img {
                                        width: 25px;
                                        height: 25px;
                                        margin-left: 10px;
                                    }

                                    &.btn-login {
                                        background-color: #fff;
                                        color: var(--theme-color);
                                        border: 1px solid var(--theme-color);
                                        padding: 10px 20px;
                                        border-radius: 5px;
                                        text-align: center;
                                        font-size: var(--fz-lg);
                                        font-weight: var(--fw-lg);
                                    }
                                }

                                &.separator {
                                    height: 1px;
                                    background-color: #dee2e6;
                                    margin: 10px 0;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.modal-language {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;

    &.show {
        opacity: 1;
        visibility: visible;
    }

    .modal-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 250px;
        height: auto;
        transform: translate(-50%, -50%);
        background-color: #fff;
        border-radius: var(--radius);
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

        .box-close {
            position: absolute;
            top: 0px;
            right: 0px;

            button {
                background: none;
                border: none;
                cursor: pointer;
                border-radius: 50px;
                background-color: unset;
                color: var(--text-color);
                width: 45px;
                height: 45px;
                font-size: 18px;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
            }
        }

        .box-body {
            padding: 0px;

            ul {
                list-style: none;
                padding: 0;
                margin: 0;

                li {
                    padding: 10px 0;

                    a {
                        display: flex;
                        align-items: center;
                        text-decoration: none;

                        img {
                            width: 30px;
                            height: 30px;
                            margin-right: 10px;
                        }

                        span {
                            font-size: var(--fz-md);
                            font-weight: var(--fw-md);
                            color: var(--text-color);
                        }

                        i {
                            font-size: var(--fz-lg);
                            color: var(--theme-color);
                            margin-left: 5px;
                        }
                    }
                }
            }
        }
    }
}

.form-search {
    width: 100%;
    height: 100%;

    .wrapper-search {
        position: relative;
        margin-top: 60px;
        width: 100%;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: end;

        @media (max-width: 1500px) {
            & {
                height: 450px;
            }
        }

        .banner-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;

            .owl-carousel {
                .item {
                    width: 100%;
                    height: 100%;

                    img {
                        width: 100%;
                    }
                }

                @media (max-width: 1200px) {
                    & {
                        display: none;
                    }
                }

                .owl-dots {
                    position: absolute;
                    bottom: 5px;
                    right: 50px;
                    transform: translateX(-50%);
                    z-index: 1;
                }
            }

            @media (max-width: 1200px) {
                & {
                    /* background: url("../images/banner/banner-orang.png") no-repeat center center; */
                    background-color: #ffffff;
                }
            }
        }

        .content {
            position: relative;
            max-width: 1080px;
            width: 100%;

            .card-title {
                display: none;
            }

            .card-search {
                background-color: #ffffff;
                border-radius: var(--radius);
                padding: 20px;
                box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 3px;

                .card-title {
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    text-align: center;
                    margin-bottom: 5px;

                    h1 {
                        font-size: var(--fz-xl);
                        font-weight: var(--fw-sm);
                        color: var(--text-color);

                        strong {
                            font-size: var(--fz-xl);
                            font-weight: var(--fw-xl);
                            color: var(--theme-color);
                            margin: 0 5px;
                        }
                    }
                }

                .container-search {

                    label {
                        font-size: var(--fz-sm);
                        color: #999999;
                    }

                    input[type="text"] {
                        background-color: #ffffff !important;
                        font-size: var(--fz-lg) !important;
                    }

                    .box-centent {
                        border-radius: unset;
                        padding: unset;
                        box-shadow: unset;
                        background-color: unset;

                        .form-search-trip {

                            .card-origin,
                            .card-destination,
                            .card-date .card-departure,
                            .card-date .card-return,
                            .card-passengers-button .card-passenger {
                                background-color: #ffffff !important;

                                span {
                                    font-size: var(--fz-lg) !important;
                                    font-weight: var(--fw-md) !important;
                                }

                                small {
                                    font-size: var(--fz-sm) !important;
                                    font-weight: var(--fw-sm) !important;
                                }

                                i {
                                    font-size: var(--fz-xl) !important;
                                }
                            }

                            .card-passengers-button {
                                .btn-search {
                                    font-size: var(--fz-lg);
                                    font-weight: var(--fw-md) !important;
                                }
                            }

                        }
                    }

                }
            }
        }

        @media (max-width: 1850px) {
            & {
                height: 510px;
            }
        }

        @media (max-width: 1800px) {
            & {
                height: 490px;
            }
        }

        @media (max-width: 1750px) {
            & {
                height: 480px;
            }
        }

        @media (max-width: 1700px) {
            & {
                height: 470px;
            }
        }

        @media (max-width: 1650px) {
            & {
                height: 460px;
            }
        }

        @media (max-width: 1600px) {
            & {
                height: 450px;
            }
        }

        @media (max-width: 1550px) {
            & {
                height: 440px;
            }
        }

        @media (max-width: 1400px) {
            & {
                height: 430px;
            }
        }

        @media (max-width: 1300px) {
            & {
                height: 410px;
            }
        }

        @media (max-width: 1200px) {
            & {
                height: 520px;
                align-items: center;

                .content {
                    & {
                        /* z-index: unset; */
                        padding: 0 20px;

                        .card-title {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            text-align: center;
                            margin: 15px 0;

                            h1 {
                                font-size: var(--fz-xxl);
                                font-weight: var(--fw-sm);
                                color: var(--theme-color);

                                strong {
                                    font-size: var(--fz-xxl);
                                    font-weight: var(--fw-xl);
                                    color: var(--theme-color);
                                    margin: 0 5px;
                                }
                            }
                        }

                        .card-search {
                            .card-title {
                                display: none;
                            }
                        }
                    }
                }
            }
        }

        @media (max-width: 790px) {
            & {
                height: 670px;
            }
        }

        @media (max-width: 768px) {
            & {
                height: 620px;

                .content {
                    & {
                        padding: 0px 12px;
                    }
                }
            }
        }

        @media (max-width: 500px) {
            & {
                .content {
                    .card-title {
                        h1 {
                            font-size: 22px;

                            strong {
                                font-size: 22px;
                            }
                        }
                    }

                    .card-search {
                        .container-search {
                            .box-centent {
                                .form-search-trip {
                                    .card-passengers-button {
                                        .btn-search {
                                            font-size: 18px !important;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.available-trip {
    .wrapper-search {
        margin-top: 62px;

        .container-wrapper {
            height: 250px;
            align-content: center;
            background: url("<?= $_images ?>popular-route/phet.jpg");
            background-size: cover;

            .box-search {
                max-width: 1080px;
                padding: 0;
                text-align: center;

                h1 {
                    font-size: var(--fz-xxl);
                    color: #FFF;
                }
            }
        }

        @media (max-width: 840px) {
            .container-wrapper {
                height: 350px;
            }
        }

        @media (max-width: 500px) {
            .container-wrapper {
                height: 570px;
            }
        }
    }

    .wrapper-trip {
        display: flex;
        justify-content: center;
        padding: 50px 0 40px 0;

        .desktop {
            width: 100%;
            max-width: 1080px;
        }

        .mobile {
            width: 100%;

            .content {
                .trip-list {
                    img {
                        width: 50px !important;
                    }
                }

                .list {
                    align-items: start !important;

                    h5 {
                        font-size: var(--fz-lg);
                        font-weight: bold;
                    }

                    .price {
                        font-weight: bold;
                        color: red;
                    }
                }
            }
        }

        .header {
            margin-bottom: 20px;

            .route {
                .route-body {
                    .icon-bus {
                        padding-right: 0px;

                        i {
                            font-size: 30px;
                            color: var(--theme-color);
                            margin-right: 10px;
                        }
                    }

                    .route-detail {
                        .route-type {
                            color: var(--theme-color);
                        }

                        .route-departure,
                        .route-return {
                            i {
                                margin: 0 5px;
                                color: var(--theme-color);
                            }
                        }
                    }
                }
            }
        }

        .date-picker {
            margin-bottom: 20px;

            .date-body {
                .date-list {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    list-style: none;
                    margin: 0;
                    padding: 0;

                    .item {
                        flex: 1;
                        padding: 15px 0;
                        text-align: center;
                        font-size: var(--fz-md);
                        color: var(--text-color);
                        cursor: pointer;
                        border-bottom: 2px solid var(--theme-color);

                        &.active {
                            font-weight: var(--fw-xl);
                            color: var(--theme-color);
                            border-top: 2px solid var(--theme-color);
                            border-left: 2px solid var(--theme-color);
                            border-right: 2px solid var(--theme-color);
                            border-bottom: none !important;
                            border-radius: 5px 5px 0 0;
                        }
                    }

                    .prev,
                    .next {
                        padding: 0 10px;
                        text-align: center;

                        a {
                            font-size: var(--fz-lg);
                            color: var(--theme-color);

                            .bi::before,
                            [class^="bi-"]::before,
                            [class*=" bi-"]::before {
                                font-weight: bold !important;
                            }
                        }
                    }
                }
            }
        }

        .content {
            margin-bottom: 20px;
            padding: 0 12px;

            .content-body {

                .header-trip,
                .list {
                    align-items: center;
                    text-align: center;
                }

                .header-trip {
                    border-radius: 5px;
                    background-color: var(--theme-color);
                    color: #FFFFFF;
                    padding: 20px 0;
                }

                .trip-list {
                    .list {
                        display: flex;
                        border: 1px solid #ddd;
                        border-radius: 5px;
                        margin-top: 10px;
                        padding-top: 10px;
                        padding-bottom: 10px;

                        img {
                            width: 60px;
                        }

                        .form-check-input {
                            float: none !important;
                            height: 20px;
                            width: 20px;
                            border: 2px solid var(--gray-color);
                        }

                        .form-check-input:checked {
                            background-color: var(--theme-color);
                            border-color: var(--theme-color) !important;
                        }
                    }

                    .list:hover {
                        cursor: pointer;
                        background-color: rgba(255, 190, 130, 0.40);
                        border-color: rgba(255, 190, 130, 0.40);
                    }

                    .list-selected {
                        background-color: rgba(255, 190, 130, 0.59) !important;
                        border-color: rgba(255, 190, 130, 0.59) !important;
                    }

                    .list.disable {
                        cursor: not-allowed !important;

                        .seat {
                            color: red !important;
                        }
                    }

                    .list.disable>div {
                        opacity: 0.3;
                    }

                    .list.disable:hover {
                        background-color: #FFF;
                        border-color: #ddd !important;
                    }
                }

                .trip-no-list {
                    margin: 20px 0;
                    color: var(--theme-color);
                    align-items: center;
                    text-align: center;
                }
            }
        }

        .description {
            p {
                color: red;
            }
        }

        .button-action {
            display: flex;
            justify-content: center;

            .row-button {
                max-width: 500px;
                width: 100%;
                margin-top: 30px;

                .btn-back-search {
                    background-color: #c5c5c5;
                    color: #000;
                    width: 200px;
                    height: 45px;
                    align-content: center;
                }

                .btn-continue {
                    background-color: var(--theme-color);
                    color: #FFF;
                    width: 200px;
                    height: 45px;
                    align-content: center;
                }
            }
        }
    }

    @media (max-width: 1110px) {
        .wrapper-trip {
            padding-left: 10px;
            padding-right: 10px;
        }
    }
}

.available-sm-trip {
    position: relative;
    padding: 0;
    margin: 0;
    background-color: #F7F7F7;

    .wrapper {
        position: relative;
        max-width: 1080px;
        width: 100%;
        padding: 80px 0;
        margin: 0 auto;

        .title-sm-header {
            position: relative;

            .back-icon {
                position: absolute;
                left: 0;
                font-size: 24px;
                font-weight: bold;
            }

            .title-text {
                font-size: 24px;
            }
        }

        .trip-sm-route {
            background-color: rgba(255, 255, 255, 0.42);
            font-size: 16px;
            color: #00000052;

            .active {
                background-color: #FFFFFF !important;
                color: #000000;
            }
        }

        .date-sm-wrapper {
            background-color: #FFFFFF;
            font-size: 16px;
            font-weight: bold;
            border-bottom: 3px solid var(--theme-color);

            a {
                color: var(--theme-color);
                font-size: 20px;
                font-weight: bold;
            }
        }

        .trip-sm-service {
            .list-trip {
                background-color: #FFFFFF;

                .head-row {
                    .col-img {
                        max-width: 50px;
                        margin-right: 10px;
                    }

                    .text-end {
                        .price {
                            font-size: 24px;
                            font-weight: bold;
                            line-height: 1;

                            small {
                                font-size: 0.75rem;
                            }
                        }

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

                .route-row {
                    .col-time {
                        margin-right: 10px;
                    }

                    .box-body {
                        position: relative;
                        width: 100%;
                        display: flex;
                        flex-direction: column;

                        ul {
                            position: relative;
                            width: 100%;
                            list-style-type: none;
                            padding: 0;
                            margin: 0;
                            overflow: hidden;

                            li {
                                position: relative;
                                width: 100%;
                                display: flex;
                                flex-wrap: nowrap;
                                align-items: center;
                                margin: 0;
                                padding: 5px 0 5px 25px;
                                text-align: left;
                                color: var(--text-color);

                                &:before {
                                    content: '';
                                    width: 12px;
                                    height: 12px;
                                    border-radius: 50%;
                                    background: #ffffff;
                                    border: 1px solid #D8D8D8;
                                    position: absolute;
                                    left: 0;
                                    top: 15px;
                                    z-index: 1;
                                    transform: translateY(-40%);
                                }

                                &:last-child:before {
                                    background: #D8D8D8;
                                }

                                &:not(:last-child):after {
                                    content: '';
                                    position: absolute;
                                    left: 5px;
                                    top: 17px;
                                    border: 1px dashed #D8D8D8;
                                    width: 2px;
                                    height: 75%;
                                }

                                span:first-child {
                                    font-size: 16px;
                                    font-weight: var(--fw-lg);
                                    margin-right: 5px;
                                }

                                span:last-child {
                                    font-size: 14px;
                                    font-weight: 400;
                                }

                                i {
                                    font-size: 16px;
                                    color: var(--theme-color);
                                    margin-left: 5px;
                                    cursor: pointer;
                                    transition: all 0.3s ease;

                                    &:hover {
                                        color: #e65c00;
                                        transform: scale(1.2);
                                    }
                                }

                            }
                        }
                    }
                }
            }
        }
    }
}

.service-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 20px;

    .card-service {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        margin: 0 auto;
        max-width: 1000px;

        .box-item {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 100%;

            .item {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                width: 100%;
                padding: 0;

                img {
                    width: 100px;
                    height: auto;
                    margin-bottom: 10px;
                }

                span {
                    font-size: 20px;
                    font-weight: var(--fw-lg);
                    color: #333;
                    text-align: center;
                }
            }
        }

    }
}

.promotion-section {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 20px;
    background: #ffffff;

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;

        h1 {
            font-size: var(--fz-xl);
            font-weight: var(--fw-xl);
            margin-bottom: 20px;
            text-align: start;
        }

        .card-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;

            .card-more {
                a {
                    font-size: var(--fz-md);
                    font-weight: var(--fw-lg) !important;
                    color: var(--theme-color);
                    text-decoration: none;

                    &:hover {
                        text-decoration: underline;
                    }

                    .bi::before,
                    [class^="bi-"]::before,
                    [class*=" bi-"]::before {
                        font-weight: var(--fw-xl) !important;
                    }
                }
            }
        }
    }

    .card-content {
        .box-item {
            position: relative;
            width: 250px;
            height: 180px;
            padding: 0;
            margin: 10px 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.3s ease;

                &:hover {
                    transform: scale(1.05);
                }
            }

            @media (max-width: 1200px) {
                & {
                    width: 100%;
                    height: 170px;
                }
            }
        }

        .owl-carousel {
            margin: 0 auto;
            padding: 0;

            .item {
                position: relative;
                width: 100%;
                height: 100%;
                padding: 0;
                margin: 10px 0;
                overflow: hidden;
                border-radius: 10px;
                box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);
                cursor: pointer;

                img {
                    width: 100%;
                    height: auto;
                    transition: all 0.3s ease;

                    &:hover {
                        transform: scale(1.05);
                    }
                }
            }

            .owl-stage {
                padding-left: 5px !important;
            }
        }
    }
}

.application-section {
    background: #ffffff;
    padding-top: 80px;
    padding-bottom: 30px;
    margin: 0;
    overflow: hidden;

    .wrapper {
        position: relative;
        background-image: url(../images/banner/banner-app.jpg);
        background-repeat: no-repeat;
        background-position: 0% 0%;
        background-size: cover;
        max-width: 1080px;
        width: 100%;
        height: 300px;
        margin: 0 auto;
        z-index: 1;
        border-radius: 20px;

        .card-container {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            margin: 0 auto;
            padding: 20px 30px;
            z-index: 2;

            .box-information {
                background-color: #ffffff;
                border-radius: 20px;
                padding: 20px;
                box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

                ul {
                    list-style-type: none;
                    padding-left: 0;

                    li {
                        display: flex;
                        align-items: center;
                        margin-bottom: 10px;

                        .icon {
                            background-color: var(--theme-color);
                            border-radius: 50%;
                            width: 20px;
                            height: 20px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            margin-right: 10px;
                            color: #ffffff;
                            font-size: var(--fz-md);
                            font-weight: var(--fw-lg);

                            i {
                                font-size: var(--fz-md);
                            }
                        }

                        span {
                            font-size: var(--fz-lg);
                            font-weight: var(--fw-xl);
                            color: #333333;
                        }
                    }
                }


                .box-score {
                    display: flex;
                    justify-content: space-between;
                    padding: 0 20px;

                    .box-ios,
                    .box-android {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        text-align: start;

                        span {
                            font-size: var(--fz-md);
                            color: #999999;
                        }

                        strong {
                            font-size: var(--fz-lg);
                            color: #333333;
                        }
                    }

                    .separator {
                        width: 1px;
                        background-color: #cccccc;
                        height: 50px;
                        margin: 0 10px;
                    }
                }
            }

            .box-one {
                .box-text {
                    margin-bottom: 20px;

                    h1 {
                        font-size: var(--fz-xxl);
                        font-weight: var(--fw-xl);
                        color: #ffffff;
                        margin: 0;
                    }
                }
            }

            .box-two,
            .box-three {

                .box-text {
                    margin-bottom: 20px;

                    h1 {
                        font-size: var(--fz-md);
                        font-weight: var(--fw-xl);
                        color: #ffffff;
                        margin: 0;
                    }
                }

                .box-img {
                    img {
                        max-width: 100%;
                        width: 100px;
                        height: auto;
                        border-radius: 10px;
                    }

                    a {
                        display: block;
                        margin-bottom: 10px;

                        img {
                            max-width: 100%;
                            width: 150px;
                            height: auto;
                            border-radius: 0;
                            transition: all 0.3s ease;

                            &:hover {
                                transform: scale(1.05);
                            }
                        }
                    }
                }
            }

            @media (max-width: 400px) {
                & {
                    padding: 20px 20px;
                }
            }
        }

        @media (max-width: 575px) {
            & {
                background-position: 60% 0%;
                max-width: 100%;
                height: 550px;
            }
        }
    }

    @media (max-width: 1200px) {
        & {
            padding-top: 30px;
        }
    }
}

.popular-route-section {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: unset;
    padding: 30px 0;

    .card-header {
        text-align: start;

        h1 {
            font-size: var(--fz-xl);
            font-weight: var(--fw-xl);
            margin-bottom: 20px;
        }
    }

    .card-content {

        .owl-carousel {
            margin: 0 auto;
            padding: 0;

            .owl-stage-outer {
                mask-image: linear-gradient(to right, rgb(0, 0, 0) calc(100% - 60px), rgba(0, 0, 0, 0) calc(100% - 8px));
            }

            .item {
                width: 100%;
                padding: 0;
                margin: 10px 0;

                a {
                    text-decoration: none;

                    .box-item {
                        position: relative;
                        width: 100%;
                        height: auto;
                        cursor: pointer;
                        border-radius: 10px;
                        box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);
                        transition: transform 0.3s ease;

                        &:hover {
                            transform: translateY(-10px);

                            .box-img {
                                img {
                                    transform: scale(1.2);
                                }
                            }
                        }

                        .box-img {
                            width: 100%;
                            height: 100%;
                            overflow: hidden;
                            border-radius: 10px 10px 0px 0px;

                            img {
                                width: 100%;
                                height: auto;
                                transition: all 0.3s ease;
                            }
                        }

                        .box-text {
                            padding: 10px;

                            .title {
                                strong {
                                    font-size: var(--fz-lg);
                                    font-weight: var(--fw-xl);
                                    color: #333;
                                }
                            }

                            .price {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                margin-top: 10px;

                                span:first-child {
                                    font-size: var(--fz-sm);
                                    font-weight: var(--fw-lg);
                                    color: #6e6e6e;
                                    margin-right: 10px;
                                }

                                span:last-child {
                                    font-size: var(--fz-lg);
                                    font-weight: var(--fw-xl);
                                    color: var(--theme-color);
                                }
                            }
                        }
                    }
                }
            }

            .owl-stage {
                padding-left: 0px !important;
            }

            .owl-nav {
                position: absolute;
                top: 50%;
                width: 100%;
                transform: translateY(-50%);
                display: flex;
                justify-content: space-between;
                padding: 0;

                .owl-prev,
                .owl-next {
                    font-size: 20px;
                    background-color: #ffffff;
                    box-shadow: 0px 1px 6px rgb(0 0 0 / 50%);
                    color: #202020;
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;

                    span {
                        padding-bottom: 5px;
                    }

                    &:hover {
                        background-color: #fff;
                        color: var(--text-color);
                    }
                }

                .owl-prev {
                    left: 0;
                }

                .owl-next {
                    right: 0;
                }
            }
        }
    }
}

.popular-station-section {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0;
    background: #ffffff;

    .card-header {
        text-align: start;

        h1 {
            font-size: var(--fz-xl);
            font-weight: var(--fw-xl);
            margin-bottom: 20px;
        }

        .card-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;

            .card-tabs {
                display: flex;
                gap: 10px;

                .card-tab {
                    background-color: unset;
                    border: 0;
                    padding: 10px 20px;
                    cursor: pointer;
                    font-size: var(--fz-md);
                    font-weight: var(--fw-lg);
                    color: #6e6e6e;

                    &.active {
                        color: var(--theme-color);
                        border-bottom: 2px solid var(--theme-color);
                    }

                    &:hover {
                        color: var(--theme-color);
                        border-bottom: 2px solid var(--theme-color);
                    }

                }
            }

            .card-more {
                a {
                    font-size: var(--fz-md);
                    font-weight: var(--fw-lg) !important;
                    color: var(--theme-color);
                    text-decoration: none;

                    &:hover {
                        text-decoration: underline;
                    }

                    .bi::before,
                    [class^="bi-"]::before,
                    [class*=" bi-"]::before {
                        font-weight: var(--fw-xl) !important;
                    }
                }
            }
        }
    }

    .card-content {
        .card-tabs-content {
            margin-top: 20px;

            .box-item {
                position: relative;
                width: 100%;
                height: auto;
                cursor: pointer;
                margin: 10px 0;

                .box-img {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    border-radius: var(--radius);
                    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);

                    img {
                        width: 100%;
                        height: auto;
                        transition: all 0.3s ease;

                        &:hover {
                            transform: scale(1.05);
                        }
                    }

                    .box-badge {
                        position: absolute;
                        /* top: 10px;
                        right: 10px; */
                        bottom: 10px;
                        left: 50%;
                        transform: translateX(-50%);
                        background-color: #ffffff;
                        color: #fb812f;
                        padding: 5px 10px;
                        border-radius: 5px;
                        font-size: var(--fz-md);
                        font-weight: 400;
                    }
                }

                .box-text {
                    padding: 10px;

                    .title {
                        text-align: center;

                        strong {
                            font-size: var(--fz-lg);
                            font-weight: var(--fw-lg);
                            color: #333;
                        }
                    }
                }
            }
        }
    }
}

.gallery-section {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 50px;
    background: #ffffff;

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        text-align: start;

        h1 {
            font-size: var(--fz-xl);
            font-weight: var(--fw-xl);
            margin-bottom: 20px;
        }

        .card-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;

            .card-more {
                a {
                    font-size: var(--fz-md);
                    font-weight: var(--fw-lg) !important;
                    color: var(--theme-color);
                    text-decoration: none;

                    &:hover {
                        text-decoration: underline;
                    }

                    .bi::before,
                    [class^="bi-"]::before,
                    [class*=" bi-"]::before {
                        font-weight: var(--fw-xl) !important;
                    }
                }
            }
        }
    }

    .card-content {
        .box-item {
            position: relative;
            width: 250px;
            height: 180px;
            padding: 0;
            margin: 10px 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.3s ease;

                &:hover {
                    transform: scale(1.05);
                }
            }

            @media (max-width: 1200px) {
                & {
                    width: 100%;
                    height: 170px;
                }
            }
        }

        .owl-carousel {
            margin: 0 auto;
            padding: 0;

            .item {
                position: relative;
                width: 100%;
                height: 100%;
                padding: 0;
                margin: 10px 0;
                overflow: hidden;
                border-radius: 10px;
                box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);
                cursor: pointer;

                img {
                    width: 100%;
                    height: auto;
                    transition: all 0.3s ease;

                    &:hover {
                        transform: scale(1.2);
                    }
                }
            }

            .owl-stage {
                padding-left: 5px !important;
            }
        }

        @media (max-width: 991px) {
            & {
                mask-image: linear-gradient(to right, rgb(0, 0, 0) calc(100% - 60px), rgba(0, 0, 0, 0) calc(100% - 8px));
            }
        }
    }

}

.page-gallery {
    position: relative;
    padding: 0;
    margin: 0;

    .wrapper {
        position: relative;
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            width: 100%;
            margin-bottom: 20px;

            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }
        }

        .card-content {
            width: 100%;

            .list-gallery {

                .gallery-item {
                    position: relative;
                    display: block;
                    cursor: pointer;
                    text-decoration: none;
                    width: 100%;
                    overflow: hidden;
                    border-radius: var(--radius);
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                    margin-bottom: 20px;
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        transform: scale(1.05);
                        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
                    }

                    img {
                        width: 100%;
                        height: auto;
                    }
                }
            }
        }
    }
}

.page-change-ticket {
    position: relative;
    padding: 0;
    margin: 0;

    .wrapper {
        position: relative;
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            width: 100%;
            margin-bottom: 0px;

            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }

            h6 {
                font-size: var(--fz-lg);
                color: var(--text-color);
                margin-bottom: 0px;
            }
        }

        .card-content {
            width: 100%;

            p {
                font-size: var(--fz-lg);
            }

            a {
                color: var(--theme-color);
                text-decoration: none;
            }

            img {
                width: 100%;
                height: 210px;
                margin-bottom: 20px;
            }

            .change-ticket {
                background-color: var(--bs-gray-100);
                border-radius: 5px;

                .change-ticket-card {
                    .contact-section-title {
                        font-size: var(--fz-xl);
                        font-weight: var(--fw-xl);
                    }

                    .contact-section-desc {
                        font-size: var(--fz-lg);
                    }
                }

            }
        }
    }
}

.page-cancel-ticket {
    position: relative;
    padding: 0;
    margin: 0;

    .wrapper {
        position: relative;
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            width: 100%;
            margin-bottom: 0px;

            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }

            h6 {
                font-size: var(--fz-lg);
                color: var(--text-color);
                margin-bottom: 0px;
            }
        }

        .card-content {
            width: 100%;

            p {
                font-size: var(--fz-lg);
            }

            a {
                color: var(--theme-color);
                text-decoration: none;
            }

            img {
                width: 100%;
                height: 210px;
                margin-bottom: 20px;
            }

            .cancel-ticket {
                background-color: var(--bs-gray-100);
                border-radius: 5px;

                .cancel-ticket-card {

                    .contact-section-title {
                        font-size: var(--fz-xl);
                        font-weight: var(--fw-xl);
                    }

                    .contact-section-desc {
                        font-size: var(--fz-lg);
                    }
                }

            }
        }
    }
}

.page-print-ticket {
    position: relative;
    padding: 0;
    margin: 0;

    .wrapper {
        position: relative;
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            width: 100%;
            margin-bottom: 0px;

            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }

            h6 {
                font-size: var(--fz-lg);
                color: var(--text-color);
                margin-bottom: 0px;
            }
        }

        .card-content {

            .card-online,
            .card-onsite {
                margin-bottom: 20px;
                background-color: var(--bs-gray-100);
                border-radius: 5px;
                padding: 20px;

                .title {
                    h2 {
                        font-size: var(--fz-xl);
                        font-weight: var(--fw-xl);
                        color: var(--text-color);
                        margin-bottom: 10px;
                    }
                }

                .body {
                    p {
                        font-size: var(--fz-lg);
                        color: var(--text-color);
                        margin-bottom: 10px;
                    }

                    ul {
                        list-style-type: disc;
                        padding-left: 20px;

                        li {
                            font-size: var(--fz-lg);
                            color: var(--text-color);
                            margin-bottom: 5px;
                        }
                    }
                }
            }

            .card-img {
                display: flex;
                justify-content: center;
                align-items: center;

                img {
                    width: 500px;
                    height: 100%;
                    margin-top: 20px;

                    @media (max-width: 600px) {
                        & {
                            width: 100%;
                            height: auto;
                        }
                    }
                }
            }

        }
    }
}

.page-how-to-book {
    .container {
        display: flex;
        justify-content: center;
    }

    .wrapper {
        position: relative;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }
        }

        .card-step {
            background-color: var(--bs-gray-100);
            border-radius: 5px;
            font-size: var(--fz-lg);

            .step-booking {
                img {
                    width: 100%;
                    height: 210px;
                    margin-bottom: 20px;
                }
            }
        }
    }
}

.page-my-ticket {
    .container {
        display: flex;
        justify-content: center;
    }

    .wrapper {
        position: relative;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }
        }

        .search-booking {
            background-color: var(--bs-gray-100);
            border-radius: 5px;

            p {
                font-size: var(--fz-xl);
            }

            .btn-search {
                color: #ffffff;
                background-color: var(--theme-color);
                font-size: var(--fz-lg);
            }
        }
    }
}

.page-my-booking {
    @media (max-width: 768px) {
        .container {
            max-width: 100%;
            padding: 0 20px;
        }
    }

    .wrapper {
        position: relative;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }
        }

        .card-content {
            .content-body {
                width: 100%;
                max-width: 700px;
                margin: 0 auto;

                .header-switch {
                    display: flex;
                    justify-content: center;
                    margin-bottom: 20px;

                    .switch-body {
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        gap: 10px;
                        width: 100%;

                        button {
                            padding: 10px 20px;
                            font-size: var(--fz-lg);
                            font-weight: var(--fw-md);
                            border-radius: 5px;
                            border: 1px solid var(--theme-color);
                            background-color: #fff;
                            color: var(--theme-color);
                            cursor: pointer;

                            &.avtive {
                                background-color: var(--theme-color);
                                border-color: var(--theme-color);
                                color: #fff;
                            }

                            &:hover {
                                background-color: var(--theme-color);
                                border-color: var(--theme-color);
                                color: #fff;
                            }

                            @media (max-width: 576px) {
                                & {
                                    font-size: var(--fz-md);
                                    padding: 8px 16px;
                                }
                            }

                            @media (max-width: 375px) {
                                & {
                                    font-size: var(--fz-sm);
                                    padding: 6px 12px;
                                }
                            }
                        }
                    }
                }

                .wrap {
                    .wrap-body {
                        display: flex;
                        flex-direction: column;
                        gap: 20px;

                        .booking-item {
                            background-color: #fff;
                            border-radius: var(--radius);
                            border: 1.5px solid #eeeeee;
                            cursor: pointer;

                            .booking-body {
                                padding: 20px;

                                .booking-header {
                                    display: flex;
                                    justify-content: space-between;
                                    align-items: center;
                                    margin-bottom: 10px;

                                    .title {
                                        display: flex;
                                        align-items: center;

                                        img {
                                            width: 30px;
                                            height: auto;
                                            margin-right: 5px;
                                        }

                                        strong {
                                            font-size: var(--fz-xl);
                                            font-weight: var(--fw-lg);
                                            color: var(--title-color);
                                        }
                                    }

                                    .status {
                                        display: none;
                                        background-color: #ffffff;
                                        font-size: var(--fz-md);
                                        font-weight: var(--fw-md);
                                        padding: 5px 10px;
                                        border-radius: 5px;
                                    }

                                    .paid {
                                        display: inline-block;
                                        color: #78c52b;
                                        border: 1px solid #78c52b;
                                    }

                                    .prding {
                                        display: inline-block;
                                        color: #FFB0FF;
                                        border: 1px solid #FFB0FF;
                                    }

                                    .cancle {
                                        display: inline-block;
                                        color: #cc0001;
                                        border: 1px solid #cc0001;
                                    }
                                }

                                .booking-detail {
                                    display: flex;
                                    flex-direction: column;
                                    margin-bottom: 10px;
                                    gap: 5px;

                                    .bookcode {
                                        display: flex;
                                        align-items: center;
                                        font-size: var(--fz-lg);

                                        strong {
                                            font-weight: var(--fw-lg);
                                            color: var(--text-color);
                                            margin-right: 5px;
                                        }

                                        span {
                                            font-weight: var(--fw-md);
                                            color: var(--text-color);
                                        }
                                    }

                                    .route {
                                        display: flex;
                                        align-items: center;
                                        font-size: var(--fz-lg);
                                        font-weight: var(--fw-xl);
                                        color: var(--text-color);

                                        i {
                                            margin: 0 5px;
                                        }

                                        span {
                                            overflow: hidden;
                                            text-overflow: ellipsis;
                                            white-space: nowrap;
                                            /* max-width: 200px; */
                                            max-width: 100%;
                                        }
                                    }
                                }

                                .booking-footer {
                                    display: flex;
                                    justify-content: space-between;
                                    align-items: center;

                                    .booking-info {
                                        display: flex;
                                        flex-direction: column;

                                        .departure-date,
                                        .departure-time {
                                            font-size: var(--fz-md);
                                            color: var(--text-color);
                                            margin-bottom: 5px;

                                            strong {
                                                font-weight: var(--fw-lg);
                                                margin-right: 5px;
                                            }

                                            span {
                                                font-weight: var(--fw-md);
                                            }
                                        }
                                    }

                                    .booking-price {
                                        display: flex;
                                        align-items: center;
                                        font-size: var(--fz-xl);
                                        font-weight: var(--fw-xl);
                                        color: var(--text-color);

                                        span {
                                            &:first-child {
                                                margin-right: 5px;
                                            }
                                        }
                                    }
                                }

                                @media (max-width: 576px) {
                                    & {
                                        padding: 15px;

                                        .booking-header {
                                            margin-bottom: 5px;

                                            .title {
                                                margin-bottom: 0;

                                                strong {
                                                    font-size: var(--fz-lg);
                                                }
                                            }

                                            .status {
                                                font-size: var(--fz-sm);
                                            }
                                        }

                                        .booking-detail {
                                            align-content: center;

                                            .bookcode {
                                                font-size: var(--fz-sm);
                                            }

                                            .route {
                                                display: grid;
                                                font-size: var(--fz-md);
                                                margin-top: 10px;
                                                margin-bottom: 10px;

                                                i {
                                                    display: none;
                                                    margin: 0;
                                                }

                                                span {
                                                    position: relative;
                                                    overflow: unset;
                                                    text-overflow: unset;
                                                    white-space: unset;
                                                    margin-left: 20px;

                                                    &:first-child {
                                                        padding-bottom: 20px;

                                                        &::before {
                                                            content: '';
                                                            position: absolute;
                                                            left: -17px;
                                                            top: 4px;
                                                            width: 10px;
                                                            height: 10px;
                                                            border-radius: 50%;
                                                            background-color: #ccc;
                                                        }

                                                        &::after {
                                                            content: '';
                                                            position: absolute;
                                                            left: -13px;
                                                            top: 25%;
                                                            border: 1px dashed #D8D8D8;
                                                            width: 2px;
                                                            height: 100%;
                                                        }
                                                    }

                                                    &:last-child {
                                                        &::before {
                                                            content: '';
                                                            position: absolute;
                                                            left: -17px;
                                                            top: 6px;
                                                            width: 10px;
                                                            height: 10px;
                                                            border-radius: 50%;
                                                            background-color: #fff;
                                                            border: 1px solid #ccc;
                                                        }
                                                    }
                                                }
                                            }
                                        }

                                        .booking-footer {
                                            flex-direction: column;
                                            align-items: flex-start;
                                            gap: 0px;

                                            .booking-info {

                                                .departure-date,
                                                .departure-time {
                                                    font-size: var(--fz-sm);
                                                }
                                            }

                                            .booking-price {
                                                display: flex;
                                                justify-content: flex-end;
                                                width: 100%;
                                                font-size: var(--fz-lg);
                                            }
                                        }
                                    }
                                }

                                @media (max-width: 320px) {
                                    & {
                                        padding: 10px;
                                    }
                                }

                            }

                            &.roundtrip {
                                .booking-body {
                                    &:last-child {
                                        position: relative;
                                        border-top: 0.18em dashed #cccccc;
                                    }
                                }
                            }
                        }
                    }
                }

                .wrap-no-data {
                    padding: 20px;

                    .card-img {
                        width: 150px;
                        height: auto;
                        margin-bottom: 20px;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        img {
                            width: 100%;
                            height: 100%;
                        }
                    }

                    .card-text {
                        h1 {
                            font-size: var(--fz-lg);
                            font-weight: var(--fw-xl);
                            color: var(--text-color);
                        }
                    }
                }
            }
        }
    }
}

.page-bus-station {
    .wrapper {
        position: relative;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }
        }

        .card-content {
            .box-not-found {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                height: 300px;

                .card-img {
                    width: 150px;
                    height: auto;
                    margin-bottom: 20px;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .card-text {
                    h1 {
                        font-size: var(--fz-lg);
                        font-weight: var(--fw-xl);
                        color: var(--text-color);
                    }
                }
            }

            .card-station {
                margin-bottom: 20px;
                overflow: hidden;

                a {
                    text-decoration: none;

                    .card-wrap {
                        position: relative;
                        display: flex;
                        padding: 0;
                        margin: 0;
                        border-radius: 5px;
                        overflow: hidden;

                        .card-img {
                            width: 100%;
                            height: 200px;
                            overflow: hidden;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                transition: transform 0.3s ease-in-out;
                            }
                        }

                        .card-title {
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 100%;
                            padding: 10px;
                            background-color: rgba(0, 0, 0, 0.5);
                            color: #fff;

                            h2 {
                                font-size: var(--fz-sm);
                                font-weight: var(--fw-xl);
                                margin: 0;
                            }
                        }
                    }

                    &:hover {
                        .card-wrap {
                            .card-img {
                                img {
                                    transform: scale(1.05);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.page-bus-station-detail {
    .wrapper {
        position: relative;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            display: none;

            h1 {
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);
                margin-top: 10px;
            }

            img {
                width: 100%;
                height: 200px;
                object-fit: cover;
                border-radius: 5px;
            }

            @media (max-width: 600px) {
                & {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    margin-bottom: 10px;
                }
            }
        }

        .card-content {
            .content {

                h1,
                h2,
                h3,
                h4,
                h5,
                h6 {
                    font-size: var(--fz-xl);
                    font-weight: var(--fw-xl);
                    color: var(--text-color);
                    margin-bottom: 10px;
                }

                p {
                    font-size: var(--fz-md);
                    color: var(--text-color);
                    margin-bottom: 5px;
                }



                small {
                    font-size: var(--fz-sm);
                    font-weight: var(--fw-sm);
                    color: var(--gray-color);
                    font-style: italic;
                }

                span {
                    font-size: var(--fz-md);
                    font-weight: var(--fw-md);
                    color: var(--text-color);
                }

                a {
                    color: var(--theme-color);
                    text-decoration: none;

                    &:hover {
                        text-decoration: underline;
                    }
                }

                hr {
                    border: 1px solid var(--bs-gray-300);
                    margin: 10px 0;
                }

                @media (max-width: 600px) {
                    & {

                        h1,
                        h2,
                        h3,
                        h4,
                        h5,
                        h6 {
                            font-size: var(--fz-lg);
                        }

                        p {
                            font-size: var(--fz-md);
                        }

                        small {
                            font-size: var(--fz-sm);
                        }

                        span {
                            font-size: var(--fz-sm);
                        }

                        table {
                            tbody {
                                tr {
                                    td {
                                        font-size: var(--fz-sm);
                                    }
                                }
                            }
                        }
                    }
                }

            }
        }
    }
}

.page-news {
    .wrapper {
        position: relative;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }
        }

        .card-content {
            .box-not-found {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                height: 300px;

                .card-img {
                    width: 150px;
                    height: auto;
                    margin-bottom: 20px;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .card-text {
                    h1 {
                        font-size: var(--fz-lg);
                        font-weight: var(--fw-xl);
                        color: var(--text-color);
                    }
                }
            }
        }
    }
}

.page-contact-us {
    position: relative;
    padding: 0;
    margin: 0;

    .wrapper {
        position: relative;
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            width: 100%;
            margin-bottom: 20px;

            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }

            h6 {
                font-size: var(--fz-lg);
                color: var(--text-color);
            }
        }

        .card-content {
            .start-contect {
                .wrap {
                    padding: 20px;

                    .contact-title {
                        font-size: var(--fz-xl);
                        font-weight: var(--fw-xl);
                        color: var(--text-color);
                        margin-bottom: 20px;
                    }

                    .contact-list {
                        ul {
                            list-style: none;
                            padding: 0;
                            margin: 0;

                            li {
                                display: flex;
                                align-items: center;
                                margin-bottom: 20px;
                                font-size: var(--fz-lg);

                                i {
                                    color: var(--theme-color);
                                    margin-right: 10px;
                                }

                                strong {
                                    font-weight: var(--fw-xl);
                                    color: var(--text-color);
                                    margin-right: 5px;
                                }

                                a {
                                    color: var(--theme-color);
                                    font-weight: var(--fw-lg);
                                    text-decoration: none;
                                }
                            }
                        }
                    }

                    .contact-img {
                        text-align: center;
                        margin-top: 10px;

                        img {
                            max-width: 280px;
                            width: 100%;
                            height: auto;
                        }
                    }
                }
            }

            .end-contact {
                .wrap {
                    padding: 20px 30px;
                    border-radius: 10px;
                    border: 1px solid #e0e0e0;

                    .contact-title {
                        font-size: var(--fz-xl);
                        font-weight: var(--fw-xl);
                        color: var(--text-color);
                        margin-bottom: 20px;
                    }

                    .contact-form {
                        form {
                            .form-group {
                                margin-bottom: 15px;

                                input,
                                textarea {
                                    width: 100%;
                                    padding: 10px;
                                    border-radius: 5px;
                                    font-size: var(--fz-lg);
                                    font-weight: var(--fw-md);

                                    &:focus {
                                        border-color: var(--theme-color);
                                        box-shadow: unset;
                                        outline: none;
                                    }

                                }
                            }

                            .form-radio {
                                margin-bottom: 15px;

                                .title {
                                    font-size: var(--fz-lg);
                                    font-weight: var(--fw-lg);
                                    color: var(--text-color);
                                    margin-bottom: 5px;
                                }

                                .group-radio {
                                    display: flex;
                                    align-items: center;
                                    gap: 10px;

                                    .form-check {
                                        .form-check-input {
                                            border-color: var(--theme-color);
                                            background-color: #ffffff;
                                        }

                                        .form-check-input:checked {
                                            background-color: var(--theme-color);
                                            border-color: var(--theme-color);
                                        }

                                        .form-check-input:focus {
                                            box-shadow: 0 0 0 3px rgba(var(--theme-color), 0.25);
                                        }

                                        &:last-child {
                                            margin-left: 20px;
                                        }
                                    }
                                }
                            }

                            .form-bottom {
                                text-align: right;

                                button {
                                    width: 100%;
                                    padding: 10px 20px;
                                    background-color: var(--theme-color);
                                    color: #fff;
                                    border: none;
                                    border-radius: 5px;
                                    cursor: pointer;
                                    font-size: var(--fz-lg);
                                    font-weight: var(--fw-lg);

                                    &:hover {
                                        opacity: 0.9;
                                    }
                                }
                            }

                            .valid-feed {
                                margin-top: 5px;

                                span {
                                    font-size: var(--fz-md);
                                    color: var(--bs-danger);
                                    font-weight: var(--fw-sm);
                                }
                            }
                        }
                    }
                }
            }
        }

    }

    .wrapper-alert-mail {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

        .wrapper-body {
            text-align: center;
            padding: 10px;
            font-size: var(--fz-lg);
            color: var(--text-color);

            i {
                font-size: 40px;
                margin-bottom: 10px;

                &.bi-check-circle-fill {
                    color: var(--bs-success);
                }

                &.bi-exclamation-triangle-fill {
                    color: var(--bs-warning);
                }
            }

            h2 {
                font-size: var(--fz-lg);
                font-weight: var(--fw-sm);
                color: var(--text-color);
                margin-top: 5px;
            }
        }
    }
}

.page-trems-conditions {
    position: relative;
    padding: 0;
    margin: 0;

    .wrapper {
        position: relative;
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            width: 100%;
            margin-bottom: 0px;

            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }

            h6 {
                font-size: var(--fz-lg);
                color: var(--text-color);
                margin-bottom: 0px;
            }
        }

        .card-content {
            width: 100%;

            .card-banner {
                img {
                    object-position: 0% 35%;
                }
            }

            .terms-header {
                font-size: var(--fz-lg);
            }

            .terms-topic {
                margin-bottom: 10px;
                font-size: var(--fz-lg);
                margin-top: 24px;
            }

            .terms-subsection {
                text-indent: 17px;
                display: block;
                margin-bottom: 10px;
                font-size: var(--fz-lg);

                &.terms-indent-md {
                    text-indent: 46px !important;
                }

                & a {
                    color: var(--theme-color);
                }
            }

            .date-stamp {
                font-size: var(--fz-lg);
                margin: 23px 0px 0px 0px;
                text-align: right;
            }
        }
    }
}

.page-tcl {
    position: relative;
    padding: 0;
    margin: 0;

    /* class used together */
    .text-indent-46 {
        text-indent: 46px;
        margin: 15px 0;

        @media (max-width: 400px) {
            text-indent: 0px;
            margin: 0;
        }
    }

    hr {
        margin: 15px 0 5px 0;
    }

    .content-title {
        margin: 15px 0;
        font-weight: bold;
        font-size: var(--fz-lg);
    }

    .wrapper {
        position: relative;
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            width: 100%;
            margin-bottom: 0px;

            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }

            h6 {
                font-size: var(--fz-lg);
                color: var(--text-color);
                margin-bottom: 0px;
            }
        }

        /* content  */
        .card-content {

            /* timeline history */
            .timeline-history-tcl {

                width: 100%;
                font-size: var(--fz-lg);

                .card-banner {
                    img {
                        object-position: 0% 35%;
                    }
                }

                .time-line {
                    padding: 10px;

                    tr {
                        & th {
                            text-align: center;
                            font-size: inherit;
                        }

                        & td {
                            font-size: var(--fz-lg);

                            &:nth-child(1) {
                                text-align: left;
                                width: 150px;


                            }
                        }
                    }

                    .section-routes {
                        padding: 5px 13px;

                        @media (max-width: 400px) {
                            padding: 0;
                        }

                        & span {
                            padding-left: 10px;
                            display: block;

                            @media (max-width: 400px) {
                                padding-left: 0;
                            }
                        }
                    }

                    .card-image {
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        img {
                            max-width: 141px;
                            height: auto;
                            padding: 22px 0 0 0;

                        }
                    }

                    .theme-bus-desc {
                        margin: 15px 0;

                        @media (max-width: 400px) {
                            margin: 0;
                        }

                        ul {
                            list-style: none;

                            @media (max-width: 400px) {
                                margin: 15px 0;
                                padding: 0;
                            }

                            & li {
                                margin: 15px 10px 0 0;

                                @media (max-width: 400px) {
                                    margin: 15px 0;
                                    padding: 0;
                                }
                            }
                        }

                        span {
                            font-weight: bold;
                            padding-bottom: 15px;

                            &.orange {
                                color: #FE6613;
                            }

                            &.sky {
                                color: #0A51A1;
                            }

                            &.pink {
                                color: #F0027E;
                            }
                        }
                    }

                }

                .routes-table-tcl {
                    .north {
                        margin-top: 30px;
                        color: var(--text-color);
                        font-size: var(--fz-lg) !important;
                    }

                    .northeast-and-east {
                        margin-top: 30px;
                        color: var(--text-color);
                        font-size: var(--fz-lg) !important;
                    }

                    .south {
                        margin-top: 30px;
                        color: var(--text-color);
                        font-size: var(--fz-lg) !important;
                    }

                    table.table-routes {
                        a {
                            color: var(--theme-color);
                            text-decoration: none;
                            font-size: var(--fz-lg);
                            transition: all 0.3s ease-out;

                            &:hover {
                                color: #e65c00;
                            }
                        }
                    }
                }

            }

            /* contact  */
            .contact-tcl {
                margin-top: 30px;

                .contact-desc {
                    line-height: 2;

                    span {
                        display: block;
                    }

                    .ref {
                        color: #7f8c8d;
                    }
                }

            }
        }
    }
}

.page-counter-check-in {
    position: relative;
    padding: 0;
    margin: 0;

    .wrapper {
        position: relative;
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0px 40px 0px;

        @media (max-width: 600px) {
            & {
                padding: 40px 0px 40px 0px;
            }
        }

        .card-header {
            width: 100%;
            margin-bottom: 0px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;

            @media (max-width: 600px) {
                & {
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: center;
                }
            }

            h1 {
                display: none;
                font-size: var(--fz-xxl);
                font-weight: var(--fw-xl);
                color: var(--text-color);

                @media (max-width: 600px) {
                    & {
                        display: block;
                    }
                }
            }

            .search {
                position: relative;
                width: 100%;
                max-width: 400px;

                @media (max-width: 600px) {
                    & {
                        margin-top: 20px;
                    }
                }

                input {
                    width: 100%;
                    padding: 10px;
                    border-radius: 5px;
                    border: 1px solid #eeeeee;
                    font-size: var(--fz-md);

                    &:focus {
                        outline: none;
                        border-color: #cccccc;
                    }
                }

                i {
                    position: absolute;
                    top: 50%;
                    right: 2px;
                    transform: translateY(-50%);
                    color: var(--text-color);
                    padding: 10px 15px;
                    background-color: #fff;
                }
            }

        }

        .card-content {
            margin-top: 20px;

            .header {
                margin-bottom: 10px;

                strong {
                    font-size: var(--fz-lg);
                    color: var(--text-color);
                }
            }

            .tables {
                width: 100%;
                border-radius: 10px;
                overflow: hidden;
                border: 1px solid #eeeeee;

                thead {
                    tr {
                        th {
                            font-size: var(--fz-md);
                            font-weight: var(--fw-xl);
                            color: var(--text-color);
                            padding: 10px;
                        }
                    }
                }

                table {
                    margin: 0;

                    tbody {
                        tr {
                            td {
                                font-size: var(--fz-sm);
                                color: var(--text-color);
                                padding: 10px;

                                &:first-child {
                                    width: 60%;
                                }

                                &:last-child {
                                    width: 40%;
                                }
                            }
                        }
                    }
                }
            }

            .no-results {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                height: 200px;
                padding: 20px;
                background-color: #f9f9f9;

                span {
                    font-size: var(--fz-lg);
                    color: var(--text-color);

                    &:last-child {
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                        width: 100%;
                        margin-top: 10px;
                        font-size: var(--fz-md);
                        font-weight: var(--fw-md);
                        color: #999999;
                    }
                }

            }
        }
    }
}

.select-seat {
    .wrapper {
        display: flex;
        justify-content: center;
        margin-top: 62px;
        padding: 50px 0 40px 0;

        .container {
            width: 100%;
            max-width: 1080px;

            .header {
                margin-bottom: 20px;

                .route {
                    .route-body {
                        .icon-bus {
                            padding-right: 0px;

                            i {
                                font-size: 30px;
                                color: var(--theme-color);
                                margin-right: 10px;
                            }
                        }

                        .route-detail {
                            .route-type {
                                color: var(--theme-color);
                            }

                            .route-departure,
                            .route-return {
                                i {
                                    margin: 0 5px;
                                    color: var(--theme-color);
                                }
                            }
                        }
                    }
                }
            }

            .card-seat {
                background-color: #F3F3F3;
                border-radius: 5px;
                padding: 15px 20px;

                .row-a,
                .row-b,
                .row-c,
                .row-d,
                .row-font-bus {
                    max-width: 76px;
                }

                .back-row {
                    max-width: 152px;
                }

                .seat {
                    position: relative;
                    border: 2px solid var(--theme-color);
                    border-radius: 5px;
                    height: 50px;
                    width: 100%;
                    margin: 5px 0px;
                    padding: 1px;
                    cursor: pointer;
                    user-select: none;
                    background-color: #FFF;

                    img {
                        position: absolute;
                        height: 40px;
                    }
                }

                .seat:hover {
                    background-color: #f9c79b !important;
                }

                .seat-selected {
                    background-color: #f9c79b !important;
                }

                .sold-seat,
                .example-2 {
                    pointer-events: none;
                    cursor: default;
                    background-color: #CBE86B !important;
                }

                .booked-seat,
                .example-3 {
                    pointer-events: none;
                    cursor: default;
                    background-color: #FBC5D8 !important;
                }

                .seat-show {
                    pointer-events: none;
                    cursor: default;
                    align-content: center;
                    text-align: center;
                }

                .seat-none {
                    border: none !important;
                    pointer-events: none;
                    cursor: default;
                    background-color: unset;
                }
            }

            .example-seat-type {
                height: 30px;
                width: 35px;
                border: 1px solid var(--theme-color);
                pointer-events: none;
                cursor: default;
            }

            .example-2 {
                background-color: #CBE86B;
            }

            .example-3 {
                background-color: #FBC5D8;
            }

            .button-action {
                display: flex;
                justify-content: center;

                .row-button {
                    max-width: 800px;
                    width: 100%;
                    margin-top: 30px;

                    .btn-back-search,
                    .btn-back-trip_list {
                        background-color: #c5c5c5;
                        color: #000;
                        width: 100%;
                        height: 45px;
                        align-content: center;
                        overflow: hidden;
                    }

                    .btn-continue {
                        background-color: var(--theme-color);
                        color: #FFF;
                        width: 100%;
                        height: 45px;
                        align-content: center;
                        overflow: hidden;
                    }
                }
            }
        }
    }
}

.card-banner {
    position: relative;
    margin: 0;
    padding: 0;

    .wrapper {
        position: relative;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;

        .card-img {
            position: relative;
            height: 250px;
            width: 100%;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                /* object-position: 0% 34%; */
                filter: brightness(0.7);
                border-radius: 5px;

                @media (max-width: 1080px) {
                    & {
                        border-radius: 0;
                    }
                }
            }
        }

        .card-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, 0%);

            h1 {
                color: #fff;
                font-size: 26px;
                font-weight: bold;
                text-align: center;
                margin: 0;
            }
        }
    }

    @media (max-width: 600px) {
        & {
            height: 80px;

            .wrapper {
                display: none;
            }
        }
    }
}

.footer-section {
    /* background: #ececec; */
    background-color: var(--theme-color);

    .container {
        max-width: 1100px;
        margin: 0 auto;

        @media (max-width: 1200px) {
            & {
                max-width: 100%;
                padding: 0 50px;
            }
        }
    }
}

.paginationjs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;

    .paginationjs-pages {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;

        li {
            list-style: none;
            margin: 0 5px;
            padding: 5px 10px;
            border: 1px solid #ddd !important;
            border-radius: 5px;
            cursor: pointer;

            a {
                background-color: #fff;
                color: var(--text-color);
                text-decoration: none;
            }

            &.active {
                background-color: #fff;
                border-color: var(--theme-color);

                a {
                    color: var(--theme-color);
                    background-color: #fff !important;
                }
            }
        }
    }

    .paginationjs-prev,
    .paginationjs-next {
        margin: 0 10px;
        padding: 5px 10px;
        border: 1px solid #ddd;
        border-radius: 5px !important;
        cursor: pointer;

        a {
            color: var(--title-color);
            text-decoration: none;
        }

        &.disabled {
            cursor: not-allowed;
            opacity: 0.5;
        }
    }
}

/* -- Loading -- */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;

    .wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        .content {
            position: relative;

            .stop-frame {
                position: relative;
                z-index: 1;
                width: 500px;
                height: auto;

                svg {
                    width: 100%;
                    height: auto;

                    .cls-8,
                    .cls-9,
                    .cls-10,
                    .cls-11,
                    .cls-12,
                    .cls-13,
                    .cls-14,
                    .cls-15,
                    .cls-16,
                    .cls-17,
                    .cls-18,
                    .cls-19,
                    .cls-20,
                    .cls-21 {
                        stroke-miterlimit: 10;
                    }

                    .cls-8,
                    .cls-9,
                    .cls-10,
                    .cls-11,
                    .cls-12,
                    .cls-13,
                    .cls-14,
                    .cls-15,
                    .cls-16,
                    .cls-18,
                    .cls-19 {
                        fill: none;
                    }

                    .cls-1 {
                        fill: #f08e71;
                    }

                    .cls-2 {
                        fill: #2e3552;
                    }

                    .cls-3 {
                        fill: #525252;
                    }

                    .cls-4 {
                        fill: #ed7d2b;
                    }

                    .cls-5 {
                        fill: #2b478b;
                    }

                    .cls-6 {
                        fill: #bdb548;
                    }

                    .cls-7 {
                        fill: #a7c2ff;
                    }

                    .cls-8 {
                        stroke-width: .58px;
                    }

                    .cls-8,
                    .cls-9 {
                        stroke: #fff;
                    }

                    .cls-22 {
                        fill: #5cbdbc;
                    }

                    .cls-23 {
                        fill: #fffbf5;
                    }

                    .cls-24 {
                        mix-blend-mode: multiply;
                        opacity: .24;
                    }

                    .cls-24,
                    .cls-25 {
                        fill: #337082;
                    }

                    .cls-26 {
                        fill: #18333d;
                    }

                    .cls-27 {
                        fill: #cbd9ef;
                    }

                    .cls-27,
                    .cls-28 {
                        opacity: .4;
                    }

                    .cls-29 {
                        fill: #4d4d4d;
                    }

                    .cls-30 {
                        fill: #edaf40;
                    }

                    .cls-9 {
                        stroke-width: 1.01px;
                    }

                    .cls-31 {
                        fill: #eb6449;
                    }

                    .cls-32 {
                        fill: #edf4ff;
                    }

                    .cls-33 {
                        fill: #fff;
                    }

                    .cls-34 {
                        fill: #383838;
                    }

                    .cls-35 {
                        opacity: .25;
                    }

                    .cls-36 {
                        fill: #cc6e2e;
                    }

                    .cls-37 {
                        fill: #f6a157;
                    }

                    .cls-38 {
                        opacity: .67;
                    }

                    .cls-38,
                    .cls-39 {
                        fill: #f28f7e;
                    }

                    .cls-10 {
                        stroke: #003139;
                        stroke-width: 3.67px;
                    }

                    .cls-40 {
                        isolation: isolate;
                    }

                    .cls-41 {
                        fill: #fec3b9;
                    }

                    .cls-42 {
                        fill: #e58638;
                    }

                    .cls-11 {
                        stroke: #fffaf5;
                    }

                    .cls-11,
                    .cls-16 {
                        stroke-width: 3.07px;
                    }

                    .cls-11,
                    .cls-20 {
                        stroke-linecap: round;
                    }

                    .cls-12 {
                        stroke: #f28f7e;
                        stroke-width: .6px;
                    }

                    .cls-13 {
                        stroke: #bf7d43;
                    }

                    .cls-13,
                    .cls-14,
                    .cls-18 {
                        stroke-width: .7px;
                    }

                    .cls-14 {
                        stroke: #525252;
                    }

                    .cls-43 {
                        fill: #d9d277;
                    }

                    .cls-44 {
                        fill: #cf5e48;
                    }

                    .cls-45 {
                        fill: #b8e0af;
                    }

                    .cls-15 {
                        stroke: #9e983c;
                    }

                    .cls-46,
                    .cls-17 {
                        fill: #020c2b;
                    }

                    .cls-16 {
                        stroke: #eb6449;
                    }

                    .cls-47 {
                        fill: #fdc653;
                    }

                    .cls-48 {
                        fill: #cc621b;
                    }

                    .cls-49 {
                        fill: #f0855d;
                    }

                    .cls-50 {
                        fill: #995035;
                    }

                    .cls-17 {
                        stroke: #020c2b;
                        stroke-width: .56px;
                    }

                    .cls-51 {
                        fill: #ffb675;
                    }

                    .cls-18 {
                        stroke: #383838;
                    }

                    .cls-52 {
                        fill: #b25414;
                    }

                    .cls-53 {
                        fill: #f99746;
                    }

                    .cls-19 {
                        stroke: #9ad9e3;
                        stroke-width: 3.39px;
                    }

                    .cls-28 {
                        fill: #c4d2e8;
                    }

                    .cls-20,
                    .cls-21 {
                        fill: #003b3a;
                        stroke: #f7b767;
                        stroke-width: .99px;
                    }
                }
            }

            .bus-frame {
                position: absolute;
                z-index: 2;
                top: 50%;
                left: 0;
                width: 140px;
                height: auto;
                animation: driveAway 2s linear infinite;

                svg {
                    width: 100%;
                    height: auto;

                    .wheel-rim-front {
                        animation: rotateCenter 2s linear infinite;
                        transform-origin: 68% 80%;
                    }

                    .wheel-rim-back {
                        animation: rotateCenter 2s linear infinite;
                        transform-origin: 19.8% 80%;
                    }

                    .skw-while {
                        fill: #ffffff !important;
                    }

                    .skw-fill {
                        fill: var(--theme-color);
                    }

                    .skw-1 {
                        fill: #ffffff;
                        stroke: var(--theme-color);
                        stroke-width: 10px;
                    }

                    .skw-2 {
                        fill: none;
                        stroke: var(--theme-color);
                        stroke-width: 15px;
                    }

                    .skw-3 {
                        fill: none;
                        stroke: var(--theme-color);
                        stroke-width: 20px;
                    }

                    .skw-4 {
                        fill: none;
                        stroke: var(--theme-color);
                        stroke-width: 25px;
                    }
                }
            }
        }
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-color: rgb(255 255 255 / 90%); */
        background-color: rgba(255, 255, 255, 0.9);
        z-index: -1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes driveAway {
    0% {
        transform: translate(-350px, 0%);
        /* opacity: 0; */
    }

    40% {
        transform: translate(-50px, 0%);
        /* opacity: 1; */
    }

    50% {
        transform: translate(0px, 0%);
        /* opacity: 1; */
    }

    60% {
        transform: translate(25px, 0%);
        /* opacity: 1; */
    }

    70% {
        transform: translate(50px, 0%);
        /* opacity: 1; */
    }

    80% {
        transform: translate(75px, 0%);
        /* opacity: 1; */
    }

    100% {
        transform: translate(350px, 0%);
        /* opacity: 0; */
    }

}

@keyframes rotateCenter {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}