:root {
    --white-color: white;
    --black-color: black;
    --text-color: white;
    --btn-text-color: white;
    --btn-background-color: #783D1Dff;
    --background-color: #ffe4ad63;
    --hover-text-color: black;
    --hover-background-color: #F2AE03ff;
    --whatsapp-color: #25D366;
    --facebook-color: #3B5998;
    --twitter-color: black;
    --firstheader-menu-color: #fff6f6;
    --instagram-color: -webkit-linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
    --youtube-color: #FF0000;

    --primary-color: #783D1D;
    --primary-hover: #F2AE03;
    --background-light: #FFE4AD;
    --text-light: white;
    --text-dark: black;
    --submenu-bg: rgba(255, 228, 173, 0.3);
    --submenu-hover: rgba(255, 228, 173, 0.5);
    --transition-speed: 0.3s ease-in-out;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.image,
video {
    width: 100%;
    height: 100%;
}

input,
select {
    border: none;
    outline: none;
}

a, button {
    text-decoration: none;
        user-select: none;
}

.customscrollbar::-webkit-scrollbar {
    width: 3px;
}

.customscrollbar::-webkit-scrollbar-thumb {
    background-color: orange;
    border-radius: 10px;
}

.customscrollbar::-webkit-scrollbar-thumb:hover {
    background-color: orange;
}

.customscrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.popup_container {
    min-width: 300px;
    max-width: 500px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    position: fixed;
    top: 15%;
    right: -100%;
    z-index: 99999;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}

.popup_container.success {
    background-color: #28a745;
    color: white;
}

.popup_container.error {
    background-color: #dc3545;
    color: white;
}

.popup_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    color: white;
}

.popup_icon.success {
    background-color: #1e7e34;
}

.popup_icon.error {
    background-color: #c82333;
}

.popup_content {
    font-size: 16px;
    font-weight: 500;
    flex-grow: 1;
}

.popup_container.show {
    right: 20px;
    opacity: 1;
}

.success .popup_icon.error {
    display: none;
}

.error .popup_icon.success {
    display: none;
}

.preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .preloader-container {
        width: 600px;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .preloader-container img {
        transition: opacity 0.5s ease-in-out;
    }

    @keyframes buildingSlide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-1800px);
        }
    }

    .building_track {
        width: 3600px;
        display: flex;
    }

    .building_img {
        width: 600px;
        height: 300px;
        flex-shrink: 0;
    }

    .stoppingbus_img {
        display: none;
        position: absolute;
        width: 400px;
        height: 150px;
        bottom: 0;
    }

    @keyframes busBounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-2px);
        }
    }

    .nowheelrunningbus_img {
        display: none;
        position: absolute;
        width: 400px;
        height: 138px;
        bottom: 16px;
        animation: busBounce 0.5s ease-in-out infinite;
    }

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

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

    .frontwheel_img {
        display: none;
        width: 45px;
        position: absolute;
        bottom: 0;
        right: 35%;
        animation: spin 1s linear infinite;
    }

    .backwheel_img {
        display: none;
        width: 45px;
        position: absolute;
        bottom: 0;
        left: 22%;
        animation: spin 1s linear infinite;
    }

    @keyframes plantSway {

        0%,
        100% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(3deg);
        }

        75% {
            transform: rotate(-3deg);
        }
    }

    .plant_img {
        display: none;
        position: absolute;
        bottom: 0;
        left: 12%;
        width: 30px;
        height: 30px;
        transform-origin: bottom center;
    }

    .plant_img2 {
        display: none;
        position: absolute;
        bottom: 0;
        width: 30px;
        height: 30px;
        transform-origin: bottom center;
    }

    .stopsignal_img {
        display: none;
        position: absolute;
        bottom: 0;
        height: 150px;
        width: 40px;
        right: 1%;
    }

    .running_bus .stopsignal_img {
        display: none;
    }

    .running_bus .building_track {
        animation: buildingSlide 10s linear infinite;
        animation-play-state: running;
    }

    .running_bus .nowheelrunningbus_img {
        display: block;
    }

    .running_bus .frontwheel_img {
        display: block;
    }

    .running_bus .backwheel_img {
        display: block;
    }

    .running_bus .plant_img {
        display: block;
        animation: plantSway 0.6s linear infinite;
    }

    .running_bus .plant_img2 {
        display: block;
        animation: plantSway 0.6s linear infinite;
    }

    .running_bus .stopsignal_img {
        display: none;
    }

    .stoppingbus .building_track {
        animation: buildingSlide 10s linear infinite;
        animation-play-state: paused;
    }

    .stoppingbus .stoppingbus_img {
        display: block;
    }

    .stoppingbus .nowheelrunningbus_img {
        display: none;
    }

    .stoppingbus .frontwheel_img {
        display: none;
    }

    .stoppingbus .backwheel_img {
        display: none;
    }

    .stoppingbus .plant_img {
        display: block;
        left: 7%;
    }

    .stoppingbus .plant_img2 {
        display: none;
    }

    .stoppingbus .stopsignal_img {
        display: block;
    }

.select2-container .select2-selection--single {
    height: 20px !important;
    border: none !important;
}

.select2-container--default .select2-selection--clearable .select2-selection__rendered {
    line-height: 50px !important;
    padding-top: 5px !important;
}

/* .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
} */

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
    display: none !important;
}

.select2-search--dropdown .select2-search__field {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 60px;
    margin-right: 20px;
    padding-right: 0px;
    font-size: 20px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="date"] {
    position: relative;
}

input[type="date"]::-moz-calendar-picker-indicator {
    display: none;
}

header {
    background-color: var(--background-color);
}

.header_site_info_container {
    height: 50px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_contact_container {
    display: flex;
    align-items: center;
    margin-left: 5%;
    column-gap: 10px;
}

.header_info_container {
    display: flex;
    column-gap: 10px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.header_icon {
    color: var(--hover-background-color);
}

.header_content {
    color: gray;
    text-decoration: none;
}

.header_btn_container {
    display: flex;
    margin-right: 5%;
    column-gap: 15px;
}

.header_btn {
    cursor: pointer;
    color: gray;
    padding: 8px 0;
    width: 120px;
    border: solid;
    text-align: center;
    border-radius: 4px;
    border-width: 1px;
    border-color: var(--primary-hover);
}

@media (max-width: 321px) {
    .header_site_info_container {
        height: auto;
        display: grid;
        padding: 20px 0;
        row-gap: 20px;
        width: 100%;
        justify-content: stretch;
        position: absolute;
        top: -100%;
        background-color: #ffe4ad;
        transition: top 0.3s ease-in-out;
    }

    .header_contact_container {
        display: grid;
        row-gap: 10px;
    }

    .header_btn_container {
        display: grid;
        grid-template-columns: 50% 50%;
        align-items: center;
        justify-items: center;
    }

    .header_btn {
        width: 90%;
    }

}

@media (min-width: 321px) and (max-width: 426px) {
    .header_site_info_container {
        height: auto;
        display: grid;
        padding: 20px 0;
        row-gap: 20px;
        width: 100%;
        justify-content: stretch;
        position: absolute;
        top: -100%;
        background-color: #ffe4ad;
        transition: top 0.3s ease-in-out;
    }

    .header_contact_container {
        display: grid;
        row-gap: 10px;
    }

    .header_btn_container {
        display: grid;
        grid-template-columns: 50% 50%;
        align-items: center;
        justify-items: center;
    }

    .header_btn {
        width: 90%;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .header_site_info_container {
        height: auto;
        display: grid;
        grid-template-columns: 50% 50%;
        padding: 20px 0;
        row-gap: 20px;
        width: 100%;
        justify-content: stretch;
        position: absolute;
        top: -100%;
        background-color: #ffe4ad;
        transition: top 0.3s ease-in-out;
    }

    .header_contact_container {
        display: grid;
        row-gap: 20px;
    }

    .header_btn_container {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 10px;
        align-items: center;
        justify-items: right;
        margin-right: 5%;
    }

    .header_btn {
        width: 50%;
    }
}

.header_main_container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white-color);
    transition: position 0.3s ease-in-out, top 0.3s ease-in-out;
}

.header_main_container.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.header_logo_container {
    height: 80px;
    margin-left: 5%;
    cursor: pointer;
}

.header_nav_list {
    width: 30%;
    display: flex;
    justify-content: space-evenly;
}

.header_nav_items {
    cursor: pointer;
    list-style: none;
}

.header_nav_items:hover {
    color: var(--hover-background-color);
}

.header_ticket_btn_container {
    margin-right: 5%;
}

.header_ticket_btn {
    width: max-content;
    padding: 10px 20px;
    border-radius: 4px;
    color: var(--white-color);
    background-color: var(--primary-color);
    cursor: pointer;
}

.header_ticket_btn:hover {
    background-color: var(--hover-background-color);
}

.mobile_nav_conainer {
    width: 25%;
    display: none;
    margin-right: 5%;
    align-items: center;
    justify-content: space-around;
}

.mobile_nav_bar,
.site_info_icon {
    font-size: 24px;
    cursor: pointer;
}

.closenavbar {
    display: none;
}

@media (max-width: 321px) {
    .header_nav_list {
        display: grid;
        position: absolute;
        background-color: var(--background-light);
        width: 85%;
        top: -100%;
        align-items: center;
        justify-content: left;
        padding: 10% 5% 10% 10%;
        row-gap: 20px;
        transition: top 0.3s ease-in-out;
    }

    .header_ticket_btn_container {
        display: none;
    }

    .mobile_nav_conainer {
        display: none;
    }

    .header_main_container.sticky {
        position: absolute;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .header_nav_list {
        display: grid;
        position: absolute;
        background-color: var(--background-light);
        width: 85%;
        top: -100%;
        align-items: center;
        justify-content: left;
        padding: 10% 5% 10% 10%;
        row-gap: 20px;
        transition: top 0.3s ease-in-out;
    }

    .header_ticket_btn_container {
        display: none;
    }

    .mobile_nav_conainer {
        display: none;
    }

    .header_main_container.sticky {
        position: absolute;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .header_nav_list {
        display: grid;
        position: absolute;
        background-color: var(--background-light);
        width: 85%;
        top: -100%;
        align-items: center;
        justify-content: left;
        padding: 10% 5% 10% 10%;
        row-gap: 20px;
        transition: top 0.3s ease-in-out;
    }

    .header_ticket_btn_container {
        display: none;
    }

    .mobile_nav_conainer {
        display: none;
    }

    .header_main_container.sticky {
        position: absolute;
    }
}

.login_main_container {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    height: 100vh;
}

.login_left_container {
    width: 25%;
    position: relative;
    background-color: #f7f7f7;
}

.login_overlayer {
    background: url(/public/build/assets/default/bg1.png);
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    background-position: left;
    background-repeat: no-repeat;
    background-attachment: local;
    padding: 10% 15%;
    border-radius: 15%;
    width: 350px;
    min-height: 75%;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    left: 20%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.oposite_side{
    left: auto;
    right: 15%;
}

.form_additional_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
}

.forgot_password, .otp_login_verification {
    color: var(--primary-hover);
    font-weight: 600;
    cursor: pointer;
}

#user_verification{
    display: block;
}

#fp_otp_verification{
    display: none;
}

#optional_login{
    display: none;
}

#otp_verification{
    display: none;
}

#forgot_password{
    display: none;
}

.alter_email_container {
    padding: 5% 0 15% 0;
    color: white;
    display: flex;
    gap: 10px;
}

.alter_email_btn {
    font-weight: 700;
    color: var(--primary-hover);
    cursor: pointer;
}

.login_form_title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    width: 100%;
    margin-bottom: 2%;
}

.login_form_container {
    width: 100%;
}

.login_right_container {
    width: 75%;
    position: relative;
    height: 100vh; 
    overflow: hidden;
}

.bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}

.login_content {
    position: relative;
    z-index: 1; 
    color: #fff;
    text-align: center;
    padding: 20px;
}

.main_container {
    background-color: var(--background-color);
}

.home_ticket_search_container {
    padding: 6% 0;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-items: left;
    position: relative;
    overflow: hidden;
}

.home_ticket_content_container {
    width: 80%;
    padding: 5% 10%;
    display: grid;
    row-gap: 30px;
    position: relative;
    z-index: 2;
}

.home_ticket_content {
    font-size: 48px;
    max-width: 600px;
    font-weight: bold;
}

.home_ticket_content_btn_container {
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
}

.home_ticket_content_btn {
    background-color: var(--primary-color);
    width: max-content;
    padding: 15px 30px;
    color: var(--white-color);
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
}

.home_ticket_search_title {
    font-size: 20px;
    font-weight: bold;
}

.home_ticket_search_form {
    background-color: white;
    padding: 8% 5%;
    display: grid;
    align-items: center;
    row-gap: 15px;
    border-radius: 4px;
    box-shadow: 5px 5px 5px gray;
    position: relative;
    z-index: 2;
}

.home_form_double_group_container {
    width: 100%;
    display: flex;
    column-gap: 5%;
    align-items: center;
    justify-content: start;
}

.home_form_group {
    width: 100%;
    height: 60px;
    display: flex;
    border: solid;
    border-width: 1px;
    border-radius: 4px;
}

.home_form_label {
    position: absolute;
    z-index: 2;
    top: 2px;
    padding-left: 15%;
    font-size: 12px;
}

.home_form_input_container {
    width: 100%;
    display: grid;
    align-items: center;
    position: relative;
}

.home_form_input {
    padding-left: 15%;
    padding-top: 15px;
    width: 85%;
    background-color: transparent;
}

.home_form_icon {
    width: 15%;
    display: grid;
    align-items: center;
    justify-content: center;
    position: absolute;
    color: var(--primary-hover);
}

.home_form_submit_btn {
    background-color: var(--primary-color);
    height: 50px;
    border-radius: 4px;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.outer_curve_bend {
    position: absolute;
    width: 510px;
    height: 410px;
    background-color: var(--background-light);
    top: 0;
    right: 0;
    border-radius: 0% 0% 0% 100%;
    z-index: 1;
}

.inner_curve_bend {
    position: absolute;
    width: 500px;
    height: 400px;
    background-color: #e0b48d;
    top: 0;
    right: 0;
    border-radius: 0% 0% 0% 100%;
    z-index: 1;
}

.background_image_container {
    width: 100%;
    height: 120px;
    position: absolute;
    bottom: -4px;
    background: url(https://apexinfo.co.in/busbooking1/public/build/assets/default/busroute2.png);
    background-position: left;
    background-repeat: no-repeat;
}

.background_running_bus {
    width: 150px;
    position: absolute;
    bottom: 0%;
    left: 5%;
    display: grid;
    transform: rotate(4deg);
    animation: runningbus 20s linear infinite;
}

@keyframes runningbus {
    0% {
        left: 0;
        bottom: 9%;
        width: 150px;
    }

    5% {
        bottom: 8%;
        width: 140px;
    }

    15% {
        bottom: 7%;
        width: 130px;
    }

    25% {
        left: 25%;
        bottom: 6%;
        width: 120px;
    }

    27% {
        left: 25%;
        bottom: 6%;
        width: 120px;
    }

    28% {
        left: 25%;
        bottom: 6%;
        width: 120px;
    }

    30% {
        left: 25%;
        bottom: 6%;
        width: 120px;
    }

    32% {
        left: 25%;
        bottom: 6%;
        width: 120px;
    }

    35% {
        left: 25%;
        bottom: 6%;
        width: 120px;
    }

    45% {
        bottom: 5%;
        width: 100px;
    }

    55% {
        bottom: 4%;
        width: 100px;
    }

    65% {
        bottom: 3%;
        width: 90px;
    }

    75% {
        left: 75%;
        width: 80px;
        bottom: 2%;
    }

    77% {
        left: 75%;
        width: 80px;
        bottom: 2%;
    }

    79% {
        left: 75%;
        width: 80px;
        bottom: 2%;
    }

    81% {
        left: 75%;
        width: 80px;
        bottom: 2%;
    }

    83% {
        left: 75%;
        width: 80px;
        bottom: 2%;
    }

    85% {
        left: 75%;
        width: 80px;
        bottom: 2%;
    }

    95% {
        width: 80px;
        bottom: 0.5%;
    }

    100% {
        left: 100%;
        width: 80px;
        bottom: -0.5%;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@media (max-width: 321px) {
    .home_ticket_search_container {
        grid-template-columns: 1fr;
        padding: 6% 0 10% 0;
    }

    .home_ticket_content_container {
        width: 90%;
        padding: 5% 5%;
    }

    .home_ticket_content {
        font-size: 24px;
        text-align: center;
    }

    .home_ticket_content_btn {
        width: 70%;
        padding: 5% 0;
        text-align: center;
    }

    .home_ticket_search_title {
        font-size: 16px;
    }

    .home_form_double_group_container {
        flex-direction: column;
        row-gap: 15px;
    }

    .outer_curve_bend {
        width: 320px;
        height: 310px;
    }

    .inner_curve_bend {
        width: 300px;
        height: 300px;
    }

    @keyframes runningbus {
        0% {
            left: 0;
            bottom: 4%;
            width: 100px;
        }

        5% {
            bottom: 4%;
            width: 100px;
        }

        15% {
            bottom: 4%;
            width: 90px;
        }

        25% {
            bottom: 4%;
            width: 90px;
        }

        35% {
            bottom: 4%;
            width: 80px;
        }

        45% {
            bottom: 4%;
            width: 80px;
        }

        55% {
            bottom: 4%;
            width: 80px;
        }

        65% {
            bottom: 4%;
            width: 80px;
        }

        75% {
            width: 80px;
            bottom: 3%;
        }

        85% {
            width: 80px;
            bottom: 3%;
        }

        95% {
            bottom: 3%;
            width: 80px;
        }

        100% {
            left: 100%;
            bottom: 3%;
            width: 80px;
            -webkit-transform: scale(1);
            transform: scale(1);
        }
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .home_ticket_search_container {
        grid-template-columns: 1fr;
        padding: 6% 0 10% 0;
    }

    .home_ticket_content_container {
        width: 90%;
        padding: 5% 5%;
    }

    .home_ticket_content {
        font-size: 24px;
        text-align: center;
    }

    .home_ticket_content_btn {
        width: 60%;
        padding: 4% 0;
        text-align: center;
    }

    .home_ticket_search_title {
        font-size: 16px;
    }

    .home_form_double_group_container {
        flex-direction: column;
        row-gap: 15px;
    }

    .outer_curve_bend {
        width: 320px;
        height: 310px;
    }

    .inner_curve_bend {
        width: 300px;
        height: 300px;
    }

    @keyframes runningbus {
        0% {
            right: 0;
            bottom: 3%;
            width: 100px;
        }

        5% {
            bottom: 3%;
            width: 100px;
        }

        15% {
            bottom: 3%;
            width: 90px;
        }

        25% {
            bottom: 3%;
            width: 90px;
        }

        35% {
            bottom: 4%;
            width: 80px;
        }

        45% {
            bottom: 4%;
            width: 80px;
        }

        55% {
            bottom: 4%;
            width: 80px;
            transform: rotate(2deg)
        }

        65% {
            bottom: 4%;
            width: 80px;
        }

        75% {
            bottom: 4%;
            width: 80px;
        }

        85% {
            bottom: 4%;
            width: 80px;
        }

        95% {
            bottom: 4%;
            width: 80px;
        }

        100% {
            right: 100%;
            width: 80px;
            bottom: 4%;
            -webkit-transform: scale(1);
            transform: scale(1);
        }
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .home_ticket_search_container {
        grid-template-columns: 1fr;
        padding: 6% 0 10% 0;
    }

    .home_ticket_content_container {
        width: 90%;
        padding: 5% 5%;
    }

    .home_ticket_content {
        font-size: 24px;
        text-align: center;
    }

    .home_ticket_content_btn {
        width: 40%;
        padding: 2% 0;
        text-align: center;
    }

    .home_ticket_search_title {
        font-size: 16px;
    }

    .home_form_double_group_container {
        row-gap: 15px;
    }

    .home_form_group {
        width: 50%;
    }

    .outer_curve_bend {
        width: 320px;
        height: 310px;
    }

    .inner_curve_bend {
        width: 300px;
        height: 300px;
    }

    @keyframes runningbus {
        0% {
            right: 0;
            bottom: 2%;
            width: 150px;
        }

        5% {
            bottom: 2%;
            width: 140px;
        }

        15% {
            bottom: 2%;
            width: 130px;
        }

        25% {
            bottom: 2%;
            width: 120px;
        }

        35% {
            bottom: 2%;
            width: 110px;
        }

        45% {
            bottom: 3%;
            width: 100px;
        }

        55% {
            bottom: 3%;
            width: 100px;
            transform: rotate(2deg)
        }

        65% {
            bottom: 4%;
            width: 90px;
        }

        75% {
            bottom: 4%;
            width: 80px;
        }

        85% {
            bottom: 4%;
            width: 80px;
        }

        95% {
            bottom: 4%;
            width: 80px;
        }

        100% {
            right: 100%;
            width: 80px;
            bottom: 4%;
            -webkit-transform: scale(1);
            transform: scale(1);
        }
    }
}

.home_booking_step_container {
    padding: 3%;
    display: grid;
    align-items: center;
    justify-items: center;
}

.booking_step_title {
    font-size: 28px;
    font-weight: bold;
    padding: 5px 0 2% 0;
}

.booking_step_sub_title {
    font-size: 20px;
    width: 700px;
    text-align: center;
    padding: 5px 0 4% 0;
}

.booking_step_container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
}

.booking_step_group {
    width: 26%;
    height: 250px;
    background-color: var(--primary-hover);
    padding: 2%;
    display: grid;
    align-items: start;
    justify-items: center;
    row-gap: 10px;
    border-radius: 8px;
    position: relative;
}

.step_img_content_group {
    display: grid;
    align-items: center;
    justify-items: center;
    row-gap: 15px;
}

.step_icon_container {
    font-size: 26px;
    background-color: var(--background-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    border: solid;
    border-width: 5px;
    border-color: var(--btn-background-color);
}

.step_title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.step_content {
    font-size: 18px;
    text-align: center;
    line-height: 1.6;
    width: 250px;
    color: var(--white-color);
}

.first_circle {
    width: 120px;
    height: 16vh;
    background-color: var(--btn-background-color);
    position: absolute;
    right: -20%;
    top: 12vh;
    z-index: 2;
    border-radius: 50%;
    border: solid;
    border-width: 5px;
    border-color: #fff5df;
    display: grid;
    align-items: center;
    justify-items: center;
    color: #fff5df;
    font-size: 40px;
}

.top_left_curve {
    position: absolute;
    width: 10px;
    height: 10px;
    /* background-color: red; */
    top: -8%;
    left: 28%;
    border-bottom-right-radius: 10px;
    box-shadow: 3px 3px #fff5df;
}

.bottom_left_curve {
    position: absolute;
    width: 10px;
    height: 10px;
    /* background-color: red; */
    bottom: -9%;
    left: 28%;
    border-top-right-radius: 10px;
    box-shadow: 3px -3px #fff5df;
}

.top_right_curve {
    position: absolute;
    width: 10px;
    height: 10px;
    /* background-color: red; */
    top: -8%;
    right: 26%;
    border-bottom-left-radius: 10px;
    box-shadow: -3px 2px #fff5df;
}

.bottom_right_curve {
    position: absolute;
    width: 10px;
    height: 10px;
    /* background-color: red; */
    bottom: -8%;
    right: 26%;
    border-top-left-radius: 10px;
    box-shadow: -3px -2px #fff5df;
}

.half_circle {
    width: 120px;
    height: 16vh;
    background-color: var(--btn-background-color);
    position: absolute;
    left: -12%;
    top: 12vh;
    z-index: 2;
    border-radius: 50%;
    border: solid;
    border-width: 5px;
    border-color: #fff5df;
    display: grid;
    align-items: center;
    justify-items: center;
    color: #fff5df;
    font-size: 40px;
}

.half_circle_content {
    padding-left: 0;
}

.hidde_half {
    position: absolute;
    width: 60px;
    display: none;
    height: 16vh;
    background-color: #fff5df;
    left: -10%;
}

@media (max-width: 321px) {
    .booking_step_title {
        font-size: 20px;
    }

    .booking_step_sub_title {
        font-size: 17px;
        width: 100%;
        padding: 5% 0;
    }

    .booking_step_container {
        margin: 5% 0;
        flex-direction: column;
        row-gap: 15px;
    }

    .step_icon_container {
        width: 60px;
        height: 60px;
    }

    .booking_step_group {
        width: 96%;
        height: fit-content;
        display: flex;
        align-items: center;
        padding: 8% 0;
    }

    .step_img_content_group {
        width: 40%;
    }

    .step_title {
        font-size: 19px;
        width: 100px;
        text-align: center;
    }

    .step_content {
        width: 60%;
        font-size: 16px;
        max-width: 150px;
        padding: 5% 0;
    }

    .half_circle {
        width: 50px;
        height: 8vh;
        top: -12%;
        left: 40%;
    }

    .half_circle_content {
        padding-left: 0;
        /* padding-top: 12px; */
        font-size: 24px;
    }

    .first_circle {
        width: 50px;
        height: 8vh;
        font-size: 24px;
        bottom: -20%;
        left: 40%;
        top: auto;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .booking_step_title {
        font-size: 20px;
    }

    .booking_step_sub_title {
        font-size: 17px;
        width: 100%;
        padding: 5% 0;
    }

    .booking_step_container {
        margin: 5% 0;
        flex-direction: column;
        row-gap: 15px;
    }

    .step_icon_container {
        width: 60px;
        height: 60px;
    }

    .booking_step_group {
        width: 96%;
        height: fit-content;
        display: flex;
        align-items: center;
        padding: 8% 0;
    }

    .step_img_content_group {
        width: 40%;
    }

    .step_title {
        font-size: 19px;
        width: 100px;
        text-align: center;
    }

    .step_content {
        width: 60%;
        font-size: 16px;
        max-width: 200px;
        padding: 5% 0;
    }

    .half_circle {
        width: 50px;
        height: 8vh;
        top: -12%;
        left: 40%;
    }

    .half_circle_content {
        padding-left: 0;
        /* padding-top: 12px; */
        font-size: 24px;
    }

    .first_circle {
        width: 50px;
        height: 8vh;
        font-size: 24px;
        bottom: -18%;
        left: 40%;
        top: auto;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .booking_step_container {
        row-gap: 15px;
    }

    .booking_step_group {
        width: 36%;
        display: flex;
        height: fit-content;
        align-items: center;
        padding: 5%;
        column-gap: 5%;
    }

    .half_circle {
        display: none;
    }

    .first_circle {
        display: none;
    }

    .step_icon_container {
        width: 60px;
        height: 60px;
    }

    .step_title {
        font-size: 20px;
    }

    .step_content {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1025px) {
    .booking_step_container {
        row-gap: 15px;
    }

    .booking_step_group {
        width: 36%;
        display: flex;
        height: fit-content;
        align-items: center;
        padding: 5%;
        column-gap: 5%;
    }

    .half_circle {
        display: none;
    }

    .first_circle {
        display: none;
    }

    .step_icon_container {
        width: 60px;
        height: 60px;
    }

    .step_title {
        font-size: 20px;
    }

    .step_content {
        font-size: 16px;
    }
}

.home_amenities_group_container {
    padding: 4% 5%;
    display: grid;
    align-items: start;
    justify-items: center;
}

.home_amenities_title {
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 2%;
}

.home_amenities_sub_title {
    width: 700px;
    text-align: center;
    line-height: 1.6;
    font-size: 18px;
    padding-bottom: 2%;
}

.home_amenities_group_autoslide {
    display: flex;
    width: 100%;
    column-gap: 10px;
}

.home_amenities_wrapper {
    width: 100%;
    overflow: hidden;
    /* Hide extra items */
    position: relative;
}

.home_amenities_group_autoslide {
    display: flex;
    column-gap: 10px;
    width: max-content;
    animation: slide 20s linear infinite;
}

.home_amenities_group {
    background-color: var(--background-light);
    width: 180px;
    height: fit-content;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 20px 0;
    border-radius: 4px;
    flex-shrink: 0;
}

.home_amenities_image {
    width: 80px;
    border: solid;
    border-width: 0 0 1px 0;
    padding: 0 0 15px 0;
    border-color: var(--primary-hover);
}

.home_amenities_name {
    font-size: 16px;
    padding: 10px 0;
}

.home_amenities_image .image {
    transform: rotate(0deg);
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

.home_amenities_image .image:hover {
    transform: rotate(45deg);
    background-color: var(--primary-hover);
}

@media (max-width: 321px) {
    .home_amenities_sub_title {
        width: 100%;
        font-size: 16px;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .home_amenities_sub_title {
        width: 100%;
        font-size: 16px;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .home_amenities_sub_title {
        width: 100%;
        font-size: 16px;
    }
}

footer {
    padding: 5%;
    display: flex;
    align-items: start;
    justify-content: start;
    column-gap: 1%;
    flex-wrap: wrap;
    row-gap: 15px
}

.footer_logo_description {
    width: 28%;
    display: grid;
    align-items: start;
    row-gap: 20px;
}

.footer_logo_container {
    width: 150px;
}

.footer_description {
    max-width: 300px;
}

.footer_social_media_container {
    display: flex;
    column-gap: 10px;
    font-size: 20px;
}

.footer_menu_container {
    width: 20%;
    padding-left: 30px;
    display: grid;
}

.footer_menu_title {
    font-size: 21px;
    font-weight: bold;
    padding-bottom: 20px;
    color: var(--primary-hover);
}

.footer_menu_items {
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: none;
    cursor: pointer;
    color: black;
}

.footer_social_media_container i {
    cursor: pointer;
}

.facebook {
    color: var(--facebook-color);
}

.twitter {
    color: var(--twitter-color);
}

.youtube {
    color: var(--youtube-color);
}

.instagram {
    background: -webkit-linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 321px) {
    .footer_logo_description {
        width: 100%;
    }

    .footer_description {
        width: 100%;
    }

    .footer_menu_container {
        width: 100%;
        padding: 0;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .footer_logo_description {
        width: 100%;
    }

    .footer_description {
        width: 100%;
    }

    .footer_menu_container {
        width: 100%;
        padding: 0;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .footer_logo_description {
        width: 49%;
    }

    .footer_description {
        width: 100%;
    }

    .footer_menu_container {
        width: 49%;
        padding: 0;
    }
}

@media (min-width: 769px) and (max-width: 1025px) {

    .footer_description {
        width: 100%;
    }

    .footer_menu_container {
        padding-left: 0;
    }
}

@media (min-width: 1025px) and (max-width: 1799px) {}

@media (min-width: 1800px) {}

@media (min-width: 2300px) {}

.overflow_search_page_container {
    height: 60px;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 0 5%;
    transition: top 0.3s ease-in-out;
}

/*.overflow_search_page_container.sticky {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    background-color: var(--primary-hover);*/
/*    width: -webkit-fill-available;*/
/*    z-index: 1000;*/
/*    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

.change_route {
    font-size: 20px;
    cursor: pointer;
}

.search_page_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.search_page_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.search_form_group {
    width: 20%;
    height: 40px;
    display: flex;
    border: none;
    border-width: 1px;
    border-radius: 4px;
    position: relative;
}

.search_form_group .select2-container {
    width: 100% !important;
}

.search_form_group .select2-container .select2-selection--single {
    height: 40px !important;
    border: none !important;
}

.search_form_group .select2-container--default .select2-selection--clearable .select2-selection__rendered {
    line-height: 40px !important;
    padding-top: 0px !important;
}

.select2-container {
    width: 100% !important;
}

.search_form_icon {
    position: absolute;
    left: 10px;
    top: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 40px;
}

.search_form_input {
    width: 100%;
    padding-left: 15%;
    border-radius: 4px;
    background-color: var(--background-light);
}

.search_form_group .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
}

.overflow_search_page_container .home_form_submit_btn {
    background-color: var(--primary-color);
    height: 40px;
    border-radius: 4px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 20px;
}

.search_form_group .select2-container--default .select2-selection--single {
    background-color: var(--background-light);
}

@media (max-width: 321px) {
    .overflow_search_page_container {
        height: fit-content;
        padding: 5%;
    }

    .overflow_search_page_container.sticky {
        position: relative;
        background-color: transparent;
    }

    .search_page_container {
        flex-direction: column;
        row-gap: 10px;
    }

    .search_form_group {
        width: 100%;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .overflow_search_page_container {
        height: fit-content;
        padding: 5%;
    }

    .overflow_search_page_container.sticky {
        position: relative;
        background-color: transparent;
    }

    .search_page_container {
        flex-direction: column;
        row-gap: 10px;
    }

    .search_form_group {
        width: 100%;
    }

    .select2-container--default .select2-selection--clearable .select2-selection__rendered {
        line-height: 40px !important;
    }

    .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: 15% !important;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .overflow_search_page_container {
        height: fit-content;
        padding: 5%;
    }

    .overflow_search_page_container.sticky {
        position: relative;
        background-color: transparent;
    }

    .search_page_container {
        row-gap: 15px;
    }

    .search_form_group {
        width: 40%;
    }

    .select2-container--default .select2-selection--clearable .select2-selection__rendered {
        line-height: 40px !important;
    }

    .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: 15% !important;
    }
}

.bus_view_group_container {
    padding: 2% 5%;
    display: flex;
    justify-content: start;
    position: relative;
}

.bus_view_filter_container {
    width: 20%;
    padding: 2% 1%;
    background-color: var(--btn-text-color);
    border-radius: 4px;
}

.bus_view_filter_heading_group {
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.bus_view_heading {
    font-size: 18px;
    font-weight: 600;
}

.bus_view_reset_btn {
    cursor: pointer;
}

.bus_view_filter_group {
    background-color: var(--btn-background-color);
    padding: 5%;
    border-radius: 4px;
    margin-bottom: 10px;
}

.bus_view_filter_title {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    color: white;
}

.bus_view_filter_group_content {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    column-gap: 2%;
    row-gap: 5px;
    padding: 2% 0;
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: auto;
}

.bus_view_filter_content {
    width: 45%;
    padding: 2%;
    display: grid;
    align-items: center;
    justify-items: center;
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--firstheader-menu-color);
}

.bus_view_filter_content.active {
    background-color: #ffd434;
}

.bus_view_content_icon {
    width: 30px;
    position: relative;
}

.bus_view_content_name {
    font-size: 14px;
    padding: 5px 0 0 0;
}

.nonac_icon {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: red;
    transform: rotate(45deg);
    top: 40%;
    left: 0;
}

.bus_view_filter_group_content.boarding_point {
    background-color: var(--firstheader-menu-color);
    border-radius: 4px;
    padding: 5%;
    row-gap: 10px;
}

.bus_view_filter_group_content.dropping_point {
    background-color: var(--firstheader-menu-color);
    border-radius: 4px;
    padding: 5%;
    row-gap: 10px;
}

.bus_view_single_filter_content {
    width: 100%;
    display: flex;
    column-gap: 15px;
    align-items: center;
    justify-content: start;
}

.filter_checkbox_container {
    display: grid;
    align-items: center;
    justify-items: center;
}

.filter_checkbox {
    width: 20px;
    height: 20px;
}

.filter_checkbox_content {
    display: flex;
    flex-wrap: wrap;
}

.bus_view_container {
    width: 76%;
    padding: 0 2%;
}

.date_slider_container {
    display: flex;
    width: 100%;
    height: 50px;
}

.date_slider_display {
    width: 90%;
    height: 50px;
    display: flex;
    column-gap: 5px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    overflow: hidden;
}

.date_slider {
    background-color: white;
    padding: 0 3%;
    height: 50px;
    display: grid;
    align-items: center;
    justify-items: center;
    cursor: pointer;
}

.day_date_container {
    display: flex;
    column-gap: 5px;
    font-size: 14px;
}

.day_display {
    font-size: 14px;
    color: orange;
}

.previous_day_btn,
.next_day_btn {
    background-color: orange;
    width: 5%;
    height: 50px;
    display: grid;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile_filter_toggle_container {
    display: none;
    justify-content: space-between;
    padding: 0 5%;
    margin: 3% 0;
    height: 40px;
    background-color: white;
    align-items: center;
    cursor: pointer;
}

.mobile_filter_name {
    font-size: 18px;
    font-weight: 600;
}

.mobile_filter_icon {
    font-size: 20px;
}

.filterclosenavbar {
    display: none;
}

@media (max-width: 321px) {
    .bus_view_filter_container {
        display: grid;
        position: absolute;
        z-index: 99;
        width: 98%;
        top: 140px;
        left: -100%;
        transition: left 0.4s ease-in-out;
    }

    .bus_view_container {
        width: 96%;
    }

    .previous_day_btn,
    .next_day_btn {
        width: 15%;
    }

    .date_slider_display {
        width: 70%;
    }

    .mobile_filter_toggle_container {
        display: flex;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .bus_view_filter_container {
        display: grid;
        position: absolute;
        z-index: 99;
        width: 98%;
        top: 140px;
        left: -100%;
        transition: left 0.4s ease-in-out;
    }

    .bus_view_container {
        width: 96%;
    }

    .previous_day_btn,
    .next_day_btn {
        width: 15%;
    }

    .date_slider_display {
        width: 70%;
    }

    .mobile_filter_toggle_container {
        display: flex;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .bus_view_filter_container {
        display: grid;
        position: absolute;
        z-index: 99;
        width: 50%;
        top: 170px;
        left: -100%;
        transition: left 0.4s ease-in-out;
    }

    .bus_view_container {
        width: 96%;
    }

    .previous_day_btn,
    .next_day_btn {
        width: 10%;
    }

    .date_slider_display {
        width: 80%;
    }

    .mobile_filter_toggle_container {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1025px) {
    .bus_view_filter_container {
        display: grid;
        position: absolute;
        z-index: 99;
        width: 30%;
        top: 200px;
        left: -100%;
        transition: left 0.4s ease-in-out;
    }

    .bus_view_container {
        width: 96%;
    }

    .previous_day_btn,
    .next_day_btn {
        width: 5%;
    }

    .date_slider_display {
        width: 90%;
    }

    .mobile_filter_toggle_container {
        display: flex;
    }
}

.sorting_display_container {
    display: flex;
    flex-wrap: wrap;
    margin: 2% 1%;
    column-gap: 15px;
    row-gap: 15px;
    justify-content: space-between;
    align-items: center;
}

.searchticket_sorting_title {
    padding: 5px 35px;
    background-color: var(--primary-hover);
    text-align: center;
    border-radius: 10px;
}

.searchticket_sorting_container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    height: 20px;
    cursor: pointer;
}

.searchticket_sorting_icon {
    display: grid;
    align-items: center;
    justify-content: center;
}

.searchticket_sorting_icon i {
    color: var(--primary-hover);
    font-size: 20px;
    padding-bottom: 10px;
}

.default_no_bus {
    text-align: center;
    padding: 15px 0;
    background-color: orange;
    color: white;
}

.filter_no_bus {
    display: none;
    text-align: center;
    padding: 15px 0;
    background-color: orange;
    color: white;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.bus_container {
    background-color: white;
    margin-bottom: 2%;
    border-radius: 4px;
    padding: 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    position: relative;
}

.bus_header {
    width: 20%;
}

.operator_name {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.bus_type {
    background-color: #CDDC39;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
    max-width: 110px;
}

.bus_details {
    width: 75%;
    height: 90px;
    display: flex;
    padding-right: 5%;
}

.route_section {
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.route_point {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: start;
}

.time {
    font-size: 24px;
    font-weight: bold;
}

.location {
    width: 200px;
}

.city {
    font-size: 18px;
    font-weight: 600;
}

.stopping_point {
    font-size: 14px;
    font-weight: 400;
}

.time_info {
    display: grid;
    align-items: center;
}

.route_point {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: start;
}

.bus_detail_footer {
    width: 20%;
    display: flex;
    flex-direction: column;
}

.seat_fare {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.discont_amount {
    font-size: 24px;
    font-weight: bold;
}

.seat_fare_group {
    display: grid;
    align-items: center;
    justify-items: right;
    margin-right: 10px;
}

.available_seats {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

.available_seats_count {
    font-size: 16px;
    font-weight: bold;
}

.available_seats_name {
    font-size: 12px;
}

.select_seat_btn {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.discount_amount_container {
    background-color: #f1d366;
    position: absolute;
    top: 0;
    right: 2%;
    width: 30px;
    padding: 5px 5px 15px 5px;
    display: grid;
    align-items: center;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.discount_icon {
    font-size: 16px;
    background-color: white;
    border-radius: 20px;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    margin-bottom: 5px;
}

.currency_icon {
    text-align: center;
    padding: 5px 0;
    font-weight: 400;
    font-size: 12px;
    color: white;
}

.discount_amount {
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.bus_ac_type {
    display: none;
    width: 150px;
    justify-content: start;
    align-items: center;
    column-gap: 15px;
}

.bus_ac_type_image {
    padding: 5px;
    width: 30px;
    height: 30px;
    position: relative;
    border-radius: 4px;
}

.bus_ac_type_name {
    font-weight: bold;
}

.bus_footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    padding: 5px 0 0 0;
}

.seat_select_btn {
    width: 20%;
    display: grid;
}

.bus_aditional_detail_titlecontainer {
    width: 80%;
    display: flex;
    align-items: center;
}

.bus_aditional_detail_title {
    width: max-content;
    font-size: 12px;
    height: 40px;
    padding: 0 10px;
    display: grid;
    align-items: center;
    cursor: pointer;
}

.bus_aditional_detail_title.active {
    border: solid;
    border-width: 0 0 2px 0;
    border-color: var(--primary-hover);
}


.bus_aditional_detail_title:hover {
    border: solid;
    border-width: 0 0 2px 0;
    border-color: rgb(255, 185, 55);
}

.bus_aditional_detail_group {
    display: none;
    width: 100%;
}

.bus_aditional_detail_container {
    display: none;
    padding: 1% 1%;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 15px;
}

.view_bus_image {
    width: 200px;
    cursor: pointer;
}

.view_bus_image .image {
    border-radius: 10px;
}

.bus_aditional_detail_container .bus_view_filter_content {
    width: 15%;
    height: 80px;
    padding: 1%;
    cursor: auto;
    background-color: var(--text-color);
    border: solid;
    border-color: var(--btn-text-color);
    box-shadow: 2px 2px 2px 2px gray;
}

.stopping_point_title {
    font-size: 16px;
    font-weight: bold;
}

.stopping_point_group {
    width: 100%;
    display: grid;
    justify-content: left;
    font-size: 14px;
    grid-template-columns: 30% 70%;
}

.stopping_point_time {
    width: 100%;
    text-align: center;
}

.stopping_point_container {
    width: 47%;
    max-height: 300px;
    overflow-y: auto;
    padding: 1% 1% 5% 1%;
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 15px;
    box-shadow: 3px 3px 2px 2px gray;
}

.cancellation_container {
    width: 100%;
    margin: 0 5%;
}

.cancellation_th_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    height: 40px;
    align-items: center;
    background-color: var(--primary-hover);
}

.cancellation_td_container {
    display: flex;
    padding: 10px 0;
    background-color: var(--background-light);
    border: solid;
    border-width: 0 0 1px 0;
}

.cancellation_td {
    padding: 0 50px 0 10px;
    font-size: 15px;
    width: 50%;
    line-height: 1.6;
    text-align: center;
}

.reschedule_container {
    width: 100%;
    margin-left: 5%;
}

.reschedule_title {
    font-size: 16px;
    font-weight: bold;
}

.reschedule_list {
    display: grid;
    row-gap: 5px;
    padding-top: 15px;
}

.reschedule_item {
    font-size: 14px;
    list-style: none;
}

.review_container {
    display: flex;
    width: 12%;
    height: 40px;
    padding: 0 5px;
    justify-content: space-between;
    align-items: center;
    column-gap: 5px;
    background-color: var(--primary-hover);
    border-radius: 4px;
    margin-right: 10px;
}

.review_group {
    width: 50%;
    height: 40px;
    display: flex;
    align-items: center;
}

.review_icon {
    font-size: 12px;
    padding-right: 5px;
}

.rightview {
    position: fixed;
    top: 0;
    right: 0;
    width: 46%;
    height: 100vh;
    overflow-y: auto;
    background-color: white;
    z-index: 99;
    padding-top: 5%;
    padding-left: 2%;
    padding-right: 2%;
}

.select_seat_container {
    display: none;
    width: 100%;
    padding: 5% 1% 1% 1%;
}

.seat_price_difference_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 30% 2% 0%;
    height: 40px;
}

.seat_price_difference_group {
    width: 100px;
    height: 40px;
    display: flex;
    column-gap: 5px;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border-radius: 4px;
    cursor: pointer;
}

.seat_price_difference_name.currencyicon {
    font-weight: bold;
}

.seat_price_difference_name.seat_price_difference {
    font-weight: bold;
}

.seat_price_difference_group:hover {
    background-color: var(--primary-hover);
}

.seat_price_difference_group.active {
    background-color: var(--primary-hover);
}

.bus_seat_layout_group_container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.bus_seat_layout {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.bus_seat_reference_container {
    width: 30%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.bus_seat_reference_group {
    width: 50%;
    height: 80px;
    display: grid;
    align-items: start;
    justify-items: center;
}

.process_to_next_btn {
    margin: 0 4%;
    padding: 0 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    bottom: 5%;
    right: 0;
    cursor: pointer;
}

.bus_seat_layout_name {
    font-size: 20px;
    height: 30px;
    width: max-content;
    padding: 0 15px;
    background-color: var(--background-light);
    border-radius: 4px 4px 0 0;
}

.landscape_bus_outer_container {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 90%;
    padding: 3% 1% 3% 6%;
    position: relative;
    border: solid;
    border-width: 2px;
    border-color: var(--background-light);
    border-radius: 0 4px 4px 4px;
    margin-bottom: 2%;
}

.bus_steering_icon {
    position: absolute;
    width: 25px;
    left: 1%;
    top: 12%;
    transform: rotate(-90deg);
}

.landscape_bus_outer_container .bus_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.landscape_bus_outer_container .bus_seat {
    flex: 1 1 auto;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}

.landscape_bus_outer_container .bus_aisle {
    background-color: transparent;
    display: grid;
    align-items: center;
    justify-content: end;
}

.landscape_bus_outer_container .bus_aisle .bus_seat {
    width: 80px;
}

.bus_seat {
    border: solid;
    border-width: 1px;
    border-radius: 4px;
    border-color: gray;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    letter-spacing: 1px;
    color: white;
}


.seat_pillow {
    background-color: orange;
    height: 90%;
    width: 5px;
    border-radius: 4px 0 0 4px;
    margin: 0 0 0 5px;
    position: absolute;
    right: 0;
}

.seat_no {
    display: grid;
    align-items: center;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    color: black;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    outline: none;
}

.bus_seat_reference_icon {
    width: 60%;
}

.bus_seat_reference_icon .bus_seat {
    min-width: 40px;
    height: 40px;
    background-color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}

.bus_seat_reference_icon .bus_seat {
    border: solid;
    border-width: 1px;
    border-radius: 4px;
    border-color: gray;
    position: relative;
    font-weight: bold;
    letter-spacing: 1px;
    color: white;
}

.bus_seat_reference_icon .seat_no {
    border: solid;
    border-width: 1px;
    border-radius: 4px;
    border-color: gray;
    position: relative;
    font-weight: bold;
    letter-spacing: 1px;
    color: white;
}

.bus_seat_reference_icon .seat_pillow {
    background-color: orange;
    height: 90%;
    width: 5px;
    border-radius: 4px 0 0 4px;
    margin: 0 0 0 5px;
    position: absolute;
    right: 0;
}

/*.bus_seat.male_seat_available {*/
/*    background-color: #0000cd5e;*/
/*}*/

.bus_seat.seat_available {
    background-color: transparent;
}

.bus_seat.selected_seat {
    background-color: #8BC34A;
}

.bus_seat.disable_seat{
    background-color: gray;
    user-select: none;
    cursor: auto;
}

/*.bus_seat.female_seat_available {*/
/*    background-color: pink;*/
/*}*/

.bus_seat.female_seat {
    background-color: #FF1493;
    user-select: none;
    cursor: auto;
}

.bus_seat.male_seat {
    background-color: #0000CD;
    user-select: none;
    cursor: auto;
}

.bus_seat.selected_seat .seat_no {
    color: white;
}

.bus_seat.seat_available .seat_no {
    color: black;
}

.bus_seat.female_seat .seat_no {
    color: white;
}

.bus_seat.male_seat .seat_no {
    color: white;
}

.hover_title_container {
    position: absolute;
    background-color: black;
    top: -150%;
    left: 70%;
    width: 100px;
    display: none;
    row-gap: 5px;
    padding: 5px 10px;
    height: 45px;
    z-index: 99;
}

.hover_title_name {
    font-size: 10px;
    line-height: 1.4;
}

.hover_title_group {
    display: grid;
    grid-template-columns: 60% 40%;
    font-size: 10px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}

.hover_title_price {
    font-size: 12px;
}

.hover_title_arrow {
    position: absolute;
    background-color: black;
    width: 8px;
    height: 20px;
    bottom: -13%;
    border-radius: 0 0 0 20px;
}

.bus_seat.seat_available:hover .hover_title_container{
    display: grid;
}

.bus_seat.female_seat_available:hover .hover_title_container{
    display: grid;
}

.bus_seat.male_seat_available:hover .hover_title_container{
    display: grid;
}

.hover_title_container:hover .hover_title_container{
    display: none;
}

.login_form_container {
    padding: 5%;
    height: fit-content;
    border-radius: 4px;
}

.login_form_group {
    width: 100%;
    margin-bottom: 10%;
}

.login_label_container {
    margin-bottom: 2%;
}

.login_label {
    font-size: 18px;
}

.login_input_container {
    height: 50px;
    width: 100%;
    background-color: white;
    border-radius: 4px;
    position: relative;
}

.login_input {
    width: 100%;
    height: 50px;
    font-size: 1rem;
    padding: 0 10% 0 15%;
    border-radius: 4px;
}

.login_form_icon {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.lock_close, .lock_open{
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.lock_open{
    display: none;
}

.eye_open {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    cursor: pointer;
}

.eye_close {
    display: none;
    width: 25px;
    height: 2px;
    background-color: red;
    transform: rotate(45deg);
    position: absolute;
    right: 4%;
    top: 50%;
    cursor: pointer;
}

.login_btn_container {
    width: 100%;
    height: 50px;
    margin: 10% 0 5% 0;
}

.login_btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #783D1D, #F2AE03);
    color: white;
    border: none;
    font-size: 20px;
    border-radius: 4px;
    cursor: pointer;
}

.login_btn:hover {
    background: linear-gradient(90deg, #F2AE03, #783D1D);
}

.user_condition_container {
    padding-top: 5%;
    border: solid;
    border-width: 1px 0 0 0;
    border-color: white;
}

.user_condition {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 10px;
}

.condition_link {
    color: var(--primary-hover);
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 321px) {
    .login_overlayer {
        padding: 5% 5%;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .login_overlayer {
        padding: 5% 5%;
    }
    
}

@media (min-width: 426px) and (max-width: 769px) {
    .login_overlayer {
        padding: 5% 20%;
    }
    
}

@media (min-width: 769px) and (max-width: 1025px) {
    .login_overlayer {
        padding: 5% 25%;
    }
    
}

body.no-scroll {
    overflow: hidden;
}

.overlay_bus_stopping_point_group_container {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #b0b0b0e3;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    justify-items: right;
}

.bus_stopping_point_group_container {
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    max-height: 100vh;
    padding: 0 2%;
    align-items: start;
    background-color: white;
}

.bus_stopping_point_cancel_container {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: right;
    column-gap: 10px;
    padding-right: 10%;
}

.bus_stopping_point_group {
    width: 50%;
    height: 40px;
    display: grid;
    cursor: pointer;
    align-items: center;
    justify-items: center;
    background-color: var(--background-light);
}

.bus_stopping_point_cancel_container span {
    cursor: pointer;
}

.bus_stopping_point_group.active {
    background-color: var(--primary-hover);
}

.bus_stopping_point_list {
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
}

.tostopping_point_view {
    display: none;
    align-items: start;
}

.view_stoppingpoint_group.view_fromstoppping_point{
    display: none;
}

.view_stoppingpoint_group.view_tostoppping_point{
    display: none;
}

.tostation_point.active {
    background-color: #e1e1e1;
}

.fromstation_point.active{
    background-color: #e1e1e1;
}

.bus_stopping_point_item {
    display: flex;
    padding: 10px 0;
    cursor: pointer;
    height: fit-content;
    align-items: start;
}

.bus_stopping_point_checkbox {
    width: 10%;
    display: grid;
    align-items: center;
    justify-items: center;
}

.point_checkbox {
    width: 20px;
    height: 20px;
}

.bus_stopping_point_time {
    width: 15%;
    display: grid;
    align-items: center;
    justify-items: center;
    font-weight: bold;
}

.bus_stopping_point_title_container {
    width: 70%;
    padding-left: 5%;
}

.bus_stopping_point_title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.bus_stopping_point_name {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
}

.view_stoppingpoint_group_container {
    column-gap: 2%;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.view_stoppingpoint_group {
    width: 46%;
    min-height: 110px;
    overflow-y: hidden;
    display: flex;
    align-items: stretch;
    padding: 2% 2%;
    border-radius: 4px;
    box-shadow: 0px 0px 2px 2px gray;
}

.view_stoppingpoint_deails {
    width: 70%;
    display: grid;
    row-gap: 5px;
}

.view_stoppingpoint_heading {
    font-size: 14px;
    margin-bottom: 10px;
}

.view_stoppingpoint_time {
    font-size: 18px;
    font-weight: bold;
}

.view_stoppingpoint_title {
    font-size: 16px;
    font-weight: bold;
}

.view_stoppingpoint_name {
    font-size: 14px;
}

.view_stoppingpoint_btn_container {
    width: 30%;
}

.view_stoppingpoint_btn {
    height: 30px;
    padding: 0 10px;
    background-color: var(--primary-color);
    color: white;
    border-color: white;
    border-radius: 4px;
    cursor: pointer;
}

.bus_stopping_point_btn_container {
    display: grid;
    align-items: center;
    justify-items: right;
    width: 100%;
    margin: 4% 0;
}

.continue_btn, .returntrip_btn {
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    height: 40px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}

.overlay_bus_passenger_information_container {
    background-color: #b0b0b0e3;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5% 0;
    gap: 30px;
}

.bus_passenger_information_container {
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    align-items: start;
    padding: 2% 2%;
    overflow-y: auto;
    background-color: white;
    border-radius: 8px;
}

.bus_trip_info_container{
    width: 96%;
}

.returntrip_name {
    width: 96%;
    padding: 10px 2% 0 2%;
}

.bus_passenger_route_group {
    width: 50%;
    padding: 2% 0;
}

.bus_passenger_route_name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
}

.bus_passenger_route_time {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}

.bus_passenger_route_point {
    font-size: 14px;
    max-width: 200px;
}

.bus_passenger_route_group.right_content {
    align-items: start;
    display: grid;
    justify-items: right;
}

.bus_passenger_contact_container {
    width: 100%;
}

.bus_passenger_contact_title {
    font-size: 16px;
    padding: 2% 0 2% 2%;
    font-weight: 400;
    border-radius: 4px 4px 0 0;
    background-color: var(--primary-color);
    color: white;
}

.bus_passenger_contact_title span {
    font-size: 12px;
}

.bus_passenger_contact_group {
    width: 49%;
}

.bus_passenger_contact_label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2%;
}

.bus_passenger_route_container {
    display: flex;
    width: 100%;
}

.bus_passenger_contact_input {
    width: 100%;
    margin-right: 2%;
    border-radius: 4px;
    height: 40px;
    background-color: var(--background-light);
}

.passenger_input {
    height: 40px;
    width: 94%;
    background-color: transparent;
    padding: 0 10px;
}

input:-webkit-autofill {
    box-shadow: 0 0 0 995px #FFE4AD inset !important;
    /* -webkit-text-fill-color: #000 !important; */
}

.bus_passenger_detail_container {
    width: 100%;
    border: solid;
    border-radius: 4px;
    border-width: 0 1px 1px 1px;
    border-color: var(--primary-hover);
    margin-bottom: 2%;
}

.bus_passenger_detail_title {
    font-size: 16px;
    padding: 2% 0 2% 2%;
    border-radius: 4px 4px 0 0;
    background-color: var(--primary-hover);
}

.bus_passenger_detail_heading {
    display: flex;
    justify-content: space-between;
    padding: 2% 5%;
    margin: 2% 2% 0 2%;
    border-radius: 4px 4px 0 0;
    background-color: var(--primary-color);
    color: white;
}

.bus_passenger_seatno {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.bus_passenger_detail_group_conteiner {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2%;
    padding: 2%;
    margin-bottom: 2%;
    border: solid;
    border-radius: 0 0 4px 4px;
    border-width: 0 1px 1px 1px;
    border-color: var(--primary-color);
}

.bus_passenger_detail_container .bus_passenger_detail_group_conteiner {
    margin: 0 2% 2% 2%;
}

.bus_passenger_detail_group.passenger_name_container {
    width: 100%;
}

.bus_passenger_detail_label {
    font-size: 16px;
    padding: 2% 0;
}

.passenger_name_container .bus_passenger_detail_input {
    width: 100%;
}

.bus_passenger_detail_input {
    width: 100%;
    margin-bottom: 2%;
    border-radius: 4px;
    height: 40px;
    background-color: var(--background-light);
}

.bus_passenger_detail_group {
    width: 49%;
}

.bus_passenger_coupon_container {
    width: 100%;
    margin-bottom: 2%;
}

.bus_passenger_coupon_title {
    padding: 2% 0 2% 2%;
    font-size: 16px;
    border-radius: 4px 4px 0 0;
    background-color: var(--primary-color);
    color: white;
}

.bus_passenger_coupon_group {
    display: flex;
    justify-content: space-evenly;
    padding: 2% 0;
    border: solid;
    border-radius: 0 0 4px 4px;
    border-width: 0 1px 1px 1px;
    border-color: var(--primary-color);
}

.bus_passenger_coupon_input {
    width: 50%;
    border-radius: 4px;
    background-color: var(--background-light);
}

.bus_passenger_coupon_btn {
    width: 20%;
}

.coupon_btn {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-hover);
    color: white;
    font-size: 16px;
}

.bus_passenger_gst_container {
    width: 100%;
    margin-bottom: 2%;
}

.bus_passenger_gst_group_container {
    display: none;
    flex-wrap: wrap;
    column-gap: 2%;
    padding: 2%;
    margin-bottom: 2%;
    border: solid;
    border-radius: 0 0 4px 4px;
    border-width: 0 1px 1px 1px;
    border-color: var(--primary-color);
}

.bus_passenger_gst_heading {
    width: 98%;
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 10px;
    padding: 15px 0;
    padding-left: 2%;
    border-radius: 4px 4px 0 0;
    background-color: var(--primary-color);
    color: white;
}

.bus_passenger_gst_checbox {
    width: 5%;
    display: grid;
    align-items: center;
    justify-items: center;
}

.gst_checkbox {
    width: 20px;
    height: 20px;
}

.bus_passenger_gst_name {
    font-size: 14px;
}

.bus_passenger_gst_group {
    width: 49%;
}

.bus_passenger_btn_container {
    width: 100%;
    padding: 3% 0 0 0;
}

.bus_passenger_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    padding: 0 20px;
    background: linear-gradient(90deg, #783D1D, #F2AE03);
    color: #fff6f6;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3sease;
}

.bus_passenger_btn:hover {
    background: linear-gradient(90deg, #F2AE03, #783D1D);
}

.bus_passenger_btn .submit_text {
    flex-grow: 1;
    text-align: center;
}

.bus_passenger_btn .amounts {
    display: flex;
    align-items: center;
}

.bus_passenger_btn .gst_amount,
.bus_passenger_btn .total {
    padding: 10px 15px;
    border-radius: 4px;
    color: white;
}

.total {
    font-weight: bold;
    font-size: 18px;
}

.gst_amount {
    font-weight: 600;
    font-size: 16px;
}

.bus_passenger_btn .submit_text {
    flex-grow: 1;
    text-align: right;
}

.bus_passenger_btn .plus i {
    color: #fff6f6;
}


.bus_passenger_heading {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 40px;
    background-color: var(--primary-hover);
}

.bus_passenger_title {
    font-weight: bold;
}

.bus_passenger_cancel_payment {
    cursor: pointer;
}

.bus_passenger_condition_container {
    width: 100%;
    display: flex;
    height: 40px;
    align-items: center;
}

.bus_passenger_condition_checkbox_container {
    width: 5%;
    display: grid;
    align-items: center;
    justify-items: center;
}

.bus_passenger_condition_checkbox {
    width: 20px;
    height: 20px;
}

.terms {
    font-size: 18px;
    font-weight: 600;
}

.bus_passenger_detail_group.passenger_fare_group {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bus_passenger_fare_container {
    display: flex;
    align-items: center;
    width: 40%;
    height: fit-content;
}

.bus_passenger_fare_icon {
    width: 30%;
    height: 40px;
    display: grid;
    align-items: center;
    justify-items: center;
    border-radius: 4px 0 0 4px;
    background-color: var(--primary-hover);
    border: solid;
    border-color: var(--primary-hover);
}

.bus_passenger_discount, .bus_passenger_fare {
    width: 70%;
    height: 40px;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 18px;
    font-weight: 700;
    color: black;
    letter-spacing: 1px;
    background-color: var(--background-light);
    border: solid;
    border-color: var(--primary-hover);
}

.bus_passenger_btn .total {
    position: relative;
}

.bus_passenger_btn .total:hover .tickets_fare_details {
    display: block;
}

.tickets_fare_details {
    position: absolute;
    background-color: orange;
    top: -160%;
    left: 100%;
    width: 200px;
    border-radius: 4px;
    display: none;
}

.tickets_fare_detail_group {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 3% 5%;
    font-weight: 600;
}

.tickets_fare_detail_group span {
    width: max-content;
}

.bus_ticket_overall_wrapper {
    width: 100%;
    margin: 2% 0;
}

.bus_ticket_overall_detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bus_ticket_overall_key {
    font-size: 18px;
    font-weight: bold;
}


.policy_container {
    padding: 2% 10%;
}

.policy_heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1%;
}

.policy_content {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 30px;
    margin-bottom: 1%;
}

.contact_container {
    padding: 5% 15%;
}

#nearest-office {
    background-color: #f9f9f9;
    border: 2px solid var(--primary-hover);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#nearest-office h3 {
    color: var(--primary-hover);
    font-size: 20px;
    margin-bottom: 10px;
}

#nearest-office p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

#map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-top: 15px;
    border: 2px solid var(--primary-hover);
}

#all-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.office-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out;
}

.office-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-hover);
}

.office-card h4 {
    color: var(--primary-hover);
    margin-bottom: 8px;
    font-size: 18px;
}

.office-card p {
    font-size: 14px;
    color: #555;
    margin: 3px 0;
}


.view_review_container {
    margin: 0 5%;
    padding: 5% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.review_search_group {
    width: 50%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review_search_container {
    width: 70%;
    height: 50px;
    display: grid;
    background-color: var(--background-light);
    border: solid;
    border-width: 1px 0 1px 1px;
    border-color: var(--primary-color);
    border-radius: 4px 0 0 4px;
}

.review_search {
    background-color: transparent;
    padding: 0 10px;
    font-size: 1rem;
}

.review_btn_container {
    width: 30%;
    height: 50px;
    display: grid;
    background-color: var(--primary-color);
    border: solid;
    border-width: 1px;
    border-color: var(--primary-color);
    border-radius: 0 4px 4px 0;
}

.review_btn {
    background-color: transparent;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.view_detail_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.rating_container {
    width: 58%;
    margin: 2%;
    padding: 2%;
    background-color: var(--background-light);
    border-radius: 4px;
    display: block;
}

.rating_title {
    font-size: 1.2rem;
    color: var(--btn-background-color);
}

.rating_group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}


.rating_group label {
    font-size: 2.5rem;
    cursor: pointer;
    color: black;
}

.rating_group label:hover {
    color: var(--primary-hover);
}

.rating_group label.active {
    color: var(--primary-hover);
}

.tag.active {
    background-color: var(--primary-hover);
}


.rating_tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--facebook-color);
    padding: 5px 10px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.tag:hover {
    background-color: var(--primary-hover);
}

.comment_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 3% 0;
}

.rating_tags_title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 3% 0;
    color: var(--btn-background-color);
}

.comment_label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--btn-background-color);
}

.comment_key {
    border: none;
    padding: 10px;
    font-size: 1rem;
}

.comment_key:foucs, .comment_key:active{
    border: none !important;
    outline: none !important;
}

.rating_btn {
    width: 100%;
    height: 50px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    border-radius: 4px;
    margin: 2% 0;
}

.no_rating_container {
    color: white;
    font-size: 1rem;
    background-color: var(--primary-hover);
    width: 50%;
    height: 50px;
    display: none;
    text-align: center;
    align-items: center;
    border-radius: 4px;
    margin: 2% 0;
}

.trip_details_container {
    width: 26%;
    background-color: var(--background-light);
    border-radius: 4px;
    padding: 2%;
    margin: 2% 2% 0 2%;
    text-align: left;
    display: block;
    height: fit-content;
}

.trip_details_group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
}

.trip_title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--btn-background-color);
    margin-bottom: 10px;
}

.trip_details_container p {
    width: 96%;
    font-size: 1rem;
    color: black;
    margin: 2% 0;
    padding: 1% 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: var(--primary-hover);
}

.trip_details_group strong {
    width: 50%;
}

.trip_details_group span {
    background-color: white;
    padding: 5px 10px;
    width: 50%;
}

@media (max-width: 999px) {
    form.review_search_group {
        width: 96%;
    }
    .review_search_container {
        width: 60%;
    }
    .review_btn_container {
        width: 40%;
    }
    .trip_details_container {
        width: 96%;
    }
    form.rating_container {
        width: 96%;
    }
}

.error-container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px;
        min-height: 60vh;
        background-color: #f8f9fa;
        gap: 40px;
        flex-wrap: wrap;
    }

    .error_img {
        max-width: 100%;
        height: auto;
        width: 400px;
    }

    .error-message {
        max-width: 500px;
        text-align: left;
    }

    .error-message h1 {
        font-size: 5rem;
        margin: 0;
        color: #dc3545;
    }

    .error-message h3 {
        margin-top: 10px;
        font-size: 1.5rem;
        color: #333;
    }

    .error-message a {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 25px;
        background-color: #007bff;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: 0.3s ease;
    }

    .error-message a:hover {
        background-color: #0056b3;
    }

.pdf_export {
    text-align: center;
}

.pdf_export_btn {
    color: white;
    background-color: #783D1D;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 4px;
    margin: 0 20%;
    display: grid;
}

.onboard_flex_container {
    display: flex;
    flex-wrap: wrap;
    margin-right: 12%;
    height: 100vh;
}

.onboard_cnt_wrapper {
    width: 86%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 7% 0 12%;
    z-index: 1;
}

.onboard_img_wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    position: absolute;
}

.easytrack_img {
    width: 40%;
    opacity: 0.2;
    position: absolute;
    right: 20%;
}

.onboard_title {
    max-width: 400px;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.onboard_description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    max-width: 550px;
}

.register_button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.register_button:hover {
    background-color: #0056b3;
}

.register_page_logo {
    width: 40%;
    margin-bottom: 30px;
}

.operator_register_wrapper {
    height: calc(100vh - 100px);
    margin: 0 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operator_regiser_menu_list {
    height: calc(100vh - 35%);
    width: 20%;
    padding: 5% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.operator_regiser_menu_item {
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.operator_regiser_menu_item:hover,
.operator_regiser_menu_item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.operator_register_content_wrapper {
    width: 70%;
    height: calc(100vh - 35%);
    padding: 5%;
}

.operator_register_content{
    display: none;
    width: 96%;
    height: 93%;
    border-radius: 5px;
    padding: 2%;
    background-color: beige;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.operator_register_content.active{
    display: grid;
}

.operator_regiser_menu_item.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.or_form_list {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.or_form_item {
    width: 150px;
    height: 150px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.or_form_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.or_form_item_icon {
    font-size: 32px;
    color: var(--primary-color);
}

.or_form_item_title {
    font-weight: bold;
}

.or_form_wrapper {
    width: 100%;
    height: 100%;
    display: none;
    align-items: flex-start;
}

.or_form_wrapper.active{
    display: grid;
}

.or_form_header {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
}

.or_form_back {
    font-size: 20px;
    cursor: pointer;
}

.or_form_title {
    display: flex;
    gap: 10px;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.or_form_group {
    display: flex;
    max-height: 360px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 5% 5% 0 5%;
    gap: 20px;
    overflow-y: auto;
}

.or_form_filed {
    width: 46%;
    display: grid;
    gap: 15px;
}

.or_form_glabel {
    font-weight: 600;
}

.or_form_key {
    height: 40px;
    padding: 0 5%;
    border-radius: 4px;
    background-color: var(--background-light);
}

.or_form_bottom {
    display: grid;
    justify-content: flex-end;
    margin: 3% 17% 0 17%;
}

.or_form_btn {
    height: 40px;
    border: none;
    width: 150px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
}

.address_field{
    width: 73%;
}

.custom-file-upload {
    position: relative;
    width: 100%;
    height: 40px;
    border-radius: 4px;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.3s ease;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}   

.custom-file-upload.dragover {
    border-color: #007bff;
    background-color: #f0f8ff;
}

#companyLogoText {
    pointer-events: none;
    color: #333;
}

.or_status_wrapper {
    position: absolute;
    right: 5px;
    top: 5px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.success .or_status_icon {
    color: #8BC34A;
    font-size: 18px;
}

.pending .or_status_icon {
    color: #F44336;
    font-size: 14px;
}

.or_status_cnt {
    display: none;
    font-size: 12px;
}

.or_status_wrapper:hover{
    border-radius: 10px;
}

.or_status_wrapper.success:hover{
    background-color: #cffb9b;
    padding: 2px 5px 2px 2px;
}

.or_status_wrapper.pending:hover{
    background-color: #ffb7b2;
    padding: 2px 5px 2px 5px;
}

.or_status_wrapper:hover .or_status_cnt{
    display: block;
}

.or_form_filed .select2-container--default .select2-selection--clearable .select2-selection__rendered{
    line-height: 40px !important;
    padding-top: 0 !important;
}

.or_form_filed .select2-container{
    background-color: var(--background-light);
}

.or_form_filed .select2-container--default .select2-selection--single{
    background-color: transparent;
}

.or_form_filed .select2-container .select2-selection--single .select2-selection__rendered {
    background-color: var(--background-light);
    line-height: 40px;
}

.plan-selection-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.or_plan_form_item {
    width: 180px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px 10px;
}

.or_plan_form_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plan-icon {
    font-size: 28px;
    color: var(--hover-background-color);
    margin-bottom: 10px;
}

.plan-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.plan-price {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 5px 0;
}

.plan-duration {
    font-size: 13px;
    color: #666;
}

.or_form_content {
    width: 63%;
    margin: 0 16%;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plan-desc {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.plan-benefits {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 20px;
    list-style: none;
}

.plan-benefits li {
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    padding-left: 20px;
}

.plan-benefits li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: green;
    position: absolute;
    left: 0;
    top: 0;
}

.plan-pay-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.plan-pay-btn:hover {
    background-color: var(--hover-background-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.duration-selector {
    margin-bottom: 20px;
    text-align: left;
    font-size: 15px;
}

.duration-selector label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.plan_duration {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
}

.or_plan_summary {
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.plan-summary-icon {
    font-size: 30px;
    color: green;
    margin-bottom: 10px;
}

.plan-summary-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.plan-summary-details {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.plan-summary-details div {
    margin-bottom: 6px;
}

.verification_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.verification_img {
    width: 120px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
}

.verification_title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.verification_text {
    font-size: 16px;
    color: #555;
    max-width: 500px;
    line-height: 1.6;
}

.home_button {
    margin-top: 20px;
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.nav-item {
    text-align: center;
    color: #555;
    font-size: 12px;
    flex-grow: 1;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.nav-item i {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;
}

.nav-item:hover {
    color: var(--primary-color);
}

.nav-item.active {
    color: var(--primary-color);
    font-weight: bold;
}

.page-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 15px;
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.page_header_back_btn,
.page_header_icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_back_btn,
.page_icon {
    font-size: 20px;
    color: #333;
}

.page_header_title {
    flex: 1 1 auto;
    text-align: center;
}

.page_title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.page_header_icon {
    display: none;
}

@media (max-width: 321px) {
    .bottom-nav {
        display: flex;
    }
    
    .page-header {
        display: flex;
    }
    
    .login_left_container {
        width: 100%;
    }
    
    .login_overlayer {
        width: 90%;
        left: 0;
        border-radius: 0;
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        position: relative;
        top: 48%;
    }
    
    .login_right_container {
        display: none;
    }
    
    .main_container {
        margin-bottom: 60px;
    }
    
    footer {
        display: none;
    }
    
    .report_filter_container {
        flex-wrap: wrap;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .bottom-nav {
        display: flex;
    }
    
    .page-header {
        display: flex;
    }
    
    .login_left_container {
        width: 100%;
    }
    
    .login_overlayer {
        width: 90%;
        left: 0;
        border-radius: 0;
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        position: relative;
        top: 48%;
    }
    
    .login_right_container {
        display: none;
    }
    
    .main_container {
        margin-bottom: 60px;
    }
    
    footer {
        display: none;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .bottom-nav {
        display: flex;
    }
    
    .page-header {
        display: flex;
    }
    
    .login_left_container {
        width: 100%;
    }
    
    .login_overlayer {
        width: 90%;
        left: 0;
        border-radius: 0;
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        position: relative;
        top: 48%;
    }
    
    .login_right_container {
        display: none;
    }
    
    .main_container {
        margin-bottom: 60px;
    }
    
    footer {
        display: none;
    }
}

.sidebar {
    display: none;
    width: 80px;
    height: 100%;
    background: var(--primary-hover);
    transition: width 0.3s ease;
    overflow: hidden;
}

.sidebar:hover {
    width: 280px;
}

.sidebar:hover .main_content {
    width: calc(100% - 280px);
}

.sidebar:hover .profile_info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar:hover .sidebar_profile {
    padding: 15px;
}

.sidebar:hover .profile_image {
    width: 70px;
    height: 70px;
}

.sidebar:hover .menu span {
    opacity: 1;
}

.sidebar:hover .submenu {
    padding-left: 15px;
}

.sidebar:hover .sidebar_control {
    display: flex;
}

.sidebar.collapsed {
    width: 280px;
}

.sidebar.collapsed .menu span {
    opacity: 1;
}

.sidebar.collapsed .submenu {
    padding-left: 15px;
}

.sidebar.collapsed .profile_info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar.collapsed .sidebar_profile {
    padding: 15px;
}

.sidebar.collapsed .profile_image {
    width: 50px;
    height: 50px;
}

.sidebar.collapsed:hover {
    width: 280px;
}

.sidebar.collapsed .main_content {
    width: calc(100% - 280px);
}

.sidebar.collapsed .sidebar_control {
    display: flex;
}

.sidebar_control {
    display: none;
    justify-content: end;
    margin: 5%;
}

i.fa-solid.sidebarcontrol.fa-toggle-on {
    font-size: 26px;
    width: auto;
}

i.fa-solid.sidebarcontrol.fa-toggle-off {
    font-size: 26px;
    width: auto;
}

.sidebar_on,
.sidebar_off {
    padding: 5px;
    cursor: pointer;
}

.sidebar_on {
    display: none;
}

.menu {
    list-style: none;
    padding: 20px;
}

.menu li {
    position: relative;
    margin: 10px 0;
}

.menu a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    padding: 12px;
    border-radius: 5px;
    transition: 0.3s;
    background: var(--card-background-color);
}

.menu a:hover,
.menu a.active {
    background: var(--btn-background-color);
    color: var(--btn-text-color);
}

.menu i {
    font-size: 20px;
    width: 40px;
    text-align: center;
    color: var(--icon-color);
}

.menu span {
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 80%;
}

.submenu {
    display: none;
}

.submenu a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: var(--submenu-color);
    border-radius: 5px;
    color: var(--text-color);
}

.submenu a:hover,
.submenu a.active {
    background: var(--btn-background-color);
    color: var(--btn-text-color);
}

.submenu i {
    font-size: 18px;
    width: 20%;
    text-align: center;
    color: var(--icon-color);
}

.submenu li {
    list-style: none;
}

.menu li.active .submenu {
    display: block;
}

.sidebar_profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: var(--card-background-color); */
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.profile_info {
    display: none;
}

.profile_image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 12px;
}

.profile_name {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
}

.profile_role {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}

.profile_email {
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.9;
}

.last_login {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

a.support_link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.no-overflow {
    overflow: hidden;
}

@media (max-width: 321px) {
    .sidebar {
        display: none;
        width: 100%;
        height: calc(100vh - 60px);
        overflow-y: auto;
        top: 0;
        position: absolute;
        z-index: 10;
    }

    .sidebar_profile {
        display: none;
    }

    .sidebar_control {
        display: none;
    }

    .sidebar:hover {
        width: 100%;
    }

    .sidebar:hover .sidebar_control {
        display: none;
    }

    .menu span {
        opacity: 1;
    }
    
    .header_main_container{
        display: none;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .sidebar {
        display: none;
        width: 100%;
        height: calc(100vh - 60px);
        overflow-y: auto;
        top: 0;
        position: absolute;
        z-index: 10;
    }

    .sidebar_profile {
        display: none;
    }

    .sidebar_control {
        display: none;
    }

    .sidebar:hover {
        width: 100%;
    }

    .sidebar:hover .sidebar_control {
        display: none;
    }

    .menu span {
        opacity: 1;
    }
    
    .header_main_container{
        display: none;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .sidebar {
        display: none;
        width: 100%;
        height: calc(100vh - 60px);
        overflow-y: auto;
        top: 0;
        position: absolute;
        z-index: 10;
    }

    .sidebar_profile {
        display: none;
    }

    .sidebar_control {
        display: none;
    }

    .sidebar:hover {
        width: 100%;
    }

    .sidebar:hover .sidebar_control {
        display: none;
    }

    .menu span {
        opacity: 1;
    }
    
    .header_main_container{
        display: none;
    }
}



@media (max-width: 321px) {
    
    .bus_container {
        padding: 2%;
    }
    
    .bus_header {
        width: 100%;
    }
    
    .bus_details {
        width: 100%;
        padding-right: 0;
        height: fit-content;
        flex-wrap: wrap;
    }
    
    .route_section {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin: 5px 0;
    }
    
    .route_point {
        width: 100%;
    }
    
    .bus_detail_footer {
        width: 100%;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .bus_footer {
        flex-wrap: wrap;
        height: fit-content;
        gap: 15px;
    }
    
    .bus_aditional_detail_titlecontainer {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .review_container {
        width: 100%;
    }
    
    .seat_select_btn {
        width: 100%;
    }
    
    .seat_price_difference_container {
        flex-wrap: wrap;
        height: fit-content;
        width: 100%;
        row-gap: 5px;
    }
    
    .bus_seat_layout_group_container {
        flex-wrap: wrap;
    }
    
    .bus_seat_layout {
        width: 100%;
    }
    
    .landscape_bus_outer_container {
        width: 93%;
        padding: 1% 1% 1% 5%;
    }
    
    .bus_steering_icon {
        width: 14px;
    }
    
    .bus_seat_reference_container {
        width: 100%;
        height: fit-content;
    }
    
    .process_to_next_btn {
        position: relative;
        width: 100%;
    }
    
    .landscape_bus_outer_container .bus_seat {
        min-width: 25px;
        height: 25px;
    }
    
    .bus_stopping_point_group_container {
        width: 96%;
        overflow-y: auto;
    }
    
    .view_stoppingpoint_group_container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .view_stoppingpoint_group.view_fromstoppping_point {
        width: 100%;
    }
    
    .view_stoppingpoint_group.view_tostoppping_point {
        width: 100%;
    }
    
    .bus_passenger_information_container.initiatepayment_form {
        width: 96%;
    }
    
    .bus_passenger_title {
        font-size: 12px;
    }
    
    .bus_passenger_cancel_payment {
        font-size: 12px;
    }
    
    .bus_aditional_detail_container .bus_view_filter_content {
        width: 25%;
    }
    
    .stopping_point_container {
        width: 97%;
    }
    
    .cancellation_container {
        margin: 0;
        overflow-x: auto;
    }
    
    .cancellation_th {
        font-size: 12px;
    }
    
    .cancellation_td_container {
        overflow-x: auto;
    }
    
    .cancellation_td {
        padding: 0 10px 0 10px;
        font-size: 10px;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    
    .bus_container {
        padding: 2%;
    }
    
    .bus_header {
        width: 100%;
    }
    
    .bus_details {
        width: 100%;
        padding-right: 0;
        height: fit-content;
        flex-wrap: wrap;
    }
    
    .route_section {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin: 5px 0;
    }
    
    .route_point {
        width: 100%;
    }
    
    .bus_detail_footer {
        width: 100%;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .bus_footer {
        flex-wrap: wrap;
        height: fit-content;
        gap: 15px;
    }
    
    .bus_aditional_detail_titlecontainer {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .review_container {
        width: 100%;
    }
    
    .seat_select_btn {
        width: 100%;
    }
    
    .seat_price_difference_container {
        flex-wrap: wrap;
        height: fit-content;
        width: 100%;
        row-gap: 5px;
    }
    
    .bus_seat_layout_group_container {
        flex-wrap: wrap;
    }
    
    .bus_seat_layout {
        width: 100%;
    }
    
    .landscape_bus_outer_container {
        width: 93%;
        padding: 1% 1% 1% 5%;
    }
    
    .bus_steering_icon {
        width: 14px;
    }
    
    .bus_seat_reference_container {
        width: 100%;
        height: fit-content;
    }
    
    .process_to_next_btn {
        position: relative;
        width: 100%;
    }
    
    .landscape_bus_outer_container .bus_seat {
        min-width: 25px;
        height: 25px;
    }
    
    .bus_stopping_point_group_container {
        width: 96%;
        overflow-y: auto;
    }
    
    .view_stoppingpoint_group_container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .view_stoppingpoint_group.view_fromstoppping_point {
        width: 100%;
    }
    
    .view_stoppingpoint_group.view_tostoppping_point {
        width: 100%;
    }
    
    .bus_passenger_information_container.initiatepayment_form {
        width: 96%;
    }
    
    .bus_passenger_title {
        font-size: 12px;
    }
    
    .bus_passenger_cancel_payment {
        font-size: 12px;
    }
    
    .bus_aditional_detail_container .bus_view_filter_content {
        width: 25%;
    }
    
    .stopping_point_container {
        width: 97%;
    }
    
    .cancellation_container {
        margin: 0;
        overflow-x: auto;
    }
    
    .cancellation_th {
        font-size: 12px;
    }
    
    .cancellation_td_container {
        overflow-x: auto;
    }
    
    .cancellation_td {
        padding: 0 10px 0 10px;
        font-size: 10px;
    }
    
}

@media (min-width: 426px) and (max-width: 769px) {
    
    .bus_container {
        padding: 2%;
    }
    
    .bus_header {
        width: 100%;
    }
    
    .bus_details {
        width: 100%;
        padding-right: 0;
        height: fit-content;
        flex-wrap: wrap;
    }
    
    .route_section {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin: 5px 0;
    }
    
    .route_point {
        width: 100%;
    }
    
    .bus_detail_footer {
        width: 100%;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .bus_footer {
        flex-wrap: wrap;
        height: fit-content;
        gap: 15px;
    }
    
    .bus_aditional_detail_titlecontainer {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .review_container {
        width: 100%;
    }
    
    .seat_select_btn {
        width: 100%;
    }
    
    .seat_price_difference_container {
        flex-wrap: wrap;
        height: fit-content;
        width: 100%;
        row-gap: 5px;
    }
    
    .bus_seat_layout_group_container {
        flex-wrap: wrap;
    }
    
    .bus_seat_layout {
        width: 100%;
    }
    
    .landscape_bus_outer_container {
        width: 93%;
        padding: 1% 1% 1% 5%;
    }
    
    .bus_steering_icon {
        width: 14px;
    }
    
    .bus_seat_reference_container {
        width: 100%;
        height: fit-content;
    }
    
    .process_to_next_btn {
        position: relative;
        width: 100%;
    }
    
    .bus_header {
        width: 100%;
    }
    
    .bus_details {
        width: 100%;
        padding-right: 0;
        height: fit-content;
        flex-wrap: wrap;
    }
    
    .route_section {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin: 5px 0;
    }
    
    .route_point {
        width: 100%;
    }
    
    .bus_detail_footer {
        width: 100%;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .bus_footer {
        flex-wrap: wrap;
        height: fit-content;
        gap: 15px;
    }
    
    .bus_aditional_detail_titlecontainer {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .review_container {
        width: 100%;
    }
    
    .seat_select_btn {
        width: 100%;
    }
    
    .seat_price_difference_container {
        flex-wrap: wrap;
        height: fit-content;
        width: 100%;
        row-gap: 5px;
    }
    
    .bus_seat_layout_group_container {
        flex-wrap: wrap;
    }
    
    .bus_seat_layout {
        width: 100%;
    }
    
    .landscape_bus_outer_container {
        width: 93%;
        padding: 1% 1% 1% 5%;
    }
    
    .bus_steering_icon {
        width: 14px;
    }
    
    .bus_seat_reference_container {
        width: 100%;
        height: fit-content;
    }
    
    .process_to_next_btn {
        position: relative;
        width: 100%;
    }
    
    .landscape_bus_outer_container .bus_seat {
        min-width: 25px;
        height: 25px;
    }
    
    .bus_stopping_point_group_container {
        width: 96%;
        overflow-y: auto;
    }
    
    .view_stoppingpoint_group_container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .view_stoppingpoint_group.view_fromstoppping_point {
        width: 100%;
    }
    
    .view_stoppingpoint_group.view_tostoppping_point {
        width: 100%;
    }
    
    .bus_passenger_information_container.initiatepayment_form {
        width: 96%;
    }
    
    .bus_passenger_title {
        font-size: 12px;
    }
    
    .bus_passenger_cancel_payment {
        font-size: 12px;
    }
    
    .bus_aditional_detail_container .bus_view_filter_content {
        width: 25%;
    }
    
    .stopping_point_container {
        width: 97%;
    }
    
    .cancellation_container {
        margin: 0;
        overflow-x: auto;
    }
    
    .cancellation_th {
        font-size: 12px;
    }
    
    .cancellation_td_container {
        overflow-x: auto;
    }
    
    .cancellation_td {
        padding: 0 10px 0 10px;
        font-size: 10px;
    }
    
}

.partner-with-us {
  font-family: 'Segoe UI', sans-serif;
}

.partner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.partner-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.partner-text h2 {
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 10px;
}
.partner-text h2 span {
  color: var(--primary-color);
  font-size: 42px;
}

.partner-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.partner-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.benefit-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 10px;
}

.benefit-card h4 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 15px;
  color: #666;
}

.partner-btn {
  display: inline-block;
  width: 91%;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.partner-btn:hover {
  background-color: #0056b3;
}

.partner-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
  padding: 20px;
}

.partner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 1024px) {
    
    .partner-btn {
        width: 85%;
    }
    
}

.operator-offers-section {
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.operator-offers-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.offer-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.offer-card {
  display: flex;
  gap: 15px;
  padding: 25px;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.offer-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* Colorful Card Themes */
.offer-card.welcome { background: linear-gradient(135deg, #3a8ef6, #6fd6ff); }
.offer-card.rush    { background: linear-gradient(135deg, #f5576c, #f093fb); }
.offer-card.early   { background: linear-gradient(135deg, #29c96d, #7be495); }
.offer-card.round   { background: linear-gradient(135deg, #ff884b, #ffaf7b); }
.offer-card.group   { background: linear-gradient(135deg, #775ada, #b093fc); }
.offer-card.custom  { background: linear-gradient(135deg, #00b4db, #0083b0); }

.offer-card:hover {
  transform: translateY(-8px);
}

.offer-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mt_wrapper {
    padding: 5% 10%;
}

.mt_list_wrapper {
    display: flex;
    justify-content: space-around;
    list-style: none;
    background-color: var(--background-light);
}

.mt_item_wrapper {
    display: grid;
    width: 33.3%;
    text-align: center;
    cursor: pointer;
}

.mt_item_wrapper a {
    width: 100%;
    color: var(--black-color);
    padding: 15px 0;
}

.mt_item_wrapper.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.mt_item_wrapper.active a {
    color: var(--white-color);
}

.mt_form_wrapper {
    padding: 5%;
    margin: 0 10%;
}

.mt_form_group {
    display: flex;
}

.mt_input_key {
    width: calc(60% - 20px);
    height: 50px;
    padding: 0 10px;
    font-size: 18px;
}

.mt_search_btn {
    width: 40%;
    height: 50px;
    border: none;
    background-color: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
}

.mt_detail_title {
    width: max-content;
    background-color: var(--primary-color);
    padding: 15px 15px;
    color: var(--white-color);
    font-size: 18px;
    border-radius: 4px 4px 0 0;
}

.mt_detail_list {
    list-style: none;
    display: flex;
    justify-content: space-around;
    background-color: var(--background-light);
}

.mt_detail_item {
    padding: 15px 0;
}

.mt_detail_item.pdf_btn a {
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
}

.mt_detail_thlist {
    list-style: none;
    display: flex;
    justify-content: space-around;
    background-color: white;
}

.mt_detail_thlist .mt_detail_item {
    font-weight: bold;
}

.cancel_table {
    width: 100%;
    margin-bottom: 3%;
}

.cancel_table_trth {
    background-color: white;
}

.cancel_table_th {
    padding: 10px 0;
}

.cancel_table_trtd {
    background-color: var(--background-light);
}

.cancel_table_td {
    padding: 20px 0;
    text-align: center;
}

.cancel_table_td a {
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    margin-right: 5px;
}

.cancel_refund {
    width: 100%;
}

.cancel_refund_trth {
    background-color: white;
}

.cancel_refund_th {
    padding: 10px 0;
}

.cancel_refund_trtd {
    background-color: var(--background-light);
}

.cancel_refund_td {
    padding: 5px 0;
    text-align: center;
}

.bus_passenger_offer_container{
    width: 100%;
    margin-bottom: 2%;
}

.bus_passenger_offer_heading{
    width: 98%;
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 10px;
    padding: 15px 0;
    padding-left: 2%;
    border-radius: 4px 4px 0 0;
    background-color: var(--primary-color);
    color: white;
}

.bus_passenger_offer_group {
    display: block;
    padding: 10px 15px;
    border: solid;
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 4px 4px;
}

.bus_passenger_offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bus_passenger_offer_key {
    width: 20px;
    height: 20px;
}

.removecouponbtn {
    padding: 5px 10px;
    border-radius: 4px;
    border-width: 0;
    font-size: 14px;
    color: white;
    background-color: #F44336;
}