﻿body {
    font-family: 'Roboto';
    scroll-behavior: smooth;
    background: #F9F9F9;
}

.bx {
    vertical-align: middle;
}

.caleran-ex {
    cursor: pointer;
}

button, a {
    touch-action: manipulation;
}

.route-timeline-press {
    position: relative;
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

    .route-timeline-press:before {
        content: "";
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 1px;
        width: 3px;
        border-left: 3px dashed var(--background-primary);
    }

    .route-timeline-press.has-stops:before {
        bottom: 35px;
    }

        .route-timeline-press li {
            position: relative;
            font-weight: 500;
            font-size: 18px;
            padding-left: 25px;
            line-height: normal;
        }

    .route-timeline-press .routefrom-timeline-item::before {
        content: "";
        position: absolute;
        top: 8px;
        left: -2.6px;
        width: 10px;
        height: 10px;
        border: 2px solid var(--background-primary);
        background: transparent;
        border-radius: 50%;
    }

    .route-timeline-press .routeto-timeline-item::before {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        bottom: 5px;
        left: -4.2px;
        background-image: url('/assets/img_V2/route-map.svg');
        background-repeat: no-repeat;
    }

.loading {
    --uib-size: 18px;
    --uib-color: white;
    --uib-speed: 2s;
    --uib-bg-opacity: 0;
    height: var(--uib-size);
    width: var(--uib-size);
    transform-origin: center;
    animation: rotate var(--uib-speed) linear infinite;
    will-change: transform;
    overflow: visible;
    display: none;
}

.loading-active .loading {
    display: inline-block; 
}

.loading-active .btn-text {
    display: none;
}

.car {
    fill: none;
    stroke: var(--uib-color);
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: stretch calc(var(--uib-speed) * 0.75) ease-in-out infinite;
    will-change: stroke-dasharray, stroke-dashoffset;
    transition: stroke 0.5s ease;
}

.track {
    fill: none;
    stroke: var(--uib-color);
    opacity: var(--uib-bg-opacity);
    transition: stroke 0.5s ease;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes stretch {
    0% {
        stroke-dasharray: 0, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 75, 150;
        stroke-dashoffset: -25;
    }

    100% {
        stroke-dashoffset: -100;
    }
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.booking-hist-pagination {
    float: right;
}

.pagination {
    color: #AAA;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.paginate_button a {
    font-weight: 500;
    font-size: 16px;
}

.paginate_button.disabled a {
    color: #AAA;
}

.paginate_button.color-pagination a {
    color: var(--text-secondary);
}

.paginate_button.active a {
    color: var(--text-secondary);
}

/*--------------------------------------------------------------
# Input
--------------------------------------------------------------*/
.label-i {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

    .label-i .input {
        background: var(--background-light);
        border: 1px solid #AAA;
        border-radius: 12px;
        width: 100%;
        height: 65px;
        padding: 23px 23px 8px;
        outline: 0;
    }

        .label-i .input + span {
            color: var(--text-muted);
            position: absolute;
            left: 23px;
            top: 8px;
            cursor: text;
            font-size: 12px;
            pointer-events: none;
            transition: .3s ease;
        }

        .label-i .input:placeholder-shown + span {
            top: 23px;
            font-size: 16px;
        }

        .label-i .input:focus + span {
            top: 8px;
            font-size: 12px;
        }

/*--------------------------------------------------------------
# Placeholder
--------------------------------------------------------------*/
::placeholder {
    color: var(--text-muted);
    font-size: 15px;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
    color: var(--text-muted);
    font-size: 15px;
}

/*--------------------------------------------------------------
# Password Strength
----------------------------------------------------------------*/
#password-strength {
    display: none;
    transition: opacity .3s ease, visibility .3s ease;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

    #password-strength.show {
        opacity: 1;
        visibility: visible;
    }

.strength-bar-outer {
    border-radius: 8px;
    height: 21px;
    width: 100%;
    background-color: transparent;
    overflow: hidden;
}

.strength-bar-inner {
    height: 100%;
    width: 0;
    border-radius: 8px;
    background-color: transparent;
    transition: width .3s ease, background-color .3s ease;
}

.strength-text {
    display: block;
    font-size: 14px;
    width: 50px;
    text-align: center;
    transition: color .3s ease;
}

    .strength-text.weak {
        color: #FF3B4E;
    }

    .strength-text.medium {
        color: var(--text-orange);
    }

    .strength-text.strong {
        color: var(--text-secondary);
    }


/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn-home-search {
    width: 100%;
    height: 45px;
    background: var(--background-secondary);
    color: var(--text-light);
    border-radius: 12px;
    border: 0;
    outline: 0;
    font-weight: 700;
    padding: 0 8px;
    transition: .3s ease;
}

    .btn-home-search:hover {
        background: var(--background-secondary-hover);
    }

.btn-listing-modify {
    width: 145px;
    height: 41px;
    background: var(--background-secondary);
    color: var(--text-light);
    border-radius: 12px;
    border: 0;
    outline: 0;
    font-weight: 700;
    padding: 0 8px;
    transition: .3s ease;
}

    .btn-listing-modify:hover {
        background: var(--background-secondary-hover);
    }

.listing-p {
    padding-left: 45px;
    padding-right: 45px;
}

.noresult-bg {
    border-radius: 12px;
    background: #FFF;
    padding: 32px;
    text-align: center;
}

.listing-noresult .noresult-bg img {
    margin-bottom: 20px;
}

.listing-noresult .noresult-bg h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 7px;
    color: #AAA;
}

.listing-noresult .noresult-bg span {
    color: #AAA;
    line-height: normal;
}

.end {
    margin-top: 26px;
}

    .end hr {
        width: 50%;
    }

    .end span {
        margin: 0 54px;
        color: #AAA;
        line-height: normal;
    }

textarea {
    resize: none;
}

    textarea:focus {
        outline: none;
    }

.gohub-hidden {
    display: none;
}

.routeline-container {
    margin: 20px 0;
}

.routeline {
    position: relative;
}

    .routeline .icon {
        border-radius: 50%;
        width: 10px;
        height: 10px;
        border: 2px solid var(--background-primary);
        background: #FFF;
        position: absolute;
        top: 5px;
        left: 0;
        z-index: 1;
    }

    .routeline .dotted-line {
        border-left: 3px dashed var(--background-primary);
        position: absolute;
        top: 20px;
        left: 3.4px;
        height: 100%;
    }

    .routeline .route-name {
        font-size: 15px;
        line-height: normal;
        padding-left: 16px;
    }

    .routeline .terminal-name {
        font-size: 12px;
        color: #888;
        height: 15px;
    }

.businfo {
    position: relative;
    padding-top: 22px;
}

    .businfo .location-icon {
        position: absolute;
        top: 18px;
        left: -2px;
        z-index: 1;
    }

    .businfo .route-name {
        font-size: 15px;
        line-height: normal;
        padding-left: 16px;
    }

    .businfo .terminal-name {
        font-size: 12px;
        color: #888;
        height: 15px;
    }
/*.timeline {
    position: relative;
    display: flex;
    align-items: center;
}

.timeline__circle {
    background-color: var(--background-light);
    border: 2px solid var(--background-primary);
    border-radius: 50%;
    height: 9px;
    width: 9px;
    position: absolute;
    left: -18px;
    z-index: 1;
}

.timeline__line {
    border-left: 2px dotted var(--background-primary);
    top: 10px;
    left: -14px;
    position: absolute;
    height: 100%;
}*/

.timeline {
    position: relative;
    /*display: flex;*/
    align-items: center;
}

.timeline__line {
    border-left: 2px dotted var(--background-primary);
    top: 10px;
    left: -14px;
    position: absolute;
    height: 50%;
}

.timeline__title {
    flex: 1;
    color: #444;
    font-size: 18px;
    font-weight: 500;
}

timeline__items {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.timeline__top {
    align-items: center;
    display: grid;
}

.timeline__circle {
    background-color: var(--background-light);
    border: 2px solid var(--background-primary);
    border-radius: 50%;
    height: 9px;
    width: 9px;
    position: absolute;
    left: -18px;
    z-index: 1;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}

.gm-style .gm-style-iw-c {
    padding: 13px 12px !important;
    background: #FFF !important;
}

.gm-style .gm-style-iw-chr {
    display: none !important;
}

.gm-style .gm-style-iw-t::after {
    display: none !important;
}

.gm-style .gm-style-iw-tc::after {
    display: none !important;
}

.gm-style .gm-ui-hover-effect {
    display: none !important;
}

.gm-style .gm-style-iw-c {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    border: 1px solid #DDD;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb-container {
    background-color: #F9F9F9;
    height: 40px;
}

.breadcrumb {
    padding: 7px 0;
    margin: 0;
    align-items: baseline;
}

.breadcrumb-item a {
    line-height: normal;
    font-size: 14px;
    transition: all .3s;
}

    .breadcrumb-item a:hover {
        color: var(--text-secondary);
    }

.breadcrumb-item + .breadcrumb-item {
    color: #AAA;
    line-height: normal;
    font-size: 14px;
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: ">";
        color: var(--text-primary);
    }

.breadcrumb-item h1 {
    font-size: 14px;
}

/*--------------------------------------------------------------
# Checkbox
--------------------------------------------------------------*/
.check-container {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 24px;
}

.checkbox-wrapper-46 input[type="checkbox"] {
    display: none;
    visibility: hidden;
}

.checkbox-wrapper-46 .cbx-guest {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    top: 0;
    width: auto;
    height: auto;
    border: none;
}

    .checkbox-wrapper-46 .cbx-guest .true-box {
        display: inline-block;
        vertical-align: middle;
        transform: translate3d(0, 0, 0);
    }

        .checkbox-wrapper-46 .cbx-guest .true-box:first-child {
            position: relative;
            width: 16px;
            height: 16px;
            border-radius: 3px;
            transform: scale(1);
            vertical-align: middle;
            border: 1px solid #CCC;
            transition: all 0.2s ease;
        }

            .checkbox-wrapper-46 .cbx-guest .true-box:first-child svg {
                position: absolute;
                top: 3px;
                left: 2px;
                fill: none;
                stroke: var(--background-light);
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 16px;
                stroke-dashoffset: 16px;
                transition: all 0.3s ease;
                transition-delay: 0.1s;
                transform: translate3d(0, 0, 0);
            }

            .checkbox-wrapper-46 .cbx-guest .true-box:first-child:before {
                content: "";
                width: 100%;
                height: 100%;
                background: var(--background-primary);
                display: block;
                transform: scale(0);
                opacity: 1;
                border-radius: 50%;
            }

    .checkbox-wrapper-46 .cbx-guest .check-label:last-child {
        padding-left: 8px;
        color: #777;
        font-size: 14px;
    }

.checkbox-wrapper-46 .inp-cbx:checked + .cbx-guest .true-box:first-child {
    background: var(--background-primary);
    border-color: var(--background-primary);
    animation: wave-46 0.4s ease;
}

    .checkbox-wrapper-46 .inp-cbx:checked + .cbx-guest .true-box:first-child svg {
        stroke-dashoffset: 0;
    }

    .checkbox-wrapper-46 .inp-cbx:checked + .cbx-guest .true-box:first-child:before {
        transform: scale(3.5);
        opacity: 0;
        transition: all 0.6s ease;
    }

/*--------------------------------------------------------------
# Quantity
--------------------------------------------------------------*/
.qty-input {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 6px;
}

.input-number,
.btn-number {
    background: transparent;
    font-size: inherit;
    border: none;
    display: inline-block;
    min-width: 0;
    height: 39px;
    line-height: 1;
    background: #FFF;
    border: 1px solid #CCC;
}

.input-number {
    width: 50px;
    height: 39px;
    min-width: 0;
    display: inline-block;
    text-align: center;
    appearance: textfield;
    outline: 0;
}

.btn-number {
    padding: 0;
    width: 25px;
    font-size: 18px;
    overflow: hidden;
    position: relative;
    background: var(--background-primary);
    color: #FFF;
    outline: 0;
    border: 0;
    transition: .3s ease-in-out;
}

    .btn-number:disabled {
        width: 25px;
        height: 39px;
        background: #AAA;
    }

        .btn-number:disabled:hover {
            background-color: #AAA;
            border: none;
            color: var(--text-light);
        }

.btn-plus {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.btn-minus {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

    .btn-plus:hover,
    .btn-minus:hover {
        background: var(--background-primary-hover);
    }

/*--------------------------------------------------------------
# DropDown
--------------------------------------------------------------*/
.select-dp-container {
    display: none;
    opacity: 0;
    width: 100%;
    max-height: 50vh;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-light);
    border-radius: 12px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 23px 26px;
    overflow: hidden;
    z-index: 50;
}

    .select-dp-container.open {
        opacity: 1;
        display: block;
    }

    .select-dp-container .scrolled {
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 380px;
    }

    .select-dp-container ul {
        list-style: none;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

        .select-dp-container ul li {
            padding: 10px 0;
            transition: .3s ease;
        }

            .select-dp-container ul li:hover,
            .select-dp-container ul li.selected {
                color: var(--background-primary-hover);
            }

    .select-dp-container .scrolled::-webkit-scrollbar {
        width: 5px; /* Adjust width as needed */
        background-color: transparent; /* Or a very light color */
    }

    .select-dp-container .scrolled::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2); /* A slightly darker color for the thumb */
        border-radius: 5px; /* Optional rounded corners */
    }

    .select-dp-container .scrolled::-webkit-scrollbar-track {
        background-color: transparent; /* Or a very light color */
    }

/*--------------------------------------------------------------
# Country Code
--------------------------------------------------------------*/
.select-countryCode-container {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 60vh;
    border-radius: 12px;
    background: var(--background-light);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 23px 26px;
    overflow: hidden;
    z-index: 50;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .select-countryCode-container.open {
        opacity: 1;
        visibility: visible;
    }

    .select-countryCode-container .label-i {
        margin-bottom: 0;
    }

        .select-countryCode-container .label-i .input {
            height: 58px;
            padding: 10px 45px 10px 61px;
        }

        .select-countryCode-container .label-i > img {
            position: absolute;
            top: 20px;
            left: 29px;
        }

        .select-countryCode-container .label-i > i {
            display: none;
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 26px;
            color: #AAA;
        }

    .select-countryCode-container .scrolled {
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 380px;
    }

    .select-countryCode-container .g-header {
        position: sticky;
        top: 0;
        padding: 10px 3px;
        font-weight: 700;
        line-height: normal;
        background: var(--background-light);
    }

    .select-countryCode-container .country-item {
        padding: 12px 0;
        border-bottom: 1px solid #DDD;
        cursor: pointer;
        transition: color .3s ease-in-out;
    }

        .select-countryCode-container .country-item:hover,
        .select-countryCode-container .country-item.selected {
            color: var(--text-secondary);
        }

        .select-countryCode-container .country-item .country-w {
            display: inline-block;
            width: 200px;
        }

    .select-countryCode-container .scrolled::-webkit-scrollbar {
        width: 5px; /* Adjust width as needed */
        background-color: transparent; /* Or a very light color */
    }

    .select-countryCode-container .scrolled::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2); /* A slightly darker color for the thumb */
        border-radius: 5px; /* Optional rounded corners */
    }

    .select-countryCode-container .scrolled::-webkit-scrollbar-track {
        background-color: transparent; /* Or a very light color */
    } 
       

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
    .navbar .circle-count {
        display: block;
        width: 19px;
        height: 19px;
        background: var(--background-secondary);
        border-radius: 50%;
        color: #FFF;
        font-size: 8px;
        line-height: normal;
        padding: 4px 3px;
        text-align: center;
        position: absolute;
        top: -10px;
        right: -20px;
    }

.navbar .dropdown .notification-dropdown {
    width: 326px;
}

.navbar .notification-dropdown .noti {
    max-width: 240px;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    margin-right: auto;
}

.navbar .notification-dropdown .noti-link {
    display: block;
    white-space: normal;
    cursor: pointer;
}

.navbar .notification-dropdown .noti-time {
    font-size: 12px;
    text-align: right;
    color: var(--text-muted);
    line-height: normal;
}

.navbar .notification-dropdown .noti-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: normal;
    overflow: hidden;
    white-space: pre-line;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.navbar .notification-dropdown a:hover .noti-desc,
.navbar .notification-dropdown a:hover .noti-time {
    color: #FFF;
}

.navbar .notification-dropdown li {
    padding-left: 0;
}

.navbar .notification-dropdown .view-link {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: normal;
    justify-content: center;
}

    .navbar .notification-dropdown .view-link:hover {
        background: none;
        color: var(--background-primary-hover);
    }

.navbar .notification-dropdown .unread {
    background-color: #FCF7F4;
    padding-left: 0;
}

.navbar .notification-dropdown .read {
    background-color: #FFF;
    padding-left: 0;
}

.navbar .guest-circle-name {
    margin-left: 16px;
    font-size: 30px;
    color: var(--text-secondary);
}

/*--------------------------------------------------------------
# Home Swiper
--------------------------------------------------------------*/
.hero .hero-swiper {
    width: 100%;
    height: 100%;
}

    .hero .hero-swiper .swiper-slide {
        height: 548px;
        overflow: hidden;
        position: relative;
    }

        .hero .hero-swiper .swiper-slide .banner-img {
            background-size: cover;
            width: 100%;
            height: 100%;
            background-position: center 58%;
            background-repeat: no-repeat;
        }

    .hero .hero-swiper .swiper-button-next, .swiper-button-prev {
        position: absolute;
        top: 50%;
        width: 50px;
        height: 50px;
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
    }

        .hero .hero-swiper .swiper-button-next:after, .swiper-button-prev:after {
            font-family: swiper-icons;
            font-size: 24px;
            text-transform: none !important;
            letter-spacing: 0;
            font-variant: initial;
            line-height: 1;
        }

        .hero .hero-swiper .swiper-button-prev.swiper-button-disabled,
        .hero .hero-swiper .swiper-button-next.swiper-button-disabled {
            opacity: 0;
        }

/*--------------------------------------------------------------
# Pre-loader
--------------------------------------------------------------*/
#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,.5);
    z-index: 9999;
}

     .success-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.50);
        z-index: 1055;
        overflow: hidden;
        visibility: hidden; /* Hide the modal initially */
        opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

         .success-loader.open {
            visibility: visible;
            opacity: 1;
        }

     .success-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

         .success-content h6 {
            margin-bottom: 0;
            font-size: 22px;
            line-height: normal;
            color: var(--text-light);
            font-weight: 700;
            text-align: center;
        }

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 999;
}

    .custom-modal-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .custom-modal-header {
        display: flex;
        align-items: center;
    }

        .custom-modal-header i {
            cursor: pointer;
        }

        .custom-modal-box {
            background: var(--text-light);
            border-radius: 16px;
            outline: 0;
            width: 346px;
            max-width: 90%;
            height: 286px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.custom-modal-body {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.custom-modal-body h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
}

.custom-modal-footer .btn-yes {
    width: 222px;
    max-width: 100%;
    border: 0;
    outline: 0;
    border-radius: 12px;
    background: var(--background-secondary);
    color: var(--text-light);
    font-weight: 700;
    padding: 8px;
    margin-bottom: 24px;
    transition: .3s ease;
}

.custom-modal-footer .btn-yes:hover {
    background: var(--background-secondary-hover);
}

        .custom-modal-footer .btn-no {
            width: 222px;
            max-width: 100%;
            border: 0;
            outline: 0;
            background-color: transparent;
            font-weight: 700;
            padding: 8px;
            transition: .3s ease;
        }

    .message-modal {
        --l: 1rem;
        --r: 1rem;
        --s: 350px;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5);
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        z-index: 1055;
        transition: opacity .3s ease, visibility .3s ease;
    }

    .message-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .message-modal .message-modal-dialog {
        margin-left: var(--l);
        margin-right: var(--r);
        position: relative;
        width: auto;
    }

    .message-modal .message-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - var(--l) * 2);
    }

    .message-modal .message-modal-content {
        background: #FFF;
        width: var(--s);
        height: 325px;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
    }

    .message-modal .message-modal-body {
        padding: 36px 29px 26px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

        .message-modal .message-modal-body h6 {
            margin-bottom: 2rem;
        }

        .message-modal .message-modal-body .btn-ok {
            width: 260px;
            height: 45px;
            background: var(--background-secondary);
            border: 0;
            outline: 0;
            border-radius: 12px;
            color: var(--text-light);
            font-weight: 700;
            transition: .3s ease;
        }

            .message-modal .message-modal-body .btn-ok:hover {
                background: var(--background-secondary-hover);
            }

            .support-modal {
                --l: 1rem;
                --r: 1rem;
                --s: 800px;
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, .5);
                opacity: 0;
                visibility: hidden;
                overflow: hidden;
                z-index: 1055;
                transition: opacity .3s ease, visibility .3s ease;
            }

    .support-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .support-modal .support-modal-dialog {
        margin-left: var(--l);
        margin-right: var(--r);
        position: relative;
        width: auto;
    }

    .support-modal .support-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - var(--l) * 2);
    }

    .support-modal .support-modal-content {
        background: #FFF;
        width: var(--s);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
    }

    .support-modal .support-modal-body {
        padding: 36px 49px 63px 68px;
    }

        .support-modal .support-modal-body h5 {
            margin-bottom: 0;
            font-size: 18px;
            font-weight: 700;
            line-height: normal;
        }

        .support-modal .support-modal-body i {
            cursor: pointer;
        }

        .support-modal .support-modal-body h6 {
            font-size: 16px;
            line-height: normal;
            margin-bottom: 19px;
            font-weight: 700;
        }

        .support-modal .support-modal-body p {
            line-height: 18px;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .support-modal .support-modal-body .contact-wrapper {
            border-radius: 12px;
            background: #FFF;
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            padding: 25px 17px;
        }

            .support-modal .support-modal-body .contact-wrapper .contact-item {
                display: flex;
                align-items: center;
                gap: 25px;
                margin-bottom: 50px;
            }

                .support-modal .support-modal-body .contact-wrapper .contact-item:last-child {
                    margin-bottom: 0;
                }

                .support-modal .support-modal-body .contact-wrapper .contact-item i {
                    color: var(--text-secondary);
                }

.cancelbooking-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 350px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3s ease, visibility .3s ease;
}

    .cancelbooking-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .cancelbooking-modal .cancelbooking-modal-dialog {
        margin-left: var(--l);
        margin-right: var(--r);
        position: relative;
        width: auto;
    }

    .cancelbooking-modal .cancelbooking-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - var(--l) * 2);
    }

    .cancelbooking-modal .cancelbooking-modal-content {
        background: #FFF;
        width: var(--s);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
    }

    .cancelbooking-modal .cancelbooking-modal-body {
        padding: 36px 29px 26px;
        height: 100%;
        text-align: center;
    }

        .cancelbooking-modal .cancelbooking-modal-body h6 {
            margin-bottom: 30px;
            font-weight: 700;
        }

        .cancelbooking-modal .cancelbooking-modal-body span {
            line-height: normal;
            margin-bottom: 35px;
            display: block;
        }

        .cancelbooking-modal .cancelbooking-modal-body .btn-no {
            background: var(--background-secondary);
            border-radius: 12px;
            color: #FCFCFC;
            line-height: normal;
            font-size: 16px;
            font-weight: 700;
            height: 41px;
            border: 0;
            outline: 0;
            transition: all .3s;
            margin-bottom: 30px;
            text-align: center;
            width: 222px;
        }

            .cancelbooking-modal .cancelbooking-modal-body .btn-no:hover {
                background: var(--background-secondary-hover);
            }

.btn-modal {
    background: var(--background-secondary);
    width: 222px;
    font-size: 18px;
    font-weight: 700;
    color: #FCFCFC;
}

.cancelbooking-modal .cancelbooking-modal-body .btn-yes {
    font-size: 16px;
    background-color: transparent;
    width: fit-content;
    margin: 0 auto;
    outline: 0;
    border: 0;
    font-weight: 700;
    line-height: normal;
}

#cancelModal .btn-payment-yes {
    background: var(--background-secondary);
    color: #FFFFFF;
    border-radius: 12px;
    height: 42px;
}

    #cancelModal .btn-payment-yes:hover {
        background: var(--background-secondary);
        color: #FFFFFF;
    }


    #cancelModal .btn-payment-yes:disabled, .btn-genaral[disabled] {
        background: #AAA;
        color: #FFF;
        font-weight: 700;
    }

.wizard {
    position: relative;
}

.wizard-step {
    position: absolute;
    top: 2rem;
}

.wizard-dot {
    /* Center the content */
    align-items: center;
    display: flex;
    margin-left: -.7rem;
    transform: rotate(90deg);
    width: 56px;
}

.wizard-connector {
    flex: 1;
    height: 2px;
    background-color: var(--background-primary);
}

.wizard-step:first-child .wizard-connector:first-child,
.wizard-step:last-child .wizard-connector:last-child {
    background-color: transparent;
}

.wizard-circle {
    align-items: center;
    display: flex;
    background-color: #FFFFFF;
    border: 2px solid var(--background-primary);
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.ri-pencil-fill {
    color: var(--background-primary);
}

.icon-transfer {
    position: absolute;
    right: .5rem;
    top: 1.3rem;
}

.heading {
    font-weight: 700;
    margin-bottom: 1rem;
}

.depart-sub-item {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: .6rem;
}


.payment-category-text {
    font-weight: 500;
    letter-spacing: .15px;
}

.payment-box {
    display: flex;
    border: 1px solid #AAA;
    border-radius: 6px;
    width: 100%;
    align-items: center;
    cursor: pointer;
    background: #FFF;
    transition: all .3s ease;
    margin-bottom: 1rem;
    height: 74px;
    padding: 0 2rem;
}

    .payment-box:hover {
        transform: translateY(-3px);
    }

    .payment-box .icon {
        max-height: 25px;
        margin-right: 1rem;
    }

    .payment-box .surcharge {
        color: #AAA;
        font-size: 11px;
        letter-spacing: .15px;
    }

    .payment-box .sub-content {
        color: #AAAAAA;
        font-size: 12px;
        letter-spacing: .15px;
    }

.payment-btn {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 1rem;
}

.payment-img-out {
    display: flex;
    padding: 0;
    justify-content: center !important;
}

.payment-img-in {
    max-height: 100%;
}

.tnc-text {
    color: var(--text-muted);
    font-size: 14px;
}

.tabs {
    display: flex;
    border-collapse: separate;
    table-layout: auto;
}

.tabs-justify {
    width: 100%;
    table-layout: fixed;
}

a.tab {
    position: relative;
    display: inline-block;
    transition: all ease .3s;
    padding: .8rem 3rem;
    transform: translate3d(0, 0, 0);
    white-space: nowrap;
    cursor: pointer;
    color: var(--text-primary);
    text-align: center;
    width: 171px;
}

    a.tab:after {
        transition: all .3s cubic-bezier(1, 0, 0, 1);
        will-change: transform, box-shadow, opacity;
        position: absolute;
        content: '';
        height: 3px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        border-radius: 3px 3px 0px 0px;
        box-shadow: 0px 4px 10px 3px rgba($blue, .15);
        opacity: 0;
        transform: scale(0, 1);
    }

    a.tab.active {
        border-bottom: 6px solid var(--background-primary);
    }

        a.tab .active:after {
            opacity: 1;
            transform: scale(1, 1);
        }

.cus-dropdown {
    border: 1px solid #444444;
    border-radius: 25px;
    padding: 0.4rem;
    position: relative;
    text-align: center;
    width: 149px;
    background: #FFF;
    margin: 3rem auto;
}

.border-bottom {
    border-bottom: 1px solid #DDD !important;
    display: block;
}

.btn-ticket {
    background: #FFFFFF;
    border: 1px solid var(--background-primary);
    border-radius: 12px;
    color: var(--background-primary);
    width: 135px;
}

    .btn-ticket:hover {
        color: var(--background-primary);
        background-color: #FFFFFF;
        border-color: var(--background-primary);
    }

.service-wrap .btn-ticket {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    margin-right: 1rem;
    font-size: 16px !important;
    font-weight: 700 !important;
}

    .service-wrap .btn-ticket img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

.service-wrap .slick-slide {
    margin: 1rem 1rem 1rem 0;
}

.caleran-input {
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

    .caleran-input:focus {
        outline: 0;
        border: 0;
    }

    .caleran-input[readonly] {
        width: 100%;
        background-color: transparent;
        opacity: 1;
        position: absolute;
        bottom: 3px;
        left: 11px;
    }

.hide-details {
    display: none
}

.modal-footer {
    justify-content: center;
    border-top: unset;
}

.wallet-color {
    font-size: 2.2rem !important;
    color: #12ACDD;
}

.vertical-center {
    display: grid;
    align-items: center;
}

.form-check-input:checked {
    background-color: #10C6CA !important;
    border-color: #10C6CA !important;
}

.text-grey {
    color: grey;
}

.w-95 {
    width: 95px;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: unset;
    font-family: "Roboto";
    font-weight: 500;
    font-size: 1rem;
    white-space: break-spaces;
}

.p-0 {
    padding: 0;
}

.p-0-1 {
    padding: 0 1rem;
}

.p-0-2 {
    padding: 0 2rem;
}

.pl-0 {
    padding-left: 0;
}

.pl-8 {
    padding-left: 8px;
}

.pr-0 {
    padding-right: 0;
}

.pr-7 {
    padding-right: 7px;
}

.pb-60 {
    padding: 0 0 60px 0 !important;
}

.pt-15 {
    padding-top: 15px;
}

.mtb-1-5 {
    margin: 1.5rem 0;
}

.mt-0 {
    margin-top: 0;
}

.mt-1r {
    margin-top: 1rem;
}

mb-20 {
    margin-bottom: 20px;
}

.w-90 {
    width: 90%;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login .login-container {
    background: var(--background-light);
    border: 2px solid #EEE;
    border-radius: 20px;
    position: relative;
}

    .login .login-container img {
        height: 100%;
    }

.login .login-wrapper {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
}

.login .login-half {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 auto;
}

.login .title {
    font-weight: 700;
    font-size: 18px;
}

.login .btn-apps {
    border-radius: 6px;
    height: 50px;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    border: none;
    padding: 0;
    width: 318px;
    margin: 0 auto;
}

.login .btn-fb {
    background: #1877F2;
    margin-bottom: 1rem;
}

.login .btn-google {
    background: #4285F4;
}

.login .separator {
    position: absolute;
    height: 78%;
    left: 61%;
    top: 3%;
}

    .login .separator .line {
        position: absolute;
        left: 49%;
        top: 6%;
        bottom: 0;
        width: 1px;
        height: 100%;
        background: #AAA;
        z-index: 1;
    }

    .login .separator .word-wrapper {
        text-align: center;
        height: 12px;
        position: absolute;
        left: -7px;
        right: 0;
        top: 50%;
        margin-top: 16px;
        z-index: 2;
    }

        .login .separator .word-wrapper > span {
            color: #4E4E4E;
            letter-spacing: .15px;
            padding: 15px 0;
            font-weight: 300;
            background: var(--background-light);
        }

.login .login-input-box {
    border-radius: 12px;
    border: 1px solid #AAA;
    background: #FFF;
    height: 58px;
    display: flex;
    align-items: center;
    position: relative;
}

    .login .login-input-box .login-input {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 6px 33px;
    }

        .login .login-input-box .login-input .icon {
            position: absolute;
            top: 25px;
            right: 25px;
        }


        .login .login-input-box .login-input .eye-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
        }

        .login .login-input-box .login-input .label-title {
            display: none;
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 600;
            line-height: normal;
            margin-bottom: 6px;
        }

        .login .login-input-box .login-input input {
            outline: 0;
            border: 0;
            background: #FFF;
            padding: 0;
        }

.login .btn-login {
    background: var(--background-secondary);
    border-radius: 12px;
    font-size: 18px;
    color: var(--text-light);
    width: 272px;
    font-weight: 700;
    letter-spacing: .15px;
    margin-bottom: 1.5rem;
}

    .login .btn-login:hover {
        background: var(--background-secondary-hover);
        color: var(--text-light);
    }

.login .account {
    letter-spacing: 0.15px;
    text-decoration-line: underline;
    color: var(--text-secondary);
    cursor: pointer;
}

    .login .account:hover {
        text-decoration-line: underline;
        color: var(--background-hover);
    }


/*--------------------------------------------------------------
# Forgot Password
--------------------------------------------------------------*/
.forgotpassword .password-container {
    background: var(--background-light);
    border: 2px solid #EEE;
    border-radius: 20px;
    padding: 2rem;
}

.forgotpassword .title {
    letter-spacing: .15px;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 18px;
}

.forgotpassword .desc {
    letter-spacing: .15px;
    margin-bottom: 1rem;
}

.forgotpassword .fpass-input-box {
    border-radius: 12px;
    /*border: 1px solid #AAA;*/
    background: #FFF;
    height: 58px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

    .forgotpassword .fpass-input-box .fpass-input {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 6px 33px;
    }

        .forgotpassword .fpass-input-box .fpass-input .label-title {
            display: none;
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 600;
            line-height: normal;
            margin-bottom: 6px;
        }

        .forgotpassword .fpass-input-box .fpass-input input {
            outline: 0;
            border: 0;
            background: #FFF;
            padding: 0;
        }

.forgotpassword .btn-password:disabled {
    color: var(--text-light);
    background: #AAA;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: .15px;
    font-size: 18px;
    width: 272px;
    opacity: 1;
}

.forgotpassword .btn-password {
    background: var(--background-secondary);
    color: var(--text-light);
    width: 272px;
    border-radius: 12px;
    letter-spacing: .15px;
    font-weight: 700;
    font-size: 18px;
}

    .forgotpassword .btn-password:hover {
        background: var(--background-secondary-hover);
        color: var(--text-light);
    }

/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
.register .register-container {
    border-radius: 20px;
    border: 2px solid #EEE;
    background: var(--background-light);
    padding: 0.75rem 2rem 0.5rem 2rem;
}

    .register .register-container h1 {
        font-weight: 700;
        font-size: 16px;
    }

    .register .register-container .head-title {
        font-weight: 600;
        font-size: 12px;
        color: var(--text-muted);
    }

.register .register-input-box {
    border-radius: 12px;
    border: 1px solid #AAA;
    background: #FFF;
    height: 58px;
    display: flex;
    align-items: center;
    position: relative;
}

    .register .register-input-box .register-input .icon {
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .register .register-input-box .register-input select {
        border: none;
        width: 100%;
        height: 100%;
        background: transparent;
        appearance: none;
        padding-right: 35px;
        pointer-events: auto;
    }

    .register .register-input-box .register-input .eye-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .register .register-input-box .register-input {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 6px 22px;
    }

.register #issuepass-input-register .register-input,
.register #exppass-input-register .register-input,
.register #dob-input-register .register-input {
    padding: 6px 38px;
}

.register #issuepass-input-register img,
.register #exppass-input-register img,
.register #dob-input-register img {
    position: absolute;
    top: 22px;
    left: 13px;
}

.register .register-input-box .register-input #dialCode {
    padding: 0px 17px;
}

.register .register-input-box .register-input .dialicon {
    right: 12px;
}

.register .register-input-box .register-input .label-title {
    display: none;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: normal;
    margin-bottom: 6px;
}

.register .register-input-box .register-input input {
    outline: 0;
    border: 0;
    background: #FFF;
    padding: 0;
}

.register .register-code {
    border-radius: 12px 0 0 12px !important;
}

.register .guest-phone {
    border-radius: 0 12px 12px 0 !important;
}

.register .register-gender,
.register .register-gender select,
.register .register-code,
.register .register-nation,
.register .register-passport {
    cursor: pointer;
}

.register .register-phone {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.register .register-gender #GenderCodeDropDown,
.register .register-nation #NationCodeDropDown,
.register .register-passport #PNationCodeDropDown,
.register .register-code #DialCodeDropDown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

    .register .register-gender #GenderCodeDropDown.expanded,
    .register .register-nation #NationCodeDropDown.expanded,
    .register .register-passport #PNationCodeDropDown.expanded,
    .register .register-code #DialCodeDropDown.expanded {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: block;
    }

.register .register-gender .select-dp,
.register .register-code .select-dp {
    width: 350px;
    background: #FFF;
    max-height: 350px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 65px;
    left: 0;
    border-radius: 12px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 10;
}

.register .register-passport .select-dp,
.register .register-nation .select-dp {
    width: 566px;
    background: #FFF;
    max-height: 350px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 57px;
    left: 0;
    border-radius: 12px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 10;
}

    .register .register-passport .select-dp .scrollable-content,
    .register .register-nation .select-dp .scrollable-content,
    .register .register-code .select-dp .scrollable-content {
        overflow-y: auto;
        max-height: calc(350px - 32px);
    }

    .register .register-gender .select-dp li,
    .register .register-passport .select-dp li,
    .register .register-nation .select-dp li,
    .register .register-code .select-dp li {
        padding: 10px;
        cursor: pointer;
    }

    .register .register-gender .select-dp .dc.selected,
    .register .register-passport .select-dp .dc.selected,
    .register .register-code .select-dp .dc.selected,
    .register .register-nation .select-dp .dc.selected {
        background: var(--background-primary);
        color: #FFF;
    }

        .register .register-gender .select-dp .dc.selected .gender,
        .register .register-passport .select-dp .dc.selected .passport,
        .register .register-code .select-dp .dc.selected .nationality,
        .register .register-nation .select-dp .dc.selected .dialcode {
            color: #FFF;
        }

    .register .register-gender .select-dp li:hover,
    .register .register-passport .select-dp li:hover,
    .register .register-nation .select-dp li:hover,
    .register .register-code .select-dp li:hover {
        background: var(--background-primary);
        color: #FFF;
    }

        .register .register-gender .select-dp li:hover .gender,
        .register .register-passport .select-dp li:hover .passport,
        .register .register-nation .select-dp li:hover .nationality,
        .register .register-code .select-dp li:hover .dialcode {
            color: #FFF;
        }

    .register .register-gender .select-dp li > .gender,
    .register .register-passport .select-dp li > .passport,
    .register .register-nation .select-dp li > .nationality,
    .register .register-code .select-dp li > .dialcode {
        color: var(--text-muted);
        font-size: 14px;
        line-height: normal;
    }

.register hr {
    margin: 10px -33px 20px;
}

.register .btn-save {
    width: 272px;
    background: var(--background-secondary);
    color: var(--text-light);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
}

    .register .btn-save:hover {
        background: var(--background-secondary-hover);
        color: var(--text-light);
    }

/* Additional Styles for Enhanced Usability */
.register .register-input-box .label-title.visible {
    display: block; /* Show when the input is focused or filled */
}

/*--------------------------------------------------------------
# Verify Mobile No Section
--------------------------------------------------------------*/
.verify-container {
    border-radius: 20px;
    border: 2px solid #EEE;
    background: var(--background-light);
    padding: 2rem;
}

.desc {
    line-height: 20.396px;
    font-size: 14px;
}

/*.verifymobile .tac {
    position: absolute;
    right: 1rem;
    top: 1.2rem;
    color: #FF6C48;
    letter-spacing: .15px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

.verifymobile .attempt {
    font-size: 14px;
    line-height: 20.396px;
}

.verifymobile .btn-submit:disabled {
    width: 272px;
    background-color: #AAA;
    color: var(--text-light);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .15px;
    border-radius: 12px;
}

.verifymobile .btn-submit {
    width: 272px;
    background-color: var(--second-background);
    color: var(--text-light);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .15px;
    border-radius: 12px;
}

    .verifymobile .btn-submit:hover {
        background-color: var(--second-background-hover);
        color: var(--text-light);
    }*/

.processing {
    position: absolute;
    right: 1rem;
    top: 1.7rem;
    font-weight: 600;
    font-size: 12px;
    color: var(--second-background);
}

.unverify {
    position: absolute;
    right: 1rem;
    top: 1.7rem;
    font-weight: 600;
    font-size: 12px;
    color: #EC2626;
}

.verify {
    position: absolute;
    right: 1rem;
    top: 1.7rem;
    font-weight: 600;
    font-size: 12px;
    color: var(--background);
}

#verifyPasswordModal .btn-submit:disabled {
    width: 272px;
    background-color: #AAA;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
}

#verifyPasswordModal .btn-submit {
    width: 272px;
    background-color: var(--second-background);
    color: var(--text-light);
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
}

    #verifyPasswordModal .btn-submit:hover {
        background-color: var(--second-background-hover);
        color: var(--text-light);
    }

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.sub-container {
    position: sticky;
    top: 0;
    background: var(--background-light);
    padding: 16px;
    border-bottom: 1px solid #EEE;
    z-index: 5;
    transition: all .5s
}

    .sub-container.scrolled-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .sub-container ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .sub-container .nav-header-link,
    .sub-container .nav-header-link:focus {
        font-size: 12px;
        font-weight: 500;
        line-height: normal;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0;
        text-decoration: none;
    }

        .sub-container .nav-header-link:hover {
            color: var(--text-secondary);
        }

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 0;
}

    #hero h1 {
        color: #FFF;
        text-shadow: 0px 2px 5px rgba(6, 90, 90, 0.75);
        font-weight: 700;
    }

    #hero .tabs {
        margin: 0;
        display: flex;
        align-items: center;
        height: 48px;
        border-radius: 12px 12px 0px 0px;
    }

    #hero .tablinks {
        border: none;
        outline: none;
        border-radius: 12px 12px 0px 0px;
        background: rgba(243, 243, 243, 0.90);
        cursor: pointer;
        width: 100%;
        height: 48px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        flex: 1;
        transition: all .3s ease;
    }

        #hero .tablinks > img {
            width: 30px;
            height: 30px;
            z-index: 2;
        }

        #hero .tablinks > span {
            color: #888;
            display: flex;
            width: 97px;
            font-size: 12px;
            font-weight: 500;
            line-height: normal;
            z-index: 2;
            align-items: center;
            justify-content: center;
            backface-visibility: hidden;
            transition: all .4s ease;
        }

        #hero .tablinks:hover {
            background: rgba(243, 243, 243, 1);
            z-index: 0;
            overflow: hidden;
        }

            #hero .tablinks:hover > span {
                color: var(--text-secondary);
            }

        #hero .tablinks.active {
            background: #FFF;
            z-index: 0;
            height: 54px;
            overflow: hidden;
        }

            #hero .tablinks.active > span {
                color: var(--text-secondary);
                font-size: 14px;
            }

    #hero .tabcontent {
        display: none;
    }

        #hero .tabcontent.active {
            display: block;
            height: 210px;
        }

    #hero .tab-container {
        position: absolute;
        z-index: 2;
    }

.search-panel {
    background: #FFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    border-radius: 0px 0 16px 16px;
    padding: 32px 28px;
    position: relative;
    transition: all .3s ease-in-out;
}

    .search-panel .input-box {
        position: relative;
        border-radius: 12px;
        background: #F5F5F5;
        padding: 10px 20px 10px 60px;
        height: 58px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        .search-panel .input-box .bx-transfer {
            color: var(--background-secondary);
        }

    .search-panel .dp-eb,
    .search-panel .dp-rr,
    .search-panel .dp-ferry,
    .search-panel .dp-hotel,
    .search-panel .dp-airport,
    .search-panel .dp-activities,
    .search-panel .dp-cb {
        flex: 1;
    }

    .search-panel .input-box .header-label {
        display: none;
        color: var(--text-muted);
        font-size: 12px;
        font-weight: 600;
        line-height: normal;
    }

    .search-panel .input-box .input-ellpsis {
        width: 95%;
    }

    .search-panel .input-box img {
        position: absolute;
        top: 22px;
        left: 26px;
    }

    .search-panel .input-box input {
        border: 0;
        outline: 0;
        background-color: transparent;
        font-size: 15px;
        width: 100%;
        padding: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .search-panel .input-box .icon {
        position: absolute;
        top: 20px;
        right: 17px;
    }

    .search-panel .input-box .bx-x {
        display: none;
    }

.popular-route-container {
    margin-bottom: 3.5rem;
}

    .popular-route .popular-route-title img,
    .explore .explore-title img,
    .explore .explore-title img,
    .pick .pick-title img,
    .hotel .hotel-title img,
    .place .place-title img,
    .activities .activities-title img {
        width: 28px;
        height: 28px;
        margin-right: 1rem;
    }

    .popular-route .popular-route-title {
        color: var(--text-primary);
        font-weight: 700;
        font-size: 20px;
        line-height: normal;
        margin-bottom: 28px;
    }

    .popular-route .popular-route-item-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 26px;
        padding-left: 4rem;
    }

        .popular-route .popular-route-item-container .route-card {
            border-radius: 8px;
            background: var(--background-light);
            box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
            width: 215px;
            height: 134px;
            display: flex;
            flex-direction: column;
            transition: .3s ease;
        }

            .popular-route .popular-route-item-container .route-card:hover {
                transform: translateY(-5px);
            }

        .popular-route .popular-route-item-container .route-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 6px 12px;
        }

            .popular-route .popular-route-item-container .route-container .circle {
                width: 10px;
                height: 10px;
                border: 3px solid var(--background-primary);
                border-radius: 50%;
                margin-left: 2px;
                margin-right: 12px;
                background: var(--background-light);
            }

            .popular-route .popular-route-item-container .route-container .dotted-line {
                border-left: 3px dashed var(--background-primary);
                height: 20px;
                margin-left: 5px;
            }

            .popular-route .popular-route-item-container .route-container .location {
                width: 14px;
                height: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 12px;
            }

            .popular-route .popular-route-item-container .route-container .route-row {
                display: flex;
                align-items: center;
                min-height: 30px;
            }

            .popular-route .popular-route-item-container .route-container .station {
                font-size: 13px;
                line-height: 16.9px;
                max-width: 150px;
            }

            .popular-route .popular-route-item-container .route-container .code {
                color: #888;
                font-size: 12px;
                margin-left: 3px;
            }

        .popular-route .popular-route-item-container .route-bottom-container {
            border-radius: 0px 0px 8px 8px;
            background: #F9F9F9;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 14px;
            height: 100%;
        }

            .popular-route .popular-route-item-container .route-bottom-container .price-f {
                color: var(--text-secondary);
                font-weight: 500;
                line-height: normal;
            }

            .popular-route .popular-route-item-container .route-bottom-container .btn-book {
                background: var(--background-light);
                color: var(--text-secondary);
                border: 1px solid var(--background-primary);
                border-radius: 12px;
                font-size: 12px;
                font-weight: 700;
                padding: 3px 10px;
                transition: all .3s ease-in-out;
            }

                .popular-route .popular-route-item-container .route-bottom-container .btn-book:hover {
                    background: var(--background-primary-hover);
                    color: var(--text-light);
                }

                    .explore-rr-container,
                    .pick-container,
                    .hotel-container,
                    .place-container,
                    .activity-container {
                        position: relative;
                        margin-bottom: 3.5rem
                    }

.explore .explore-title,
.pick .pick-title,
.hotel .hotel-title,
.place .place-title,
.activities .activities-title {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.explore .explore-tabs,
.pick .pick-tabs,
.activities .activities-tabs {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 25px 0 38px;
}

    .explore .explore-tabs .explore-tablinks,
    .pick .pick-tabs .pick-tablinks,
    .activities .activities-tabs .activities-tablinks {
        border: none;
        outline: none;
        color: #AAA;
        font-weight: 500;
        background-color: transparent;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 8px;
        transition: color .3s ease;
        text-transform: capitalize;
    }

        .explore .explore-tabs .explore-tablinks.active,
        .explore .explore-tabs .explore-tablinks:hover,
        .pick .pick-tabs .pick-tablinks.active,
        .pick .pick-tabs .pick-tablinks:hover,
        .activities .activities-tabs .activities-tablinks.active,
        .activities .activities-tabs .activities-tablinks:hover {
            color: var(--text-secondary);
        }

        .explore .explore-tabs .explore-tablinks:before,
        .pick .pick-tabs .pick-tablinks:before,
        .activities .activities-tabs .activities-tablinks:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--background-primary);
            transition: .3s ease-in-out;
        }

        .explore .explore-tabs .explore-tablinks.active:before,
        .pick .pick-tabs .pick-tablinks.active:before,
        .activities .activities-tabs .activities-tablinks.active:before {
            width: 100%;
            left: 0;
        }

.explore .explorecontent,
.pick .pick-content,
.activities .activitiescontent {
    display: none;
    position: relative;
}

    .explore .explorecontent.active,
    .pick .pick-content.active,
    .activities .activitiescontent.active {
        display: block;
    }

.explore .swiper-slide,
.pick .swiper-slide,
.hotel .swiper-slide,
.activities .swiper-slide {
    height: 232px !important;
}

.explore .popular-branch-card,
.pick .pick-card,
.hotel .hotel-card,
.activities .popular-activities-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border-radius: 12px;
    border: 1px solid #DDD;
    background: #FFF;
    overflow: hidden;
    transition: box-shadow .3s ease 0s;
    height: 100%;
}

    .explore .popular-branch-img-top,
    .activities .popular-activities-img-top {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        width: 100%;
        height: 133px;
        border-radius: calc(12px - 1px) calc(12px - 1px) 0 0;
        -o-object-fit: cover;
        object-fit: cover;
        transition: transform .3s ease;
    }

.explore .popular-branch-card:hover,
.activities .popular-activities-card:hover {
    box-shadow: 0px 4px 16px 1px rgba(0,0,0,0.12);
}

    .explore .popular-branch-card:hover img,
    .activities .popular-activities-card:hover img {
        transform: scale(1.05);
    }

.explore .swiper-button-next,
.explore .swiper-button-prev,
.activities .swiper-button-next,
.activities .swiper-button-prev {
    display: flex;
    position: absolute;
    top: 50%;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    border: 1px solid #CCC;
    color: var(--text-primary);
    background: #FFF;
    opacity: 1;
    pointer-events: auto;
    transition: box-shadow .3s, opacity .3s;
}

    .explore .swiper-button-prev.swiper-button-disabled,
    .explore .swiper-button-next.swiper-button-disabled,
    .activities .swiper-button-prev.swiper-button-disabled,
    .activities .swiper-button-next.swiper-button-disabled {
        opacity: 0;
        pointer-events: none; /* Disable click events */
    }

    .explore .swiper-button-next:hover,
    .explore .swiper-button-prev:hover,
    .activities .swiper-button-next:hover,
    .activities .swiper-button-prev:hover {
        box-shadow: 0 4px 20px 0 rgba(0,0,0,.08);
    }

.explore .btn-book,
.activities .btn-book {
    border-radius: 12px;
    border: 1px solid #10C6CA;
    background: #FFF;
    width: auto;
    height: 25px;
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    color: var(--text-secondary);
    padding: 5px;
    text-align: center;
    transition: all .3s;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .explore .btn-book:hover,
    .activities .btn-book:hover {
        background: var(--background-primary);
        color: #FFF;
    }

.explore .swiper-button-next:after,
.explore .swiper-button-prev:after,
.activities .swiper-button-next:after,
.activities .swiper-button-prev:after {
    font-size: 10px;
}

.explore .swiper-button-prev,
.activities .swiper-button-prev {
    left: -45px;
}

.explore .swiper-button-next,
.activities .swiper-button-next {
    right: -45px;
}

@media (max-width: 1200px) {
    .explore .swiper-button-prev,
    .activities .swiper-button-prev {
        left: -35px;
    }

    .explore .swiper-button-next,
    .activities .swiper-button-next {
        right: -35px;
    }
}

.explore .popular-branch-card-body,
.activities .popular-activities-card-body {
    position: relative;
    padding: 5px 15px 10px;
    height: 100%;
    background: #FFF;
    display: flex;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    justify-content: space-between;
}

    .explore .popular-branch-card-body h5,
    .activities .popular-activities-card-body h5 {
        font-size: 16px;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-box-align: start;
        -webkit-line-clamp: 2;
    }

    .explore .popular-branch-card-body span,
    .activities .popular-activities-card-body span {
        font-size: 12px;
        color: #AAA;
        line-height: normal;
    }

    .explore .popular-branch-card-body .address,
    .activities .popular-activities-card-body .address {
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: normal;
        font-style: italic;
        font-size: 12px;
        margin-top: 3px;
        display: block;
        white-space: nowrap;
    }

    .explore .popular-branch-card-body .minprice,
    .activities .popular-activities-card-body .minprice {
        font-size: 18px;
        color: var(--text-secondary);
        font-weight: 500;
        line-height: normal;
        margin-left: 3px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

.pick .pick-camp-content,
.hotel .hotel-content {
    margin-top: 37px;
}

.pick .pick-card,
.hotel .hotel-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border-radius: 12px;
    border: 1px solid #DDD;
    background: #FFF;
    overflow: hidden;
    transition: box-shadow .3s ease 0s;
    height: 100%;
}

.pick .pick-img-top,
.hotel .hotel-img-top {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%;
    height: 146px;
    border-radius: calc(12px - 1px) calc(12px - 1px) 0 0;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .3s ease 0s;
}

.pick .pick-card-body .price-container > span {
    color: #AAA;
    font-size: 12px;
    font-style: normal;
    line-height: normal;
}

.pick .pick-card-body .price-container .minprice {
    margin-left: 3px;
    color: var(--text-secondary);
    line-height: normal;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pick .swiper-slide,
.hotel .swiper-slide {
    height: 246px !important;
}

.pick .pick-card:hover,
.hotel .hotel-card:hover {
    box-shadow: 0px 4px 16px 1px rgba(0,0,0,0.12);
}

    .pick .pick-card:hover img,
    .hotel .hotel-card:hover img {
        transform: scale(1.05);
    }

.pick .swiper-button-next,
.pick .swiper-button-prev,
.hotel .swiper-button-next,
.hotel .swiper-button-prev {
    display: flex;
    position: absolute;
    top: 55%;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    border: 1px solid #CCC;
    color: var(--text-primary);
    background: #FFF;
    opacity: 1;
    pointer-events: auto;
    transition: box-shadow .3s, opacity .3s;
}

    .pick .swiper-button-prev.swiper-button-disabled,
    .pick .swiper-button-next.swiper-button-disabled,
    .hotel .swiper-button-prev.swiper-button-disabled,
    .hotel .swiper-button-next.swiper-button-disabled {
        opacity: 0;
        pointer-events: none; /* Disable click events */
    }

    .pick .swiper-button-next:hover,
    .pick .swiper-button-prev:hover,
    .hotel .swiper-button-next:hover,
    .hotel .swiper-button-prev:hover {
        box-shadow: 0 4px 20px 0 rgba(0,0,0,.08);
    }

    .pick .swiper-button-next:after,
    .pick .swiper-button-prev:after,
    .hotel .swiper-button-next:after,
    .hotel .swiper-button-prev:after {
        font-size: 10px;
    }

.pick .swiper-button-prev,
.hotel .swiper-button-prev {
    left: -45px;
}

.pick .swiper-button-next,
.hotel .swiper-button-next {
    right: -45px;
}

.pick .pick-card-body,
.hotel .hotel-card-body {
    position: relative;
    padding: 9px 15px 10px;
    height: 100%;
    background: #FFF;
    display: flex;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    justify-content: space-between;
}

    .pick .pick-card-body h5,
    .hotel .hotel-card-body h5 {
        font-size: 16px;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-box-align: start;
        -webkit-line-clamp: 2;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .pick .pick-card-body span,
    .hotel .hotel-card-body span {
        font-size: 12px;
        line-height: normal;
        font-style: italic;
    }

.pick .star-box,
.hotel .star-box-hotel {
    border-radius: 6px;
    background: rgba(255, 242, 210, 0.50);
    width: 107px;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 6px;
    color: #FFBE2C;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .pick .star-box i,
    .hotel .star-box-hotel i {
        font-size: 9px;
        margin-right: 6px;
    }

    .pick .star-box span,
    .hotel .star-box-hotel span {
        font-size: 12px;
        font-weight: 500;
        font-style: normal;
        line-height: normal;
    }

.place .place-content {
    margin-top: 37px;
}

.place .place-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .3s ease 0s;
    height: 100%;
}

    .place .place-card img {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        width: 100%;
        height: 267px;
        border-radius: calc(12px - 1px);
        -o-object-fit: cover;
        object-fit: cover;
        overflow: hidden;
        transition: transform .3s ease 0s;
    }

    .place .place-card:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 53.79%, rgba(5, 21, 18, 0.80) 78.83%);
    }

    .place .place-card:hover {
        box-shadow: 0px 4px 16px 1px rgba(0,0,0,0.12);
    }

        .place .place-card:hover img {
            transform: scale(1.05);
        }

.place .swiper-slide {
    height: 267px !important;
}

.place .swiper-button-next,
.place .swiper-button-prev {
    display: flex;
    position: absolute;
    top: 60%;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    border: 1px solid #CCC;
    color: var(--text-primary);
    background: #FFF;
    opacity: 1;
    pointer-events: auto;
    transition: box-shadow .3s, opacity .3s;
}

    .place .swiper-button-prev.swiper-button-disabled,
    .place .swiper-button-next.swiper-button-disabled {
        opacity: 0;
        pointer-events: none; /* Disable click events */
    }

    .place .swiper-button-next:hover,
    .place .swiper-button-prev:hover {
        box-shadow: 0 4px 20px 0 rgba(0,0,0,.08);
    }

    .place .swiper-button-next:after,
    .place .swiper-button-prev:after {
        font-size: 10px;
    }

.place .swiper-button-prev {
    left: -45px;
}

.place .swiper-button-next {
    right: -45px;
}

.place .place-bottom-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    z-index: 1;
}

    .place .place-bottom-card h5 {
        font-size: 16px;
        color: #FFF;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 0;
    }

    .place .place-bottom-card span {
        font-size: 14px;
        color: var(--text-muted);
        line-height: normal;
    }

.pass-container {
    margin-bottom: 6.5rem;
}

.app-container {
    background-image: url(/assets/img_V2/download-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    height: 314px;
}

    .app-container h4 {
        color: #FFF;
        text-shadow: 0px 1px 5px rgba(6, 90, 90, 0.75);
        font-size: 24px;
        font-weight: 700;
        line-height: normal;
    }

    .app-container p {
        font-size: 14px;
        color: #FFF;
        line-height: 28px;
        max-width: 680px;
    }

    .app-container .module > img {
        position: absolute;
        top: -25px;
    }

/*--------------------------------------------------------------
# Drop Down
--------------------------------------------------------------*/
.search-panel .select-dp {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 0px 0px 16px 16px;
    background: #F9F9F9;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-height: 480px;
    position: absolute;
    margin-top: 16px;
    left: 0;
    border-top: 1px solid #D9D9D9;
    padding: 24px 11px 24px 28px;
    z-index: 11;
    overflow: hidden;
}

    .search-panel .select-dp li h6,
    .search-container .select-dp li h6 {
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 16px;
    }

    .search-panel .select-dp::-webkit-scrollbar,
    .search-container .select-dp::-webkit-scrollbar {
        width: 5px;
    }

    .search-panel .select-dp::-webkit-scrollbar-track,
    .search-container .select-dp::-webkit-scrollbar-track {
        border-radius: 6px;
    }

    .search-panel .select-dp::-webkit-scrollbar-thumb,
    .search-container .select-dp::-webkit-scrollbar-thumb {
        background-color: #CCC;
        border-radius: 6px;
        background-clip: padding-box;
    }

        .search-panel .select-dp::-webkit-scrollbar-thumb:hover,
        .search-container .select-dp::-webkit-scrollbar-thumb:hover {
            background-color: #555; /* Color on hover */
        }

    .search-panel .select-dp .scrollable-content {
        overflow-y: auto;
        max-height: calc(326px - 37px);
        padding-right: 20px;
    }

.search-container .select-dp {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    background: #F9F9F9;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    width: 20%;
    max-height: 480px;
    position: absolute;
    padding: 24px 28px;
    z-index: 10;
    overflow-y: scroll;
    overflow-x: hidden;
}


/*--------------------------------------------------------------
# Countdown Timer
--------------------------------------------------------------*/
.countdown-timer {
    height: 41px;
    width: 100%;
    background-color: #FF6224;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .countdown-timer.warning {
        border: 5px solid yellow;
    }

        .countdown-timer.warning.alerting {
            border: 5px solid red;
            animation: blinker 1s linear infinite;
        }

@keyframes blinker {
    50% {
        opacity: 0;
    }
}


.countdown-text {
    color: #9E9E9E;
}

.time1-text {
    color: var(--text-light);
    width: auto;
    font-size: 17px;
    font-weight: bold;
}

.time-text {
    font-size: 17px;
    font-weight: bold;
    color: var(--text-light);
    width: auto;
}

.timer-icon {
    width: auto;
    padding: 0;
    font-size: 23px !important;
    color: var(--text-light);
}

#passengerdetail-timer .timer-width {
    flex: 0 0 auto;
    width: 100%;
}

#paymentdetail-timer .timer-width {
    flex: 0 0 auto;
    width: 100%;
}

#passengerdetailF-timer .timer-width {
    flex: 0 0 auto;
    width: 100%;
}

/*--------------------------------------------------------------
# Family
--------------------------------------------------------------*/
.family-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9995;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease;
}

    .family-modal.open {
        opacity: 1;
    }

    /* Style the content inside the modal */
    .family-modal .family-content {
        background: #FFF;
        width: 417px;
        height: 100vh; /* Ensures it won't exceed the container's height */
        overflow-y: scroll; /* Always show the scrollbar */
        position: absolute;
        right: 0;
    }

/* Style the header */
.family-header {
    display: flex;
    align-items: center;
    padding: 35px 35px 27px;
    background: var(--background-primary);
    position: relative;
}

.family-modal .family-header h6 {
    flex-grow: 1;
    text-align: center;
    color: #FFF;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.family-modal .family-header i {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #FFF;
    cursor: pointer;
}

.family-modal .family-body {
    padding: 34px 31px;
}

.family-box {
    background: #F3F3F3;
    width: 100%;
    border-radius: 12px;
    padding: 10px;
    transition: all .3s;
    cursor: pointer;
    margin-bottom: 1rem;
}

    .family-box:last-child {
        margin-bottom: 0;
    }

    .family-box .ff-name {
        font-family: Roboto;
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        white-space: nowrap; /* Prevents the text from wrapping */
        overflow: hidden; /* Hides the overflowed text */
        text-overflow: ellipsis; /* Adds the ellipsis */
    }

    .family-box:hover {
        border: 1px solid var(--background-primary);
        background-color: transparent;
    }

.faf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    transition: opacity .3s ease, visibility .3s ease;
}

    .faf-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .faf-modal .faf-modal-dialog {
        margin-left: auto;
        max-width: 417px;
    }

    .faf-modal .faf-modal-content {
        background: var(--background-light);
        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .faf-modal .faf-modal-header {
        background: var(--background-primary);
        padding: 35px 25px 27px;
        position: relative;
    }

        .faf-modal .faf-modal-header h6 {
            color: var(--text-light);
            font-size: 18px;
            margin-bottom: 0;
            line-height: normal;
            font-weight: 700;
            text-align: center;
        }

        .faf-modal .faf-modal-header .icon {
            position: absolute;
            top: 30px;
            right: 25px;
            color: var(--text-light);
            cursor: pointer;
        }

    .faf-modal .faf-modal-body {
        padding: 34px 31px;
    }

        .faf-modal .faf-modal-body .name-choice {
            border-radius: 12px;
            background: #F3F3F3;
            height: 41px;
            padding: 9px 29px;
            text-align: center;
            margin-bottom: 16px;
            transition: .3s ease-in-out;
            cursor: pointer;
        }

            .faf-modal .faf-modal-body .name-choice:hover {
                background: var(--background-primary-hover);
                color: var(--text-light);
            }

/*--------------------------------------------------------------
# Input
--------------------------------------------------------------*/
textarea {
    resize: none;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control {
    border-color: #AAA;
}

    .form-control[readonly] {
        background-color: var(--background-muted);
    }

    .form-control:focus {
        border-color: var(--background-primary);
        outline: 0;
        box-shadow: unset;
    }

    .form-control:disabled {
        background: #F9F9F9;
    }

.form-floating > label {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 14px;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: var(--text-muted);
}

    .form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
        background-color: transparent;
    }


.form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.7rem;
    padding-bottom: .625rem;
}

.form-select {
    border: 1px solid #AAA;
    border-radius: 12px;
}

    .form-select:focus {
        border-color: var(--background-primary);
        box-shadow: unset;
    }

    .form-select:disabled {
        background-color: var(--background-muted);
    }

.half-control {
    border-radius: 0 12px 12px 0;
}

.half-select {
    border-radius: 12px 0 0 12px;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.hide-password {
    display: none
}

.caleran-prev, .caleran-next {
    margin-top: 0 !important;
}

/*--------------------------------------------------------------
# Payment Process Error Pending Booking Section
--------------------------------------------------------------*/
#ProcessBookingLoading {
    background: #FFFFFF;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

    #ProcessBookingLoading .align-content-center {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #ProcessBookingLoading .loading-gif {
        text-align: right;
    }

    #ProcessBookingLoading .loading-width {
        max-width: 5rem;
        padding-right: 20px;
    }

    #ProcessBookingLoading .text-process {
        font-size: 24px;
        font-weight: 700;
        color: #444444;
    }

    #ProcessBookingLoading .text-may {
        font-size: 16px;
        font-weight: 400;
        color: #AAAAAA;
    }

@media screen and (max-width: 380px) {
    #ProcessBookingLoading {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

        #ProcessBookingLoading .text-process {
            font-size: 19px;
        }

        #ProcessBookingLoading .text-may {
            font-size: 14px;
        }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-container {
    margin-bottom: 3.5rem;
}

    .faq-container .faq-content .faq-title {
        color: var(--color-black);
        font-weight: 700;
        font-size: 24px;
        line-height: normal;
    }

    .faq-container .faq-content .faq-item-container {
        margin: 1rem 3.5rem;
    }

        .faq-container .faq-content .faq-item-container .faq-wrapper {
            padding: 20px;
            position: relative;
            border-radius: 16px;
            background: var(--color-white);
            box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
            margin-bottom: 2rem;
        }

        .faq-container .faq-content .faq-item-container .faq-list-f {
            border-bottom: 1px solid #DDD;
            margin-bottom: 20px;
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f ul {
            padding: 0;
            list-style: none;
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f:last-child ul {
            margin-bottom: 0;
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f li + li {
            margin-top: 15px;
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f a {
            display: block;
            position: relative;
            line-height: 24px;
            font-weight: 500;
            outline: none;
            cursor: pointer;
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f .icon-show {
            font-size: 24px;
            position: absolute;
            right: 0;
            top: 0;
            transition: transform 0.3s ease;
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f .faq-toggle:hover {
            color: var(--text-secondary);
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f .faq-toggle.active {
            color: var(--text-secondary);
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f .faq-toggle.active .icon-show {
            transform: rotate(180deg);
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f p {
            margin-bottom: 0;
            padding: 10px 0 0 0;
            border-radius: 5px;
            background: #F9F9F9;
            padding: 20px;
            margin-top: 20px;
        }

        .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f a.pad-0 {
            padding: 0;
        }

@media (max-width: 1200px) {
    .faq-container .faq-content .faq-item-container .faq-wrapper .faq-list-f {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Announcement Modal
--------------------------------------------------------------*/

.announcement-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 500px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3s ease, visibility .3s ease;
}

    .announcement-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .announcement-modal .announcement-modal-dialog {
        margin-left: var(--l);
        margin-right: var(--r);
        position: relative;
        width: auto;
    }

    .announcement-modal .announcement-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - var(--l) * 2);
    }

    .announcement-modal .announcement-modal-content {
        background: #FFF;
        width: var(--s);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
    }

    .announcement-modal .announcement-modal-body {
        padding: 36px 29px 26px;
        height: 100%;
        text-align: center;
    }

        .announcement-modal .announcement-modal-body h6 {
            margin-bottom: 30px;
            font-weight: 700;
        }

        .announcement-modal .announcement-modal-body .btn-ok {
            background: var(--background-secondary);
            border-radius: 12px;
            color: #FCFCFC;
            line-height: normal;
            font-size: 16px;
            font-weight: 700;
            height: 41px;
            border: 0;
            outline: 0;
            transition: all .3s;
            margin: 30px 0;
            text-align: center;
            width: 222px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

            .announcement-modal .announcement-modal-body .btn-ok:hover {
                background: var(--background-secondary-hover);
            }