﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif !important;
    color: #565969;
    line-height: normal;
    font-size: 15px;
    font-weight: 400;
}

    body .container {
        width: 100%;
        max-width: 1390px !important;
        margin: 0 auto;
    }

    body .container-fluid {
        width: 100%;
        max-width: 1920px !important;
        padding-right: 0;
        padding-left: 0;
        margin: 0 auto;
    }

.maxwidth {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.disabled {
    pointer-events: none; /* Prevents mouse clicks and events */
    opacity: 0.5; /* Visually indicates the element is disabled */
    /* You may also add other styles to indicate it's disabled */
}

a,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
span,
label,
p {
    margin: 0;
    padding: 0;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 0;
    padding-left: 0;
}

ul,
li {
    list-style-type: none;
    text-decoration: none;
}

a {
    text-decoration: none !important;
    cursor: pointer;
}

    a:hover, a:focus {
        outline: none !important;
        text-decoration: none !important;
    }

img {
    max-width: 100%;
}

:root {
    --primary-color: #092F53;
    --secondary-color: #FEB209;
    --head-text-color: #0A1229;
    --text-color: #8590A3;
    --background: #F1F4F6;
    --border-color: #E8E8E9;
    --pure: #fff;
}

.max-width-1920 {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    clear: both;
}

::selection {
    background-color: var(--head-text-color);
    color: var(--pure);
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
    width: 3px;
    height: 3px;
    background-color: var(--secondary-color);
}

/*::-webkit-scrollbar {
    border-radius: 2px;
    width: 8px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    width: 8px;
    background-color: var(--text-color);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

   ::-webkit-scrollbar-thumb:hover {
        background-color: var(--secondary-color);
    }*/


/*::-webkit-scrollbar {
    display: none;
}*/

/* Header Style Start Here*/

.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
}

.menuheader {
    width: 100%;
    float: left;
    position: relative;
    z-index: 2;
    padding: 0px 0 0;
}

.head {
    width: 100%;
    float: left;
    clear: both;
}

.topheader {
    width: 100%;
    float: left;
    padding: 24px 0;
    border-top: 1px solid rgb(255 255 255 / 10%);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    margin: 10px 0 0;
    position: relative;
    z-index: 2;
}

.tophead {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .tophead .logo a {
        float: left;
    }

.headercontactdetails {
    display: flex;
    width: 100%;
    align-items: center;
}

.head_contact01 {
    width: 100%;
    float: left;
    padding: 0 52px;
    position: relative;
}

    .head_contact01:before {
        content: '';
        position: absolute;
        top: 10px;
        left: 0;
        width: 1px;
        height: 27px;
        background-color: rgb(255 255 255 / 20%)
    }

    .head_contact01.head_contact03 {
        padding: 0 0 0 50px;
    }

    .head_contact01 p {
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
        color: rgb(255 255 255 / 80%);
        margin: 0 0 6px;
        text-transform: uppercase;
    }

    .head_contact01 span a {
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        color: var(--pure);
    }

        .head_contact01 span a:focus,
        .head_contact01 span a:hover {
            color: var(--secondary-color);
        }

.head_login {
    padding: 0 0 0 51px;
    position: relative;
}

    .head_login:before {
        content: '';
        position: absolute;
        top: 7px;
        left: 0;
        width: 1px;
        height: 28px;
        background-color: rgb(255 255 255 / 20%);
    }

    .head_login .dropdown, .dropup {
        display: flex;
    }

.dropdown_hover.active .logilink i {
    transform: rotate(180deg) !important;
    transition: 300ms ease-in-out;
}

.logilink {
    font-size: 14px;
    font-weight: 800;
    line-height: normal;
    padding: 12px 25px 12px 30px;
    color: var(--primary-color) !important;
    background-color: var(--secondary-color);
    border-radius: 4px;
    text-transform: uppercase;
}

    .logilink i {
        margin: 0 0 0 6px;
        font-size: 16px;
        font-weight: 800;
        text-align: center;
        width: 16px;
        line-height: normal;
        transition: 300ms ease-in-out;
    }

    .logilink:hover, .logilink:focus {
        color: var(--pure);
        text-decoration: none;
    }

.head_login .dropdown-menu {
    padding: 0;
    background-color: var(--pure);
}

    .head_login .dropdown-menu > li > a {
        padding: 12px 0 12px 20px;
        color: var(--primary-color);
        font-weight: 400;
        font-size: 14px;
        text-transform: capitalize;
        letter-spacing: 0.2px;
        background: none;
        width: 100%;
    }

    .head_login .dropdown-menu > li > .branchtop {
        border-bottom: 1px solid var(--border-color);
    }

    .head_login .dropdown-menu > li > a:hover, .head_login .dropdown-menu > li > a:focus {
        color: var(--primary-color);
        background-color: var(--border-color);
        text-decoration: none;
    }
/* Header Style End Here*/

.rightheader {
    float: left;
    width: 100%;
}

    .rightheader .contactheader {
        display: none;
    }

.menuloginpart {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.headercontectinfo {
    padding: 5px 0 0;
}

.contactno {
    float: left;
    margin: 0 40px 0 0;
}

    .contactno .contactroute {
        float: left;
    }

    .contactno .contactroute {
        float: left;
        padding: 10px 0 10px 79px;
        background-image: url("../images/site/icon02.png");
        background-position: left -684px;
        background-repeat: no-repeat;
    }

        .contactno .contactroute.contactroute02 {
            background-position: left -899px;
            margin: 0 0 0 45px;
        }

.contactroute p {
    font-size: 14px;
    font-weight: 400;
    color: #404653;
    padding: 0 0 1px;
}

.contactroute a {
    font-size: 14px;
    font-weight: 700;
    color: #000A16 !important;
}

    .contactroute a:hover {
        color: #003478 !important;
    }

.headercontectinfo .agentlogin a {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
    padding: 14px 30px 11px;
    margin: 7px 0 0;
    background-color: #447BDE;
    color: #fff;
    border-radius: 4px;
}

    .headercontectinfo .agentlogin a:hover {
        background-color: #003478;
    }

.agentlogin {
    float: right;
}

.loginwrap {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

    .loginwrap .logilink {
        display: flex;
        justify-content: space-between;
        gap: 9px;
        background: rgba(62, 127, 219, 0.20);
        border-radius: 4px;
        padding: 13px 11px 12px 40px;
        color: var(--maincolor);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
        background-image: url('../images/site/icon02.png');
        background-position: 9px 1px;
        background-repeat: no-repeat;
        background-size: 52px;
    }

        .loginwrap .logilink.logilink02 {
            background-position: 11px -170px;
        }

        .loginwrap .logilink.logilink03 {
            background-position: 11px -342px;
        }

/* leftmenu start */

.headermenu {
    padding: 0;
    float: left;
}

    .headermenu .navbar-inverse {
        background-color: transparent;
        border: none;
        float: none;
        margin: 0;
        min-height: 10px;
        width: 100%;
        border-radius: 0;
        position: relative;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
    }

        .headermenu #myNavbar,
        .headermenu .navbar-inverse .container-fluid {
            padding: 0;
        }

    .headermenu .navbar-toggle .icon-bar {
        background: var(--maincolor);
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
        margin-top: 4px;
    }

        .headermenu .navbar-toggle .icon-bar:first-child {
            margin-top: 0;
        }

    .headermenu .navbar-inverse .navbar-nav {
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: middle;
        width: 100%;
    }

    .headermenu .navbar-header {
        float: left;
    }

    .headermenu .navbar-collapse {
        padding: 0;
    }

    .headermenu .navbar-inverse .navbar-nav > li {
        display: inline-block;
        vertical-align: middle;
    }

        .headermenu .navbar-inverse .navbar-nav > li:first-child {
            margin: 0;
        }

        .headermenu .navbar-inverse .navbar-nav > li > a {
            display: inline-block;
            list-style-type: none;
            color: #ffffff;
            position: relative;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.051px;
            background-color: transparent;
            padding: 16px 41px 19px;
            text-transform: uppercase;
        }

            .headermenu .navbar-inverse .navbar-nav > li > a.active:focus {
                text-decoration: none;
                background-color: transparent;
                color: #ffffff;
                outline: none;
            }

            .headermenu .navbar-inverse .navbar-nav > li > a:before {
                content: '';
                position: absolute;
                width: 0;
                background-color: #EEB752;
                height: 4px;
                border-radius: 50px 50px 0 0;
                left: 0;
                bottom: 0;
                visibility: hidden;
                transition: width 0.5s ease, background 0.5s ease;
            }

            .headermenu .navbar-inverse .navbar-nav > li > a:hover:before, .headermenu .navbar-inverse .navbar-nav > li > a:focus:before {
                visibility: visible;
                background-color: #EEB752;
                width: 100%;
            }

            .headermenu .navbar-inverse .navbar-nav > li > a:after {
                content: '';
                display: block;
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0;
                height: 4px;
                border-radius: 50px 50px 0 0;
                background-color: #EEB752;
                transition: width 0.5s ease;
            }

            .headermenu .navbar-inverse .navbar-nav > li > a:hover:after, .headermenu .navbar-inverse .navbar-nav > li > a:focus:after {
                background: transparent;
                width: 100%;
                transition: all 0s ease;
            }

.pull-left {
    float: left !important;
}

.navbar-toggle {
    display: none;
    position: relative;
}

.cssmenu {
    float: left;
}

/*Drop down start*/

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

.dropdown.active .dropdown-content {
    display: block;
}
/*Drop down end*/

/*Menu Style End Here*/
/*User Login Popup Style Start Here*/
.userloginpopup {
    display: inline-block;
    width: 50%;
}

    .userloginpopup .popupbtn {
        cursor: pointer;
        border: none;
        border-right: 1px solid var(--border-color);
        border-left: 1px solid var(--border-color);
        padding: 0;
        background-color: var(--primary-color);
        transition: 0.3s;
        text-transform: lowercase;
        height: 68px;
        background-image: url(../images/Icons.svg);
        background-repeat: no-repeat;
        background-position: center -556px;
    }

        .userloginpopup .popupbtn:hover {
            background-color: var(--head-text-color);
        }

.login_popup_main .css-yiavyu-MuiBackdrop-root-MuiDialog-backdrop {
    background-color: rgba(10, 18, 41, 0.9);
}

.login_popup_main .css-2rbg70-MuiPaper-root-MuiDialog-paper {
    background-color: var(--background);
    max-width: 576px;
    width: 100%;
}

.login_popup_main .css-ypiqx9-MuiDialogContent-root {
    padding: 80px 40px 60px;
    position: relative;
}

    .login_popup_main .css-ypiqx9-MuiDialogContent-root::-webkit-scrollbar {
        width: 8px !important;
        height: 8px !important;
        box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    }

    .login_popup_main .css-ypiqx9-MuiDialogContent-root::-webkit-scrollbar-thumb {
        width: 3px;
        height: 3px;
        background-color: var(--primary-color);
    }

.login_popup_main .css-hlj6pa-MuiDialogActions-root {
    padding: 0;
}

.login_popup_main .css-1pxa9xg-MuiAlert-message {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.menurightpopup {
    display: flex;
    align-items: center;
    width: 10%;
    height: 68px;
    float: right;
}

.popupclosebutton {
    cursor: pointer;
    width: 17px;
    height: 17px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

    .popupclosebutton i {
        font-weight: 600;
        font-size: 22px;
        color: var(--primary-color);
    }

.login_popup_main .userloginpopup {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.userloginpopup .popup-head h5 {
    float: left;
    width: 100%;
    padding: 40px 0 20px;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
}

.popupotp-input {
    width: 100%;
    float: left;
    padding: 40px 0 0;
}

.userloginpopup .popupotp-input input {
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    margin: 0 0 0px;
}

    .userloginpopup .popupotp-input input:active,
    .userloginpopup .popupotp-input input:focus {
        outline: 1px solid var(--secondary-color);
    }

.userloginpopup .popupbtn {
    width: 100%;
}

.popupbtn-in {
    width: 100%;
    padding: 12px 0;
    background-color: var(--primary-color);
    border: none;
    border-radius: 2px;
    color: var(--pure);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

    .popupbtn-in:hover, .popupbtn-in:focus {
        background-color: var(--secondary-color);
        box-shadow: 0px 10px 20px rgb(255 135 20 / 50%);
        color: var(--primary-color);
    }

.popup-sigin-option {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 60px 0 0px;
    width: 100%;
}

    .popup-sigin-option .sigin-option-title h5 {
        font-size: 15px;
        font-weight: 400;
        color: var(--primary-color);
        position: relative;
    }

        .popup-sigin-option .sigin-option-title h5::after {
            position: absolute;
            content: '';
            width: 60px;
            height: 2px;
            background-color: var(--border-color);
            right: -78px;
            bottom: 8px;
        }

.sigin-option-icon {
    display: flex;
    gap: 20px;
}

    .sigin-option-icon a i {
        font-size: 18px;
        line-height: 40px;
        color: var(--pure);
        background-color: var(--primary-color);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        text-align: center;
    }

    .sigin-option-icon a .fa-google {
        background-color: #EA4335;
        line-height: 42px;
    }

    .sigin-option-icon a i:hover,
    .sigin-option-icon a i:focus {
        background-color: #2f4677;
    }

    .sigin-option-icon a .fa-google:hover,
    .sigin-option-icon a .fa-google:focus {
        background-color: #bd362a;
    }

.popupotp-input .web_input span {
    text-align: left;
    font-size: 12px;
    color: var(--secondary-color);
    padding: 4px 0 0px;
}

.css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root.Mui-checked, .css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root.MuiCheckbox-indeterminate {
    color: var(--primary-color) !important;
}

.css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root {
    color: var(--primary-color) !important;
}

.resendotplink {
    width: 100%;
    float: left;
    text-align: right;
    color: var(--secondary-color);
    font-size: 14px;
    margin: 0 0 20px;
    font-weight: 500;
}

.web_input_gender {
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column;
}

    .web_input_gender label {
        float: left;
        font-size: 14px;
        font-weight: 500;
        color: var(--head-text-color);
        display: flex;
        flex-direction: row;
        margin: 0;
    }

    .web_input_gender .css-ahj2mt-MuiTypography-root {
        font-family: 'Poppins', sans-serif !important;
        color: var(--head-text-color);
    }

    .web_input_gender .css-vqmohf-MuiButtonBase-root-MuiRadio-root.Mui-checked {
        color: var(--primary-color);
    }

    .web_input_gender.web_input_gender01 {
        flex-direction: row;
        gap: 5px;
        align-items: center;
        font-size: 14px;
        padding: 10px 0;
    }

        .web_input_gender.web_input_gender01 a {
            color: var(--secondary-color);
            font-weight: 500;
        }


/*User Login Popup Style End Here*/

/* Toggle Menu Style  */


.headermenuside {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    /* height: 68px; */
}

#activator {
    position: relative;
    width: 24px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-align: center;
}

    #activator .menu-icon,
    #activator .menu-icon::before,
    #activator .menu-icon::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        height: 2.86px;
        background: var(--pure);
        border-radius: 8px;
        cursor: pointer;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }

    #activator .menu-icon {
        top: 8px;
        width: 16px;
    }

        #activator .menu-icon::before {
            top: -8px;
            width: 24px;
        }

        #activator .menu-icon::after {
            bottom: -8px;
            width: 24px;
        }

.activator:hover#activator .menu-icon {
    width: 24px;
}

#activator.active .menu-icon {
    background: none;
}

    #activator.active .menu-icon::before {
        top: 9px;
        left: 6px;
        background: var(--pure);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #activator.active .menu-icon::after {
        top: 9px;
        left: 6px;
        background: var(--pure);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

#activate-menu {
    z-index: 90;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -40%;
    width: 420px;
    list-style-type: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-overflow-scrolling: touch;
    background: #0a1229;
    overflow: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    text-align: left;
    -webkit-transform: perspective(1200px) rotateY(-90deg);
    transform: perspective(1200px) rotateY(-90deg);
    display: -ms-grid;
    display: grid;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

#activator.active {
    background-color: var(--secondary-color);
    height: 30px;
    width: 30px;
    padding: 18px;
}

#activate-menu.visible {
    right: 0;
    -webkit-transform: perspective(1200px);
    transform: perspective(1200px);
}

.sidebar-main {
    padding: 40% 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-main-details h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--pure);
    padding: 0 0 20px;
}

.sidebar-main-details p,
.sidebar-icon-second p {
    font-size: 14px;
    font-weight: 400;
    color: var(--white-text-opacity);
    line-height: 26px;
}

    .sidebar-main-details p i {
        font-style: normal;
        display: block;
        padding: 10px 0 0;
    }

.sidebar-main-contact-details {
    padding: 40px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-icon-details {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

    .sidebar-icon-details i {
        padding: 3px 0 0;
        font-size: 20px;
    }

.sidebar-icon-second a {
    display: block;
    color: var(--white-text-opacity);
    line-height: normal;
    font-size: 16px;
}

    .sidebar-icon-second a:hover,
    .sidebar-icon-second a:focus {
        color: var(--secondary-color);
    }

.sidebar-main-social-icon {
    display: flex;
    gap: 0;
    padding: 40px 0 0;
}

    .sidebar-main-social-icon a {
        font-size: 16px;
        line-height: normal;
        color: var(--pure);
        border: 1px solid rgba(255, 255, 255, 0.2);
        background-color: transparent;
        width: 70px;
        height: 70px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -ms-transition: 0.3s ease;
        -o-transition: 0.3s ease;
    }

        .sidebar-main-social-icon a:hover,
        .sidebar-main-social-icon a:focus {
            background-color: var(--secondary-color);
        }

#fade-bg {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    -webkit-overflow-scrolling: inherit;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 80;
    background: transparent;
    opacity: 1;
    background-color: rgba(10, 18, 41, 0.9);
}

/* Hero Section Style Start Here */

.hero {
    width: 100%;
    float: left;
    clear: both;
}

.herosection {
    width: 100%;
    float: left;
    position: relative;
}

.herobanner {
    position: relative;
}

.bannerwrapper {
    width: 100%;
    float: left;
    position: relative;
}

/* Slider Style Start Here */

.sliderwrapper {
    width: 100%;
    float: left;
    position: relative;
    right: 0;
    top: 0;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.carousel .arrow {
    position: absolute;
    top: 49%;
    display: flex;
    color: var(--pure);
    border-radius: 6px;
}

    .carousel .arrow.left {
        left: 3.2rem;
    }

    .carousel .arrow.right {
        right: 3.2rem;
    }

    .carousel .arrow > svg {
        width: 44px;
        height: 44px;
    }
/**/
.carousel {
    padding-top: 0;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

    .carousel > ul {
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
    }

    .carousel .slide {
        display: none;
    }

    .carousel img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        object-position: center;
    }

    .carousel .slide[data-active] {
        display: block;
    }

    .carousel .arrow {
        position: absolute;
        top: 49%;
        display: flex;
        color: var(--pure);
        border-radius: 6px;
    }

        .carousel .arrow:hover {
            cursor: pointer;
        }

        .carousel .arrow.left {
            left: 3.2rem;
        }

        .carousel .arrow.right {
            right: 3.2rem;
        }

        .carousel .arrow > svg {
            width: 44px;
            height: 44px;
        }

    .carousel .fade {
        animation: fadeInAnimation ease 1s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .carousel .slidetopbox {
        position: absolute;
        top: 40px;
        left: 132px;
        text-align: center;
        z-index: 1;
    }

    .carousel .discountbox {
        border-radius: 10px;
        background: #FFF;
        display: inline-flex;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 20px 0 8px;
    }

.close {
    float: right;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    width: 98%;
    text-align: right;
}

    .close:focus, .close:hover {
        color: #000 !important;
        text-decoration: none;
        opacity: .75;
    }

button:focus {
    outline: none !important;
    outline: none !important;
}

:focus-visible {
    outline: none;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 40%;
    font-size: 52px;
    line-height: normal;
    color: #ffffff;
}

.modal-content .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

    .modal-content .carousel-indicators li {
        position: relative;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        background-color: rgba(255, 255, 255, .5)
    }

        .modal-content .carousel-indicators li::before {
            position: absolute;
            top: -10px;
            left: 0;
            display: inline-block;
            width: 100%;
            height: 10px;
            content: ""
        }

        .modal-content .carousel-indicators li::after {
            position: absolute;
            bottom: -10px;
            left: 0;
            display: inline-block;
            width: 100%;
            height: 10px;
            content: ""
        }

    .modal-content .carousel-indicators .active {
        background-color: #fff
    }

.carousel-dark .carousel-indicators [data-bs-target], .modal-backdrop, .tooltip-inner {
    background-color: #000
}
/*****/

carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

.active.carousel-item-end, .carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.active.carousel-item-start, .carousel-item-prev:not(.carousel-item-end), .offcanvas-start {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

    .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
        z-index: 1;
        opacity: 1
    }

.carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s
}

    .carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
        color: #fff;
        text-decoration: none;
        outline: 0;
        opacity: .9
    }

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%
}

.spinner-border, .spinner-grow {
    display: inline-block;
    vertical-align: -.125em
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-caption {
    color: #000
}

/**/
/* Slider Style End Here */

/*Booking Form Style Start*/



.bookingwrapper {
    width: 100%;
    float: left;
    position: absolute;
    top: 40px;
    z-index: 1;
}

    .bookingwrapper .tapnow {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 10px;
    }

.tapnow h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    color: #092f53;
    margin: 0;
}

/*.tapnow a {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transition: 300ms ease-in-out;
}

    .tapnow a:hover, .tapnow a:focus {
        background-color: var(--primary-color);
        color: var(--pure);
    }*/
/*----*/
/*.tapnow {
    position: relative;*/
/* -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2)); */
/*font-size: 40px;
    padding: 50px;
    text-align: center;
}

.banner_modal .modal-content button.close {
    position: absolute;
    z-index: 9999;
}

.tapnow h1 {*/
/*font-family: "Alfa Slab One", cursive;*/
/*position: relative;
    display: inline-block;
    animation: waviy 1s infinite;
    animation-delay: calc(0.1s * var(--i));
}

.tapnow b {
    color: red;
    text-align: center;
}

@keyframes waviy {
    0%, 40%, 100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-20px);
    }
}*/

/*----*/

.bookingbus {
    float: left;
    width: 100%;
    background-color: var(--background);
    border: 6px solid var(--pure);
    border-radius: 34px;
    padding: 24px 34px;
}

.booking-tab .tab-content {
    float: left;
    width: 100%;
}

.bookingtitle {
    width: 100%;
    float: left;
    z-index: 9;
    position: relative;
    max-width: 675px;
}

    .bookingtitle h1 {
        color: #1a1a1a;
        font-size: 20px;
        font-weight: 500;
        margin: 10px 0 0;
        float: left;
    }

.tablist .nav-tabs {
    border-bottom: 1px solid #ddd;
    margin: 0 0 22px;
    padding: 0 0 21px 0;
}

.css-1m9pwf3 {
    margin: 0 !important;
    width: 28px !important;
    height: 28px !important;
}

.partialradiogroup .css-1hbvpl3-MuiSvgIcon-root,
.partialradiogroup .css-11zohuh-MuiSvgIcon-root {
    font-size: 27px !important;
    color: var(--primary-color) !important;
}

.css-1hbvpl3-MuiSvgIcon-root,
.css-11zohuh-MuiSvgIcon-root {
    font-size: 18px !important;
    color: var(--primary-color) !important;
}

.partialradiogroup .css-ahj2mt-MuiTypography-root {
    margin: 0;
    font-family: "Manrope" !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: normal !important;
    letter-spacing: 0.00938em !important;
    color: var(--primary-color);
}

.css-ahj2mt-MuiTypography-root {
    margin: 0;
    font-family: "Manrope" !important;
    font-weight: 700 !important;
    /*font-size: 18px !important;*/
    line-height: normal !important;
    letter-spacing: 0.00938em !important;
}

.css-qzbt6i-MuiButtonBase-root-MuiIconButton-root-MuiAutocomplete-popupIndicator {
    display: none;
}

.bokinginput {
    width: 100%;
    float: left;
}

.bokinginputwrap {
    float: left;
    width: 49.2%;
    position: relative;
    border-radius: 16px;
    background-color: var(--pure);
    margin: 0 20px 0 0;
    border: 1px solid rgb(9 47 83 / 20%);
}

    .bokinginputwrap .bookingforminput {
        float: left;
        width: 50%;
    }

.bookingforminput.tocityinput {
    padding: 0 0 0 20px;
}

.bookingforminput.journeydateinput,
.bookingforminput.returndateinput {
    width: 38%;
}

.quickdate {
    float: right;
    width: 39%;
    top: 23px;
    position: relative;
}

    .quickdate label {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        line-height: normal;
        text-align: center;
        color: var(--primary-color);
        border-left: 2px solid #e2e2e2;
        padding: 3px 13px 3px 13px;
        cursor: pointer;
    }

        .quickdate label span {
            display: block;
            font-size: 12px;
            font-weight: 400;
            line-height: normal;
            color: var(--text-color);
            margin: 2px 0 0 0;
        }

.bookingforminput .inputdata {
    padding: 18px 0 13px 40px;
    position: relative;
}

    .bookingforminput .inputdata input,
    .bookingforminput .inputdata input {
        border: none;
        min-height: 32px !important;
        height: 32px !important;
        width: 100%;
        padding: 0 !important;
        font-size: 18px;
        font-weight: 700;
        line-height: normal;
        border: none;
        color: var(--primary-color) !important;
    }

        .bookingforminput .inputdata input[type="text"]::-webkit-input-placeholder {
            color: var(--primary-color) !important;
        }

        .bookingforminput .inputdata input::-webkit-input-placeholder {
            color: var(--primary-color) !important;
        }

        .bookingforminput .inputdata input::-moz-placeholder {
            color: var(--primary-color) !important;
        }

        .bookingforminput .inputdata input[type="text"]::-moz-placeholder {
            color: var(--primary-color) !important;
        }

.redclr {
    position: absolute;
    left: 40px;
    bottom: 2px;
}

.css-1tb7pjp-MuiInputBase-root-MuiInput-root:before,
.css-1tb7pjp-MuiInputBase-root-MuiInput-root:after {
    display: none !important;
}

.css-xsu6ln-MuiAutocomplete-root {
    width: 100%
}

.bokinginputwrap.bokinginputwrap02 {
    width: 32.8%;
}

.bookingforminput.journeydateinput .inputdata {
    padding: 18px 0 19px 39px;
}

.bookingforminput.journeydateinput input {
    height: 27px !important;
    min-height: 27px !important;
}

    .bookingforminput.journeydateinput input:focus-visible,
    .bookingforminput .inputdata input, .bookingforminput .inputdata input {
        outline-offset: 0;
        outline: 0;
    }

.searchbus {
    float: left;
    width: 14.84%;
}

    .searchbus .searchbtn {
        font-size: 18px;
        font-weight: 400;
        width: 100%;
        letter-spacing: 1px;
        line-height: normal;
        text-transform: uppercase;
        padding: 35px 36px 35px 38px;
        border-radius: 16px;
        background-color: var(--primary-color);
        color: var(--pure);
        border: none;
        transition: 300ms ease-in-out;
        cursor: pointer;
    }

        .searchbus .searchbtn:hover, .searchbus .searchbtn:focus {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            transition: 300ms ease-in-out;
        }

input: focus-visible {
    outline: none;
    outline-offset: 0px;
}

.tablist .nav-item {
    display: flex;
    align-items: center;
}

.bookingform {
    width: 100%;
    float: left;
    z-index: 3;
    position: relative;
    background-color: #F6F7FC;
    border-radius: 16px;
    padding: 10px 20px;
}

    .bookingform ul {
        border: none;
        float: left;
        background-color: var(--bgcolor);
        display: inline-block;
        vertical-align: middle;
        padding: 10px 10px 11px 10px;
        border-radius: 10px;
    }

        .bookingform ul li.nav-item {
            width: auto;
            display: inline-block;
            vertical-align: middle;
            text-align: center;
        }

        .bookingform ul .nav-item02 {
            padding: 0 0 0 10px;
        }

    .bookingform .nav-tabs .nav-link {
        border: none;
        background-color: var(--bgcolor);
        color: var(--textcolor);
        font-size: 14px;
        line-height: 21px;
        font-weight: 600;
        border-radius: 0;
        padding: 15px 46px 14px 47px;
        border-radius: 6px;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
    }

        .bookingform .nav-tabs .nav-item.show .nav-link,
        .bookingform .nav-tabs .nav-link.active {
            color: var(--textcolor);
            background-color: var(--buttoncolor);
            border: none;
        }

    .bookingform .nav-tabs .nav-item02 .nav-link {
        padding: 15px 42px 14px 42px;
    }

.bookinginput input[type="text"]::-webkit-input-placeholder {
    color: var(--primary-color) !important;
    opacity: 1;
}

.bookinginput input::-webkit-input-placeholder {
    /*Chrome*/
    color: var(--primary-color) !important;
    opacity: 1;
}

.bookinginput input::-moz-placeholder {
    /*Firefox 19+*/
    color: var(--primary-color) !important;
    opacity: 1;
}

.bookingform .tab-content .tab-pane {
    padding: 40px 20px 0;
    float: left;
    width: 100%;
}

.tab-bookingform {
    width: 100%;
    float: left;
}

.bookingcity {
    width: 48.4%;
    float: left;
    position: relative;
    padding: 0;
    border-radius: 10px;
    background-color: #ffffff;
}

    .bookingcity.bookingdate {
        width: 35.47%;
        float: left;
        margin: 0 0 0 20px;
    }

.fromdatecity {
    border: none;
    width: 100%;
    height: 102px;
    display: flex;
    flex-wrap: nowrap;
    border-radius: 10px;
    background-color: #ffffff;
}

.bookinginput.bookingtodate {
    background-color: transparent;
    border: none;
    border-radius: inherit;
    background-position: left -1013px;
}

.bookinginput span {
    color: var(--buttoncolor) !important;
    bottom: 6px;
    font-size: 12px;
    position: absolute;
    left: 19px;
}

.cityswapicon {
    z-index: 1;
    background-image: url("../images/site/icon02.png") !important;
    background-position: center -342px;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    left: 0;
    right: -1px;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.MuiFormControlLabel-root.MuiFormControlLabel-labelPlacementTop.css-1hpqosy-MuiFormControlLabel-root {
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px 0 0;
    margin: 0 30px 0 0;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}

.css-qzbt6i-MuiButtonBase-root-MuiIconButton-root-MuiAutocomplete-popupIndicator {
    display: none !important;
}

.css-vqmohf-MuiButtonBase-root-MuiRadio-root {
    padding: 0px 6px 1px 0 !important;
}

.bookingforminput .inputdata label {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    color: #8590A3;
}

.bookinginput k.css-dd2h8b-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
    padding: 0;
    font-size: 26px;
    font-weight: 700;
    background-color: var(--pure);
    border-radius: 50px;
    height: 52px;
    color: var(--primary-color);
    background-position: 21px -446px;
    background-repeat: no-repeat;
    padding: 0 0 0 50px;
}

.redclr {
    position: absolute;
    left: 40px;
    bottom: 2px;
    font-size: 13px;
}
/*Booking Form Style End*/

/*About Us Style Start Here*/
.aboutwrapper {
    float: left;
    width: 100%;
}

.aboutus {
    width: 100%;
    float: left;
    background-image: url("../images/site/aboutbg.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.aboutuswrap {
    float: left;
    width: 100%;
    padding: 105px 0 89px;
}

.toptitle h6.title {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1.9px;
    color: var(--primary-color);
    margin: 0;
    width: 354px;
    max-width: 354px;
    display: inline-block;
    position: relative;
}

    .toptitle h6.title:before {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        height: 2px;
        width: 46px;
        background-color: var(--primary-color);
    }

    .toptitle h6.title:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 48px;
        height: 1px;
        width: 280px;
        background-color: var(--secondary-color);
    }

.toptitle h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: normal;
    color: var(--primary-color);
    margin: 0;
    padding: 35px 0 0;
}

    .toptitle h2 span {
        display: block;
        color: var(--secondary-color);
    }

.aboutuswrap .aboutuswrapleft {
    width: 49.3%;
    float: left;
}

.aboutuswrapleft .visionwrap {
    padding: 40px 0 0;
}

.visionwrap .panel-group .panel {
    margin-bottom: 0;
    border-radius: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    border-bottom: 1px solid rgb(9 47 83 / 20%);
}

    .visionwrap .panel-group .panel:first-child {
        border-top: 1px solid rgb(9 47 83 / 20%);
    }

    .visionwrap .panel-group .panel + .panel {
        margin: 0;
        background-color: transparent;
    }

.visionwrap .panel-default > .panel-heading {
    padding: 20px;
}

    .visionwrap .panel-default > .panel-heading:first-child {
        padding: 20px;
        border: none;
        background: transparent;
    }

    .visionwrap .panel-default > .panel-heading + .panel-collapse > .panel-body {
        border: none;
    }

.visionwrap .center-block h4 {
    margin: 0;
}

.visionwrap .panel-title > a, .panel-title > a:active {
    display: block;
    padding: 0;
    color: #555 !important;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 3px;
    text-decoration: none;
}

.visionwrap .panel-title > a, .panel-title > a:active {
    display: block;
    padding: 0;
    color: var(--primary-color) !important;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    word-spacing: 3px;
    text-decoration: none;
}

.visionwrap .panel-heading a:before {
    font-family: 'FontAwesome';
    content: "\f067 ";
    font-weight: 100;
    color: var(--text-color);
    float: right;
    transition: all 0.5s;
}

.visionwrap .panel-heading.active a:before {
    content: "\f068" !important;
    font-family: 'FontAwesome';
}

.visionwrap .panel-body h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    padding: 0px 20px 20px;
    color: var(--text-color);
    letter-spacing: 0.2px;
}

.aboutuswrapleft .visionlist {
    padding: 20px;
    border-bottom: 1px solid rgb(9 47 83 / 20%);
}

    .aboutuswrapleft .visionlist:first-child {
        padding: 19px 20px 20px;
        border-top: 1px solid rgb(9 47 83 / 20%);
    }

    .aboutuswrapleft .visionlist a {
        font-size: 18px;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.25px;
        display: block;
        color: var(--primary-color);
    }

        .aboutuswrapleft .visionlist a:hover, .aboutuswrapleft .visionlist a:focus {
            text-decoration: none;
        }

        .aboutuswrapleft .visionlist a::after {
            border-style: solid;
            border-width: 2px 2px 0 0;
            content: " ";
            height: 8px;
            right: 8px;
            position: relative;
            top: 7px;
            transform: rotate(135deg);
            transition: 0.35s ease-in-out;
            width: 8px;
            border-color: var(--text-color);
            float: right;
        }

    .aboutuswrapleft .visionlist.active a:after {
        transform: rotate(-45deg);
        transition: 0.25s ease-in-out;
    }

.aboutuswrapleft .visionlistcontent h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 20px 0 0;
    padding: 0 20px 20px 20px;
    color: var(--text-color);
    border-bottom: 1px solid rgb(9 47 83 / 20%);
}

.aboutuswrap .aboutuswrapright {
    width: 50.7%;
    float: right;
    padding: 121px 0 0;
}

.aboutuswrapright .awardRecognition {
    padding: 0 0 0 134px;
}

.awardRecognition {
    float: left;
    width: 100%;
    padding: 0 0 0 123px;
    text-align: center;
}

    .awardRecognition h3 {
        font-size: 32px;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.20px;
        text-transform: uppercase;
        text-align: center;
        margin: 22px 0 14px;
        color: var(--primary-color);
    }

    .awardRecognition p {
        font-size: 20px;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        color: var(--primary-color);
    }

        .awardRecognition p span {
            display: block;
            font-size: 16px;
            font-weight: 500;
            padding: 4px 0 0;
        }

.aboutuswrapright img {
    float: right;
}

/*About Us Style End Here*/

/*count*/

.countside {
    display: flex;
    column-gap: 20px;
    padding: 40px 0 80px;
}

.customercounter h2 {
    padding: 25px 0 0;
}

.countside .countbox {
    border-radius: 8px;
    background: var(--primary-color);
    width: 25%;
    display: inline-block;
}

.countside .countitem {
    padding: 30px 30px 50px;
    position: relative;
}

    .countside .countitem::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 6px;
        width: 100%;
        border-radius: 0 0 100px 100px;
        background-color: var(--secondary-color);
    }

    .countside .countitem span {
        background-image: url("../images/site/count_icon.png");
        background-position: center -9px;
        background-repeat: no-repeat;
        width: 52px;
        height: 52px;
    }

    .countside .countitem.countitem02 span {
        background-position: center -162px;
    }

    .countside .countitem.countitem03 span {
        background-position: center -315px;
    }

    .countside .countitem h2 {
        color: #FFF;
        text-align: left;
        font-size: 34px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        padding: 0 0 8px;
        margin: 0;
    }

    .countside .countitem h5 {
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 2px;
        color: var(--secondary-color);
        text-transform: uppercase;
        margin: 0;
    }

    .countside .countitem p {
        color: var(--background);
        text-align: left;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        margin: 0;
        padding: 26px 0 0;
    }

/*count END*/

/*Amenities Style Start Here*/

/**/
.hbservices {
    float: left;
    width: 100%;
    background-color: var(--background);
}

.hbfaservicesfacilities {
    text-align: center;
    width: 100%;
    padding: 79px 0 80px;
}

    .hbfaservicesfacilities h2 {
        padding: 25px 0 0;
    }

.serviceswraptop {
    text-align: center;
}

    .serviceswraptop ul {
        display: flex;
        justify-content: center;
        padding: 60px 0 0;
        border: none;
    }

    .serviceswraptop .nav > li {
        margin: 0;
    }

        .serviceswraptop .nav > li > a {
            background-color: transparent !important;
            color: var(--primary-color) !important;
            padding: 10px 40px 20px;
            border: none !important;
            font-size: 20px;
            font-weight: 600;
            line-height: normal;
            letter-spacing: 0.92px;
            margin: 0;
            position: relative;
        }

            .serviceswraptop .nav > li > a:before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 2px;
                background-color: #8590A3;
            }

            .serviceswraptop .nav > li > a:hover:after,
            .serviceswraptop .nav > li.active > a:after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 2px;
                background-color: var(--secondary-color);
            }

            .serviceswraptop .nav > li > a:hover {
            }
/**/
/*feature Start style*/
.hbservices .container {
    max-width: 1440px !important;
}

.feature,
.amenities,
.testimonial01 {
    padding: 40px 0 0;
}

    .feature .featurebox {
        background-color: var(--pure);
        color: var(--primary-color);
        padding: 30px 17px 62px 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 30px;
        margin: 0 10px 0;
        cursor: pointer;
        margin: 0 auto;
        width: 210px;
        max-width: 210px;
    }

        .feature .featurebox:hover {
            background-color: var(--primary-color);
        }

            .feature .featurebox:hover.featurebox .featureicon {
                background-color: var(--secondary-color);
            }

            .feature .featurebox:hover.featurebox h4 {
                color: var(--pure);
            }

.featurebox .featureicon {
    background-color: var(--background);
    width: 104px;
    height: 104px;
    border-radius: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.featurebox h4 {
    margin: 30px 0 0;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.82px;
    color: var(--primary-color);
}

.featureicon span {
    display: inline-block;
    background-image: url(../images/site/salientfeatures.png);
    background-position: left -10px;
    background-repeat: no-repeat;
    width: 42px;
    height: 42px;
}

.featureicon.featureicon02 span {
    background-position: left -152px;
}

.featureicon.featureicon03 span {
    background-position: left -294px;
}

.featureicon.featureicon04 span {
    background-position: left -436px;
}

.featureicon.featureicon05 span {
    background-position: left -578px;
}

.featureicon.featureicon06 span {
    background-position: left -720px;
}

/*feature End style*/

/*amenities Start style*/

.amenities .amenitiesbox {
    background-color: var(--pure);
    color: var(--primary-color);
    padding: 30px 17px 62px 18px;
    display: flex;
    row-gap: 0;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    margin: 0 10px 0;
    cursor: pointer;
    margin: 0 auto;
    width: 210px;
    max-width: 210px;
}

    .amenities .amenitiesbox:hover {
        background-color: var(--primary-color);
    }

        .amenities .amenitiesbox:hover.amenitiesbox .amenitiesicon {
            background-color: var(--secondary-color);
        }

        .amenities .amenitiesbox:hover.amenitiesbox h4 {
            color: var(--pure);
        }

.amenitiesbox .amenitiesicon {
    background-color: var(--background);
    width: 104px;
    height: 104px;
    border-radius: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.amenitiesbox h4 {
    margin: 30px 0 0;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.82px;
    color: var(--primary-color);
}

.amenitiesicon span {
    display: inline-block;
    background-image: url(../images/site/amenities.png);
    background-position: left -10px;
    background-repeat: no-repeat;
    width: 42px;
    height: 42px;
}

.amenitiesicon.amenitiesicon02 span {
    background-position: left -152px;
}

.amenitiesicon.amenitiesicon03 span {
    background-position: left -294px;
}

.amenitiesicon.amenitiesicon04 span {
    background-position: left -436px;
}

.amenitiesicon.amenitiesicon05 span {
    background-position: left -578px;
}

.amenitiesicon.amenitiesicon06 span {
    background-position: left -720px;
}

/*amenities End style*/

/*.serviceswrapbottom .tab-content .tab-pane {
    display: none !important;
}

    .serviceswrapbottom .tab-content .tab-pane.active {
        display: block !important;
        opacity: 1 !important;
    }*/


.nav-tabs {
    border-bottom: 1px solid #ddd;
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857143;
            border: 1px solid transparent;
            border-radius: 4px 4px 0 0;
        }

            .nav-tabs > li > a:hover {
                border-color: #eee #eee #ddd;
            }

        .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
            color: #555;
            cursor: default;
            background-color: #fff;
            border: 1px solid #ddd;
            border-bottom-color: transparent;
        }

    .nav-tabs.nav-justified {
        width: 100%;
        border-bottom: 0;
    }

        .nav-tabs.nav-justified > li {
            float: none;
        }

            .nav-tabs.nav-justified > li > a {
                margin-bottom: 5px;
                text-align: center;
            }

        .nav-tabs.nav-justified > .dropdown .dropdown-menu {
            top: auto;
            left: auto;
        }

@media (min-width:768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
    border: 1px solid #ddd;
}


.serviceswrapbottom .tab-content > .active .owl-carousel {
    display: flex !important;
}

/*.serviceswrapbottom .tab-content > .active .testimonial01 {
    display: flex !important;
}*/

.testimonial01 .owl-stage-outer {
    overflow: hidden;
}

    .testimonial01 .owl-stage-outer .owl-stage {
        display: flex;
    }

.testimonial01 .owl-nav {
    display: none;
}
/*Amenities Style End Here*/

/*Testimonial Style Start Here*/

.reviewbox {
    border-radius: 30px;
    background-color: var(--pure);
    padding: 40px 48px 44px 26px;
    display: flex;
    flex-direction: row;
    column-gap: 26px;
    align-items: flex-start;
}

    .reviewbox .customericon {
        background-color: var(--background);
        width: 104px;
        height: 104px;
        border-radius: 30px;
        justify-content: center;
        display: flex;
        align-items: center;
    }

        .reviewbox .customericon span {
            display: inline-block;
            background-image: url(../images/site/reviewicon.png);
            background-position: left 0;
            background-repeat: no-repeat;
            width: 42px;
            height: 42px;
            margin: 31px;
        }

.testimonial01 {
    position: relative;
}

.testimonialcontent p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    color: #565864;
    margin: 0;
    min-height: 112px;
}

.testimonialcontent h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    color: #092F53;
    margin: 27px 0 0;
}

.testimonial01 .owl-dots {
    text-align: center;
    padding-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial01 .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background: #8590A3;
    margin: 0 4px;
}

    .testimonial01 .owl-dot.active {
        width: 12px;
        height: 12px;
        background-color: #092F53;
    }

    .testimonial01 .owl-dot:focus {
        outline: none;
    }

.testimonial01 .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}

    /*span {
    font-size: 70px;
    position: relative;
    top: -5px;
}*/

    .testimonial01 .owl-nav button:focus {
        outline: none;
    }

/*Testimonial Style End Here*/

.amenitieswrapper {
    width: 100%;
    float: left;
    clear: both;
}

.amenitiesblock {
    width: 100%;
    float: left;
    background-color: var(--background);
}

.amenitiessection {
    width: 100%;
    float: left;
    padding: 101px 0 0;
}

.amenitiesmain {
    width: 100%;
    float: left;
    display: flex;
    justify-content: flex-start;
    padding: 0 0 81px;
}

.amenitiesmobiletitle {
    display: none;
}

.amenitiespart {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 80px;
}

.amenitiesleftpart {
    display: flex;
    gap: 30px;
    position: relative;
    flex-basis: 50%;
}

.leftimagecontent {
    position: absolute;
    bottom: 19px;
    right: 14px;
    width: 56.3%;
    background-color: var(--pure);
    padding: 25px 30px 28px 80px;
    border-radius: 6px;
    box-shadow: 0px 10px 20px rgba(81, 81, 81, 0.12);
}

    .leftimagecontent h5 {
        font-size: 26px;
        font-weight: 600;
        color: var(--primary-color);
        line-height: 48px;
        position: relative;
        letter-spacing: 2.8px;
        text-transform: uppercase;
    }

        .leftimagecontent h5::after {
            position: absolute;
            content: '';
            width: 120px;
            height: 2px;
            left: 167px;
            bottom: 15px;
            background-color: var(--secondary-color);
        }

    .leftimagecontent p {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-color);
        line-height: 28px;
        padding: 8px 0 0;
    }

.amenitiesrightpart {
    flex-basis: 48.8%;
    padding: 12px 0 0;
}

.amenitieslistblock {
    width: 100%;
    float: left;
    padding: 80px 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 145px;
}

.amenitieslistblock01 {
    display: flex;
    flex-direction: column;
}

.amenitiesbox {
    list-style: none;
    /* width: 50%; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 40px;
    gap: 46px;
    cursor: pointer;
}

    .amenitiesbox .box-item-left {
        width: 70px;
    }

        .amenitiesbox .box-item-left .box-item-border {
            border: 1px solid var(--border-color);
            width: 80px;
            height: 90px;
            position: relative;
            z-index: 0;
        }

    .amenitiesbox .box-border-bg {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#565969), to(#FF5E14));
        background-image: -webkit-linear-gradient(top, #565969 0%, #FF5E14 100%);
        background-image: -o-linear-gradient(top, #565969 0%, #FF5E14 100%);
        background-image: linear-gradient(180deg, #565969 0%, #FF5E14 100%);
    }

    .amenitiesbox .box-item-left .box-item-border .box-border-bg {
        position: absolute;
        z-index: -1;
        left: -1px;
        right: -1px;
        bottom: -1px;
        top: 60%;
        -webkit-transition: all 0.8s;
        -o-transition: all 0.8s;
        transition: all 0.8s;
        -webkit-transition: all 1s;
        -o-transition: all 1s;
        transition: all 1s;
    }

    .amenitiesbox .box-item-left .box-item-border .box-icon {
        width: 80px;
        height: 70px;
        background-color: var(--primary-color);
        color: #fff;
        margin: 13% 0 0 -13%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: all 1s;
        -o-transition: all 1s;
        transition: all 1s;
        background-image: url(../images/Icons.svg);
        background-repeat: no-repeat;
        background-position: center -2988px;
    }

    .amenitiesbox.amenitiesbox02 .box-item-left .box-item-border .box-icon {
        background-position: center -3368px;
    }

    .amenitiesbox.amenitiesbox03 .box-item-left .box-item-border .box-icon {
        background-position: center -3748px;
    }

    .amenitiesbox.amenitiesbox04 .box-item-left .box-item-border .box-icon {
        background-position: center -4128px;
    }

    .amenitiesbox.amenitiesbox05 .box-item-left .box-item-border .box-icon {
        background-position: center -3178px;
    }

    .amenitiesbox.amenitiesbox06 .box-item-left .box-item-border .box-icon {
        background-position: center -3558px;
    }

    .amenitiesbox.amenitiesbox07 .box-item-left .box-item-border .box-icon {
        background-position: center -3938px;
    }

    .amenitiesbox.amenitiesbox08 .box-item-left .box-item-border .box-icon {
        background-position: center -4318px;
    }

    .amenitiesbox:hover .box-item-left .box-item-border .box-border-bg {
        top: 0;
    }

    .amenitiesbox:hover .box-item-left .box-item-border .box-icon {
        -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
        transform: scaleX(-1);
    }

.box-item-right {
    align-content: center;
    display: flex;
    align-self: center;
}

    .box-item-right .box-title {
        font-size: 20px;
        font-weight: 600;
        color: var(--primary-color);
    }

.amenitiesbox:hover .box-item-right .box-title {
    color: var(--secondary-color);
}

/*mobilewrapper Style Start Here*/

.mobilewrapper {
    width: 100%;
    float: left;
    clear: both;
    background-image: url("../images/site/appbgpng.png");
    background-position: -9px top;
    background-repeat: no-repeat;
    min-height: 680px;
    background-size: 1020px;
}

.mobilewrap {
    float: left;
    width: 100%;
    padding: 100px 0;
}

.mobilewraplift {
    float: left;
    width: 61.5%;
    text-align: right;
}

.mobilewrapright {
    float: left;
    width: 40.82%;
    z-index: 1;
    position: relative;
    margin: 0 0 0 -91px;
}

    .mobilewrapright .toptitle h2 {
        padding: 25px 0 0;
    }

    .mobilewrapright ul {
        margin: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 21px;
        column-gap: 18px;
        padding: 59px 31px 67px 0;
    }

        .mobilewrapright ul li {
            flex: 1 1 200px;
        }

            .mobilewrapright ul li p {
                margin: 0;
                font-size: 18px;
                font-weight: 700;
                line-height: normal;
                color: var(--primary-color);
                background-image: url("../images/site/icon02.png");
                background-position: left -532px;
                background-repeat: no-repeat;
                padding: 0 0 0 22px;
            }

.apptext {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    padding: 0 0 17px;
    color: var(--text-color);
}

.applink {
    position: relative;
    height: 71px;
    z-index: 2;
}

    .applink:after {
        position: absolute;
        content: "";
        left: -2px;
        right: -2px;
        top: -2px;
        bottom: -2px;
        z-index: -1;
    }

    .applink input {
        font-size: 18px;
        font-weight: 700;
        line-height: normal;
        width: 100%;
        height: 100%;
        border: none;
        padding: 22px 200px 23px 29px;
        background: var(--pure);
        color: var(--text-color);
        border: 1px solid rgb(9 47 83 / 20%);
        border-radius: 18px;
    }

        .applink input::-webkit-input-placeholder {
            color: var(--text-color);
        }

        .applink input:-ms-input-placeholder {
            color: var(--text-color);
        }

        .applink input::-ms-input-placeholder {
            color: var(--text-color);
        }

        .applink input:focus-visible {
            outline-offset: 0px;
            outline: none;
        }

        .applink input::placeholder {
            color: var(--text-color);
        }

    .applink button {
        position: absolute;
        top: 10px;
        right: 10px;
        bottom: 0;
        width: 142px;
        height: 51px;
        outline: none;
        border: none;
        border-radius: 11px;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.5px;
        color: var(--pure);
        background-color: var(--primary-color);
        cursor: pointer;
        text-transform: uppercase;
    }

.mobileclick {
    display: flex;
    padding: 26px 0 0 60px;
    align-items: center;
    column-gap: 30px;
}

.mobileclickapp {
    background-color: var(--primary-color);
    border-radius: 20px;
}

.mobileclick p {
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    margin: 0;
    color: var(--primary-color);
}

.mobileclickapp a {
    display: inline-block;
}

.mobileclickapp a {
    display: inline-block;
    padding: 10px 9px 10px 20px;
}

    .mobileclickapp a.iosapp {
        padding: 10px 19px 10px 11px;
        position: relative;
    }

        .mobileclickapp a.iosapp:before {
            content: '';
            position: absolute;
            left: 0;
            top: 17px;
            width: 1px;
            height: 28px;
            background-color: rgb(255 255 255 / 40%);
        }

/*mobilewrapper Style End Here*/

/*whathsaap icon css*/

.whatsappicon {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 3;
    cursor: pointer;
}

.whatsappbox {
    width: 310px;
    position: fixed;
    top: auto;
    bottom: 70px;
    left: auto;
    right: 15px;
    background-color: #fff;
    padding: 0;
    box-shadow: 2px 2px 20px rgba(9, 47, 83, 0.2);
    border-radius: 5px;
    z-index: 99;
}

.whatsappboxheader {
    padding: 18px 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .whatsappboxheader h5 {
        display: inline-block;
        font-weight: 700;
        font-size: 16px;
        margin: 0;
        line-height: normal;
        color: var(--primary-color);
    }

    .whatsappboxheader .close {
        display: inline-block;
        font-size: 30px;
        font-weight: bold;
        line-height: 1;
        color: var(--text-color);
        text-shadow: 0 1px 0 #fff;
        opacity: 1;
        margin-top: -3px;
        width: max-content;
    }

.whatsappboxinn {
    position: relative;
    padding: 15px 15px 15px 20px;
}

.whatsappbox .inner_whatsapp_blk {
    background: #fff;
    padding: 5px;
    position: relative;
}

    .whatsappbox .inner_whatsapp_blk p {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--secondary-color);
    }

#divWhatsApp.hide {
    display: none !important;
}

.whatsappradio {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0 0;
}

.whatsappradiobox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

    .whatsappradiobox input {
        margin: 1px 0 0;
    }

.whatsappboxfooter {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 20px 20px;
    gap: 10px;
}

    .whatsappboxfooter .btn-success {
        width: 100%;
        background-color: #28a745 !important;
        color: var(--pure) !important;
        font-weight: 600;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .whatsappboxfooter .btn-danger {
        width: 100%;
        background-color: #dc3545 !important;
        color: var(--pure) !important;
        font-weight: 600;
    }

.whatsappradio input[type="radio"]::before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    margin: 20% auto;
    border-radius: 50%;
}

.whatsappradio label {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    color: var(--text-color);
    margin: 0;
}

/*whathsaap icon css*/

/*Footer Style Start Here*/

.footerwrapper {
    width: 100%;
    float: left;
    clear: both;
}

.footermain {
    width: 100%;
    float: left;
}

.footertop {
    width: 100%;
    float: left;
    background-color: var(--primary-color);
}

.footertopmain {
    width: 100%;
    float: left;
}

.footer-navlinks {
    padding: 36px 0 3px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

    .footer-navlinks ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 0;
    }

        .footer-navlinks ul li a {
            font-size: 16px;
            font-weight: 400;
            line-height: normal;
            color: var(--pure);
            text-transform: uppercase;
            letter-spacing: 0.50px;
            padding: 20px 38px 22px 40px;
            display: inline-block;
            position: relative;
            transition: .4s ease;
            -webkit-transition: .4s ease;
            -moz-transition: .4s ease;
            -ms-transition: .4s ease;
            -o-transition: .4s ease;
        }

            .footer-navlinks ul li a:hover::before, .footer-navlinks ul li a:focus::before {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: var(--secondary-color);
            }

            .footer-navlinks ul li a:hover,
            .footer-navlinks ul li a:focus {
                color: var(--pure);
                text-decoration: none;
            }

.footer-contact-main {
    width: 100%;
    float: left;
    background-color: var(--primary-color);
    padding: 60px 0 51px;
}

.footer-contact-block {
    display: flex;
    column-gap: 20px;
}

.footer-contact-data {
    float: left;
    width: 25%;
    text-align: center;
}

    .footer-contact-data span {
        display: inline-block;
        background-image: url(../images/site/icon02.png);
        background-position: left -700px;
        background-repeat: no-repeat;
        width: 60px;
        height: 60px;
    }

    .footer-contact-data.contact-email span {
        background-position: left -910px;
    }

    .footer-contact-data.contact-address span {
        background-position: left -1120px;
    }

    .footer-contact-data.contact-social span {
        background-position: left -1330px;
    }

    .footer-contact-data h5 {
        font-size: 18px;
        font-weight: 600;
        color: var(--secondary-color);
        padding: 18px 0 14px;
        margin: 0;
    }

    .footer-contact-data.contact-social h5 {
        padding: 18px 0 12px;
    }

.footer-contact-details {
    display: flex;
    flex-direction: column;
    padding: 0;
}

    .footer-contact-details a,
    .footer-contact-details p {
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        color: var(--pure);
    }

        .footer-contact-details a:hover,
        .footer-contact-details a:focus {
            color: var(--secondary-color);
            text-decoration: none;
        }

    .footer-contact-details.social {
        flex-direction: row;
        justify-content: center;
        column-gap: 24px;
    }

        .footer-contact-details.social li a {
            font-size: 22px;
        }

            .footer-contact-details.social li a i {
                font-family: 'FONTAWESOME';
                font-weight: var(--fa-style,900);
            }

.footer-bottom {
    width: 100%;
    float: left;
    clear: both;
    padding: 0;
    background-color: #072542;
}

.footer-bottom-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 0 20px;
}

.footer-social-icon {
    display: flex;
    flex-direction: row;
}

    .footer-social-icon a {
        font-size: 18px;
        line-height: normal;
        color: var(--pure);
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        width: 80px;
        height: 80px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

        .footer-social-icon a:hover,
        .footer-social-icon a:focus {
            color: var(--secondary-color);
            transition: 0.3s ease;
            -webkit-transition: 0.3s ease;
            -moz-transition: 0.3s ease;
            -ms-transition: 0.3s ease;
            -o-transition: 0.3s ease;
        }

.footer-company-link {
    padding: 2px 0 0 0;
}

    .footer-company-link p, .footer-company-link p a {
        font-size: 14px;
        font-weight: 400;
        color: var(--pure);
        letter-spacing: 0.25px;
        margin: 0;
    }

        .footer-company-link p a:hover,
        .footer-company-link p a:focus {
            color: var(--secondary-color);
            text-decoration: none;
        }

.footer-poweredby p {
    font-size: 14px;
    font-weight: 400;
    color: var(--pure);
    margin: 0;
}

.footer-poweredby {
    display: flex;
    align-items: center;
    padding: 1px 34px 0 0;
}

    .footer-poweredby p {
        padding: 0 10px 0 0;
    }

/*Footer Style End Here*/

.box {
    width: auto;
    height: auto;
    display: block;
    margin: auto;
    margin-top: 0px;
    background: none;
    animation: updown 1s ease 0.2s infinite;
    z-index: 1;
    position: absolute;
    right: 80px;
    cursor: pointer;
    top: 20px;
}


.circle {
    position: relative;
    background-color: var(--secondary-color);
    width: 40px;
    height: 40px;
    margin: auto;
    padding: 0;
    top: 0px;
    border-radius: 50%;
}

.inner {
    position: relative;
    background-color: white;
    width: 16px;
    height: 16px;
    margin: auto;
    padding: 0;
    top: 12px;
    border-radius: 50%;
    z-index: 3;
}

.square {
    position: relative;
    background-color: var(--secondary-color);
    width: 20px;
    height: 20px;
    margin: auto;
    padding: 0;
    bottom: 16px;
    transform: rotate(-45deg);
    z-index: 2;
    border-bottom-left-radius: 2px;
}

.shadow {
    position: relative;
    background-color: black;
    width: 60px;
    height: 10px;
    border-radius: 50%;
    margin: auto;
    padding: 0;
    bottom: 16px;
    opacity: 0.20;
    z-index: 0;
    animation: shadow 1s ease 0.2s infinite;
}

@keyframes updown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shadow {
    0% {
        transform: scale(1);
        opacity: 0.10;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.02;
    }

    100% {
        transform: scale(1);
        opacity: 0.10;
    }
}


/*****************Website Banner Style Start Here******************/

/*.website_banner .btn-default {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em;
    color: #000;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
}

.website_banner button.btn-default {
    position: absolute;
    z-index: 99;
    right: 10px;
    top: 10px;
    opacity: 1;
}

.website_banner:focus, .carousel-indicators .active, select:disabled {
    opacity: 1 !important;
}

.website_banner .modal-dialog {*/
/* width: 512px;
    height: 512px;*/
/* margin: 60px auto; */
/*top: 15%;
    left: 0;
    transform: translate(-50%, -50%);
    position: absolute;
    right: 0;
    bottom: 0;
}


.website_banner .modal-body {
    padding: 0;
}

.website_banner .modal-content {
    border: none;
}

.website_banner .carousel-indicators li {
    cursor: pointer;
}

.website_banner .modal-content {
    background-color: transparent;
    border: none;
    justify-content: center;
    align-items: center;
}*/

/*.website_banner .carousel-control-next, .website_banner .carousel-control-prev {
    display: none;
}*/


/*.banner_modal .fade:not(.show),
.banner_modal .modal-backdrop.fade,
.banner_modal .offcanvas-backdrop.fade,
.banner_modal .toast.showing, .tooltip {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.5);
}

.fade:not(.show), .modal-backdrop.fade {
    opacity: 0.5;
}

.sliderwrapper .fade:not(.show) {
    opacity: 1 !important;
}

.modal.fade .modal-dialog {
    transform: translate(0, 50px) !important;
}

.btn-close {
    width: 2em !important;
    height: 2em !important;
    background-size: 15px !important;
}*/


.website_banner .btn-default {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em;
    color: #000;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
}

.website_banner button.btn-default {
    position: absolute;
    z-index: 99;
    right: 10px;
    top: 10px;
    opacity: 1;
}

.website_banner:focus, .carousel-indicators .active, select:disabled {
    opacity: 1 !important;
}

.website_banner .modal-dialog {
    /* width: 512px;
    height: 512px;*/
    /* margin: 60px auto; */
    top: 15%;
    left: 0;
    transform: translate(-50%, -50%);
    position: absolute;
    right: 0;
    bottom: 0;
}


.website_banner .modal-body {
    padding: 0;
}

.website_banner .modal-content {
    border: none;
}

.website_banner .carousel-indicators li {
    cursor: pointer;
}

.website_banner .modal-content {
    background-color: transparent;
    border: none;
    justify-content: center;
    align-items: center;
}

/*.fade:not(.show), .modal-backdrop.fade {
    opacity: 0.5 !important;
}

.sliderwrapper .fade:not(.show) {
    opacity: 1 !important;
}*/

/*****************Website Banner Style End Here******************/


/********** Available Route Page Style Start Here **********/

.available_route_wrapper {
    width: 100%;
    float: left;
    clear: both;
}

.modify_booking_wrapper {
    width: 100%;
    float: left;
}

.modify_route_block {
    width: 100%;
    float: left;
    background-color: var(--background);
    margin: 19px 0 0;
    padding: 20px 0;
}

.modify_form_width {
    width: 100%;
    max-width: 1310px;
    padding: 0 15px 0;
    margin: 0 auto;
}

.modifybookingsearch {
    width: 100%;
    float: left;
}

.modify_route_form {
    width: 100%;
    float: left;
    background-color: var(--pure);
    border-radius: 10px;
    padding: 20px 20px 19px 16px;
}

.modifybookingsearch {
    width: 100%;
    float: left;
}

.modifycity {
    width: 47.1%;
    float: left;
    position: relative;
}

.modifytocity {
    width: 47%;
    display: inline-block;
}

.modifyswapcity {
    background-image: url("../images/site/availableicon.png");
    background-repeat: no-repeat;
    background-position: center -456px;
    cursor: pointer;
    width: 23px;
    height: 22px;
    float: left;
    position: absolute;
    left: 0;
    right: 48px;
    margin: 0 auto;
    top: 15px;
}

.modifyinput input[type="text"]::-webkit-input-placeholder {
    color: #395875 !important;
}

.modifyinput ::-webkit-input-placeholder {
    color: #395875 !important;
}

.modifyinput::-moz-placeholder {
    color: #395875 !important;
}


.modifyinput.modifytocity.modifyfromcity {
    padding: 0 0 0 25px;
}

.modifyinput .css-xsu6ln-MuiAutocomplete-root {
    width: 100%;
}

.modifyinput .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-xsu6ln-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
    padding-right: 0;
}

.modifyinput .css-1tb7pjp-MuiInputBase-root-MuiInput-root::after {
    border-bottom: 2px solid var(--secondary-color);
}

.modifyinput .css-xsu6ln-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
    padding: 0 0 0 36px;
    height: 52px;
}

.modifycity .MuiAutocomplete-clearIndicator {
    position: absolute;
    right: 20px;
    top: -2px;
}

.modifyinput .MuiInputBase-root .MuiAutocomplete-popupIndicator {
    display: none !important;
}

.modifyinput .css-1tb7pjp-MuiInputBase-root-MuiInput-root:hover:not(.Mui-disabled)::before {
    border-bottom: none;
}

.modifyinput .css-1tb7pjp-MuiInputBase-root-MuiInput-root:before {
    border-bottom: none;
}

.modifytodate:before {
    position: absolute;
    content: "";
    left: 0;
    top: -20px;
    width: 1px;
    height: 92px;
    background-color: rgba(9, 47, 83, 0.1);
}

.modifytodate.modifyfromdate:after {
    position: absolute;
    content: "";
    right: 0;
    top: -20px;
    width: 1px;
    height: 92px;
    background-color: rgba(9, 47, 83, 0.1);
}

.modifydate {
    width: 37.6%;
    float: left;
}

.modifybutton {
    width: 14.2%;
    float: right;
}

.modifytodate {
    width: 49.5%;
    display: inline-block;
    position: relative;
    padding: 0 0 0 16px;
}

.modifybookingsearch .modifyinput.modifytodate input {
    background-position: left -663px;
}

.modifybookingsearch .modifyinput.modifyfromdate input {
    background-position: left -887px;
}

.modifybutton button {
    width: 100%;
    text-align: center;
    height: 52px;
    background-color: var(--secondary-color);
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
}

    .modifybutton button:hover,
    .modifybutton button:focus {
        background-color: var(--primary-color);
        color: var(--pure);
    }


.modifybookingsearch .modifyinput input {
    width: 100%;
    height: 52px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #395875;
    outline: none;
    border: none;
    border-radius: 8px;
    padding: 0 0 0 36px;
    background-image: url(../images/site/availableicon.png);
    background-position: left 4px;
    background-repeat: no-repeat;
    font-family: 'Manrope', sans-serif !important;
}

.modifybookingsearch .modifyinput.modifyfromcity input {
    background-position: left -220px;
}
/*Modify Datepicker Style Start*/


.datetimepicker table tr td.active, .datetimepicker table tr td.active:hover, .datetimepicker table tr td.active.disabled, .datetimepicker table tr td.active.disabled:hover {
    background-color: var(--primary-color) !important;
    color: var(--pure) !important;
    background-image: none !important;
    border-radius: 4px;
}

.datetimepicker th.prev, .datetimepicker th.switch, .datetimepicker th.next {
    background-color: var(--background);
    top: 55px;
    padding: 5px 0;
    width: 30px !important;
}

    .datetimepicker th.prev span, .datetimepicker th.next span {
        font-size: 16px;
    }

.datetimepicker-months .table-condensed,
.datetimepicker-years .table-condensed {
    width: 100%;
}

.datepicker table.table-condensed {
    max-width: 100%;
    width: 100%;
}

.datetimepicker-months span.month {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.datetimepicker td,
.datetimepicker th {
    width: 40px !important;
    height: 40px !important;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

    .datetimepicker td span {
        display: block;
    }

    .datetimepicker td.today {
        background-color: var(--secondary-color) !important;
        border-radius: 4px;
        color: var(--primary-color) !important;
        background-image: none !important;
    }

    .datetimepicker td.new {
        opacity: 1;
    }

.datetimepicker th {
    color: var(--primary-color);
}

.datetimepicker td.disabled {
    opacity: 1;
    color: var(--text-color) !important;
}

/*Modify Datepicker Style End*/


.available_route_section {
    width: 100%;
    float: left;
    padding: 0 0 100px;
}

.available_route_width {
    width: 100%;
    max-width: 1684px;
    margin: 0 auto;
    padding: 0 15px 0;
}

.available_route_main {
    width: 100%;
    float: left;
    padding: 40px 0 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.available_route_leftbar {
    width: 23.3%;
    background-color: var(--pure);
    border-radius: 10px;
    padding: 40px 39px;
    border: 1px solid rgba(9, 47, 83, 0.2);
    box-shadow: 6px 10px 40px rgba(133, 144, 163, 0.1);
}

    .available_route_leftbar .title {
        font-weight: 600;
        font-size: 18px;
        text-align: left;
        line-height: 23px;
        color: var(--primary-color);
        padding: 0 0 16px 22px;
        border-bottom: 1px solid rgba(9, 47, 83, 0.2);
        background-image: url("../images/site/availableicon.png");
        background-position: -5px -1120px;
        background-repeat: no-repeat;
    }

.filter_tab_main {
    padding: 20px 0 0;
}

.filter-drawer {
    border: 1px solid rgba(9, 47, 83, 0.2);
    background-color: var(--pure);
    border-radius: 8px;
    padding: 20px 25px;
}

.filter-drawer__content-wrapper {
    max-height: 0px;
    overflow: hidden;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
}

.filter-drawer__title {
    color: var(--primary-color);
    cursor: pointer;
    display: block;
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    position: relative;
    margin-bottom: 0;
    transition: all 0.25s ease-out;
}

    .filter-drawer__title::after {
        position: absolute;
        right: -1px;
        top: 2px;
        content: "";
        width: 16px;
        height: 15px;
        background-image: url(../images/site/availableicon.png);
        background-position: -4px -1341px;
        background-repeat: no-repeat;
        transform: rotate(-180deg);
        transition: 0.25s ease-in-out;
    }

.filter-drawer__trigger:checked + .filter-drawer__title + .filter-drawer__content-wrapper {
    max-height: 100%;
}

.filter-drawer__trigger:checked + .filter-drawer__title::after {
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.filter-drawer__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 26px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid rgba(9,47, 83, 0.2);
}


.filter-drawer input[type="checkbox"] {
    display: none;
}

.filter-drawer__content_input input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.filter-drawer__content_input label {
    position: relative;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

    .filter-drawer__content_input label::before {
        content: '';
        background-color: var(--pure);
        border: 1px solid var(--primary-color);
        height: 22px;
        width: 22px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 0;
        margin-top: -1px;
        border-radius: 4px;
    }

.filter-drawer__content_input input:checked + label::after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    right: 7px;
    width: 7px;
    height: 11px;
    border: 1px solid var(--head-text-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-drawer__content.filter-drawer__content-time {
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}

    .filter-drawer__content.filter-drawer__content-time .filter-drawer__content_input {
        flex-basis: 100%;
    }

.filter-drawer-search .filter-drawer__title:after {
    display: none;
}

.filter-drawer-search .filter-drawer__content {
    margin: 0;
    border: none;
}

.time-input label:hover {
    cursor: pointer;
}

.filter-drawer__content_input.filter-drawer__content_input_search input {
    display: block;
    width: 100%;
    padding: 14px 37px 13px 16px !important;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    border-radius: 8px;
    background-color: rgba(9, 47, 83, 0.05);
    background-image: url("../images/site/availableicon.png");
    background-position: 95% -1545px;
    background-repeat: no-repeat;
}

    .filter-drawer__content_input.filter-drawer__content_input_search input:hover,
    .filter-drawer__content_input.filter-drawer__content_input_search input:focus {
        box-shadow: none;
        outline: none;
    }

    .filter-drawer__content_input.filter-drawer__content_input_search input::placeholder {
        color: var(--text-color);
    }

.filter-drawer-search .MuiAutocomplete-endAdornment .MuiAutocomplete-popupIndicator {
    display: none !important;
}

.filter-drawer-search .MuiAutocomplete-endAdornment .MuiAutocomplete-clearIndicator {
    display: none !important;
}

.filter-drawer__content_input .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-xsu6ln-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
    padding-right: 0;
}

.filter-drawer__content_input .css-xsu6ln-MuiAutocomplete-root {
    width: 100%;
}

.filter-drawer__content_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:before {
    border-bottom: none;
}

.filter-drawer__content_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:hover:not(.Mui-disabled):before {
    border-bottom: none;
}

.filter-drawer__content_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:after {
    border-bottom: none;
}

.available_route_rightbar {
    width: 72.3%;
}

.available_route_topbar {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 0 10px;
    margin: 0;
}

.available_route_count span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
}

    .available_route_count span label {
        font-weight: 600;
        color: var(--secondary-color);
    }

.sec-center {
    position: relative;
    text-align: center;
    z-index: 1;
}

    .sec-center span {
        font-size: 15px;
        font-weight: 500;
        color: var(--primary-color);
        padding: 0 20px 0 0;
    }

    .sec-center input {
        opacity: 0;
        position: absolute;
    }

.section-dropdown .css-qfz70r-MuiFormGroup-root .css-vqmohf-MuiButtonBase-root-MuiRadio-root {
    padding: 0;
}

.section-dropdown .css-hyxlzm {
    padding: 0;
}

.dark-light:checked + label,
.dark-light:not(:checked) + label {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 20000;
    display: block;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    cursor: pointer;
    transition: all 200ms linear;
    box-shadow: 0 0 25px rgba(255, 235, 167, .45);
}


.sortdropdown:checked + label, .sortdropdown:not(:checked) + label {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    height: 42px;
    margin: 0;
    width: 266px;
    padding: 0 0 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--pure);
    cursor: pointer;
    color: var(--text-color);
    border-radius: 8px;
    border: 1px solid rgba(9, 47, 83, 0.2);
}

.for-dropdown:after {
    position: absolute;
    right: 10px;
    content: "\f107";
    color: var(--primary-color);
    font-size: 27px;
    font-family: 'FontAwesome' !important;
}

.sortdropdown:checked + label:before,
.sortdropdown:not(:checked) + label:before {
    position: fixed;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    cursor: auto;
    pointer-events: none;
}

.sortdropdown:checked + label:before {
    pointer-events: auto;
}

.section-dropdown .css-1f2kvjf-MuiFormControlLabel-root {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 6px;
    margin: 0;
}

.section-dropdown button {
    color: var(--textcolor);
    background-color: transparent;
    border: none;
    transition: all 200ms linear;
    font-size: 15px;
    padding: 5px 20px 8px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(14, 44, 120, 0.2);
}

    .section-dropdown button:last-child {
        border: none !important;
    }

.section-dropdown .css-qfz70r-MuiFormGroup-root {
    gap: 10px;
}

.section-dropdown {
    position: absolute;
    padding: 20px 0 20px 16px;
    background-color: #f1f5ff;
    top: 42px;
    left: 70px;
    width: 200px;
    border-radius: 8px;
    display: block;
    box-shadow: 0 14px 35px 0 rgba(14, 44, 120, 0.2);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 200ms linear;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 4px;
}

.sortdropdown:checked ~ .section-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.section-dropdown button {
    color: var(--textcolor);
    background-color: transparent;
    border: none;
    transition: all 200ms linear;
    font-size: 15px;
    padding: 5px 20px 8px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(14, 44, 120, 0.2);
}

    .section-dropdown button:last-child {
        border: none !important;
    }

.noroute {
    text-align: center;
    padding: 20px 0;
    background-color: var(--background);
    border: 1px solid var(--border-color);
    color: var(--secondary-color);
    margin: 20px 0 0;
    border-radius: 4px;
}

    .noroute span {
        font-weight: 600;
    }

    .noroute p span {
        color: var(--head-text-color);
    }

.available_route_listing {
    width: 100%;
    float: left;
}

.available_route_box {
    display: flex;
    flex-direction: column;
    padding: 39px 0 0;
    border: 1px solid rgba(9, 47, 83, 0.2);
    border-radius: 10px;
    margin-top: 20px;
    background-color: var( --pure);
    box-shadow: 6px 10px 40px rgba(133, 144, 163, 0.1);
    overflow: hidden;
}

.available_route_box_toprow {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px 0 39px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.route_box.route_box01 {
    flex-basis: 40.7%;
}

.route_box.route_box02 {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

    .route_box.route_box02 label {
        margin: 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--secondary-color);
    }

    .route_box.route_box02 span {
        padding: 2px 0 0;
        font-size: 17px;
        font-weight: 600;
        color: var(--primary-color);
    }

.bus_type_data {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

    .bus_type_data p {
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
    }

.bus_time_data {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.bus_start_time {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-basis: 33%;
}

    .bus_start_time label {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        text-transform: uppercase;
        margin: 0;
    }

    .bus_start_time p {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-color);
        margin: 0;
        padding: 3px 0 0;
    }

.bus_reach_time {
    text-align: right;
}

.bus_duration_time {
    display: inline-block;
    width: 25%;
    text-align: center;
    padding: 6px 0 0;
}

    .bus_duration_time p {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-color);
        margin: 0 0 -6px;
    }

    .bus_duration_time span {
        width: 100%;
        display: inline-block;
        background-image: url("../images/site/arrowicon.png");
        background-position: center -1px;
        background-repeat: no-repeat;
    }

.route_fare_data {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .route_fare_data.route_fare_data_mobile {
        display: none;
    }

    .route_fare_data p {
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        color: var(--text-color);
        margin: 0;
    }

    .route_fare_data span {
        color: var(--secondary-color);
        font-size: 16px;
        font-weight: 500;
        padding: 8px 0 1px;
        text-decoration: line-through;
    }

    .route_fare_data label {
        font-size: 20px;
        font-weight: 600;
        color: var(--primary-color);
    }

.available_route_box_bottomrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 27px;
}

.bus_ratting_box {
    display: flex;
    gap: 100px;
    align-items: center;
}

.bus_pass_ratting {
    display: flex;
    gap: 40px;
    align-items: center;
}

    .bus_pass_ratting .user_ratting_count {
        display: flex;
        gap: 6px;
        font-size: 14px;
        font-weight: 400;
        background-color: var(--text-color);
        color: var(--pure);
        align-items: center;
        padding: 4px 14px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }

    .bus_pass_ratting .user_review_count {
        display: flex;
        gap: 6px;
        font-size: 14px;
        font-weight: 400;
        color: var(--text-color);
        align-items: center;
        border-radius: 2px;
    }

        .bus_pass_ratting .user_review_count i {
            font-size: 16px;
        }

.modifytocity .Muiautocomplete-popper {
    z-index: 1;
}

.droproutebtnwrap {
    width: 100%;
    float: left;
    padding: 31px 0 0;
    border-radius: 0 0 10px 10px;
}

.busroutefacilities {
    width: 100%;
    float: left;
    background-color: var(--bgcolor);
    border-radius: 0 0 10px 10px;
    position: relative;
}

.droproutebtnpart {
    padding: 10px 40px 10px;
    background-color: rgba(9, 43, 83, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .droproutebtnpart .nav-tabs {
        border-bottom: none;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .droproutebtnpart .nav-tabs li {
            margin: 0 !important;
            padding: 0 12px;
            position: relative;
        }

            .droproutebtnpart .nav-tabs li.viewschedulebus {
                padding: 0 0 0 12px;
                position: relative;
            }

            .droproutebtnpart .nav-tabs li:after {
                content: "";
                position: absolute;
                right: 0;
                top: 0;
                width: 1px;
                height: 22px;
                background-color: rgba(133, 144, 164, 0.6);
            }

            .droproutebtnpart .nav-tabs li.viewschedulebus:after {
                display: none;
            }

        .droproutebtnpart .nav-tabs .nav-link, .droproutebtnpart .nav-tabs button {
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color);
            padding: 0;
            position: relative;
            margin: 0;
            border: none;
            border-radius: inherit;
            background-color: transparent;
            cursor: pointer;
        }

            .droproutebtnpart .nav-tabs .nav-link:hover, .droproutebtnpart .nav-tabs .nav-link:focus, .droproutebtnpart .nav-tabs button:hover, .droproutebtnpart .nav-tabs button:focus {
                color: var(--secondary-color);
            }

/*Cancellation Tabbing Style Start Here*/
.cancellation-tab-section {
    width: 100%;
    float: left;
}

.cancellation-policy {
    width: 100%;
    float: left;
    border: 1px solid #D5D7DF;
    border-radius: 10px;
}

.cancellation-list-type {
    width: 100%;
    float: left;
}

.cancellation-title {
    font-size: 18px;
    font-weight: 600;
    background-color: var(--bgcolor);
    padding: 16px 40px;
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #D5D7DF;
}

.cancellation-list-left {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D5D7DF;
}

.cancellation-list-title {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
}

    .cancellation-list-title label {
        margin: 0;
    }

.cancellation-list {
    font-size: 16px;
    font-weight: 400;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D5D7DF;
}

    .cancellation-list:last-child {
        border: none;
    }

    .cancellation-list label {
        margin: 0;
    }

    .cancellation-list p {
        margin: 0;
    }
/*Cancellation Tabbing Style End Here*/
/*Amenities Tabbing Style Start Here*/
.amenities-tab-section {
    width: 100%;
    float: left;
    border-radius: 10px;
    padding: 40px;
    background-color: var(--pure);
    border: 1px solid rgba(9, 47, 83, 0.2);
}

.amenities-tab-list {
    width: 100%;
    float: left;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.amenities-tab-box {
    text-align: left;
    padding: 10px 20px 10px 20px;
    background-color: var(--pure);
    border-radius: 6px;
    border: 1px solid rgba(9, 47, 83, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .amenities-tab-box i {
        font-size: 20px;
        color: var(--primary-color);
    }

    .amenities-tab-box p {
        font-size: 16px;
        font-weight: 500;
        color: rgba(57, 88, 117, 0.8);
        margin: 0;
    }

/*Amenities Tabbing Style End Here*/

.seat_button button {
    font-size: 16px;
    font-weight: 500;
    background-color: var(--primary-color);
    border: none;
    padding: 12px 36px;
    color: var(--pure);
    border-radius: 8px;
    cursor: pointer;
}

.seat_button i {
    background-color: var(--primary-color);
    padding: 12px 36px;
    color: var(--pure);
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
}

.seat_button {
    display: inline-block;
}

    .seat_button .nav-item {
        display: flex;
    }

.available_seat span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 1px 0 0 27px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/site/availableicon.png");
    background-position: 0px -1774px;
    background-repeat: no-repeat;
}

    .available_seat span label {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        padding: 0 8px 0 0;
        margin: 0;
    }

.changeoverbus {
    color: var(--pure);
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    padding: 15px 0 0;
    display: inline-block;
    width: 100%;
}

.waitduration {
    color: var(--secondary-color);
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    padding: 10px 0 12px;
    display: inline-block;
    width: 100%;
}

.routedata_main .routedata {
    float: left;
    width: 100%;
    padding: 40px 0 0;
    border: 1px solid rgba(9, 47, 83, 0.2);
    border-radius: 10px;
    background-color: var(--pure);
}

.available_route_overbus .available_route_box {
    padding: 20px 20px;
    border: 1px solid rgba(9, 47, 83, 0.8);
    background-color: var(--primary-color);
}

.modifydatasleep.modifydatasleep_connecting {
    color: var(--pure);
    font-size: 18px;
    font-weight: 500;
    padding: 5px 0 18px;
    text-align: center;
    width: 100%;
}

/*Seat Chart Style Start Here*/

.available_route_box .tab-pane {
    width: 100%;
    float: left;
    padding: 40px 40px 40px;
}

.bookingchartdata {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
}

.bookingseatchart {
    float: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-basis: 50%;
}

.seatpricefilter {
    float: left;
    width: 100%;
    overflow-x: auto;
}

    .seatpricefilter ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        width: max-content;
    }

        .seatpricefilter ul li {
            display: inline-block;
            padding: 2px 20px 2px;
            border: 1px solid var(--text-color);
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            background-color: var(--pure);
            color: var(--text-color);
        }

            .seatpricefilter ul li.active {
                background-color: var(--primary-color);
                color: var(--pure);
            }

    .seatpricefilter .seatprice {
        padding: 0;
        border: none;
        border-radius: inherit;
        margin: 0;
        color: var(--primary-color);
        font-size: 14px;
        font-weight: 600;
    }

.upperlowerchart {
    float: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.lowerdeckchart, .upperdeckchart {
    width: 100%;
    float: left;
}

.seatchartone, .seatchartwo {
    text-align: left;
    width: 100%;
}

.lowerdeckseat, .upperdeckseat {
    background-color: var(--bgcolor);
    border: 1px solid rgba(9, 47, 83, 0.2);
    border-radius: 10px;
    width: 580px;
    float: left;
    min-height: 240px;
    padding: 0px 20px 0;
}

.seatchartdeta {
    width: 100%;
    float: left;
    position: relative;
}

.seatindicator {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px 0 0px;
}

    .seatindicator .seat01 {
        font-size: 14px;
        font-weight: 400;
        color: var(--primary-color);
        display: flex;
        align-items: center;
    }

        .seatindicator .seat01 em {
            border: 1px solid var(--text-color);
            background-color: var(--pure);
            height: 16px;
            width: 16px;
            display: inline-block;
            vertical-align: middle;
            margin: 0 10px 0 0;
        }

        .seatindicator .seat01.seat03 em {
            border: 1px solid var(--head-text-color);
            background-color: var(--text-color);
        }

        .seatindicator .seat01.seat04 em {
            border: 1px solid var(--text-color);
            background-color: #ff4a75;
        }

        .seatindicator .seat01.seat05 em {
            border: 1px solid var(--primary-color);
            background-color: var(--primary-color);
        }

.bookingdeatails {
    float: left;
    padding: 70px 0 0;
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
}

.seat-icon {
    background-color: #fff;
    min-width: 70px;
    min-height: 30px;
    color: var(--text-color);
    font-size: 13px;
    text-transform: uppercase;
    line-height: normal;
    text-align: center;
    padding: 5px 0 0;
    margin: 0 4px 7px 0;
    cursor: pointer;
    float: none;
    clear: both;
    display: inline-block;
    vertical-align: top;
    border: 1px solid var(--text-color);
    position: relative;
}

    .seat-icon.seat_selected {
        background-color: var(--primary-color) !important;
        color: var(--pure) !important;
        border: 1px solid var(--primary-color) !important;
    }

    .seat-icon.seat_reserved {
        background-color: var(--text-color) !important;
        color: var(--pure) !important;
        border: 1px solid var(--text-color) !important;
    }

    .seat-icon.seat_available {
        background-color: var(--pure);
        color: var(--text-color);
        border: 1px solid var(--text-color);
    }

    .seat-icon.seat__booked_ladies {
        background-color: #ff4a75 !important;
        color: var(--pure);
        border: 1px solid var(--text-color);
    }

.seat-icon02 {
    background-color: #fff;
    min-width: 31px;
    min-height: 30px;
    color: var(--text-color);
    font-size: 12px;
    text-transform: uppercase;
    line-height: normal;
    text-align: center;
    padding: 5px 0 0;
    margin: 0 4px 7px 0;
    cursor: pointer;
    float: none;
    clear: both;
    display: inline-block;
    vertical-align: top;
    border: 1px solid var(--text-color);
    position: relative;
    max-width: 31px;
    overflow-x: hidden;
}

    .seat-icon02.seat_selected {
        background-color: var(--primary-color) !important;
        color: var(--pure) !important;
        border: 1px solid var(--primary-color) !important;
    }

    .seat-icon02.seat_reserved {
        background-color: var(--text-color) !important;
        color: var(--pure) !important;
        border: 1px solid var(--text-color) !important;
    }

    .seat-icon02.seat_available {
        background-color: var(--pure);
        color: var(--text-color);
        border: 1px solid var(--text-color);
    }

    .seat-icon02.seat__booked_ladies {
        background-color: #ff4a75 !important;
        color: var(--pure);
        border: 1px solid var(--text-color);
    }

.seat-iconvertical {
    min-height: 70px;
    min-width: 30px;
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
    padding-left: 6px !important;
    float: left;
    max-width: 30px;
    writing-mode: vertical-rl;
    justify-content: space-around;
}

.seat-opacity {
    opacity: 0.3;
    pointer-events: none !important;
}

/*Seat Tooltip Start*/

.css-13hjud9-MuiTooltip-tooltip {
    background-color: var(--primary-color) !important;
    font-family: 'Poppins', sans-serif !important;
    padding: 4px 8px;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 1px;
}

    .css-13hjud9-MuiTooltip-tooltip h4 {
        font-size: 14px !important;
        font-weight: 500;
        padding: 6px 0;
    }

    .css-13hjud9-MuiTooltip-tooltip table tbody tr th,
    .css-13hjud9-MuiTooltip-tooltip table tbody tr td {
        font-size: 12px !important;
        font-weight: 400;
    }

.css-kudwh-MuiTooltip-arrow::before {
    background-color: var(--secondary-color) !important;
}

/*Seat Tooltip End*/

.routepoint {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 0 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.dorppickupselected {
    width: 100%;
    float: left;
    background-color: var(--bgcolor);
    border-radius: 2px;
    padding: 5px 8px;
}

    .dorppickupselected span {
        font-size: 14px;
        font-weight: 400;
        padding: 0 0 5px;
        width: 100%;
        display: inline-block;
        vertical-align: middle;
    }

        .dorppickupselected span i {
            font-style: normal;
            font-weight: 600;
        }

.boardingpointchart {
    width: 100%;
    float: left;
    position: relative;
}

.droppingpointchart {
    width: 100%;
    float: left;
    position: relative;
}

.routepoint .css-qkv3hr-MuiAutocomplete-root {
    width: 100%;
}

.routepoint .css-1tb7pjp-MuiInputBase-root-MuiInput-root::after {
    border-bottom: 2px solid var(--secondary-color);
}

.routepoint .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-qkv3hr-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
    padding-right: 0;
}

.routepoint .css-821wyw-MuiSvgIcon-root {
    display: none;
}

.routepoint .css-qkv3hr-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
    padding: 10px 30px 10px 10px;
    border: 1px solid rgba(9, 47, 83, 0.2);
    cursor: pointer;
    color: var(--primary-color);
}

.routepoint .css-1tb7pjp-MuiInputBase-root-MuiInput-root:hover:not(.Mui-disabled)::before {
    border-bottom: none;
}

.routepoint .css-1tb7pjp-MuiInputBase-root-MuiInput-root::before {
    border-bottom: none;
}

.routepoint .css-qzbt6i-MuiButtonBase-root-MuiIconButton-root-MuiAutocomplete-popupIndicator {
    background-color: var(--primary-color);
    font-size: 1.5rem;
    padding: 2px;
    border-radius: 4px;
    color: var(--pure);
    margin-right: 6px;
}

    .routepoint .css-qzbt6i-MuiButtonBase-root-MuiIconButton-root-MuiAutocomplete-popupIndicator:hover {
        background-color: var(--primary-color);
    }

.routepoint .css-113ntv0-MuiButtonBase-root-MuiIconButton-root-MuiAutocomplete-popupIndicator {
    background-color: var(--primary-color);
    font-size: 20px;
    padding: 2px;
    border-radius: 4px;
    color: var(--pure);
    margin-right: 6px;
    transition: 0.3s ease all;
    transform: rotate(180deg);
}

    .routepoint .css-113ntv0-MuiButtonBase-root-MuiIconButton-root-MuiAutocomplete-popupIndicator:hover {
        background-color: var(--secondary-color);
    }

.doppingpointformat {
    font-size: 14px;
    cursor: pointer;
    padding: 5px;
    border-bottom: 1px solid var(--border-color);
}

    .doppingpointformat .dropppingtimedate {
        display: block;
        font-weight: 600;
    }

    .doppingpointformat .dropppingpointlist {
        display: block;
    }

.bookingservicefair {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.bookingservicedetails, .bookingfairdetails {
    width: 100%;
    background-color: var(--pure);
    border: 1px solid rgba(9, 47, 83, 0.2);
}

.bookingservicebox {
    width: 100%;
    float: left;
    padding: 0 0px;
}

.serviceboxtitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: var(--pure);
    padding: 8px 20px;
}

.serviceboxdata {
    width: 100%;
    float: left;
    padding: 10px 0 0;
}

.serviceboxdetail {
    width: 100%;
    padding: 0px 10px 6px;
}

    .serviceboxdetail p {
        font-size: 14px;
        font-weight: 400;
        color: var(--primary-color);
        display: inline-block;
        vertical-align: top;
        width: 40%;
        padding: 0 10px 0 0;
        position: relative;
        margin: 0;
    }

        .serviceboxdetail p:after {
            content: ':';
            position: absolute;
            right: 0;
            top: 0;
        }

    .serviceboxdetail label {
        font-size: 14px;
        font-weight: 400;
        color: var(--primary-color);
        display: inline-block;
        vertical-align: top;
        width: 58%;
        padding: 0 0 0 20px;
    }

.fairdetails {
    width: 100%;
    float: left;
    padding: 0px 10px 6px;
    display: flex;
    justify-content: space-between;
}

    .fairdetails p, .fairdetails label {
        font-size: 14px;
        font-weight: 400;
        color: var(--primary-color);
        margin: 0 0 7px;
    }

    .fairdetails:last-child p, .fairdetails:last-child label {
        font-weight: 700;
    }

    .fairdetails.savingfare p, .fairdetails.savingfare label {
        color: #0045c3;
        font-weight: 600;
    }

.bookingcontinue {
    width: 100%;
    float: left;
    text-align: right;
    padding: 40px 0 0;
}

    .bookingcontinue button {
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--pure);
        background-color: var(--primary-color);
        border: none;
        padding: 11px 38px;
        border-radius: 2px;
        box-shadow: 0px 10px 20px rgba(0, 35, 90, 0.16);
        cursor: pointer;
    }

        .bookingcontinue button:hover, .bookingcontinue button:focus, .bookingcontinue button:active {
            color: var(--primary-color);
            background-color: var(--secondary-color);
            border: none;
            box-shadow: 0px 10px 20px rgba(255, 94, 20, 0.16);
        }

.seatitle {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 0 10px;
    color: var(--secondary-color);
}

/*Seat Chart Style End Here*/

.availablegender {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 0 0 30px;
}

.availableseats {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

.availableseatspart {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
}

.availableseats input {
    font-size: 14px;
    padding: 6px 10px 5px 12px !important;
    width: 100% !important;
    text-align: left;
    background-color: var(--pure);
    border: 1px solid var(--text-color);
    border-radius: 2px;
    color: var(--primary-color);
    font-weight: 500;
}

.availableseattext {
    font-size: 14px;
    padding: 6px 22px 6px !important;
    text-align: center;
    background-color: rgba(9, 47, 83, 0.15);
    border-radius: 2px;
    color: var(--primary-color);
    font-weight: 600;
    /* width: 18%; */
}

.availableseatspart .css-16awh2u-MuiAutocomplete-root {
    width: 82%;
    position: relative;
}

.availableseatspart .css-1glvl0p-MuiButtonBase-root-MuiIconButton-root-MuiAutocomplete-clearIndicator {
    top: -2px;
    position: absolute;
    right: 4px;
}

.availableseatspart .MuiAutocomplete-popupIndicator {
    display: none !important;
}

.availableseats .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-16awh2u-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
    padding-right: 0;
}

.genderparts {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

    .genderparts .form-control {
        height: auto;
        padding: 3px 10px;
        width: 130px;
        color: var(--primary-color);
        border: 1px solid var(--text-color);
        border-radius: 2px;
        background-color: transparent;
    }

/********** Available Route Page Style End Here **********/

/********** View Bus Route style start Here **********/
.restroute_point_popup.css-zw3mfo-MuiModal-root-MuiDialog-root {
    left: auto;
}

.restroute_point_popup .css-hz1bth-MuiDialog-container {
    align-items: flex-start;
}

.restroute_point_popup .css-yiavyu-MuiBackdrop-root-MuiDialog-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

.custinfopopup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
    margin: 40px 40px 40px 0 !important;
    max-width: 86.4% !important;
    top: 0 !important;
    bottom: 0 !important;
    border-radius: inherit !important;
}

.restroute_point_popup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
    margin: 0 !important;
    max-height: 100vh !important;
    max-width: 100% !important;
    height: 100%;
}

button.okbtnroute {
    border: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    background-color: transparent;
    padding: 0;
    min-width: auto;
    letter-spacing: inherit;
    top: 4px;
    right: 14px;
}

    button.okbtnroute:hover, button.okbtnroute:focus {
        color: var(--secondary-color);
    }

.restroute_point_popup .css-ypiqx9-MuiDialogContent-root {
    width: 488px;
    padding: 28px 20px 20px 20px;
    margin: 122px 0 0;
}

.viewbusroutepart {
    width: 100%;
    float: left;
    position: relative;
}

    .viewbusroutepart .passengerbox {
        padding: 0 0 40px;
    }

.bookingdb {
    width: 100%;
    float: left;
}

.routecitytitlesec {
    background-color: var(--pure);
    padding: 0 0;
    width: 100%;
    float: left;
}

.routecitytitlepart {
    position: fixed;
    top: 55px;
    z-index: 3;
    width: 440px;
    background-color: var(--primary-color);
    border-radius: 6px;
    box-shadow: 6px 10px 20px rgba(23, 66, 117, 0.2);
    padding: 20px;
}

.routecitytitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--pure);
    width: 100%;
}

    .routecitytitle span {
        height: 12px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background-image: url("../images/site/arrowicon.png");
        background-position: center -203px;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        flex-basis: 10%;
    }

.routecitytitletime {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 19px;
    padding: 12px 0 0;
    text-align: center;
}

    .routecitytitletime span {
        color: var(--pure);
    }

.dbpointnm_data {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0 0 0 10px;
}

.routedatatime {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.dbroutehead {
    text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    padding: 2px 0 35px;
    flex-basis: 78%;
}

    .dbroutehead:before {
        position: absolute;
        content: "";
        left: 8px;
        top: 3px;
        height: 100%;
        border-left: 1px solid var(--secondary-color);
        z-index: 0;
    }

.dbpointnm:last-child .dbpointnm_data .dbroutehead:before {
    display: none;
}

.routedataicon {
    width: 18px;
    float: left;
    height: 26px;
    background-image: url("../images/site/availableicon.png");
    background-position: center -1999px;
    background-repeat: no-repeat;
    position: relative;
}

.routeheadtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 15px;
    padding: 0 0 5px;
}

.dbrouteheadpart {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 2px;
}

.dbroutehead label {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 17px;
    margin: 0;
    display: block;
    padding: 0 0 2px;
}

.dbroutehead span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 19px;
    display: block;
}

.dbroutehead i {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 18px;
    font-style: normal;
}

/********** View Bus Route style end Here **********/

/********** Customer Info Page Style Stat Here **********/

.custinfopopup .css-yiavyu-MuiBackdrop-root-MuiDialog-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

.custinfopopup .css-2rbg70-MuiPaper-root-MuiDialog-paper {
    border-radius: 0;
    margin: 0;
    max-height: 100%;
    width: 100%;
    max-width: 960px;
}

.custinfopopup .css-ypiqx9-MuiDialogContent-root {
    padding: 15px;
}

.popupclose {
    display: flex;
    justify-content: flex-end;
}

    .popupclose h5 {
        font-weight: 600;
        font-size: 18px;
        text-align: left;
        color: var(--primary-color);
    }

    .popupclose button {
        font-size: 29px;
        font-weight: 300;
        text-transform: uppercase;
        background-color: transparent !important;
        border: none;
        padding: 0 !important;
        box-shadow: none !important;
        color: var(--primary-color) !important;
        border-radius: 4px;
        cursor: pointer;
        float: right;
        display: inline-block;
        min-width: auto;
        line-height: inherit !important;
    }

        .popupclose button:hover, .popupclose button:focus {
            color: var(--secondary-color) !important;
        }

.customerinfowrapper {
    width: 100%;
    float: left;
    padding: 22px 55px 70px 55px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.customerinfoleft {
    width: 62.7%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.custotitle {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: max-content;
}

    .custotitle:after {
        position: absolute;
        content: "";
        border-bottom: 1px solid var(--primary-color);
        width: 100%;
        bottom: 5px;
        left: 0;
    }

.customerroutedata {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    padding: 13px 0 0;
}

.custinfo_box {
    width: 100%;
    border: 1px solid rgba(9, 47, 83, 0.2);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 4px 10px 40px rgba(9, 47, 83, 0.05);
    background-color: rgba(241, 244, 246, 0.3);
    float: left;
    margin: 0 0 20px;
}

.cust_box_title h5.returnbox_title {
    padding: 31px 0 0;
}

.cust_box_title h5 {
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    color: var(--primary-color);
    margin: 0;
    line-height: 23px;
}

.journeysubtitlereturn {
    padding: 45px 0 23px !important;
}

.journeysubtitle {
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    color: var(--primary-color);
    margin: 0;
    line-height: 23px;
    padding: 0 0 23px;
}

.cust_box_route {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    display: flex;
}

.cust_box_details {
    width: 100%;
    float: left;
    padding: 12px 0 0px;
}

    .cust_box_details.cust_box_details_gst {
        padding: 0px 0 0px;
    }

.cust_pass_title h5 {
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    color: var(--text-color);
    padding: 12px 0 16px;
    margin: 0;
}

.cust_pass_input_details {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.custinfo_box_wallet .cust_pass_input_details {
    gap: 20px;
}

.theme_buton.theme_buton_wallet {
    padding: 14px 32px 15px 33px;
}

.cust_pass_input.gst_input {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    width: 100%;
}

.cust_pass_input02 {
    flex-basis: 18%;
}

.cust_pass_input01 {
    flex-basis: 37.3%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.custinfo_box_tc .PrivateSwitchBase-input {
    position: absolute;
}

.custinfo_box_details .cust_pass_input {
    flex-basis: 31.4% !important;
}

.custinfo_box_details .cust_box_title {
    padding: 0 0 8px;
}

.custinfo_box_wallet .cust_pass_input01 {
    flex-basis: 67.3% !important;
}

.custinfo_box_wallet .cust_boxdata_details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.custinfo_box_wallet {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

    .custinfo_box_wallet .custinfo_box {
        width: 48.9%;
    }

.cust_pass_input {
    position: relative;
}

    .cust_pass_input input {
        height: 50px;
        border-radius: 4px;
        background: var(--pure);
        border: 1px solid rgba(9, 47, 83, 0.2);
        padding: 0 20px;
        width: 100%;
        font-size: 15px;
        font-weight: 500;
        color: var(--text-color);
        position: relative;
    }

        .cust_pass_input input[type="text"]::-webkit-input-placeholder {
            color: var(--text-color) !important;
        }

    .cust_pass_input::-webkit-input-placeholder {
        /* Chrome */
        color: var(--text-color) !important;
    }

    .cust_pass_input::-moz-placeholder {
        color: var(--text-color) !important;
    }

    .cust_pass_input input input:hover, .cust_pass_input input:focus {
        border: 1px solid var(--secondary-color);
        box-shadow: none;
        outline: none;
    }

    .cust_pass_input .css-xsu6ln-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
        padding: 0 10px;
        height: 48px;
    }

    .cust_pass_input .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-xsu6ln-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
        padding-right: 0;
    }

    .cust_pass_input .MuiAutocomplete-hasPopupIcon.css-xsu6ln-MuiAutocomplete-root .MuiAutocomplete-inputRoot,
    .cust_pass_input .MuiAutocomplete-hasClearIcon.css-xsu6ln-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
        padding-right: 0;
    }

    .cust_pass_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:before {
        border-bottom: none;
    }

    .cust_pass_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:after {
        border-bottom: 2px solid var(--primary-color);
    }

    .cust_pass_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:hover:not(.Mui-disabled):before {
        border-bottom: none;
    }

    .cust_pass_input .css-xsu6ln-MuiAutocomplete-root {
        width: 100%;
    }

    .cust_pass_input.cust_pass_input_color .wallet_box_color input {
        background: rgba(254, 178, 9, 0.1);
        border: 1px solid var(--secondary-color);
        color: var(--primary-color);
    }

.theme_buton {
    font-size: 15px;
    font-weight: 500;
    color: var(--background);
    background-color: var(--primary-color);
    border: none;
    padding: 14px 35px 15px;
    border-radius: 4px;
}

    .theme_buton:hover, .theme_buton:focus {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

.custinfo_box_wallet .cust_box_details {
    padding: 20px 0 0;
}

.cust_pass_input_details.cust_pass_input_detailsgst {
    flex-wrap: wrap;
}

.custinfo_box .css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root {
    padding: 0;
}

    .custinfo_box .css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root .css-i4bv87-MuiSvgIcon-root {
        font-size: 28px;
    }

.custinfo_box_gst .cust_box_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.customerinforight {
    width: 35.9%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
}

.trip_fare_view {
    margin: 13px 0 0;
    padding: 30px !important;
}

    .trip_fare_view .cust_box_details {
        padding: 0;
    }

.custinfo_box.trip_fare_details {
    flex-wrap: wrap;
    padding: 30px;
    display: flex;
    background-color: var(--primary-color);
    border: none;
    box-shadow: none;
    flex-direction: column;
}

.fare_lable {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 20px 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .fare_lable:nth-last-child(-n+2) {
        border: none;
    }

    .fare_lable p {
        margin: 0;
        color: var(--pure);
        font-size: 14px;
        font-weight: 500;
    }

    .fare_lable label {
        margin: 0;
        color: var(--pure);
        font-size: 16px;
        font-weight: 500;
    }

.faredetails {
    color: var(--pure);
    text-align: left;
    float: left;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
    padding: 0 0 15px;
}

.totalfare_lable {
    background-color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 4px;
    margin: 10px 0 0;
    border: none;
}

    .totalfare_lable p {
        color: var(--primary-color);
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    .totalfare_lable label {
        color: var(--primary-color);
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

.cust_pass_input_details .filter-drawer {
    border: 1px solid var(--border-color);
    background-color: var(--text-color);
}

.cust_pass_input_details .filter-drawer__title {
    color: var(--pure);
    text-transform: none;
}

    .cust_pass_input_details .filter-drawer__title:hover {
        color: var(--pure);
    }

    .cust_pass_input_details .filter-drawer__title::after {
        border-color: var(--pure);
    }

.cust_pass_input_details.cust_pass_input_details_collaps {
    width: 100%;
    flex-basis: 100%;
    display: inline-block;
}

.pass_journey_details {
    display: flex;
    flex-direction: column;
}

    .pass_journey_details .cust_box_title {
        padding: 0 0 23px;
    }

.pass_journey_details_box {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    padding: 9px 0 10px;
    border-bottom: 1px solid rgba(14, 44, 120, 0.2);
    flex-wrap: wrap;
}

    .pass_journey_details_box:last-child {
        border: none;
    }

    .pass_journey_details_box p {
        flex-basis: 35%;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-color);
        margin: 0;
    }

    .pass_journey_details_box label {
        flex-basis: 65%;
        margin: 0;
        color: #395875;
        font-size: 16px;
        font-weight: 500;
    }

.cust_pass_input.cust_pass_input01 label {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 0 0 12px;
}

.trip_fare_details .cust_pass_input01 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    flex-basis: 100%;
}

.custinfo_box.custinfo_box_tc {
    padding: 13px 0;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

    .custinfo_box.custinfo_box_tc .cust_box_details {
        padding: 0;
    }

.cust_pass_input.cust_pass_input01 a {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0 0 0 4px;
    text-decoration: none;
}

.payment_gateway {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.psngrpaybox {
    width: 100%;
    padding: 10px 0 0;
    position: relative;
}

    .psngrpaybox .MuiFormControlLabel-root.MuiFormControlLabel-labelPlacementTop.css-1hpqosy-MuiFormControlLabel-root {
        padding: 25px 0 25px 10px;
        width: 100%;
        border-bottom: 1px solid rgba(9, 47, 83, 0.1);
    }

    .psngrpaybox .pg_gateway .css-j204z7-MuiFormControlLabel-root {
        padding: 25px 0 25px 10px;
        width: 100%;
        margin: 0 !important;
        position: relative;
        border-bottom: 1px solid rgba(9, 47, 83, 0.1);
        margin: 0 !important;
    }

    .psngrpaybox .pg_gateway:last-child .css-j204z7-MuiFormControlLabel-root {
        padding: 25px 0 10px 10px;
        border: none;
    }

    .psngrpaybox label {
        position: relative;
    }

    .psngrpaybox .MuiFormControlLabel-root.MuiFormControlLabel-labelPlacementTop.css-1hpqosy-MuiFormControlLabel-root:last-child {
        padding: 25px 0 10px 10px !important;
        border: none;
    }

    .psngrpaybox .css-qfz70r-MuiFormGroup-root {
        gap: 0;
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .psngrpaybox span {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        color: #395875;
    }

.insurance_details {
    padding: 0 0 0 92px;
    display: block;
    width: 100%;
    float: left;
    background-image: url(../images/Insurance_Icon.svg);
    background-repeat: no-repeat;
    background-position: 44px center;
    margin: 10px 0 10px;
}

    .insurance_details span {
        font-size: 16px;
        font-weight: 600;
        color: var(--head-text-color);
        display: block;
    }

    .insurance_details a {
        padding: 0 0 !important;
        float: left;
        font-weight: 400 !important;
    }

.journey_amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.journey_amount_count {
    display: flex;
    gap: 4px;
}

    .journey_amount_count p {
        font-weight: 400;
        font-size: 16px;
    }

    .journey_amount_count label {
        font-weight: 600;
        font-size: 16px;
        color: var(--secondary-color);
    }

.journey_amount_btn {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
}

    .journey_amount_btn button {
        font-weight: 500;
        font-size: 16px;
        text-align: left;
        color: var(--background);
        border-radius: 4px;
        background-color: var(--primary-color);
        padding: 13px 30px;
        text-transform: capitalize;
    }

        .journey_amount_btn button:hover,
        .journey_amount_btn button:focus {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }

    .journey_amount_btn .custocancel {
        background-color: var(--text-color);
    }

.journey_amount_btnmbl {
    display: none;
}

.journey_amount_text {
    font-size: 12px;
    text-align: center;
    color: var(--pure);
    padding: 14px 0 10px;
}

.custinfo_box.amount_box {
    width: 100%;
    border: none;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

    .custinfo_box.amount_box .cust_box_details {
        padding: 0;
    }

.hotdeal_title {
    font-size: 14px;
    color: var(--head-text-color);
    padding: 5px 0 0;
}

.hotdeal_input .css-vqmohf-MuiButtonBase-root-MuiRadio-root.Mui-checked {
    color: var(--primary-color);
}

.hotdeal_input .css-ahj2mt-MuiTypography-root {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    color: var(--head-text-color);
}


.WalletBooking {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 0 0;
    width: 100%;
    flex-wrap: wrap;
}

.wallet_box {
    flex-basis: 100%;
    border: 1px solid rgba(9, 47, 83, 0.2);
    background-color: rgba(241, 244, 246, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 9px 8px;
    border-radius: 4px;
    box-shadow: 4px 10px 40px rgba(9, 47, 83, 0.05);
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
}

    .wallet_box label {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-color);
    }

    .wallet_box .otp_resend {
        font-size: 14px;
        font-weight: 500;
        color: var(--secondary-color) !important;
        text-align: right;
    }

    .wallet_box span {
        font-size: 14px;
        text-align: center;
    }

    .wallet_box .captchin {
        display: flex;
        align-items: center;
        gap: 20px;
    }

.WalletBooking .cust_pass_input {
    flex-basis: 100%;
    display: flex;
    gap: 10px;
}

.redclr {
    position: absolute;
    left: 10px;
    bottom: -20px;
    font-size: 13px !important;
}

.wallet_box .redclr {
    bottom: 14px;
}

.agntpgcaptcha .wallet_box .redclr {
    bottom: -13px;
}

.theme_buton_s1 {
    box-shadow: none !important;
}

    .theme_buton_s1:hover, .theme_buton_s1:focus {
        box-shadow: none !important;
        color: var(--primary-color);
    }

.custlastpopup .css-2rbg70-MuiPaper-root-MuiDialog-paper {
    max-width: 460px;
    right: 0;
    left: 0;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

.custlastpopup .custocancel {
    background-color: var(--primary-color);
    color: var(--pure);
    font-size: 14px;
    padding: 0 7px;
    min-width: auto;
    right: 12px;
    position: absolute;
    top: 12px;
}

    .custlastpopup .custocancel:hover, .custlastpopup .custocancel:focus {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

.custlastpopup p {
    color: var(--primary-color);
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.custotp {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    align-items: center;
    padding: 30px 0 30px;
    position: relative;
}

    .custotp .redclr {
        bottom: 8px;
    }

    .custotp input {
        height: 40px;
        border: 1px solid var(--text-color);
        border-radius: 4px;
        padding: 0 15px;
        width: 100%;
    }

.custobtnparts {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

    .custobtnparts .custbtn {
        background-color: var(--primary-color);
        color: var(--pure);
        border-radius: 2px;
        font-size: 14px;
        font-weight: 400;
        padding: 8px 24px;
        text-transform: capitalize;
    }

        .custobtnparts .custbtn.custbtnclose {
            background-color: var(--text-color);
            color: var(--pure);
        }

            .custobtnparts .custbtn.custbtnclose:hover, .custobtnparts .custbtn.custbtnclose:focus {
                background-color: var(--primary-color);
                color: var(--pure);
            }

        .custobtnparts .custbtn:hover, .custobtnparts .custbtn:focus {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }

.custotpsuccess {
    padding: 30px 0 0;
    display: inline-block;
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
}

/********** Customer Info Page Style End Here **********/
/********** E-Ticket Page Style Start Here **********/
.ticket-wraper {
    width: 100%;
    float: left;
    clear: both;
}

    .ticket-wraper .container {
        width: 100%;
        max-width: 1250px !important;
        margin: 0 auto;
    }

.ticket_main {
    width: 100%;
    float: left;
    padding: 42px 0 0;
}

.ticket_page_title {
    font-size: 20px;
    font-weight: 400;
    color: var(--secondary-color);
    text-align: center;
}

    .ticket_page_title h5 {
        font-size: 22px;
        font-weight: 700;
        color: var(--secondary-color);
    }

.ticket_main_section {
    width: 100%;
    float: left;
    padding: 0px 0 0;
}

.ticket_orderno {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 2px dashed var(--text-color);
    padding: 46px 0 18px;
}


    .ticket_orderno p {
        font-size: 20px;
        font-weight: 600;
        color: var(--secondary-color);
        margin: 0;
    }

    .ticket_orderno label {
        font-size: 20px;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
    }

.onward_journey_block {
    background-color: rgba(213, 224, 231, 0.3);
    border-radius: 4px;
}

.onwars_journy_top {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px 18px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.onward_title p {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.onward_pnr {
    display: flex;
    gap: 5px;
    background-color: var(--primary-color);
    padding: 10px 24px 10px;
    border-radius: 4px;
    color: var(--pure);
    font-size: 16px;
    font-weight: 500;
    align-items: center;
}

    .onward_pnr p {
        margin: 0;
    }

    .onward_pnr label {
        margin: 0;
    }

.journey_detail_block {
    padding: 40px 0 0;
}

.onward_journy_box {
    display: flex;
    justify-content: space-between;
    padding: 40px 40px 10px;
    align-items: flex-start;
    gap: 30px;
}

.onward_journy_box_left {
    display: flex;
    flex-direction: column;
}

.onward_journy_box_left_top {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 40px;
}

.onward_journy_left_block {
    display: flex;
    flex-direction: column;
}

.onward_journy_box_right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-basis: 24.3%;
}

.onward_journy_left_block .block_tocity {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.onward_journy_left_block .block_tocity_date {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    padding: 9px 0 0;
}

.onward_journy_left_block .block_tocitytime {
    font-size: 13px;
    font-weight: 400;
    color: var(--secondary-color);
    padding: 2px 0 0;
}

.onward_journy_left_block.left_block02 {
    display: flex;
    align-items: center;
}

    .onward_journy_left_block.left_block02 p {
        font-size: 12px;
        font-weight: 400;
        color: var(--head-text-color);
    }

.onward_journy_box_left_bottom {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 20px 0 20px;
}

.onward_journy_bus_type {
    display: flex;
    align-items: center;
}

    .onward_journy_bus_type p {
        flex-basis: 113px;
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
    }

    .onward_journy_bus_type label {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-color);
        margin: 0;
    }

.onward_journy_boarding_point {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .onward_journy_boarding_point p {
        font-size: 18px;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        padding: 0 0 5px;
    }

    .onward_journy_boarding_point label {
        font-size: 14px;
        font-weight: 400;
        color: var(--text-color);
    }

.passenger_detail_main_block {
    padding: 60px 0 0;
}

.passenger_detail_main_block {
    padding: 62px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.passenger_detail_box {
    padding: 0;
    flex-basis: 63.5%;
}

.passenger_detail_title h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding: 0 0 4px;
}

.passenger_detail_list {
    display: flex;
    flex-direction: column;
}

    .passenger_detail_list .passenger_detail_row {
        display: flex;
    }

.passenger_detail_list_name {
    flex-basis: 47%;
}

    .passenger_detail_list_name.passenger_detail_list_age {
        flex-basis: 31%;
    }

    .passenger_detail_list_name.passenger_detail_list_seatno {
        flex-basis: 20%;
    }

.passenger_detail_list.passenger_contact_detail_list .passenger_detail_row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 35px;
}

.passenger_detail_row .passenger_detail_list_name p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    display: none;
    margin: 0;
}

.passenger_detail_row:first-child .passenger_detail_list_name p {
    display: block;
}

.passenger_detail_row .passenger_detail_list_name label {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 6px 0 0;
    margin: 0;
}

.passenger_detail_sub_box {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

    .passenger_detail_sub_box.passenger_contact_detail_sub_box {
        padding: 65px 0 0;
    }

.fare_detail_box {
    flex-basis: 36.5%;
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 20px;
}

.fare_detail_title h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--pure);
    border-bottom: 2px solid var(--pure);
    padding: 0 0 2px;
    display: inline-block;
}

.fare_details_block {
    padding: 24px 0 0;
}

.fare_details_row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 2px;
}

    .fare_details_row p,
    .fare_details_row label {
        font-size: 16px;
        font-weight: 400;
        color: var(--pure);
    }

    .fare_details_row.fare_details_bottom_row {
        border-top: 2px solid var(--text-color);
        margin: 16px 0 0;
        padding: 21px 0 0;
    }

        .fare_details_row.fare_details_bottom_row label {
            color: var(--secondary-color);
        }

.paperless_block {
    padding: 60px 0 0;
}

.paperless_box {
    background-color: var(--background);
    border-radius: 4px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 164px;
    justify-content: center;
}

.paperless_rightpart {
    text-align: center;
    line-height: 40px;
}

    .paperless_rightpart p {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-color);
        line-height: 36px;
    }

        .paperless_rightpart p span {
            color: var(--primary-color);
            font-weight: 700;
        }

    .paperless_rightpart label {
        font-size: 20px;
        font-weight: 800;
        color: var(--primary-color);
    }

        .paperless_rightpart label span {
            padding: 0 0 4px;
            color: var(--secondary-color);
        }

.button_bottom {
    padding: 60px 0 80px;
}

.ticket_button {
    display: flex;
    justify-content: center;
    gap: 40px;
}

    .ticket_button button {
        font-size: 14px;
        font-weight: 400;
        color: var(--pure);
        padding: 11px 28px 10px 28px;
        background-color: var(--primary-color);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
        border: none;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.2s ease;
        -webkit-transition: 0.2s ease;
        -moz-transition: 0.2s ease;
        -ms-transition: 0.2s ease;
        -o-transition: 0.2s ease;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }

        .ticket_button button:hover,
        .ticket_button button:focus {
            background-color: var(--secondary-color);
            transition: 0.2s ease;
            -webkit-transition: 0.2s ease;
            -moz-transition: 0.2s ease;
            -ms-transition: 0.2s ease;
            -o-transition: 0.2s ease;
        }

.panel-heading.eticketprint {
    float: left;
    display: block;
    background-color: transparent !important;
    color: var(--primary-color) !important;
    font-size: 30px;
    font-weight: 600;
    padding: 0;
    width: 100%;
}

.phonebook {
    display: block;
    float: left;
    font-size: 20px;
    color: var(--secondary-color);
    padding: 40px 0 30px;
    margin: 0;
}

.eticketwrap {
    width: 100%;
    float: left;
    padding: 80px 0 30px;
}

.conditions_wrapper_block_detail table tr th {
    color: var(--primary-color);
}

.conditions_wrapper_block_detail table tr td {
    color: var(--text-color);
}

.table-bordered {
    border: none !important;
}

    .table-bordered li {
        color: var(--text-color);
        font-size: 16px;
        font-weight: 500;
        padding: 0 0 10px;
        list-style: none;
    }

.eticketwrap .row b {
    color: var(--primary-color);
    font-size: 16px;
    padding: 0 0 10px;
    float: left;
    width: 100%;
}

.eticketwrap .row li {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    padding: 0 0 10px;
    list-style: none;
}

.privacydatatime span {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 600;
    padding: 0 0 5px;
    float: left;
}

.privacydatable {
    width: 100%;
    float: left;
    padding: 30px 0 0;
}

#seatbooking {
    padding: 30px 0 0;
    color: var(--text-color);
    font-size: 16px;
}

.eticketwrap .form-group h3 {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 600;
}

.eticketp {
    padding: 10px 0 0;
    color: var(--text-color);
    font-size: 16px;
}

.eticketlabel {
    padding: 10px 0 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}
/********** E-Ticket Page Style End Here **********/
/********** Quick Booking Start **********/
.quickbookwrap {
    width: 100%;
    float: left;
    padding: 60px 0;
}

.quicktitle {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 800;
}

.quickpart {
    width: 100%;
    float: left;
    padding: 40px 0 0;
}

.quicktitle02 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
}

.quickboxpart {
    width: 100%;
    float: left;
    padding: 20px 0 0;
}

.quickboxschedule {
    width: 100%;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.quickboxdetail {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-basis: 13%;
    flex-wrap: wrap;
    align-items: stretch;
}

.quickboxschedule table {
    width: 100%;
}

    .quickboxschedule table tr th {
        background-color: var(--primary-color);
        color: var(--pure);
        font-size: 14px;
        line-height: 22px;
        font-weight: 600;
        margin: 0;
        padding: 10px 20px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .quickboxschedule table tr td {
        background-color: var(--pure);
        color: var(--primary-color);
        font-size: 14px;
        line-height: 22px;
        font-weight: 600;
        margin: 0;
        border: 1px solid rgba(9, 47, 63, 0.1);
        padding: 10px 12px;
    }

        .quickboxschedule table tr td:last-child {
            text-align: center !important;
        }

        .quickboxschedule table tr td button {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 6px 14px;
        }

            .quickboxschedule table tr td button:hover, .quickboxschedule table tr td button:focus {
                background-color: var(--primary-color);
                color: var(--pure);
            }

.custinfopopup .css-1pxa9xg-MuiAlert-message {
    font-size: 16px;
    font-weight: 500;
}

.custinfopopup .css-1e0d89p-MuiButtonBase-root-MuiIconButton-root .css-ptiqhd-MuiSvgIcon-root {
    font-size: 20px;
}

/********** Quick Booking End **********/

/********** About Us Page Style Start Here **********/

.innerpage_top {
    width: 100%;
    float: left;
    clear: both;
    padding: 80px 0 0;
}

.innerpage_head {
    width: 100%;
    float: left;
    display: flex;
    align-items: flex-end;
    padding: 0 0 40px;
}

.innerpage_headbooking {
    padding: 0;
}

.innerpage_toptitle {
    width: 100%;
    float: left;
}

.inner_head_title {
    display: inline-block;
    position: relative;
}

    .inner_head_title span {
        font-size: 30px;
        font-weight: 700;
        color: var(--primary-color);
        display: block;
        text-decoration: underline;
    }

.innerpage_titleshape h2 {
    font-size: 46px;
    font-weight: 600;
    color: var(--pure);
    text-transform: capitalize;
    display: inline-block;
    position: relative;
}

.innerpage_titleshape {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 0 0 0 40px;
    margin: -50px 0 0;
}

    .innerpage_titleshape em {
        height: 4px;
        width: 86px;
        background-color: var(--secondary-color);
        display: inline-block;
    }

.innerpage_wrapper {
    width: 100%;
    float: left;
    clear: both;
    padding: 0 0 80px;
    /* background-color: var(--background); */
}

.aboutus_wrapper {
    display: flex;
    width: 100%;
}

.aboutus_content_left {
    flex-basis: 80%;
}

.aboutus_content_right {
    flex-basis: 20%;
}

.aboutus_content_main {
    width: 100%;
    float: left;
}

    .aboutus_content_main p {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-color);
        padding: 0 0 26px;
        text-align: justify;
        line-height: 24px;
    }

        .aboutus_content_main p:last-child {
            padding: 0;
            margin: 0;
        }

        .aboutus_content_main p em {
            font-style: normal;
            color: var(--secondary-color);
            font-weight: 600;
        }

    .aboutus_content_main ul {
        padding: 0 0 26px 16px;
    }

        .aboutus_content_main ul li {
            list-style-type: auto;
            font-size: 16px;
            font-weight: 400;
            color: var(--text-color);
            line-height: 28px;
        }

/********** About Us Page Style End Here **********/
/********** Contact Us Page Style Start Here **********/

.contactus_wrapper {
    width: 100%;
    clear: both;
    float: left;
    /*padding: 20px 0 0;*/
}

.contact_headoffice {
    width: 100%;
    float: left;
    position: relative;
}

.contact_headoffice_map {
    width: 100%;
    float: left;
}

.contact_headoffice_detail {
    /*position: absolute;*/
    /*background-color: var(--primary-color);*/
    /*left: 0;
    top: -20px;*/
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    /* box-shadow: 0px 10px 20px rgba(0, 35, 90, 0.5);*/
}

    .contact_headoffice_detail h2 {
        color: #092f53;
        font-size: 32px;
        font-weight: 700;
        line-height: normal;
        font-family: 'Manrope';
    }

    .contact_headoffice_detail h5 {
        font-size: 18px;
        font-weight: 400;
        color: var(--pure);
        padding: 0 0 10px;
        margin: 0 0 20px;
        border-bottom: 1px solid var(--white-text-opacity);
    }

    .contact_headoffice_detail p {
        font-size: 16px;
        font-weight: 400;
        color: var(--white-text-opacity);
        line-height: 28px;
    }

        .contact_headoffice_detail p span {
            color: var(--secondary-color);
        }

.contact_suboffice {
    width: 100%;
    float: left;
    /* padding: 40px 0 0; */
}

    .contact_suboffice .filter-drawer {
        margin-bottom: 0;
        border: 1px solid var(--border-color);
        background-color: var(--pure);
        border-radius: 4px;
        padding: 20px 30px;
    }

    .contact_suboffice .cityaddname {
        font-size: 22px;
        font-weight: 600;
        color: var(--secondary-color);
        margin: 10px 0 20px;
        flex-basis: 100%;
        /*grid-column: 1/5;*/
    }

    .contact_suboffice .filter_tab_main {
        padding: 0 0 20px;
        flex-basis: 24%;
        /*width: 100%;*/
    }

        .contact_suboffice .filter_tab_main h5 {
            padding: 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--head-text-color);
            border-bottom: 1px solid var(--border-color);
            padding: 0 0 8px;
        }

        .contact_suboffice .filter_tab_main p {
            font-size: 14px;
            font-weight: 400;
            color: var(--head-text-color);
            line-height: 22px;
            padding: 0;
            margin: 0;
        }

            .contact_suboffice .filter_tab_main p span {
                color: var(--secondary-color);
            }

.contactbar-content {
    /*display: flex;
    justify-content: space-between;
    flex-wrap: wrap;*/
    width: 100%;
    float: left;
}

    .contactbar-content .Row {
        flex-basis: 100%;
        display: flex;
        /*grid-template-columns: repeat(4, 24%);*/
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
        /*column-gap: 18px;*/
    }

.contact_suboffice_title {
    width: 100%;
    float: left;
}

    .contact_suboffice_title h5 {
        display: inline-block;
        font-size: 20px;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 0;
    }

/********** Contact Us Page Style End Here **********/
/********** Feedback Page Style Start Here **********/

.feedback_wrapper {
    width: 100%;
    float: left;
    clear: both;
    padding: 80px 0;
}

.feedbackpage {
    width: 100%;
    float: left;
}

.feedbkformgroup {
    width: 100%;
    float: left;
    padding: 40px 0 0;
}

.feedbkinput {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
}

    .feedbkinput label {
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        padding: 0 0 8px;
    }

    .feedbkinput .col-lg-6 {
        padding: 0;
        max-width: none;
        flex-basis: 48.5%;
    }

    .feedbkinput .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-16awh2u-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
        padding: 0 !important;
    }

    .feedbkinput input {
        padding: 0 0 0 20px !important;
        border: 1px solid rgba(9, 47, 83, 0.15);
        height: 42px;
        color: var(--text-color);
        outline: none;
        font-size: 15px;
    }

    .feedbkinput .form-control:focus {
        color: var(--text-color);
        border-color: var(--secondary-color);
        box-shadow: none;
    }

    .feedbkinput textarea {
        height: 80px;
        border: 1px solid rgba(9, 47, 83, 0.15);
        font-size: 15px;
    }

.agntpgcaptcha {
    width: 100%;
    float: left;
}

    .agntpgcaptcha .col-sm-12 {
        padding: 25px 0 0 !important;
    }

    .agntpgcaptcha label {
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        padding: 0 0 12px;
    }

    .agntpgcaptcha .form-control:focus {
        color: var(--text-color);
        border-color: var(--secondary-color);
        box-shadow: none;
    }

    .agntpgcaptcha .btn-primary {
        color: #fff;
        background-color: var(--primary-color);
        border: none !important;
        padding: 10px 26px;
        float: left;
        font-size: 16px;
    }

        .agntpgcaptcha .btn-primary:hover, .agntpgcaptcha .btn-primary:focus {
            color: var(--primary-color) !important;
            background-color: var(--secondary-color) !important;
            box-shadow: none !important;
        }

.web_input {
    width: 100%;
    float: left;
    padding: 0 0 20px;
    position: relative;
}

    .web_input label {
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
        display: block;
        padding: 0 0 8px;
        margin: 0;
    }

    .web_input input {
        width: 100%;
        height: 56px;
        border: 1px solid var(--border-color);
        background-color: var(--pure);
        border-radius: 2px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        padding: 0 0 0 10px;
    }

        .web_input input:active,
        .web_input input:focus,
        .web_input input:target,
        .web_input input:focus-visible {
            border: 1px solid var(--secondary-color);
            background-color: #fffaf8;
            box-shadow: none;
            outline: none;
        }

    .web_input textarea {
        width: 100%;
        height: 86px;
        border: 1px solid var(--border-color);
        background-color: var(--pure);
        border-radius: 2px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        padding: 10px;
    }

        .web_input textarea:active,
        .web_input textarea:focus,
        .web_input textarea:target,
        .web_input textarea:focus-visible {
            border: 1px solid var(--secondary-color);
            background-color: #fffaf8;
            box-shadow: none;
            outline: none;
        }

    .web_input span {
        padding: 10px 0 20px;
        float: left;
    }

        .web_input span a {
            color: var(--head-text-color);
            font-weight: 600;
            border-bottom: 1px solid var(--secondary-color);
        }


    .web_input .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-16awh2u-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
        padding-right: 0;
    }

    .web_input .css-16awh2u-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
        padding: 0 10px;
    }

    .web_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:before {
        border-bottom: none;
    }

    .web_input .MuiAutocomplete-hasPopupIcon.css-16awh2u-MuiAutocomplete-root .MuiAutocomplete-inputRoot,
    .web_input .MuiAutocomplete-hasClearIcon.css-16awh2u-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
        padding-right: 0;
    }

    .web_input .css-1x51dt5-MuiInputBase-input-MuiInput-input {
        font-family: 'Poppins', sans-serif !important;
    }

.web_input_bluebtn {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 15px 0 0;
}

.theme_buton_s1 {
    background-color: var(--primary-color);
    color: var(--pure);
    border: 1px solid var(--primary-color);
    box-shadow: 0px 10px 20px rgba(0, 35, 90, 0.5);
    font-size: 15px;
    padding: 14px 38px;
    text-transform: capitalize;
    font-weight: 400;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    display: block;
    float: left;
    cursor: pointer;
    letter-spacing: 0.5px;
}

    .theme_buton_s1:hover,
    .theme_buton_s1:focus {
        background-color: var(--secondary-color);
        border: 1px solid var(--secondary-color);
        box-shadow: 0px 10px 20px rgba(255, 94, 20, 0.5);
    }

/********** Feedback Us Page Style End Here **********/
/********** Cancellation Page Style Start Here **********/

.cancellation_wrapper {
    width: 100%;
    float: left;
    clear: both;
}

.cancellation_policy_list {
    padding: 20px 40px 20px !important;
}

    .cancellation_policy_list ul {
        padding: 10px 0 0;
        margin: 0;
    }

        .cancellation_policy_list ul li {
            font-size: 16px;
            font-weight: 500;
            color: var(--primary-color);
            padding: 0 0 10px;
            text-align: justify;
            line-height: normal;
            list-style-type: square;
        }

            .cancellation_policy_list ul li p {
                line-height: 24px;
            }

/********** Cancellation Page Style End Here **********/
/********** FAQ's Page Style Start Here **********/

.faq_wrapper {
    width: 100%;
    float: left;
    clear: both;
}

.faq_content_list {
    width: 100%;
    float: left;
}

    .faq_content_list .contact_suboffice_title {
        padding: 40px 0 0px 30px;
    }

    .faq_content_list .filter_tab_main {
        padding: 20px 0 0;
        float: left;
        width: 100%;
    }

    .faq_content_list .filter-drawer__content p {
        font-size: 14px;
        font-weight: 400;
        color: var(--text-color);
    }

    .faq_content_list .filter-drawer__content em {
        font-style: normal;
        font-weight: 500;
        color: var(--secondary-color);
    }

    .faq_content_list .filter-drawer__content ul {
        padding: 0 0 0 20px;
    }

        .faq_content_list .filter-drawer__content ul li {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-color);
            padding: 0 0 4px;
            text-align: justify;
            line-height: normal;
            list-style-type: square;
        }

/********** FAQ's Page Style End Here **********/
/********** T&C Page Style Start Here **********/

.conditions_wrapper {
    width: 100%;
    display: flex;
}

.conditions_wrapper_left {
    flex-basis: 80%;
}

.conditions_wrapper_right {
    flex-basis: 20%;
}

.conditions_wrapper .contact_suboffice_title {
    padding: 0 0 20px;
}

.conditions_wrapper_block_detail {
    width: 100%;
    float: left;
    padding: 25px 0 30px;
}

    .conditions_wrapper_block_detail p {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-color);
        padding: 0 0 15px;
        text-align: justify;
        line-height: 24px;
        margin: 0;
    }

        .conditions_wrapper_block_detail p:last-child {
            padding: 0;
        }

    .conditions_wrapper_block_detail li p {
        color: var(--secondary-color);
    }

.redtext {
    color: var(--secondary-color);
    font-weight: 500;
}

/********** T&C Page Style End Here **********/


/********** DatePicker Style Start Here **********/


.datepicker .datepicker-switch, .datepicker .prev, .datepicker .next, .datepicker tfoot tr th {
    cursor: pointer;
    background-color: #f8f9fc;
    top: 55px;
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 800;
    width: 28px;
    height: 40px;
}

    .datepicker .datepicker-switch:hover,
    .datepicker .prev:hover,
    .datepicker .next:hover,
    .datepicker tfoot tr th:hover {
        background: #F8F9FC;
    }

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
    background-color: var(--primary-color) !important;
    color: var(--pure) !important;
    background-image: none !important;
}

.datepicker td,
.datepicker th {
    text-align: center;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

    .datepicker td.active {
        background-color: var(--secondary-color);
        color: var(--primary-colorF) !important;
    }

    .datepicker td.new {
        opacity: 0.4;
    }

    .datepicker td.disabled {
        opacity: 0.4;
    }

    .datepicker td span {
        display: block;
    }
/********** DatePicker Style End Here **********/
/********** Pay Online Style Start Here **********/
.payonlineother {
    width: 100%;
    float: left;
    padding: 60px 0 0;
}

.canclrefund {
    width: 100%;
    float: left;
}

.payonlinerefnd {
    width: 100%;
    float: left;
    display: none;
}

.payonlinerefnd02 {
    width: 100%;
    float: left;
}

.payonlinerefnd02 {
    width: 100%;
    float: left;
    display: flex;
    justify-content: flex-start;
    padding: 0 0 40px;
}

.payonline_box {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--text-color);
    align-items: flex-start;
}

.refundtitle {
    padding: 0 0 5px;
}

.refundata {
    color: var(--head-text-color);
    font-weight: 500;
    /*border-top: 1px solid var(--text-color);*/
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 15px;
}


/********** Pay Online Style End Here **********/








/********** My Booking Page Style Start Here **********/

.bookinglist_tabs {
    position: relative;
    min-height: 560px;
    clear: both;
    margin: 25px 0;
}

    .bookinglist_tabs .season_tab {
        float: left;
        clear: both;
        width: 286px;
    }

        .bookinglist_tabs .season_tab [type=radio] {
            display: none;
        }

.season_tab label {
    background-color: var(--pure);
    padding: 10px 10px 10px 10px;
    border: 1px solid var(--primary-color);
    margin-left: 0;
    font-size: 16px;
    vertical-align: middle;
    position: relative;
    width: 264px;
    height: 58px;
    display: table-cell;
    color: var(--head-text-color);
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
}

.season_tab [type="radio"]:checked ~ label {
    background: var(--primary-color);
    border-left: 7px solid var(--secondary-color);
    z-index: 1;
    color: var(--pure);
}

.bookinglist_tabs .season_content {
    position: absolute;
    top: 0;
    left: 286px;
    right: 0;
    bottom: 0;
    padding: 0px;
}

[type=radio]:checked ~ label ~ .season_content {
    z-index: 0;
}

.season_content .container-fluid {
    float: left;
    max-width: 100%;
}

.mybooking-tabs {
    width: 100%;
    float: left;
    background-color: var(--primary-color);
    padding: 0;
}


    .mybooking-tabs .tab-list {
        padding-left: 0;
        padding-right: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        float: left;
    }

        .mybooking-tabs .tab-list > li {
            padding: 20px 3%;
            border-left: 1px solid var(--pure);
            text-align: center;
            float: left;
            cursor: pointer;
        }

            .mybooking-tabs .tab-list > li:first-child {
                border-left: none;
            }

            .mybooking-tabs .tab-list > li > h3 {
                font-weight: 600;
                display: block;
                transition: all 500ms ease;
                font-size: 16px;
                color: var(--pure);
                text-transform: uppercase;
            }

            .mybooking-tabs .tab-list > li:hover > h3, .mybooking-tabs .tab-list > li.active > h3 {
                color: var(--secondary-color);
            }

.mybooking_tabscontent {
    width: 100%;
    float: left;
    padding: 0 !important;
    max-height: 554px;
    overflow-y: scroll;
}

    .mybooking_tabscontent::-webkit-scrollbar {
        height: 4px;
    }

    .mybooking_tabscontent::-webkit-scrollbar-thumb {
        height: 4px;
    }


    .mybooking_tabscontent table {
        border: 2px solid #E6E6E6;
        width: 100%;
        text-align: center;
    }

        .mybooking_tabscontent table thead tr {
            background-color: var(--background);
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 400;
        }

            .mybooking_tabscontent table thead tr th {
                padding: 20px 0px;
                border: 1px solid #E6E6E6;
                text-align: center;
                font-weight: 400;
            }

.profileinputdetails {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .profileinputdetails .tabtitle {
        background-color: var(--pure);
        text-align: center;
        color: var( --head-text-color);
        font-weight: 500;
        flex-basis: 49%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border: 1px solid var( --text-color);
        padding: 20px 0;
    }

    .profileinputdetails label {
        display: flex;
        flex-basis: 100%;
        justify-content: center;
        height: auto;
        border: none;
        background-color: transparent;
        padding: 5px 0 5px;
        font-size: 16px;
        font-weight: 600;
    }

    .profileinputdetails .profileinputdata label {
        font-size: 16px;
        font-weight: 600;
        background: transparent;
        display: inline-block;
        flex-basis: auto;
    }

    .profileinputdetails span {
        font-size: 16px;
        color: var(--secondary-color);
        font-weight: 500;
    }


.walletdatainfo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    overflow: auto;
    border: 1px solid var(--primary-color);
    padding: 10px;
    width: 100%;
    height: auto;
    max-height: 440px;
}

.walletdtls {
    display: flex;
    justify-content: flex-end;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 0;
}

    .walletdtls span.wallethistry {
        position: relative;
        font-weight: 600;
        background-color: var(--primary-color);
        color: var(--pure);
        padding: 10px 30px 10px;
        border-radius: 3px;
        margin: 0 0 10px;
        display: flex;
        flex-wrap: wrap;
        cursor: pointer;
    }

.walletdatainfo .walletdtlsinfo {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 0 5px;
}

    .walletdatainfo .walletdtlsinfo .walletcol {
        flex-basis: 50%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-items: center;
        border: 2px solid var(--border-color);
        gap: 5px;
        padding: 4px 0 4px 10px;
    }

        .walletdatainfo .walletdtlsinfo .walletcol p {
            display: flex;
            flex-wrap: wrap;
            justify-content: left;
            flex-basis: 100%;
            font-weight: 600;
            font-size: 16px;
            color: var(--head-text-color);
        }

        .walletdatainfo .walletdtlsinfo .walletcol em {
            display: flex;
            font-style: normal;
        }

        .walletdatainfo .walletdtlsinfo .walletcol.wlletcrdt {
            color: var(--head-text-color);
            font-weight: 600;
        }

            .walletdatainfo .walletdtlsinfo .walletcol.wlletcrdt span {
                color: #008f0b;
            }

                .walletdatainfo .walletdtlsinfo .walletcol.wlletcrdt span.walletdebit {
                    color: var(--secondary-color);
                }

.mybooking_tabscontent table tbody tr td {
    padding: 20px 0px;
    border: 1px solid #E6E6E6;
    font-weight: 400;
}

.profileinputdetails {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 0px 0;
}

    .profileinputdetails .web_input {
        width: 45%;
        float: left;
        padding: 0 0 20px;
    }

        .profileinputdetails .web_input label {
            justify-content: flex-start;
        }


    .profileinputdetails.profileinputdetailsbtn {
        padding: 40px 0 0;
    }

    .profileinputdetails.profileinputdetails01 .web_input {
        width: 80%;
        float: left;
        padding: 0 0 20px;
    }

.web_inputterms {
    padding: 10px 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

    .web_inputterms span {
        padding: 0;
    }

        .web_inputterms span svg {
            font-size: 24px;
        }

    .web_inputterms label {
        padding: 0;
    }

    .web_inputterms a {
        font-size: 17px;
        color: var(--primary-color) !important;
        font-weight: 600;
    }

.profileinputdata .MuiFormGroup-root.MuiFormGroup-row.css-qfz70r-MuiFormGroup-root {
    display: flex;
}

.profileinputdata .MuiFormControlLabel-root.MuiFormControlLabel-labelPlacementTop.css-1hpqosy-MuiFormControlLabel-root {
    flex-basis: 34%;
    margin: 0;
}

.profileinputdata {
    width: 45%;
}

.css-3yjvh5-MuiPaper-root-MuiAlert-root {
    font-family: 'Poppins', sans-serif !important;
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    font-size: 18px !important;
}

    /*.css-3yjvh5-MuiPaper-root-MuiAlert-root .css-3yjvh5-MuiPaper-root-MuiAlert-root {
    font-family: 'Poppins', sans-serif !important;
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    font-size: 18px !important;
}*/

    .css-3yjvh5-MuiPaper-root-MuiAlert-root .MuiAlert-icon {
        color: var(--primary-color) !important;
    }

.login_popup_main .css-1e0d89p-MuiButtonBase-root-MuiIconButton-root {
    color: var(--primary-color);
}

    .login_popup_main .css-1e0d89p-MuiButtonBase-root-MuiIconButton-root .css-ptiqhd-MuiSvgIcon-root {
        font-size: 20px;
    }

.tab-content .css-1e0d89p-MuiButtonBase-root-MuiIconButton-root .css-ptiqhd-MuiSvgIcon-root {
    font-size: 20px;
}

/********** My Booking Page Style End Here **********/
/*Modify Ticket Page Style Start Here*/
.modify_ticket_popup {
    width: 100%;
    float: left;
}

    .modify_ticket_popup .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        max-width: 1440px !important;
        width: 100% !important;
    }

    .modify_ticket_popup .css-ypiqx9-MuiDialogContent-root {
        padding: 20px 20px 40px;
    }

    .modify_ticket_popup .css-qfz70r-MuiFormGroup-root {
        padding: 20px 0 20px;
        border-bottom: 2px solid var(--secondary-color);
    }

    .modify_ticket_popup .css-1hpqosy-MuiFormControlLabel-root {
        display: inline-block;
        margin-right: 16px;
    }

    .modify_ticket_popup .css-vqmohf-MuiButtonBase-root-MuiRadio-root.Mui-checked {
        color: var(--head-text-color);
    }

    .modify_ticket_popup .css-yiavyu-MuiBackdrop-root-MuiDialog-backdrop {
        background-color: rgba(10, 18, 41, 0.9);
    }

.modifypopupwrapper {
    width: 100%;
    float: left;
}

.modifyticketcontent {
    width: 100%;
    float: left;
    position: relative;
}

.modifyarticledetails {
    width: 100%;
    float: left;
    padding: 40px 0 0;
}

.modify_ticket_popup .web_input .css-16awh2u-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
    padding: 0 0 0 10px;
}

.modify_ticket_popup .web_input .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-16awh2u-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
    padding-right: 0;
}

.modify_ticket_popup .web_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:before {
    border-bottom: none;
}

.modify_ticket_popup .web_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:hover:not(.Mui-disabled):before {
    border-bottom: none;
}

.modify_ticket_popup .web_input .css-1tb7pjp-MuiInputBase-root-MuiInput-root:after {
    border-bottom: none;
}

.modify_ticket_popup .web_input .MuiAutocomplete-hasPopupIcon.css-16awh2u-MuiAutocomplete-root .MuiAutocomplete-inputRoot,
.modify_ticket_popup .web_input .MuiAutocomplete-hasClearIcon.css-16awh2u-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
    padding-right: 0;
}

.modify_ticket_popup .tlrefund {
    width: 100%;
    float: left;
    padding: 40px 0 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--head-text-color);
}

.tlrefund span {
    padding: 10px 0 20px;
    float: none;
    display: inline-block;
}

.partialdata {
    width: 70%;
    float: none;
    text-align: center;
    position: relative;
    left: 0;
    right: 0;
    margin: 40px auto 20px;
    box-shadow: 0px 8px 14px rgba(0, 0, 0, 0.10);
    display: flow-root;
}

.partialdatatitle {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    background-color: var(--primary-color);
    color: var( --pure);
}

    .partialdatatitle span {
        flex-basis: 25%;
        float: left;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        padding: 0 0 0 20px;
    }

.partialdatadetails {
    width: 100%;
    float: left;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .partialdatadetails p {
        flex-basis: 25%;
        float: left;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        padding: 0 0 0 20px;
    }

.modify_ticket_popup .mybooking_tabscontent {
    overflow-y: auto;
}

.alert_popup .css-hlj6pa-MuiDialogActions-root {
    -webkit-justify-content: center;
    justify-content: center;
}


/*Modify Ticket Page Style End Here*/


/*Partial Cancel Popup Style Start Here*/

.patrialdialogue .css-yiavyu-MuiBackdrop-root-MuiDialog-backdrop {
    background-color: rgba(10, 18, 41, 0.9);
}

.patrialdialogue .css-1t1j96h-MuiPaper-root-MuiDialog-paper {
    width: 100%;
}

.patrialdialoguedata {
    width: 100%;
    float: left;
}

.patrialdialogue .patrialdialoguetitle {
    font-size: 18px;
    font-weight: 600;
    padding: 0 0 16px;
    width: 100%;
    float: left;
    border-bottom: 2px solid var(--secondary-color);
}

.patrialdialogue .patrialdialoguedetails {
    width: 100%;
    float: left;
}

.partialdatadetails {
    width: 100%;
    float: left;
    border-bottom: 1px solid #999;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.patrialdialogue .partialdatadetails {
    border-bottom: none;
}

.partialdatadetails p {
    flex-basis: 25%;
    float: left;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 0 20px;
}

.patrialdialogue .css-hlj6pa-MuiDialogActions-root {
    padding: 20px 20px 0;
    border-top: 2px solid var(--text-color);
    margin: 0px 20px 20px;
}

.cancelstusinfo {
    width: 100%;
    float: left;
    padding: 20px 0 20px;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 2px solid var(--secondary-color);
}

.cancelstatusnewpnr {
    width: 100%;
    float: left;
    text-align: right;
    padding: 20px 0 0;
}

    .cancelstatusnewpnr span {
        font-size: 18px;
        font-weight: 700;
        color: var(--secondary-color);
    }

.cancellationother.cancelstatus {
    width: 100%;
    float: left;
    padding: 0;
    margin: 40px 0 0;
    border: none;
}

.canclrefund {
    width: 100%;
    float: left;
    padding: 0;
}

.cancelstatustlt {
    width: 100%;
    float: left;
}

.cancelstatusdata {
    width: 100%;
    float: left;
}

.canclrefund .companytq {
    width: 100%;
    float: left;
    padding: 20px 0 0;
    font-size: 18px;
    font-weight: 700;
}

.canclrefund .refundtitle {
    background-color: var(--primary-color);
    color: var(--pure);
    padding: 10px 12px;
    text-align: center;
    width: 100%;
    display: inline-block;
}

#wrapper .panel-primary, #wrapper .panel {
    border-color: none !important;
    border: none !important;
    box-shadow: none !important;
}

.payonlinerefndbox.payonlineroceed {
    float: left;
    width: 100%;
}

.refundata button {
    font-size: 15px;
    font-weight: 500;
    color: var(--background);
    background-color: var(--primary-color);
    border: none;
    padding: 14px 35px 15px;
    border-radius: 4px;
    margin: 30px 0 0;
}

    .refundata button:hover, .refundata button:focus {
        color: var(--primary-color);
        background-color: var(--secondary-color);
    }

.refundtitle.refundtitleshow {
    display: none;
}

.refundata.refundatabtn {
    text-align: center;
    padding: 0;
}

.canclrefund .col-lg-2 {
    float: left;
}

.canclrefund .col-lg-1 {
    float: left;
}

.canclrefund .tlrefund {
    width: 100%;
    float: left;
    padding: 40px 0 0;
    font-size: 18px;
}

    .canclrefund .tlrefund span {
        font-weight: 600;
        color: var(--secondary-color);
    }

.canclrefund .companytq {
    width: 100%;
    float: left;
    padding: 20px 0 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}
/*Partial Cancel Popup Style End Here*/


/*Loader Style Start Here*/

#preloader {
    position: fixed;
    /* top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;*/
    /*right: 0;
    bottom: 0;*/
    background-image: none;
    z-index: 9999999;
    height: 100% !important;
    width: 100% !important;
    background-color: rgba(10, 18, 41, 0.9);
    backdrop-filter: blur(5px);
    --webkit-backdrop-filter: blur(5px);
}

/*#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    z-index: 9999999;
    height: 100%;
    width: 100%;
    background-color: rgba(10, 18, 41, 0.9);
    backdrop-filter: blur(5px);
    --webkit-backdrop-filter: blur(5px);
}


.cssload-loader {
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 115px);
    width: 245px;
    height: 70px;
    border-radius: 50%;
    perspective: 800px;
    font-family: 'Poppins', sans-serif !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    color: var(--secondary-color);
    letter-spacing: 0.2em;
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
    -webkit-transition: height 1s ease-in-out;
    -moz-transition: height 1s ease-in-out;
    -o-transition: height 1s ease-in-out;
    transition: height 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}*/


/*.cssload-loader {
    width: 244px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif !important;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 18px;
    color: var(--secondary-color);
    letter-spacing: 0.2em;
}*/

/* .cssload-loader::before, .cssload-loader::after {
        content: "";
        display: block;
        width: 15px;
        height: 15px;
        background: var(--secondary-color);
        position: absolute;
        animation: cssload-load 0.81s infinite alternate ease-in-out;
        -o-animation: cssload-load 0.81s infinite alternate ease-in-out;
        -ms-animation: cssload-load 0.81s infinite alternate ease-in-out;
        -webkit-animation: cssload-load 0.81s infinite alternate ease-in-out;
        -moz-animation: cssload-load 0.81s infinite alternate ease-in-out;
    }

    .cssload-loader::before {
        top: 0;
    }

    .cssload-loader::after {
        bottom: 0;
    }



@keyframes cssload-load {
    0% {
        left: 0;
        height: 29px;
        width: 15px;
    }

    50% {
        height: 8px;
        width: 39px;
    }

    100% {
        left: 229px;
        height: 29px;
        width: 15px;
    }
}

@-o-keyframes cssload-load {
    0% {
        left: 0;
        height: 29px;
        width: 15px;
    }

    50% {
        height: 8px;
        width: 39px;
    }

    100% {
        left: 229px;
        height: 29px;
        width: 15px;
    }
}

@-ms-keyframes cssload-load {
    0% {
        left: 0;
        height: 29px;
        width: 15px;
    }

    50% {
        height: 8px;
        width: 39px;
    }

    100% {
        left: 229px;
        height: 29px;
        width: 15px;
    }
}

@-webkit-keyframes cssload-load {
    0% {
        left: 0;
        height: 29px;
        width: 15px;
    }

    50% {
        height: 8px;
        width: 39px;
    }

    100% {
        left: 229px;
        height: 29px;
        width: 15px;
    }
}

@-moz-keyframes cssload-load {
    0% {
        left: 0;
        height: 29px;
        width: 15px;
    }

    50% {
        height: 8px;
        width: 39px;
    }

    100% {
        left: 229px;
        height: 29px;
        width: 15px;
    }
}*/


/*div[class$="loader_background"] {
    background-color: var(--primary-color);
    width: 240px;
    position: fixed;
    display: flex;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    padding-bottom: 240px;
    transform: translate(-50%, -50%);
}*/

/*bus body*/

.bus-body {
    width: 180px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

div[class*="bus-body2"] {
    Width: 150px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin: auto;
    display: block;
    animation: bobbing 1s infinite ease-in-out forwards alternate;
}

@keyframes bobbing {
    0% {
        transform: rotate(0) translateY(0);
    }

    100% {
        transform: rotate(0.1deg) translateY(5px);
    }
}

[class^="wheel"] {
    Width: 20px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin: auto;
    position: fixed;
    display: inline-block;
    -webkit-transform-origin: 8.5px 8.5px;
    -webkit-animation: spin .8s infinite;
    animation: spin 0.8s infinite linear;
}

div[class$="front"] {
    left: 20%;
    bottom: -2%;
}

div[class$="back"] {
    left: 64%;
    bottom: -2%;
}

div[class$="back2"] {
    left: 75%;
    bottom: -2%;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* effects*/

.shine {
    width: 80%;
    height: 30%;
    right: 9%;
    top: 10%;
    position: fixed;
    z-index: 1;
    transform: skew(13deg, 1deg);
    border-radius: 56px 100px 20px 0;
    background: linear-gradient(to right, transparent 76%, rgba(255, 255, 255, 0.8) 78%, rgba(255, 255, 255, 0.8) 96%, transparent 98%);
    background-repeat: no-repeat;
    animation: shine 6s infinite ease forwards reverse;
}

@keyframes shine {
    0% {
        opacity: 0.1;
        background-position: 50px top;
    }

    30% {
        opacity: 1;
    }

    50%, 100% {
        opacity: 0.2;
        background-position: -500px 0;
    }
}


.speed-light {
    position: absolute;
    width: 20px;
    border-radius: 10px;
    height: 5%;
    background: #fff;
    top: -8%;
    left: 50%;
    animation: light 6s infinite ease forwards;
}

    .speed-light.second {
        top: 50%;
        left: 30%;
        animation-delay: 0.1s;
    }

@keyframes light {
    0% {
        transform: translateX(0);
        width: 0;
        opacity: 0;
    }

    10% {
        width: 10%;
        opacity: 1;
    }

    30%, 100% {
        transform: translateX(250px);
        width: 0;
        opacity: 0;
    }
}

/*loader*/

div.loader {
    margin: auto;
    top: 59%;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    color: white;
    font-size: 20px;
}

.loader span {
    animation: fadeinout 3s linear forwards infinite;
    /* animation: loading 0.85s ease-in-out infinite alternate; */
}

@-webkit-keyframes fadeinout {

    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeinout {

    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.loader span:nth-child(2) {
    animation-delay: 0.15s;
}

.loader span:nth-child(3) {
    animation-delay: 0.30s;
}

.loader span:nth-child(4) {
    animation-delay: 0.45s;
}

.loader span:nth-child(5) {
    animation-delay: 0.60s;
}

.loader span:nth-child(6) {
    animation-delay: 0.75s;
}

.loader span:nth-child(7) {
    animation-delay: 0.90s;
}


/*Loader Style End Here*/


/*Payment Failed Style Start Here*/

.payment_failed span {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 0 10px;
    float: left;
    width: 100%;
}

.payment_failed p {
    font-size: 16px;
    color: var(--text-color);
    padding: 10px 0 40px;
    margin: 0;
    font-weight: 500;
    float: left;
    width: 100%;
}

    .payment_failed p em {
        color: var(--secondary-color);
        font-style: normal;
        font-weight: 600;
    }

.payment_failed li {
    display: inline-block;
    vertical-align: middle;
}

    .payment_failed li a {
        font-size: 16px;
        font-weight: 600;
        color: var(--pure);
        background-color: var(--primary-color);
        padding: 10px 20px;
        display: inline-block;
        vertical-align: middle;
    }

        .payment_failed li a:hover, .payment_failed li a:focus {
            color: var(--primary-color);
            background-color: var(--secondary-color);
        }


/*Payment Failed Style End Here*/



/*Gallery Page Style Start Here*/


.gallery_wrapper {
    width: 100%;
    float: left;
}

    .gallery_wrapper .gallery-section {
        position: relative;
        z-index: 1;
    }


    .gallery_wrapper .filter {
        display: flex;
        justify-content: center;
    }

    .gallery_wrapper .theme_buton_s2 {
        background-color: var(--primary-color);
        color: var(--pure);
        box-shadow: 0px 10px 20px rgba(0, 35, 90, 0.5);
        font-size: 14px;
        padding: 14px 38px;
        text-transform: capitalize;
        font-weight: 400;
        border-radius: 2px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        display: block;
        float: left;
        cursor: pointer;
        letter-spacing: 0.5px;
        margin: 0 10px 20px;
    }

        .gallery_wrapper .theme_buton_s2:hover, .gallery_wrapper .btn-active {
            background: var(--secondary-color);
            color: var(--pure);
            -webkit-transform: translateY(2px);
            -ms-transform: translateY(2px);
            transform: translateY(2px);
            box-shadow: 0px 10px 20px rgba(255, 94, 20, 0.5);
        }

    .gallery_wrapper .gallery {
        display: flex;
        justify-content: center;
        width: fit-content;
        flex-wrap: wrap;
        margin: 25px auto;
        /* gap: 14px; */
        width: 100%;
    }

        .gallery_wrapper .gallery a {
            display: flex;
        }

        .gallery_wrapper .gallery img {
            width: 280px;
            height: 160px;
            object-fit: cover;
            transition: 0.3s ease-in-out;
            border-radius: 2px;
            overflow: hidden;
            margin: 10px 10px;
        }

            .gallery_wrapper .gallery img:hover {
                transform: scale(1.1);
            }

.galleryparts .panel {
    border: none !important;
    box-shadow: none !important;
}

.galleryparts .panel-primary {
    border-color: none !important;
}

.galleryparts {
    width: 100%;
    float: left;
    padding: 80px 0;
}

.gallerywrap {
    width: 100%;
    float: left;
}

    .gallerywrap .column {
        float: left;
        width: 25%;
        padding: 5px;
    }

    .gallerywrap .modal {
        display: none;
        position: fixed;
        z-index: 3;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        z-index: 999999;
        background-color: rgba(0,0,0,0.6);
    }

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 800px;
}

/* The Close Button */
.closebutton {
    color: #ffffff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    opacity: 0.6;
}

    .closebutton:hover,
    .closebutton:focus {
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.9;
    }

.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 6px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

img.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.sets .hide,
.sets .pophide {
    width: 0%;
    opacity: 0;
}

.closeBtn {
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    right: 25px;
    top: 25px;
    color: var(--pure);
    transition: 0.2s linear;
    padding: 8px 26px;
    border-radius: 2px;
    background: var(--secondary-color);
    outline: none;
    border: none;
    box-shadow: none;
}

    .closeBtn:hover {
        cursor: pointer;
        background: var(--primary-color);
        color: var(--pure);
        outline: none;
        border: none;
        box-shadow: none;
    }

.openDiv {
    width: 100%;
    height: 100vh;
    background: #000000e7;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    z-index: 9999;
}

.imgPreview {
    width: 70%;
    object-fit: scale-down;
    max-height: 40vw;
    height: auto;
}

.prevButton,
.nextButton {
    transition: 0.2s linear;
    padding: 10px 35px;
    font-size: 12px;
    border: none;
    color: var(--pure);
    background: #0005;
    border-radius: 2px;
    border: 1px solid var(--pure);
    margin: 10px;
    cursor: pointer;
}

    .prevButton:hover,
    .nextButton:hover {
        background: var(--secondary-color);
        color: var(--pure);
    }


/*Gallery Page Style End Here*/



/*Offer Page Style Start Here*/

.offer_wrapper {
    width: 100%;
    float: left;
}

.offer_card {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

    .offer_card img {
        max-width: 350px;
    }

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../css/fonts/glyphicons-halflings-regular.eot);
    src: url(../css/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../css/fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../css/fonts/glyphicons-halflings-regular.woff) format('woff'),url(../css/fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../css/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
}

.glyphicon-arrow-right:before {
    content: "\e092";
}

.glyphicon-arrow-left:before {
    content: "\e091";
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

/*Offer Page Style End Here*/

/**********  Media query Start Here  **********/
@media only screen and (max-width: 1899px) {
    .sliderwrapper {
        padding: 50px 0 0;
        background-color: #d6e1e7;
    }

    .headermenu .navbar-inverse .navbar-nav > li > a {
        padding: 16px 40px 19px;
    }

    .featurebox h4 {
        letter-spacing: inherit;
    }

    .carousel .arrow {
        top: 78%;
    }

        .carousel .arrow.left {
            left: 45%;
        }

        .carousel .arrow.right {
            right: 45%;
        }

    .leftimagecontent {
        right: -20px;
        padding: 25px 30px 28px 40px;
    }

    .awarddetails {
        width: 40%;
    }

    .awardslide {
        width: 60%;
    }

    .awardslide {
        padding: 0 0 94px;
    }

    .awardslidertextbottom {
        font-size: 120px;
        bottom: -50px;
        right: -6px;
    }

    .awardslide .owl-nav {
        bottom: 36px;
    }

    .test-details {
        padding: 98px 80px 0 0px;
    }

    .testimonialleft {
        padding: 112px 0 0 90px;
    }

    /**** Customer Info Start ****/

    .customerinfoleft {
        width: 67%;
    }

    .customerinforight {
        width: 31.5%;
    }
}

@media only screen and (max-width: 1799px) {
    .sliderwrapper {
        padding: 60px 0 0;
    }

    /**** Customer Info Start ****/
    .custinfopopup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        max-width: 90% !important;
    }

    .customerinfoleft {
        width: 66.9%;
    }

    .cust_pass_input01 {
        flex-basis: 36.9%;
    }
}

@media only screen and (max-width: 1699px) {
    .sliderwrapper {
        padding: 70px 0 0;
    }

    .header .brand {
        width: 10%;
    }

    .menu {
        width: 90%;
    }

    .hero-style {
        height: 490px;
    }

    .slidercaption {
        left: 4%;
    }

    .destination-top-title {
        flex-basis: 29%;
    }

    .topdestinationroute {
        flex-basis: 71%;
    }

    .awarddata {
        min-height: 640px;
        padding: 112px 30px 0px 40px;
    }

    .leftimagecontent {
        bottom: 20px;
        width: 64%;
    }

    .amenitiesbox {
        padding-bottom: 30px;
    }

    .mobile-left-block {
        flex-basis: 60%;
    }

    .mobile-right-block {
        flex-basis: 40%;
    }

    .mobile-qr-image {
        width: 80%;
    }

    .mobile-qr-bg {
        width: 35%;
    }

    .theme-btn-s2 {
        padding: 12px 40px;
        margin: 0;
    }

    .testimonialleft {
        width: 34%;
        background-size: 130px;
    }

    .testimonialright {
        width: 66%;
    }

    .customer-test {
        padding: 112px 0 0;
    }

    .testimonials-wrapper {
        padding: 30px 40px;
    }

    .testimonial-carousel .single-testimonial {
        height: 313px;
    }

    .counterblock {
        padding: 140px 0 120px;
    }

    .box-item-right .box-title {
        font-size: 18px;
    }

    .topdestinationroute ul {
        gap: 60px;
    }

    .awardpara p i {
        padding: 20px 0 0;
    }

    .awardslide .owl-carousel.owl-drag .owl-item p {
        font-size: 18px;
    }

    .navbar {
        height: 56px;
    }

    .menu-item {
        height: 56px;
    }

    .menurightpopup {
        height: 56px;
    }

    .userloginpopup .popupbtn {
        height: 56px;
        background-position: center -562px;
    }

    .website_banner .modal-dialog {
        top: 5%;
    }

    .tophead .logo a {
        width: 100%;
    }

    .head_contact01 p {
        font-size: 14px;
    }

    /*.bokinginput {
        padding: 20px 0 0;
    }*/

    .bookingforminput .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-xsu6ln-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
        height: 70px;
    }

    .bookingforminput.journeydateinput input, .bookingforminput.returndateinput input {
        height: 70px;
    }

    /**** Available Routes Start ****/

    .available_route_section {
        padding: 0 0 80px;
    }

    .bus_duration_time {
        width: 26%;
    }

    /**** Customer Info Start ****/

    .custinfopopup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        max-width: 92% !important;
    }

    .custinfo_box_details .cust_pass_input {
        flex-basis: 31.3% !important;
    }

    .custinfo_box_wallet .custinfo_box {
        width: 48.8%;
    }

    .theme_buton {
        padding: 14px 32px 15px;
    }

        .theme_buton.theme_buton_wallet {
            padding: 14px 30px 15px;
        }

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 66.6% !important;
    }
}

@media only screen and (max-width: 1599px) {
    .sliderwrapper {
        padding: 80px 0 0;
    }

    /**** Available Routes Start ****/

    .route_box.route_box01 {
        flex-basis: 46%;
    }

    .bus_duration_time {
        width: 30%;
    }

    .filter-drawer__content_input label {
        font-size: 14px;
    }

    .tab-content {
        padding: 0 !important;
    }

    /**** Customer Info Start ****/

    .custinfopopup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        margin: 40px !important;
        max-width: 95% !important;
    }

    .customerinfowrapper {
        padding: 22px 45px 60px;
    }

    .cust_pass_input02 {
        flex-basis: 17.9%;
    }

    .custinfo_box_details .cust_pass_input {
        flex-basis: 31.2% !important;
    }

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 65.8% !important;
    }

    .pass_journey_details_box label {
        font-size: 15px;
    }
}

@media only screen and (max-width: 1568px) {
    .hero-style {
        height: 460px;
    }

    .sidebar-icon-second a {
        font-size: 14px;
    }

    .sidebar-icon-details i {
        font-size: 16px;
    }

    .sidebar-main-contact-details {
        padding: 30px 0 0;
    }

    .sidebar-main-social-icon {
        padding: 30px 0 0;
    }

    .slidercaption {
        left: 6%;
        top: 50px;
    }

    .hero-style .slide-title h2 {
        font-size: 34px;
    }

    .tablist .nav-tabs .nav-item .nav-link {
        padding: 14px 0 14px;
    }

        .tablist .nav-tabs .nav-item .nav-link::after {
            height: 16px;
            width: 16px;
            right: 3px;
            top: 19px;
        }

        .tablist .nav-tabs .nav-item .nav-link.active::after {
            right: -8px;
        }

        .tablist .nav-tabs .nav-item .nav-link.One-Way {
            background-position: 40px -898px;
        }

        .tablist .nav-tabs .nav-item .nav-link.Round-Trip {
            background-position: 27px -1062px;
        }

        .tablist .nav-tabs .nav-item .nav-link.Multiple-Trip {
            background-position: 28px -1231px;
        }

    .service-title h2 {
        font-size: 80px;
    }

    .servicemain {
        margin: -30px 0 0;
    }

    .searchbtn {
        bottom: -10px;
    }

    .service-box span {
        height: 62px;
        width: 62px;
        background-position: center -1183px;
        background-size: 60px;
    }

    .service-box.service-box02 span {
        background-position: center -1340px;
    }

    .service-box.service-box03 span {
        background-position: center -1496px;
    }

    .serviceblock {
        justify-content: center;
    }

    .service-box {
        flex-basis: 30%;
        padding: 40px 30px 40px;
        min-height: 270px;
    }

    .ourservices {
        min-height: 1px;
        background-size: cover;
    }

    .amenitieslistblock {
        padding: 40px 0 0 10px;
        gap: 80px;
    }

    .amenitiesbox {
        gap: 30px;
    }

    .leftimagecontent p {
        font-size: 14px;
    }

    .mobile-block-title h2 {
        font-size: 76px;
    }

    .customer-test-title {
        font-size: 70px;
    }

    .testimonialleft {
        padding: 112px 0 0 60px;
    }

    .mobile-qr-image {
        padding: 55px 0px 24px 0;
    }


    .mobile-qr-image {
        width: 87%;
    }

    .mobile-qr-bg {
        width: 26%;
    }

    .awarddata {
        min-height: 620px;
    }

    .test-details {
        padding: 98px 0 0 0px;
    }

    .userloginpopup .popup .inner {
        width: 40%;
    }

    .newsblock h5 {
        font-size: 20px;
    }

    .newsblock {
        flex-basis: 30%;
    }

    /*My Booking Page Style Start Here*/

    .profileinputdata {
        flex-basis: 45%;
    }

    .innerpage_head .container {
        width: 100%;
        max-width: 1220px !important;
        margin: 0 auto;
    }

    .innerpage_wrapper .container {
        width: 100%;
        max-width: 1220px !important;
        margin: 0 auto;
    }
    /*My Booking Page Style End Here*/

}

@media only screen and (max-width: 1499px) {
    .sliderwrapper {
        padding: 90px 0 0;
    }

    .canclrefund {
        overflow-x: auto;
    }

    .cancelstatustlt {
        width: 1500px;
    }

    .cancelstatusdata {
        width: 1500px;
    }

    /**** Available Routes Start ****/

    .routedata_main .routedata {
        padding: 30px 0 0;
    }

    .available_route_section {
        padding: 0 0 70px;
    }

    .available_route_leftbar {
        width: 23%;
        padding: 25px 25px;
    }

    .available_route_rightbar {
        width: 74%;
    }

    .available_route_box {
        padding: 30px 0 0;
    }

    .available_route_box_toprow {
        padding: 0 30px;
    }

    .droproutebtnpart {
        padding: 10px 30px 10px;
    }

    .route_box.route_box01 {
        flex-basis: 48%;
    }

    .available_route_box .tab-pane {
        padding: 30px;
    }

    .amenities-tab-section {
        padding: 30px;
    }

    .bookingchartdata {
        gap: 30px;
    }

    /**** Customer Info Start ****/

    .custinfopopup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        margin: 30px !important;
        max-width: 96% !important;
    }

    .customerinfowrapper {
        padding: 15px 34px 50px;
    }

    .customerroutedata {
        gap: 18px;
        padding: 5px 0 0;
    }

    .custotitle {
        font-size: 21px;
    }

        .custotitle:after {
            bottom: 4px;
        }

    .custinfo_box {
        padding: 25px;
    }

    .cust_pass_input01 {
        flex-basis: 36.6%;
    }

    .theme_buton {
        padding: 14px 30px 15px;
    }

        .theme_buton.theme_buton_wallet {
            padding: 14px 28px 15px;
        }

    .trip_fare_view {
        margin: 5px 0 0;
        padding: 25px !important;
    }

    .custinfo_box.trip_fare_details {
        padding: 25px;
    }

    .customerinforight {
        width: 31.4%;
    }

    .pass_journey_details_box {
        padding: 9px 0 9px;
        gap: 10px 0;
    }
}

@media only screen and (max-width: 1440px) {
    .headermenu .navbar-inverse .navbar-nav > li > a {
        padding: 16px 38px 19px;
    }

    .menu-link {
        font-size: 14px;
        font-weight: 500;
    }

    .tablist .nav-tabs .nav-item .nav-link {
        font-size: 16px;
    }

    .tablist {
        flex-basis: 13%;
    }

    .booking-tab {
        gap: 20px;
    }

    .tablist .nav-tabs .nav-item .nav-link.One-Way {
        background-position: 30px -898px;
    }

    .tablist .nav-tabs .nav-item .nav-link.Round-Trip {
        background-position: 17px -1062px;
    }

    .tablist .nav-tabs .nav-item .nav-link.Multiple-Trip {
        background-position: 18px -1231px;
    }

    .hero-style {
        height: 440px;
    }

    .service-box p {
        font-size: 14px;
    }

    .service-box h5 {
        font-size: 18px;
    }

    .destinatinedetails p {
        font-size: 14px;
        line-height: 26px;
    }

    .destinationrightblock {
        padding: 80px 0 0;
    }

    .destinationshape {
        width: 80px;
    }

    .sec-title h2 {
        font-size: 30px;
    }

    .topdestinationroute .routelist span {
        font-size: 16px;
    }

    .awardpara {
        padding: 40px 40px 0 0;
    }

        .awardpara p {
            font-size: 14px;
            line-height: 24px;
        }

    .amenitiesbox .box-item-left .box-item-border {
        width: 70px;
        height: 80px;
    }

        .amenitiesbox .box-item-left .box-item-border .box-icon {
            width: 70px;
            height: 60px;
            background-position: center -2375px;
            background-size: 70px;
        }

    .amenitiesbox.amenitiesbox05 .box-item-left .box-item-border .box-icon {
        background-position: center -2525px;
    }

    .amenitiesbox.amenitiesbox02 .box-item-left .box-item-border .box-icon {
        background-position: center -2675px;
    }

    .amenitiesbox.amenitiesbox06 .box-item-left .box-item-border .box-icon {
        background-position: center -2827px;
    }

    .amenitiesbox.amenitiesbox03 .box-item-left .box-item-border .box-icon {
        background-position: center -2978px;
    }

    .amenitiesbox.amenitiesbox07 .box-item-left .box-item-border .box-icon {
        background-position: center -3129px;
    }

    .amenitiesbox.amenitiesbox04 .box-item-left .box-item-border .box-icon {
        background-position: center -3282px;
    }

    .amenitiesbox.amenitiesbox08 .box-item-left .box-item-border .box-icon {
        background-position: center -3432px;
    }

    .box-item-right .box-title {
        font-size: 16px;
    }

    .leftimagecontent h5 {
        font-size: 24px;
    }

    .leftimagecontent p {
        padding: 0;
    }

    .awarddata {
        min-height: 580px;
    }

    .awardslidertextbottom {
        font-size: 100px;
    }

    .testimonials-wrapper h5 {
        font-size: 14px;
        line-height: 24px;
    }

    .count-no-bg {
        right: 90px;
        top: -64px;
    }

        .count-no-bg span {
            font-size: 100px;
        }

    .count-number h2 {
        font-size: 54px;
        width: 140px;
    }

    .customer-test {
        padding: 84px 0 0;
    }

    .test-block {
        min-height: 550px;
    }

    .mobile-left-block {
        flex-basis: 56%;
        padding: 85px 0 0;
    }

    .mobile-block-title h2 {
        font-size: 68px;
    }

    .mobile-right-block {
        flex-basis: 44%;
    }

    .mobile-qr-image {
        width: 84%;
    }

    .app-download-data {
        margin: -19px 0 0;
    }

    .testimonial-carousel .single-testimonial {
        height: 283px;
    }

    .test-block {
        min-height: 510px;
    }

    .footertitle .sec-title h2 {
        font-size: 22px;
        padding: 0px 0 8px;
    }

    .sec-title h2::before {
        width: 60px;
    }

    .sec-title h2::after {
        left: 70px;
    }

    .footertitle {
        padding: 0 0 30px;
    }

    .destination-top-title {
        flex-basis: 26%;
    }

    .topdestinationroute {
        flex-basis: 74%;
    }

    .awardslidertextbottom {
        bottom: -40px;
    }

    .mobile-qr-bg {
        min-height: 594px;
    }
}

@media only screen and (max-width: 1399px) {
    .contact_suboffice .filter_tab_main {
        flex-basis: 22%;
    }

    .sliderwrapper {
        padding: 100px 0 0;
    }

    .payonlinerefndpart {
        width: 100%;
        padding: 0 0 40px;
        overflow-x: auto;
    }

    .payonlinerefnd02 {
        width: max-content;
        padding: 0;
    }

    .canclrefund .refundata {
        padding: 10px 12px;
    }

    .quickboxpart {
        overflow-x: auto;
    }

    .quickboxschedule {
        width: max-content;
    }

    .headermenu .navbar-inverse .navbar-nav > li > a {
        padding: 16px 34px 19px;
    }

    .bokinginputwrap.bokinginputwrap02 {
        width: 32.5%;
    }

    .quickdate label {
        padding: 2px 12px 3px 12px;
    }

    .aboutuswrap {
        padding: 70px 0;
    }

    .hbfaservicesfacilities {
        padding: 70px 0;
    }

    .mobilewrap {
        padding: 70px 0;
    }

    .mobilewrapper {
        min-height: 620px;
    }

    .footer-navlinks ul li a {
        padding: 20px 38px;
        letter-spacing: 0;
    }

    .hero-style {
        height: 420px;
    }

    .head_contact01 p {
        font-size: 14px;
    }

    .hero-style .slide-title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .hero-style .slide-text p {
        font-size: 16px;
        line-height: 20px;
    }

    .theme-btn-s2 {
        padding: 10px 30px;
        font-size: 14px;
    }

    .searchbtn a {
        font-size: 14px;
        padding: 14px 36px;
    }

    .tablist .nav-tabs .nav-item .nav-link.One-Way {
        background-position: 20px -898px;
    }

    .tablist .nav-tabs .nav-item .nav-link.Round-Trip {
        background-position: 9px -1062px;
    }

    .tablist .nav-tabs .nav-item .nav-link.Multiple-Trip {
        background-position: 10px -1231px;
    }

    .customer-test-title {
        font-size: 60px;
    }

    .testimonials-wrapper {
        padding: 20px 30px;
    }

    .testimonial-slide {
        margin: -28px 0 0;
    }

    .test-details {
        font-size: 14px;
        line-height: 26px;
        padding: 60px 0 0 0px;
    }

    .leftimagecontent {
        width: 66%;
    }

    .mobile-block-title h2 {
        font-size: 60px;
    }

    .mobile-qr-image img {
        margin: 0 0 0 -120px;
        max-width: 490px;
    }

    .mobile-left-block {
        padding: 83px 0 0;
    }

    .newsblock h5 {
        font-size: 18px;
    }

    .testimonialleft {
        padding: 112px 0 0 40px;
    }

    .testimonials-wrapper .client-data span {
        font-size: 18px;
    }

    .testimonials-wrapper .client-data p {
        font-size: 14px;
    }

    .testimonials-wrapper h5 {
        font-size: 13px;
        line-height: 20px;
    }

    .testimonials-wrapper .client-data::after {
        background-position: center -4510px;
    }

    .testimonials-wrapper h5 {
        padding: 18px 0 0;
    }

    .testimonial-carousel .single-testimonial {
        height: 246px;
    }

    .test-block {
        min-height: 480px;
    }

    .mobile-qr-bg {
        min-height: 582px;
    }

    /*My Booking Page Style Start Here*/

    .mybooking_tabscontent table thead tr {
        font-size: 14px;
    }

    .season_tab label {
        width: 220px;
    }

    .bookinglist_tabs .season_tab {
        width: 220px;
    }

    .profileinputdetails .tabtitle {
        flex-basis: 48%;
    }

    .bookinglist_tabs .season_content {
        left: 240px;
    }

    .walletdatainfo .walletdtlsinfo .walletcol p {
        font-size: 14px;
    }

    .walletdatainfo .walletdtlsinfo .walletcol em {
        font-size: 14px;
    }

    .walletdatainfo .walletdtlsinfo .walletcol {
        font-size: 14px;
    }

    /*My Booking Page Style End Here*/

    /**** Available Routes Start ****/
    .route_box.route_box01 {
        flex-basis: 42%;
    }

    .filter-drawer__title::after {
        background-position: -2px -1116px;
        background-size: 20px;
    }

    .filter-drawer__content {
        gap: 14px;
        padding: 20px 0 0;
        margin: 18px 0 0;
    }

    .bus_start_time label {
        font-size: 18px;
    }

    .bus_start_time p {
        font-size: 15px;
        padding: 1px 0 0;
    }

    .bus_duration_time span {
        background-size: 100px;
    }

    .route_box.route_box02 span {
        font-size: 16px;
    }

    .route_fare_data label {
        font-size: 18px;
        margin: 0;
    }

    .ba-we-love-subscribers {
        width: 400px;
        height: 0;
        background-color: var(--primary-color);
        border-radius: 8px;
        box-shadow: 0px 12px 45px rgba(0, 0, 0, .15);
        text-align: left;
        margin: 0 0 10px 0;
        overflow: hidden;
        opacity: 0;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        padding: 0 20px 0px;
    }

        .ba-we-love-subscribers.open {
            height: 75vh;
            overflow-y: auto;
            opacity: 1;
            padding: 0 20px 20px;
        }

        .ba-we-love-subscribers.popup-ani {
            -webkit-transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

    .logo-ani {
        transition: 0.5s linear;
        -webkit-transition: 0.5s linear;
    }

    .ba-we-love-subscribers-fab {
        width: 65px;
        height: 65px;
        background-color: var(--primary-color);
        border-radius: 50px;
        float: left;
        box-shadow: 0px 12px 45px rgba(0, 0, 0, .3);
        z-index: 5;
        position: relative;
        cursor: pointer;
    }

        .ba-we-love-subscribers-fab .img-fab {
            position: relative;
        }

            .ba-we-love-subscribers-fab .img-fab::before {
                font-family: "FontAwesome";
                content: "\f0b0";
                font-size: 20px;
                font-weight: 500;
                color: var(--pure);
                font-style: normal;
                display: inline-block;
                vertical-align: middle;
                transition: .4s ease;
                -webkit-transition: .4s ease;
                -moz-transition: .4s ease;
                -ms-transition: .4s ease;
                -o-transition: .4s ease;
            }

            .ba-we-love-subscribers-fab .img-fab.close {
                position: relative;
                font-weight: 500;
                font-size: 20px;
                line-height: 0;
                text-shadow: none;
                opacity: 1;
            }

                .ba-we-love-subscribers-fab .img-fab.close::before {
                    font-family: "FontAwesome";
                    content: "\f00d";
                    font-size: 20px;
                    font-weight: 500;
                    line-height: normal;
                    color: var(--pure);
                    font-style: normal;
                    display: inline-block;
                    vertical-align: middle;
                    transition: .4s ease;
                    -webkit-transition: .4s ease;
                    -moz-transition: .4s ease;
                    -ms-transition: .4s ease;
                    -o-transition: .4s ease;
                }

        .ba-we-love-subscribers-fab .wrap {
            transform: rotate(0deg);
            -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
            transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
        }

        .ba-we-love-subscribers-fab .ani {
            transform: rotate(45deg);
            -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
            transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
        }

        .ba-we-love-subscribers-fab .close {
            background-position: -2px 1px;
            transform: rotate(-45deg);
            float: none;
            opacity: 1;
        }

    .ba-we-love-subscribers-wrap {
        position: fixed;
        left: 25px;
        bottom: 25px;
        z-index: 2;
        width: 70px;
    }

    .ba-settings {
        position: absolute;
        top: -25px;
        left: 0px;
        padding: 10px 20px;
        background-color: #555;
        border-radius: 5px;
        color: #fff;
    }

    .available_route_leftbar {
        flex-basis: 0;
        background-color: transparent;
        border: none;
        padding: 0;
    }

    .available_route_rightbar {
        flex-basis: 100%;
    }

    .available_route_leftbar .title {
        font-weight: 700;
        font-size: 18px;
        color: var(--secondary-color);
        padding: 0;
        border-bottom: none;
        margin: 0;
        background-image: none;
        text-align: center;
    }

    .filter-drawer__title {
        cursor: pointer;
        display: block;
        font-size: 15px;
        padding: 0;
        position: relative;
        text-align: left;
    }

    .filter-drawer {
        margin-bottom: 0;
        border: 1px solid var(--border-color);
        background-color: var(--pure);
        border-radius: 4px;
        padding: 18px;
    }


    .filter-drawer__trigger:checked + .filter-drawer__title + .filter-drawer__content-wrapper {
        max-height: 100%;
        text-align: left;
    }

    .ba-we-love-subscribers-fab {
        width: 65px;
        height: 65px;
        background-color: var(--primary-color);
        border-radius: 50px;
        float: left;
        box-shadow: 0px 12px 45px rgba(0, 0, 0, .3);
        z-index: 5;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /**** Customer Info Start ****/

    .custinfopopup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        margin: 20px !important;
        max-width: 97% !important;
    }

    .customerinfoleft {
        width: 66%;
    }

    .cust_pass_input input {
        padding: 0 15px;
    }

    .popupclose button {
        font-size: 26px;
    }

    .customerinfowrapper {
        padding: 10px 25px 40px;
    }

    .cust_pass_input01 {
        flex-basis: 36%;
    }

    .custinfo_box_details .cust_pass_input {
        flex-basis: 31% !important;
    }

    .custinfo_box_wallet .custinfo_box {
        width: 100%;
    }

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 83.5% !important;
    }

    .custinfo_box_wallet {
        gap: 18px;
    }

    .custinfo_box.custinfo_box_tc .cust_pass_input01 {
        flex-basis: 100%;
    }

    .customerinforight {
        width: 32.3%;
    }
}

@media only screen and (max-width: 1309px) {
    /**** Available Routes Start ****/
    .modify_route_block {
        margin: 15px 0 0;
        padding: 15px 0;
    }

    .modify_route_form {
        padding: 15px;
    }

    .modifytodate:before {
        top: -15px;
        height: 84px;
    }

    .modifytodate.modifyfromdate:after {
        top: -15px;
        height: 84px;
    }

    .available_route_leftbar {
        padding: 0;
    }

    .filter-drawer__content_input.filter-drawer__content_input_search input {
        padding: 12px 37px 11px 16px !important;
        font-size: 14px;
    }

    /**** Customer Info Start ****/

    .cust_pass_input01 {
        flex-basis: 35.3%;
    }

    .custinfo_box_details .cust_pass_input {
        flex-basis: 30.8% !important;
    }

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 82.3% !important;
    }

    .customerinforight {
        width: 32.2%;
    }
}

@media only screen and (max-width: 1299px) {
    .sliderwrapper {
        padding: 80px 0 0;
    }

    .head_contact01 {
        padding: 0 32px;
    }

    .headermenu .navbar-inverse .navbar-nav > li > a {
        padding: 16px 25px;
    }

    .nav-tabs {
        border-bottom: none !important;
    }

    .tablist .nav-tabs {
        margin: 0;
        padding: 0 0 17px;
    }

    .bokinginputwrap {
        width: 47%;
    }

    .bookingforminput.journeydateinput, .bookingforminput.returndateinput {
        width: 50%;
    }

    .quickdate {
        width: 42%;
    }

    .bokinginputwrap.bokinginputwrap02 {
        width: 34.6%;
    }

    .countside .countitem p {
        min-height: 102px;
    }

    .quickdate label {
        padding: 2px 10px;
    }

    .searchbus {
        float: left;
        width: 14.6%;
    }

    .aboutuswrapright .awardRecognition {
        padding: 0;
    }

    .footer-navlinks ul li a {
        padding: 20px 28px;
        letter-spacing: 0;
    }

    .testimonialcontent p {
        min-height: 112px;
    }

    .mobilewrapright ul {
        padding: 59px 0 67px 0;
    }

    .mybooking_tabscontent table {
        width: 1100px !important;
        overflow: scroll;
    }

    .reviewbox .customericon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        flex-basis: 64px;
    }

        .reviewbox .customericon span {
            background-size: 32px;
            width: 32px;
            height: 32px;
            margin: 16px;
        }

    .reviewbox {
        border-radius: 30px;
        padding: 32px 20px;
        column-gap: 26px;
    }
}

@media only screen and (max-width: 1268px) {

    .box {
        right: 60px;
    }

    .hero-style {
        height: 400px;
    }

    .topdestinationroute {
        flex-basis: 72%;
    }

    .awardpara a {
        margin: 20px 0 0;
    }

    .awarddata {
        min-height: 540px;
        padding: 112px 0px 0px 40px;
    }

    .leftimagecontent {
        width: 70%;
    }

    .footer-contact-block {
        gap: 150px;
    }

    .leftimagecontent p {
        font-size: 14px;
        line-height: 24px;
    }

    .leftimagecontent {
        width: 74%;
    }
}

@media only screen and (max-width: 1229px) {
    .feedback_wrapper {
        padding: 70px 0;
    }

    /**** Available Routes Start ****/
    .available_route_section {
        padding: 0 0 60px;
    }

    .modifybutton button {
        font-size: 15px;
    }

    .modify_route_form {
        padding: 10px 15px;
    }

    .modifytodate:before {
        top: -10px;
        height: 74px;
    }

    .modifytodate.modifyfromdate:after {
        top: -10px;
        height: 74px;
    }

    .available_route_main {
        padding: 30px 0 0;
    }

    .route_box.route_box01 {
        flex-basis: 46%;
    }

    .amenities-tab-list {
        gap: 25px;
    }

    .amenities-tab-box {
        padding: 9px 18px;
    }

        .amenities-tab-box i {
            font-size: 18px;
        }

        .amenities-tab-box p {
            font-size: 15px;
        }

    /**** Customer Info Start ****/

    .customerinfowrapper {
        gap: 30px;
    }

    .customerinfoleft {
        width: 100%;
    }

    .cust_pass_input01 {
        flex-basis: 37.5%;
    }

    .custinfo_box_details .cust_pass_input {
        flex-basis: 31.3% !important;
    }

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 86% !important;
    }

    .customerinforight {
        width: 100%;
    }

    .pass_journey_details_box p {
        flex-basis: 20%;
    }

    .pass_journey_details_box label {
        flex-basis: 80%;
    }

    .custinfopopup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        margin: 15px !important;
    }

    .journey_amount_btn {
        display: none;
    }

    .journey_amount_btnmbl {
        display: flex !important;
        justify-content: flex-start;
        gap: 25px;
        padding: 10px 0 0;
    }

    .custinfo_box.amount_box {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    .header .brand {
        width: 0;
    }

    .menu {
        width: 100%;
    }

    .bookingbus {
        padding: 16px 24px;
    }

    .searchbus {
        width: 14.3%;
    }

    .userloginpopup .popup .inner {
        width: 50%;
    }

    .tophead {
        flex-direction: column;
        gap: 20px;
    }

    .head_contact01 p {
        line-height: 20px;
    }

    .navbarmenu {
        width: 88%;
    }

    .countside .countitem {
        padding: 30px 20px 50px;
    }

    .menurightpopup {
        width: 12%;
    }

    .testimonialcontent p {
        min-height: 168px;
    }

    .amenitieslistblock {
        gap: 40px;
    }

    .mobilewraplift {
        width: 50%;
    }

    .mobilewrapright {
        width: 50%;
        margin: 0;
    }

    .mobile-block-title h2 {
        font-size: 56px;
    }

    .mobile-left-block {
        padding: 88px 0 0;
    }

    .awarddata {
        min-height: 560px;
    }

    .customer-test-title {
        font-size: 54px;
    }

    .newsblock h5 {
        font-size: 16px;
    }

    .newsblock {
        flex-basis: 34%;
    }

        .newsblock p {
            font-size: 14px;
            line-height: 20px;
        }

    .footer-navlinks ul li a {
        font-size: 14px;
        padding: 20px 18px;
    }

        .footer-navlinks ul li a::before {
            font-size: 12px;
        }

    .footer-navlinks ul {
        gap: 8px;
    }

    .footer-contact-data {
        flex-basis: 32%;
    }

    .footer-contact-block {
        gap: 0px;
    }
}

@media only screen and (max-width: 1139px) {
    .hero-style {
        height: 330px;
    }

    header {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .headermenu .navbar-inverse .navbar-nav > li > a {
        padding: 16px 22px;
    }

    .headermenu .navbar-inverse .navbar-nav > li > a {
        padding: 16px 15px;
    }

    .searchbus .searchbtn {
        font-size: 16px;
        letter-spacing: inherit;
        padding: 36px 20px;
    }

    .quickdate {
        width: 44%;
    }

        .quickdate label {
            padding: 2px 8px;
            font-size: 14px;
        }

    .bookingforminput.journeydateinput .inputdata {
        padding: 18px 0 19px 24px;
    }

    .bookingforminput .inputdata {
        padding: 18px 0 13px 24px;
    }

    .searchbus {
        width: 13.9%;
    }

    .bookingwrapper {
        top: 24px;
    }

    .booking-tab {
        flex-direction: column;
    }

    .toptitle h2 {
        font-size: 24px;
        padding: 24px 0 0;
    }

    .awardRecognition h3 {
        font-size: 28px;
        letter-spacing: inherit;
    }

    .awardRecognition p {
        font-size: 16px;
    }

        .awardRecognition p span {
            font-size: 14px;
        }

    .tablist {
        flex-basis: 100%;
        width: 100%;
    }

        .tablist .nav-tabs .nav-item {
            flex-basis: 16%;
        }

    .tab-content {
        flex-basis: 100%;
        width: 100%;
    }

    .tablist .nav-tabs {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

        .tablist .nav-tabs .nav-item .nav-link::after {
            right: auto;
            left: 47%;
            bottom: 3px;
            top: auto;
        }

        .tablist .nav-tabs .nav-item .nav-link.active::after {
            right: auto;
            left: 47%;
            bottom: -8px;
            top: auto;
        }

    .ourservices {
        padding: 80px 0 0;
    }

    .service-box {
        flex-basis: 33%;
    }

    .servicemain {
        margin: -26px 0 0;
    }

    .destination-top-title {
        flex-basis: 33%;
        padding: 12px 0 0 10px;
    }

    .topdestinationroute {
        flex-basis: 67%;
    }

    .awarddetails {
        width: 100%;
    }

    .awardslide {
        width: 100%;
    }

    .awarddata {
        min-height: 460px;
    }

    .amenitiesleftpart {
        flex-basis: 100%;
        align-items: flex-start;
        display: flex;
        justify-content: space-between;
        align-self: center;
    }

    .amenitiesmain {
        flex-direction: column;
        align-items: center;
    }

    .amenitiesmobiletitle {
        display: block;
        padding: 0 0 60px;
    }

    .amenitieswebtitle {
        display: none;
    }

    .amenitiesrightpart {
        flex-basis: 100%;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .amenitiespart {
        flex-direction: column;
    }

    .leftimagecontent {
        width: 56%;
    }

    .amenitieslistblock {
        gap: 40px;
        justify-content: space-around;
    }

    .amenitiespart {
        gap: 20px;
    }

    .testimonialmain {
        flex-direction: column;
    }

    .testimonialleft {
        width: 100%;
    }

    .testimonialright {
        width: 100%;
    }

    .test-block::before {
        background-color: transparent;
    }

    .testimonial-carousel .owl-nav button {
        bottom: -30px;
    }

    .testimonial-carousel .owl-prev {
        left: 0;
    }

    .testimonial-carousel .owl-next {
        left: 60px;
    }

    .testimonial-carousel .owl-nav button::before {
        color: var(--primary-color);
    }

    .testimonial-carousel .owl-nav button {
        bottom: -30px;
        left: 0px;
        right: 0;
        margin: 0 auto;
    }

        .testimonial-carousel .owl-nav button.owl-prev {
            left: -60px;
        }

        .testimonial-carousel .owl-nav button.owl-next {
            left: 60px;
        }

    .count-no-bg span {
        font-size: 80px;
    }

    .count-number h2 {
        font-size: 44px;
        width: 120px;
    }

    .count-box-data h5 {
        font-size: 24px;
    }

    .count-box-data span {
        font-size: 14px;
        line-height: 12px;
    }

    .count-no-bg {
        top: -50px;
    }

    .counterblock {
        padding: 100px 0 100px;
    }

    .mobile-left-block {
        flex-basis: 100%;
        padding: 0;
    }

    .mobile-right-block {
        flex-basis: 100%;
        padding: 0 0 0 20%;
    }

    .testimonialleft {
        padding: 60px 0 40px 40px;
    }

    .customer-test {
        padding: 60px 0 0;
    }

    .app-download-data {
        padding: 100px 28px 100px 0;
    }

    .amenitiesmain {
        padding: 0 0 60px;
    }

    .service-title h2 {
        font-size: 64px;
    }

    .amenitiessection {
        padding: 80px 0 0;
    }

    .mobile-qr-image {
        width: 76%;
    }

    .mobile-qr-bg {
        width: 32%;
    }

    .menu-link {
        font-size: 13px;
        font-weight: 500;
    }
}

@media only screen and (max-width: 1023px) {
    /**** Customer Info Start ****/

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 85.8% !important;
    }
}

@media (min-width: 992px) {
    .modal-dialog {
        max-width: 500px !important;
        margin: 1.75rem auto;
    }
}

@media only screen and (max-width: 991px) {
    .seatpricefilter ul {
        padding: 0 0 10px;
    }

    .feedback_wrapper {
        padding: 60px 0 70px;
    }

    .sliderwrapper {
        padding: 0;
    }

    .head_contact01 span a {
        font-size: 15px;
    }

    .head_contact01 p {
        margin: 0;
    }

    /*E Ticket*/

    .passenger_detail_title h5 {
        font-size: 18px;
    }

    .passenger_detail_main_block {
        padding: 50px 0 0;
    }

    .passenger_detail_row .passenger_detail_list_name p {
        font-size: 13px;
    }

    .passenger_detail_row .passenger_detail_list_name label {
        font-size: 16px;
    }

    .fare_detail_box {
        padding: 25px;
    }

    .fare_detail_title h5 {
        font-size: 18px;
    }

    .fare_details_row {
        padding: 14px 0 0;
    }

    .paperless_block {
        padding: 50px 0 0;
    }

    .button_bottom {
        padding: 50px 0 70px;
    }

    /*E Ticket*/

    .headermenu .navbar-inverse .navbar-nav > li > a {
        padding: 12px 7px;
        font-size: 12px;
    }

    .carousel .arrow.left {
        left: 42%;
    }

    .carousel .arrow.right {
        right: 42%;
    }

    .aboutuswrap {
        padding: 50px 0;
    }

    .aboutuswrapleft .visionlist {
        padding: 16px 20px;
    }

    .aboutuswrap .aboutuswrapleft {
        width: 100%;
    }

    .aboutuswrap .aboutuswrapright {
        width: 100%;
        padding: 50px 0 0;
        text-align: center;
    }

    .aboutuswrapright img {
        float: none;
    }

    .customercounter {
        padding: 0 0 50px;
    }

    .countside {
        column-gap: 20px;
        flex-wrap: wrap;
        row-gap: 20px;
    }

        .countside .countbox {
            width: 48%;
            flex-basis: 48%;
        }

        .countside .countitem p {
            min-height: 82px;
        }

    .testimonialcontent p {
        min-height: inherit;
    }

    .hbfaservicesfacilities {
        padding: 50px 0;
    }

    .mobilewrapper {
        min-height: auto;
        background-size: cover;
    }

    .mobilewraplift {
        width: 100%;
    }

    .mobilewrap {
        padding: 50px 0;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .mobilewraplift {
        flex-basis: 100%;
    }

    .mobilewrapright {
        width: 100%;
        margin: 0 auto;
        flex-basis: 100%;
    }

    .mobileclick p {
        font-size: 12px;
    }

    .testimonialcontent p {
        font-size: 16px;
        line-height: 24px;
        margin: 0;
    }

    .testimonialcontent h4 {
        font-size: 18px;
        margin: 20px 0 0;
    }

    .bookingforminput .city_swap {
        right: -41px;
        top: 32%;
    }

    .box {
        right: 30px;
        top: 10px;
    }

    .circle {
        width: 30px;
        height: 30px;
    }

    .square {
        width: 16px;
        height: 16px;
        bottom: 13px;
    }

    .shadow {
        width: 46px;
        bottom: 16px;
    }

    .inner {
        width: 8px;
        height: 8px;
        top: 12px;
    }

    header {
        border: none;
    }

    .menu-link {
        font-size: 13px;
    }

    .sidebar-main {
        padding: 16% 0 0;
    }

    .burger {
        z-index: 90;
        top: 19px;
        left: 20px;
    }

    .navbar {
        height: 60px;
        align-items: center;
    }

    .burger-line {
        height: 3px;
        border-radius: 20px;
    }

        .burger-line:nth-child(2) {
            width: 16px;
            left: 0;
        }

    .burger:hover .burger-line:nth-child(2) {
        width: 100%;
    }

    .topheader {
        padding: 10px 0 20px;
    }

    .tablist .nav-tabs {
        justify-content: center;
    }

        .tablist .nav-tabs .nav-item {
            flex-basis: 22%;
        }

    .bokinginput {
        flex-wrap: wrap;
    }

    .bookingforminput {
        flex-basis: 47%;
    }

    .searchbtn {
        width: 50%;
    }

    .bookingforminput .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-xsu6ln-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
        padding: 20px 10px 0;
        height: 70px;
    }

    .bookingforminput.journeydateinput input, .bookingforminput.returndateinput input {
        height: 70px;
        padding: 20px 14px 0;
    }

    .bookingforminput .css-1x51dt5-MuiInputBase-input-MuiInput-input::placeholder {
        color: var(--head-text-color) !important;
        opacity: 1 !important;
        font-weight: 400 !important;
        font-size: 16px;
    }

    .bookingforminput .css-1x51dt5-MuiInputBase-input-MuiInput-input {
        font-weight: 400;
        color: var(--head-text-color) !important;
        font-size: 14px;
    }

    .hero-style .slide-title h2 {
        font-size: 24px;
    }

    .hero-style .slide-title span {
        font-size: 12px;
    }

    .hero-style {
        height: 300px;
    }

    .hero-slider .swiper-button-prev {
        left: 10px;
    }

    .hero-slider .swiper-button-next {
        right: 10px;
    }

    .menu {
        padding: 60px 0 60px;
        background-color: #0a1229;
    }

    .menu-item {
        height: 40px;
        border: none;
        background-color: transparent;
    }

    .menu-link {
        font-size: 16px;
        color: var(--pure);
    }

    .headercontactdetails {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    .tablist .nav-tabs .nav-item .nav-link {
        font-size: 14px;
    }

        .tablist .nav-tabs .nav-item .nav-link.One-Way {
            background-position: 20px -901px;
        }

        .tablist .nav-tabs .nav-item .nav-link.Round-Trip {
            background-position: 9px -1064px;
        }

        .tablist .nav-tabs .nav-item .nav-link.Multiple-Trip {
            background-position: 10px -1234px;
        }

    .bookingwrapper {
        top: 0;
        position: relative;
        padding: 10px 0 30px;
        background-color: var(--primary-color);
    }

    .headermenu {
        padding: 10px 0 0;
    }

    .redclr {
        position: absolute;
        left: 24px;
        bottom: 2px;
        font-size: 13px;
    }

    .booking-tab {
        gap: 10px;
    }

    .bookingforminput .inputdata label {
        font-size: 12px;
        letter-spacing: inherit;
    }

    .bookingbus {
        padding: 16px;
        border: 2px solid var(--pure);
        border-radius: 16px;
    }

    .bokinginputwrap {
        width: 100%;
    }

    .cityswapicon {
        background-position: center -215px;
        top: 32px;
        width: 32px;
        background-size: 42px;
        height: 32px;
    }

    .bookingforminput.tocityinput {
        padding: 0;
    }

    .bokinginputwrap.bokinginputwrap02 {
        width: 100%;
        margin: 10px 0;
    }

    .quickdate {
        width: 46%;
    }

    .searchbus {
        width: 100%;
    }

        .searchbus .searchbtn {
            font-size: 16px;
            padding: 16px 20px;
        }

    .inputdata .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon.css-dd2h8b-MuiAutocomplete-root .MuiAutocomplete-inputRoot {
        padding-right: 0;
    }

    .mobilewrapright ul {
        padding: 40px 0 40px 0;
    }

        .mobilewrapright ul li p {
            margin: 0;
            font-size: 16px;
            background-position: left -533px;
            background-repeat: no-repeat;
        }

    .applink {
        height: 60px;
    }

        .applink button {
            top: 9px;
            height: 42px;
        }

    .mobileclick {
        padding: 26px 0 0 0;
    }

    .apptext {
        margin: 0;
        font-size: 15px;
    }

    .service-box {
        flex-basis: 100%;
        padding: 40px 30px 20px;
        min-height: 240px;
    }

    .destinationrightblock {
        flex-basis: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .destinationrightblock {
        padding: 60px 0 0;
    }

    .destinationleftblock {
        position: absolute;
        top: 30px;
    }

    .topdestinationroute {
        flex-basis: 100%;
        padding: 40px 0 0;
    }

    .awarddata {
        padding: 80px 0px 0px 40px;
    }

    .amenitiesleftpart {
        padding: 0 20px 0 0;
    }

    .leftimagecontent {
        right: 10px;
    }

    .countermain {
        justify-content: center;
        flex-wrap: wrap;
        gap: 80px;
    }

    .count-box {
        flex-basis: 50%;
    }

    .counterblock {
        padding: 120px 0 100px;
    }

    .mobile-qr-image {
        width: 80%;
    }

    .mobile-qr-bg {
        width: 26%;
    }

    .footer-navlinks ul {
        gap: 0;
    }

    .footer-navlinks {
        padding: 24px 0 3px;
    }

        .footer-navlinks ul li a {
            font-size: 13px;
            padding: 12px 8px;
        }

    .footerblock {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .newsblock {
        padding: 60px 30px 60px 30px;
    }

    .footer-contact-details a, .footer-contact-details p {
        font-size: 14px;
    }

    .footer-navbarblock {
        justify-content: space-between;
        width: 100%;
    }

    .footernav {
        padding: 60px 0 0;
    }

    .footer-contact-block {
        justify-content: flex-start;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 40px;
    }

    .footer-contact-data {
        flex-basis: 48%;
    }

    .footer-bottom-block {
        gap: 40px;
        padding: 20px 0;
    }

    .footer-poweredby {
        padding: 1px 0 0 0;
    }

    .footer-social-icon {
        flex-basis: 100%;
    }

    .footer-company-link {
        padding: 0;
    }

    .footer-social-icon a {
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .app-download-data {
        padding: 80px 28px 80px 0;
    }

    .userloginpopup .popup .inner {
        width: 70%;
    }

    .navbarmenu {
        width: 80%;
        height: 60px;
    }

    .menurightpopup {
        width: 20%;
    }

    /********** My Booking Page Style Start Here **********/

    .bookinglist_tabs .season_content {
        left: 0;
        position: relative;
        width: 100%;
    }

    .bookinglist_tabs .season_tab {
        width: 100%;
    }

    .season_tab label {
        width: 100%;
        display: inline-block;
        margin: 10px 0;
    }

    .tabprofiledetails {
        width: 100%;
        float: left;
    }

    .tabtitle {
        padding: 16px 0 0 20px !important;
        float: left;
    }

    .profileinputdetails.profileinputdetailsbtn {
        padding: 0px 0 0;
    }

    /********** My Booking Page Style End Here **********/

    /*Partial cancel Style Start Here*/


    .refundtitle.refundtitleshow {
        display: block;
    }

    /*Partial cancel Style End Here*/

    /**** Available Routes Start ****/

    .droproutebtnpart {
        padding: 20px 30px 20px;
        gap: 20px;
        justify-content: space-around;
        flex-direction: column;
    }

    .modifyinput.modifytocity.modifyfromcity {
        width: 50%;
    }

    .filter-drawer {
        padding: 15px;
    }

    .filter-drawer__content {
        padding: 15px 0 0;
    }

    .filter_tab_main {
        padding: 15px 0 0;
    }

    .modifycity {
        width: 100%;
        padding: 0 0 5px;
    }

    .modify_route_form {
        padding: 8px 15px 15px;
    }

    .modifydate {
        width: 100%;
        border-top: 1px solid rgba(9, 47, 83, 0.1);
        padding: 5px 0;
    }

    .modifybutton {
        width: 100%;
    }

    .modifytodate {
        width: 50%;
        padding: 0;
    }

        .modifytodate:before {
            display: none;
        }

        .modifytodate.modifyfromdate:after {
            display: none;
        }

    .available_route_main {
        padding: 20px 0 0;
    }

    .route_box.route_box01 {
        flex-basis: 50%;
    }

    .bus_type_data {
        gap: 24px;
    }

    .bus_duration_time span {
        background-size: 90px;
        background-position: center 1px;
    }

    .bookingchartdata {
        flex-direction: column;
    }

    .seatitle {
        text-align: left;
    }

    .bookingdeatails {
        padding: 20px 0 0;
        flex-basis: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .bookingcontinue {
        padding: 30px 0 0;
    }

    .routepointparts {
        width: 48%;
    }

    .routepoint {
        width: 100%;
        padding: 0 0 20px;
    }

    .bookingservicefair {
        width: 49%;
    }

    .serviceboxtitle {
        font-size: 15px;
    }

    .modifyinput.modifytodate.modifyfromdate {
        padding: 0 0 0 5px;
    }

    /**** Customer Info Start ****/

    .cust_pass_input01 {
        flex-basis: 34%;
    }

    .custinfo_box_details .cust_pass_input {
        flex-basis: 30.6% !important;
    }

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 80.8% !important;
    }

    .cancelstatustlt {
        display: none;
    }
}

/*Responsive Menu Stye Start Here*/

@media only screen and (min-width: 62rem) {
    .burger {
        display: none;
        visibility: hidden;
    }

    .menu {
        position: relative;
        top: 0;
        /* width: auto; */
        height: auto;
        padding: 0rem;
        margin-left: 0;
        background: none;
        box-shadow: none;
    }

    .menu-inner {
        display: flex;
        flex-direction: row;
        margin: 0;
        justify-content: space-between;
        width: 100%;
    }

    .menu-link {
        text-transform: capitalize;
    }

    .menu-block {
        margin-left: 2rem;
    }
}

/*Responsive Menu Stye End Here*/

@media only screen and (max-width: 767px) {
    .cancellation-list-title {
        padding: 16px 20px;
    }

    .cancellation-list {
        padding: 16px 20px;
    }

    .whatsappbox {
        width: 280px;
    }

    .feedbkinput {
        gap: 21px;
    }

        .feedbkinput textarea {
            height: 70px;
        }

    .feedbkformgroup {
        padding: 30px 0 0;
    }

    .feedback_wrapper {
        padding: 50px 0 60px;
    }

    .tophead .logo a img {
        width: 100%;
        max-width: 380px;
    }

    .topheader {
        padding: 25px 0 15px;
        margin: 0;
        border-top: none;
        border-bottom: none;
    }

    .cancelstatusdata {
        width: inherit;
    }

    .cancelstatustlt {
        width: inherit;
    }

    .galleryparts {
        padding: 70px 0;
    }

    /*E Ticket*/

    .onward_journy_box {
        flex-direction: column;
    }

    .onward_journy_box_left {
        width: 100%;
    }

    .passenger_detail_main_block {
        flex-direction: column;
        gap: 40px;
    }

    .passenger_detail_box {
        flex-basis: 100%;
        width: 100%;
    }

    .fare_detail_box {
        flex-basis: 100%;
        width: 100%;
    }

    .fare_details_block {
        padding: 18px 0 0;
    }

    .fare_details_row p, .fare_details_row label {
        font-size: 15px;
    }

    .button_bottom {
        padding: 40px 0 60px;
    }

    .paperless_rightpart label {
        font-size: 18px;
        margin: 0;
    }

    .paperless_rightpart p {
        font-size: 15px;
        margin: 0;
    }

    /*E Ticket*/

    .serviceswraptop .nav > li > a {
        padding: 10px 20px 20px;
        font-size: 18px;
        letter-spacing: inherit;
    }

    .visionwrap .panel-title > a, .panel-title > a:active {
        font-size: 15px;
    }

    .visionwrap .panel-body h4 {
        font-size: 15px;
        padding: 0px 15px 15px;
    }

    .visionwrap .panel-default > .panel-heading:first-child {
        padding: 15px;
    }

    .collapse.in {
        display: block;
    }


    .carousel .arrow {
        top: 74%;
    }

        .carousel .arrow > svg {
            width: 32px;
            height: 32px;
        }

    .head_login {
        padding: 0;
        flex-basis: 100%;
    }

    .headercontactdetails {
        row-gap: 40px;
        padding: 40px 0 40px;
    }

    .headlogin {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

        .headlogin a {
            font-size: 14px;
            font-weight: 800;
            color: var(--primary-color);
            padding: 12px 25px;
            background-color: var(--secondary-color);
            border-radius: 4px;
        }

            .headlogin a:hover, .headlogin a:focus {
                color: var(--primary-color);
                background-color: var(--pure);
            }

    .dropdown.active .dropdown-content {
        right: 0;
        margin: 0 auto;
        width: max-content;
    }

    .head_contact02 {
        border-left: 1px solid rgb(255 255 255 / 20%);
    }

    .head_contact01:before {
        display: none;
    }

    .cityswapicon {
        top: 32px;
    }

    .footer-contact-data h5 {
        font-size: 16px;
        padding: 10px 0;
    }

    .footer-navlinks ul {
        gap: 0;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .footer-navlinks {
        border: none;
    }

        .footer-navlinks ul li a:hover::before {
            bottom: 5px;
        }

        .footer-navlinks ul li a:hover, .footer-navlinks ul li a:focus {
            color: var(--secondary-color);
        }

    .footer-contact-block {
        row-gap: 24px;
        justify-content: center;
    }

    .bookingforminput .city_swap {
        right: -37px;
    }

    .navbar {
        height: 50px;
    }

    .navbarmenu {
        width: 77%;
        height: 50px;
    }

    .menurightpopup {
        width: 23%;
        height: 50px;
    }

    .burger-line:nth-child(1) {
        top: -4px;
    }

    .burger-line:nth-child(2) {
        top: 4px;
    }

    .burger-line:nth-child(3) {
        top: 12px;
    }

    .userloginpopup .popupbtn {
        height: 50px;
        background-position: center -565px;
    }

    .sidebar-main-details p,
    .sidebar-icon-second p {
        font-size: 12px;
        line-height: 22px;
    }

    .menu.is-active {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .userloginpopup .popup .inner {
        padding: 60px 30px 60px;
    }

    .tablist .nav-tabs .nav-item {
        flex-basis: 24%;
    }

    .hero-style {
        height: 220px;
    }

    .slidercaption {
        left: 2%;
        top: 30px;
    }

    .hero-style .slide-title h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .hero-style .slide-text p {
        font-size: 14px;
        line-height: 4px;
        margin: 0px 0 20px;
    }

    .theme-btn-s2 {
        padding: 8px 20px;
        font-size: 12px;
    }

    .ourservices {
        padding: 60px 0 0;
    }

    .sec-title h2 {
        font-size: 28px;
        padding: 0 0 12px;
    }

    .awardmain {
        padding: 50px 0 0;
    }

    .amenitiesrightpart {
        padding: 120px 0 0;
    }

    .customer-test-title {
        padding: 0;
    }

    .leftimagecontent {
        bottom: -120px;
        width: 70%;
    }

    .awarddata {
        padding: 60px 0px 0px 40px;
        min-height: 420px;
    }

    .mobile-qr-image img {
        margin: 0 0 0 -97px;
        max-width: 400px;
    }

    .mobile-qr-bg {
        min-height: 491px;
    }

    .app-download-data {
        margin: -15px 0 0;
    }

    .destinationshape {
        height: 200px;
    }

    @keyframes float {
        0% {
            transform: translatey(0px);
            -webkit-transform: translatey(0px);
            -moz-transform: translatey(0px);
            -ms-transform: translatey(0px);
            -o-transform: translatey(0px);
        }

        50% {
            transform: translatey(-59px);
            -webkit-transform: translatey(-59px);
            -moz-transform: translatey(-59px);
            -ms-transform: translatey(-59px);
            -o-transform: translatey(-59px);
        }

        100% {
            transform: translatey(0px);
            -webkit-transform: translatey(0px);
            -moz-transform: translatey(0px);
            -ms-transform: translatey(0px);
            -o-transform: translatey(0px);
        }
    }

    .count-box {
        flex-basis: 56%;
    }

    .servicemain {
        margin: -16px 0 0;
    }

    .testimonial-slide {
        margin: -26px 0 0;
    }

    .footer-social-icon a {
        width: 60px;
        height: 60px;
    }

    .footer-bottom-block {
        gap: 10px;
        padding: 10px 0;
        flex-direction: column;
    }

    .aboutuswrapleft .visionwrap {
        padding: 30px 0 0;
    }

    .serviceswraptop ul {
        padding: 30px 0 0;
    }

    .mobileclickapp {
        border-radius: 16px;
    }

        .mobileclickapp a {
            padding: 6px 5px 6px 10px;
        }

            .mobileclickapp a.iosapp {
                padding: 6px 9px 6px 7px;
            }

    .countside .countitem p {
        font-size: 14px;
        line-height: 20px;
        padding: 18px 0 0;
    }

    .countside {
        justify-content: center;
        padding: 40px 0 20px;
    }

        .countside .countbox {
            flex-basis: 50%;
        }

    .newsblock-input {
        padding: 40px 0 0;
    }

    .newsblock p {
        padding: 5px 0 0;
    }

    .newsblock h5 {
        padding: 30px 0 0;
    }

    .service-title h2 {
        font-size: 54px;
    }

        .service-title h2 span {
            padding: 0 0 0 0px;
        }

    .newsblock span {
        width: 56px;
        height: 44px;
        background-position: center -3205px;
        margin: 0 0 0 8px;
        background-size: 60px;
    }

    .app-download-icon {
        padding: 50px 0 0;
    }

        .app-download-icon a {
            max-width: 140px;
        }

    .footer-contact-main {
        padding: 50px 0 50px;
    }

    .bookingforminput label {
        top: 8px;
        left: 14px;
        font-size: 12px;
    }

    .bokinginput {
        gap: 20px;
    }

    .awardslidertextbottom {
        bottom: -30px;
        font-size: 80px;
    }

    .rightheader .contactheader {
        display: block;
    }

    .head_contact01 {
        padding: 0;
    }

    .head_login .dropdown, .dropup {
        justify-content: center;
    }

    /* leftmenu start */
    .headermenu .navbar-inverse .navbar-nav > li > a:before {
        display: none;
    }

    .headermenu .navbar-inverse .navbar-nav > li > a:after {
        display: none;
    }


    .headercallpart {
        flex-wrap: wrap;
        text-align: center;
        row-gap: 12px;
    }

        .headercallpart p {
            font-size: 12px;
            flex-basis: 100%;
        }

    .headermenu {
        width: auto;
        position: absolute;
        top: 12px;
        right: 15px;
        margin: 0;
        background-color: transparent;
        z-index: 5;
        padding: 0;
    }

    .fixedbtn {
        position: absolute;
        top: -40px;
        left: 0;
        z-index: 1030;
    }

        .fixedbtn.topfixedicon {
            position: fixed !important;
            top: 10px !important;
            z-index: 99999 !important;
            margin: 0 !important;
            padding: 0 !important;
            width: 24px;
            height: 24px;
            -webkit-transition: all 0.4s;
            transition: all 0.4s;
            right: 20px;
            left: auto;
        }

            .fixedbtn.topfixedicon::after {
                font-family: FontAwesome;
                content: "\f00d";
                right: 0;
                top: 0;
                position: absolute;
                font-size: 22px;
                color: var(--secondary-color);
                transition: all 1s;
            }

    .headermenu .navbar-header {
        display: block;
    }

    .menufixed .navbar-toggle {
        background-color: transparent;
        border-color: transparent;
        margin: 3px;
        padding: 3px;
        position: relative;
        top: 0;
        z-index: 999;
    }

    .fixedbtn.topfixedicon span {
        display: none !important;
    }

    .headermenu .navbar-inverse .navbar-nav {
        float: none;
        width: 90%;
        padding: 20px 0 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        margin: 0 auto;
        text-align: center;
    }

    .headermenu .navbar-toggle .icon-bar {
        background: var(--secondary-color);
    }

    .headermenu .navbar-inverse {
        float: left;
    }

        .headermenu .navbar-inverse .navbar-toggle:focus,
        .headermenu .navbar-inverse .navbar-toggle:hover {
            background-color: transparent;
        }

        .headermenu .navbar-inverse .navbar-toggle {
            border-color: transparent;
            margin: 0 10px 0 0;
        }

        .headermenu .navbar-inverse .container-fluid {
            padding: 0 15px;
            text-align: center;
            background: #3e3e3e;
        }

        .headermenu .navbar-inverse .navbar-nav > li {
            display: block;
            text-align: center;
            margin: 10px 0 15px !important;
            text-align: center;
            padding: 0;
        }

            .headermenu .navbar-inverse .navbar-nav > li:first-child {
                margin: 10px 0;
            }

            .headermenu .navbar-inverse .navbar-nav > li > a {
                font-size: 14px;
                padding: 0;
                color: var(--pure);
                margin: 0;
                border-bottom: none;
                font-weight: 500;
                text-align: center;
            }

    .headermenu .navbar-inverse {
        background-color: var(--primary-color);
        box-shadow: none;
    }

        .headermenu .navbar-inverse .navbar-nav > .active > a, .headermenu .navbar-inverse .navbar-nav > .active > a:focus, .headermenu .navbar-inverse .navbar-nav > .active > a:hover, .headermenu .navbar-inverse .navbar-nav > li > a:hover {
            background: transparent;
            color: var(--secondary-color);
            border-bottom: none;
        }

            .headermenu .navbar-inverse .navbar-nav > li > a:hover:before, .headermenu .navbar-inverse .navbar-nav > li > a:focus:before {
                background-color: var(--buttoncolor);
            }

        .headermenu .navbar-inverse .navbar-nav > li > a:after {
            background-color: var(--buttoncolor);
        }

        .headermenu .navbar-inverse .navbar-collapse {
            border: none !important;
        }

    .side-collapse-container {
        width: 100%;
        position: relative;
        left: 0;
        transition: left .4s;
    }

        .side-collapse-container.out {
            left: 200px;
        }

    .headermenu .side-collapse {
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        position: fixed;
        overflow-y: auto;
        transition: .6s;
        padding-top: 30px;
        z-index: 9999;
    }

    .side-collapse.in {
        width: 100%;
        left: 100%;
        transition: .6s;
    }

    .cssmenu {
        float: left;
        width: 100%;
    }

    .navbar-toggle {
        display: block;
    }

    /* leftmenu end */

    .tophead .contactheader {
        display: none;
    }

    .head_customerdetails {
        flex-basis: 50%;
    }

    .head_paymentissues {
        flex-basis: 50%;
    }
    /*About Us Page Style Start Here*/
    .aboutus_content_left {
        flex-basis: 100%;
    }

    .aboutus_content_right {
        display: none;
    }

    .aboutus_content_left span {
        font-size: 14px !important;
    }

    .aboutus_content_left p {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .aboutus_content_left ul {
        padding: 0px 0px 26px 0px !important;
    }

        .aboutus_content_left ul li {
            font-size: 14px !important;
        }

    .innerpage_titleshape h2 {
        font-size: 32px;
    }

    .innerpage_titleshape {
        padding: 0 0 0 20px;
        margin: -40px 0 0;
    }

    .feedback_form_left {
        flex-basis: 100%;
    }

    .feedback_form_right {
        display: none;
    }

    .aboutus_content_main ul li {
        font-size: 14px;
        line-height: 24px;
    }

    .conditions_wrapper_left {
        flex-basis: 100%;
    }

    .conditions_wrapper_right {
        display: none;
    }

    .conditions_wrapper_block_detail p {
        font-size: 14px;
        line-height: 20px;
    }

    .cancellation_policy_list ul li {
        line-height: 20px;
    }

    .contact_headoffice_detail h5 {
        font-size: 14px;
        margin: 0 0 10px;
    }

    .contact_headoffice_detail p {
        font-size: 14px;
        line-height: 20px;
    }

    .contact_headoffice_detail {
        padding: 0;
    }

    .contact_suboffice .filter_tab_main {
        padding: 0 0 20px;
        flex-basis: 100%;
    }

        .contact_suboffice .filter_tab_main:nth-child(2) {
            flex-basis: 100% !important;
            width: 100%;
        }

    .contact_suboffice .filter-drawer {
        padding: 12px 16px;
    }

    .contact_suboffice .filter_tab_main h5 {
        font-size: 14px;
    }

    /*About Us Page Style End Here*/

    /********** My Booking Page Style Start Here **********/

    .profileinputdetails .web_input {
        width: 100%;
        float: left;
    }

    .profileinputdetails.profileinputdetails01 .web_input {
        width: 100%;
    }

    .profileinputdata {
        flex-basis: 100%;
    }

    .profileinputdetails {
        gap: 0;
    }

    .mybooking-tabs .tab-list > li > h3 {
        font-size: 14px;
    }

    .profileinputdetails span {
        font-size: 14px;
    }

    .season_tab label {
        font-size: 14px;
    }

    /********** My Booking Page Style End Here **********/

    /**** Available Routes Start ****/

    .available_route_section {
        padding: 0 0 50px;
    }

    .bookingcontinue button {
        font-size: 15px;
        padding: 9px 30px;
    }

    .filter-drawer {
        padding: 10px 15px;
    }

    .filter-drawer__content {
        padding: 10px 0 0;
    }

    .ba-we-love-subscribers-wrap {
        width: 50px;
    }

    .ba-we-love-subscribers-fab {
        width: 50px;
        height: 50px;
    }

        .ba-we-love-subscribers-fab .img-fab::before {
            font-size: 18px;
        }

        .ba-we-love-subscribers-fab .img-fab.close::before {
            font-size: 18px;
        }

    .available_route_leftbar .title {
        text-align: left;
    }

    .modifyinput .css-xsu6ln-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
        padding: 0 0 0 26px;
        height: 44px;
    }

    .modifybookingsearch .modifyinput input {
        height: 44px;
        padding: 0 0 0 26px;
        background-position: left 5px;
        background-size: 18px;
    }

    .modifybookingsearch .modifyinput.modifyfromcity input {
        background-position: left -163px;
    }

    .modifybookingsearch .modifyinput.modifytodate input {
        background-position: left -495px;
    }

    .modifybookingsearch .modifyinput.modifyfromdate input {
        background-position: left -663px;
    }

    .modifybookingsearch .modifyinput input {
        height: 44px;
        padding: 0 0 0 26px;
    }

    .modifyinput.modifytocity.modifyfromcity {
        padding: 0 0 0 20px;
    }

    .modifyswapcity {
        background-position: center -342px;
        width: 17px;
        height: 17px;
        background-size: 18px;
        right: 30px;
    }

    .modifybutton button {
        font-size: 16px;
        height: 44px;
    }

    .for-dropdown::after {
        font-size: 24px;
    }

    .sec-center span {
        font-size: 14px;
        padding: 0 15px 0 0;
    }

    .sortdropdown:checked + label, .sortdropdown:not(:checked) + label {
        font-size: 14px;
        height: 40px;
        width: 240px;
    }

    .route_box.route_box01 {
        flex-basis: 100%;
        width: 100%;
    }

    .bus_type_data {
        gap: 20px;
        width: 100%;
    }

    .bus_time_data {
        width: 100%;
    }

    .bus_start_time {
        flex-basis: 70%;
    }

    .bus_duration_time {
        width: 34%;
    }

    .route_box.route_box02 {
        align-items: flex-start;
    }

    .droproutebtnpart .nav-tabs .nav-link, .droproutebtnpart .nav-tabs button {
        font-size: 15px;
    }

    .available_seat span label {
        font-size: 18px;
        padding: 0 6px 0 0;
    }

    .available_seat span {
        font-size: 15px;
        padding: 0 0 0 22px;
        background-position: 0px -1478px;
        background-size: 20px;
    }

    .available_route_box_bottomrow {
        gap: 18px;
    }

    .seat_button button {
        font-size: 15px;
        padding: 10px 28px;
    }

    .seat_button i {
        padding: 11px 28px;
        font-size: 19px;
    }

    .droproutebtnwrap {
        padding: 28px 0 0;
    }

    .droproutebtnpart {
        padding: 16px 28px 16px;
    }

    .available_route_box {
        padding: 28px 0 0;
    }

    .available_route_box_toprow {
        padding: 0 28px;
        gap: 20px;
    }

    .lowerdeckseat, .upperdeckseat {
        width: 100%;
        max-width: 600px;
        overflow-x: auto;
    }

        .lowerdeckseat::-webkit-scrollbar, .upperdeckseat::-webkit-scrollbar {
            border-radius: 2px;
            width: 8px;
            background-color: var(--primary-color);
        }

    .seatitle {
        padding: 10px 0 12px;
    }

    .bookingdeatails {
        padding: 10px 0 0;
        gap: 15px;
    }

    /**** Customer Info Start ****/

    .cust_pass_input02 {
        flex-basis: 17.5%;
    }

    .custinfo_box_details .cust_pass_input {
        flex-basis: 30.6% !important;
    }

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 80.8% !important;
    }

    .custinfopopup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        margin: 11px !important;
    }

    .customerinfowrapper {
        padding: 0 10px 15px;
    }

    .custotitle {
        font-size: 20px;
    }

    .customerroutedata {
        gap: 15px;
        padding: 0;
    }

    .cust_box_title h5 {
        font-size: 17px;
    }

    .custinfo_box {
        padding: 20px;
    }

    .trip_fare_view {
        margin: 0;
        padding: 20px !important;
    }

    .customerinfowrapper {
        gap: 20px;
    }

    .journeysubtitle {
        padding: 0 0 15px;
    }

    .journeysubtitlereturn {
        padding: 40px 0 15px !important;
    }

    .journey_amount_btnmbl {
        gap: 20px;
        padding: 5px 0 0;
    }

    .journey_amount_btn button {
        font-size: 15px;
    }

    .cust_pass_input_details {
        gap: 20px;
    }

    .cust_pass_input01 {
        flex-basis: 48%;
    }

    .cust_pass_input02 {
        flex-basis: 48%;
    }

    .cust_pass_input input {
        height: 44px;
    }

    .cust_pass_input .css-xsu6ln-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
        height: 41px;
    }

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 77.6% !important;
    }

    .theme_buton {
        padding: 11px 30px 12px;
    }

        .theme_buton.theme_buton_wallet {
            padding: 11px 28px 12px;
        }

    .cust_pass_input.gst_input {
        gap: 20px;
    }

    .psngrpaybox .MuiFormControlLabel-root.MuiFormControlLabel-labelPlacementTop.css-1hpqosy-MuiFormControlLabel-root {
        padding: 20px 0 20px 10px;
    }

        .psngrpaybox .MuiFormControlLabel-root.MuiFormControlLabel-labelPlacementTop.css-1hpqosy-MuiFormControlLabel-root:last-child {
            padding: 20px 0 10px 10px !important;
        }

    .psngrpaybox .pg_gateway .css-j204z7-MuiFormControlLabel-root {
        padding: 20px 0 20px 10px;
    }

    .psngrpaybox .pg_gateway:last-child .css-j204z7-MuiFormControlLabel-root {
        padding: 20px 0 10px 10px;
    }

    .pass_journey_details_box p {
        flex-basis: 25%;
    }

    .pass_journey_details_box label {
        flex-basis: 75%;
    }

    .custinfo_box.trip_fare_details {
        padding: 20px;
    }
}

@media only screen and (max-width: 639px) {
    .cancellation-list-title:last-child {
        text-align: right;
    }

    .feedback_wrapper {
        padding: 45px 0 55px;
    }

    .feedbkinput label {
        font-size: 15px;
    }

    .feedbkinput .col-lg-6 {
        flex-basis: 100%;
    }

    .feedbkformgroup {
        padding: 25px 0 0;
    }

    .agntpgcaptcha .btn-primary {
        padding: 8px 24px;
        font-size: 15px;
    }

    .headlogin a {
        font-size: 13px;
        padding: 10px 18px;
    }

    .headlogin {
        gap: 18px;
    }

    /*Gallery*/

    .gallerywrap .column {
        width: 50%;
    }

    .prev, .next {
        top: 65%;
    }

    .galleryparts {
        padding: 50px 0 40px;
    }

    /*E Ticket*/

    .eticketwrap {
        padding: 70px 0 20px;
    }

    .ticket_page_title h5 {
        font-size: 20px;
    }

    .ticket_orderno p {
        font-size: 18px;
    }

    .ticket_orderno label {
        font-size: 18px;
    }

    .onwars_journy_top {
        padding: 20px 20px 18px;
    }

    .ticket_orderno {
        padding: 30px 0 18px;
    }

    .onward_title p {
        font-size: 18px;
    }

    .onward_pnr {
        padding: 8px 20px 8px;
        font-size: 15px;
    }

    .onward_journy_box {
        padding: 20px 20px 10px;
        gap: 20px;
    }

    .onward_journy_box_left_top {
        gap: 20px;
        padding: 0 0 25px;
        justify-content: space-between;
    }

    .onward_journy_left_block .block_tocity {
        font-size: 18px;
    }

    .onward_journy_box_right {
        gap: 30px;
        flex-basis: 100%;
    }

    .passenger_detail_main_block {
        padding: 30px 0 0;
    }

    .passenger_detail_sub_box.passenger_contact_detail_sub_box {
        padding: 30px 0 0;
    }

    .fare_details_block {
        padding: 10px 0 0;
    }

    .paperless_block {
        padding: 40px 0 0;
    }

    .paperless_rightpart label {
        font-size: 17px;
    }

    /*E Ticket*/

    .head_contact01:before {
        display: none;
    }

    .head_login:before {
        display: none;
    }

    .head_login .dropdown, .dropup {
        justify-content: center;
    }

    .head_paymentissues {
        position: relative;
    }

    .partialradiogroup .css-ahj2mt-MuiTypography-root {
        font-size: 15px !important;
    }

    .css-1m9pwf3 {
        width: 20px !important;
        height: 20px !important;
    }

    .MuiFormControlLabel-root.MuiFormControlLabel-labelPlacementTop.css-1hpqosy-MuiFormControlLabel-root {
        padding: 0;
        margin: 0 24px 0 0;
    }

    .partialradiogroup .css-1hbvpl3-MuiSvgIcon-root, .partialradiogroup .css-11zohuh-MuiSvgIcon-root {
        font-size: 20px !important;
    }

    .toptitle h2 {
        font-size: 20px;
        padding: 24px 0 0;
    }

    .toptitle h6.title:after {
        width: 200px;
    }

    .aboutuswrapleft .visionlistcontent h3 {
        font-size: 14px;
    }

    .head_login {
        flex-basis: 50%;
    }

    .aboutuswrapleft .visionlist {
        padding: 10px 16px;
    }

        .aboutuswrapleft .visionlist:first-child {
            padding: 10px 16px;
            border-top: 1px solid rgb(9 47 83 / 20%);
        }

        .aboutuswrapleft .visionlist a {
            font-size: 14px;
            letter-spacing: inherit;
        }

    .awardRecognition h3 {
        font-size: 24px;
        letter-spacing: inherit;
    }

    .bookingforminput .inputdata {
        padding: 8px 0 6px 24px;
    }

    .bookingforminput.journeydateinput .inputdata {
        padding: 8px 0 6px 24px;
    }

    .quickdate {
        top: 14px;
    }

    .bookingforminput.journeydateinput input {
        height: 32px !important;
        min-height: 32px !important;
    }

    .serviceswraptop .nav > li > a {
        padding: 10px 10px 14px;
        font-size: 14px;
        letter-spacing: inherit;
    }

    .footer-contact-data span {
        background-position: 2px -437px;
        background-size: 42px;
        width: 42px;
        height: 42px;
    }

    .footer-contact-data.contact-email span {
        background-position: 2px -569px;
    }

    .footer-contact-data.contact-address span {
        background-position: 2px -700px;
    }

    .footer-contact-data.contact-social span {
        background-position: 2px -832px;
    }

    .bookingforminput .city_swap {
        right: 0;
        bottom: -21px;
        top: auto;
        transform: rotate(90deg);
        z-index: 1;
    }

    .userloginpopup .popup .inner {
        width: 90%;
    }

        .userloginpopup .popup .inner .popup-head h5 {
            padding: 30px 0 20px;
            font-size: 16px;
        }

    #activate-menu {
        padding: 20px 30px;
        width: 340px;
    }

    .sidebar-main-social-icon a {
        font-size: 16px;
        width: 60px;
        height: 60px;
    }

    .sidebar-main-details h5 {
        font-size: 18px;
    }

    .menu-link {
        font-size: 14px;
    }

    .tophead .logo a img {
        max-width: 280px;
    }

    .tablist .nav-tabs .nav-item {
        flex-basis: 30%;
    }

    .bookingforminput {
        flex-basis: 100%;
    }

    .hero-style {
        height: 200px;
    }

        .hero-style .slide-title h2 {
            font-size: 16px;
            line-height: 20px;
        }

    .destination-top-title {
        padding: 12px 0 0 60px;
    }

    .awardslide .owl-carousel.owl-drag .owl-item p {
        font-size: 14px;
        line-height: 22px;
        font-weight: 500;
    }

    .leftimagecontent h5 {
        font-size: 20px;
    }

        .leftimagecontent h5::after {
            width: 100px;
            left: 140px;
        }

    .leftimagecontent p {
        font-size: 13px;
        line-height: 24px;
    }

    .leftimagecontent {
        right: 20px;
        padding: 20px;
        width: 80%;
    }

    .amenitieslistblock {
        padding: 40px 20px 0;
    }

    .amenitieslistblock {
        row-gap: 0px;
    }

    .testimonialleft {
        padding: 60px 40px 40px;
    }

    .customer-test-title {
        font-size: 42px;
    }

    .testimonial-slide {
        margin: -18px 0 0;
    }

    .awardpara a {
        font-size: 14px;
        padding: 0 0 2px 20px;
        background-position: 0px -1929px;
        background-size: 60px;
    }

        .awardpara a:hover::after,
        .awardpara a:focus::after {
            width: 70px;
        }

    .awardpara p {
        font-size: 13px;
        line-height: 24px;
    }

    .awardslide .owl-slider {
        padding: 60px 0 0;
    }

    .awardslidertextbottom {
        bottom: -20px;
        font-size: 60px;
    }

    .awardslide {
        padding: 0 0 80px;
    }

        .awardslide .owl-nav {
            bottom: 40px;
            left: 40px;
        }

    .count-box {
        flex-basis: 60%;
    }

    .mobile-block-title h2 {
        font-size: 40px;
    }

    .app-download-data {
        margin: -10px 0 0;
    }

    .service-title h2 {
        font-size: 50px;
    }

    .sec-title h2 {
        font-size: 26px;
        padding: 0 0 12px;
    }

    .testimonials-wrapper h5 {
        font-size: 13px;
        line-height: 24px;
    }

    .footertitle .sec-title h2 {
        font-size: 20px;
    }

    .sec-title h2::before {
        width: 50px;
    }

    .sec-title h2::after {
        left: 60px;
    }

    .footernav {
        flex-basis: 40%;
    }

        .footernav.footernav03 {
            flex-basis: 100%;
        }

    .footer-navbarblock {
        flex-wrap: wrap;
        padding: 0 40px 0;
    }

    .newsblock {
        margin: -100px 0 0;
    }

    .newsblock-input input {
        height: 50px;
        font-size: 14px;
    }

    .newsblock-input a {
        margin: 14px 0 0;
        font-size: 14px;
        padding: 8px 0 9px;
    }

    .mobile-qr-image {
        width: 90%;
    }

    .mobile-qr-bg {
        width: 16%;
    }

    .footer-contact-data {
        flex-basis: 70%;
    }

        .footer-contact-data.contact-address {
            flex-basis: 70%;
        }

    .awarddata {
        min-height: 1px;
        background-size: cover;
        padding: 60px 40px 40px;
    }

    .app-download-details h5 {
        font-size: 22px;
    }

    .app-download-details p {
        font-size: 16px;
        padding: 10px 0 0;
    }

    .footer-contact-details a,
    .footer-contact-details p {
        font-size: 13px;
        line-height: 20px;
    }

    .footer-contact-data h5 {
        line-height: 1;
    }

    .inner_head_title span {
        font-size: 26px;
    }

    .innerpage_top {
        padding: 60px 0 0;
    }

    .innerpage_wrapper {
        padding: 0 0 60px;
    }

    /**** Available Routes Start ****/

    .modifyinput.modifytodate.modifyfromdate {
        padding: 0 0 0 14px;
    }

    .modifytocity {
        width: 48%;
    }

    .modifyinput.modifytocity.modifyfromcity {
        width: 52%;
    }

    .modifyswapcity {
        right: 10px;
        top: 14px;
    }

    .routepointparts {
        width: 100%;
    }

    .availableseats {
        width: 100%;
    }

    .restroute_point_popup .css-ypiqx9-MuiDialogContent-root {
        width: 360px;
    }

    .routecitytitlepart {
        width: 320px;
    }

    .routecitytitle {
        font-size: 16px;
    }

        .routecitytitle span {
            background-position: center -182px;
            flex-basis: 14%;
            background-size: 100px;
        }

    .routecitytitletime {
        font-size: 14px;
    }

    .dbroutehead {
        flex-basis: 74%;
    }

    .dbpointnm_data {
        padding: 0;
    }

    .routedatatime {
        font-size: 14px;
    }

    .dbroutehead label {
        font-size: 14px;
    }

    .routeheadtitle {
        font-size: 13px;
    }

    .ba-we-love-subscribers-fab {
        width: 40px;
        height: 40px;
    }

    .ba-we-love-subscribers.open {
        height: 66vh;
    }

    .filter-drawer__content_input.filter-drawer__content_input_search input {
        padding: 8px 30px 8px 12px !important;
        font-size: 13px;
        background-position: 99% -1550px;
    }

    .ba-we-love-subscribers-wrap {
        left: 20px;
        bottom: 20px;
        width: 45px;
    }

    .available_route_leftbar .title {
        font-size: 16px;
    }

    .modifybookingsearch .modifyinput input {
        font-size: 15px;
    }

    .modifybutton button {
        font-size: 15px;
    }

    .bus_duration_time {
        width: 40%;
        padding: 2px 0 0;
    }

        .bus_duration_time span {
            background-size: 76px;
            background-position: center 2px;
        }

    .bus_start_time {
        gap: 2px;
    }

        .bus_start_time label {
            font-size: 16px;
        }

        .bus_start_time p {
            font-size: 14px;
            padding: 0;
        }

    .bus_type_data p {
        font-size: 15px;
    }

    .route_box.route_box02 label {
        font-size: 14px;
    }

    .route_box.route_box02 span {
        font-size: 15px;
    }

    .route_fare_data p {
        font-size: 11px;
    }

    .route_fare_data span {
        font-size: 14px;
        padding: 4px 0 0;
    }

    .route_fare_data label {
        font-size: 16px;
    }

    .droproutebtnpart {
        padding: 20px 20px 20px;
        flex-direction: column-reverse;
        gap: 20px;
        align-items: center;
    }

    .available_route_box_bottomrow {
        width: 100%;
    }

    .bookingdeatails {
        flex-direction: column;
    }

    .routepoint {
        width: 100%;
        padding: 0 0 20px;
        gap: 15px;
    }

    .bookingservicefair {
        width: 100%;
    }

    .routepoint .css-qkv3hr-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
        font-size: 14px;
    }

    .available_route_box .tab-pane {
        padding: 28px;
    }

    .bookingcontinue {
        text-align: center;
    }

    /**** Customer Info Start ****/

    .custinfopopup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        margin: 0 !important;
        max-width: 100% !important;
    }

    .faredetails {
        font-size: 17px;
        padding: 0 0 12px;
    }

    .fare_lable label {
        font-size: 15px;
    }

    .totalfare_lable label {
        font-size: 15px;
    }

    .totalfare_lable p {
        font-size: 15px;
    }

    .cust_pass_input01 {
        flex-basis: 100%;
    }

    .cust_pass_input02 {
        flex-basis: 100%;
    }

    .custinfo_box_wallet .cust_pass_input01 {
        flex-basis: 100% !important;
    }

    .cust_pass_input.cust_pass_input_botton {
        width: 100%;
    }

    .custinfo_box_details .cust_pass_input {
        flex-basis: 100% !important;
    }

    .cust_pass_input.gst_input {
        flex-direction: column;
    }

    .pass_journey_details_box p {
        flex-basis: 30%;
    }

    .pass_journey_details_box label {
        flex-basis: 70%;
    }
}

@media only screen and (max-width: 576px) {
    .head_customerdetails {
        flex-basis: 45%;
    }

    .head_paymentissues {
        flex-basis: 55%;
    }

    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em;
    color: #000;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem
}

    .btn-close:hover {
        color: #000;
        text-decoration: none;
        opacity: .75
    }

    .btn-close.disabled, .btn-close:disabled {
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        opacity: .25
    }

.modal-header .btn-close {
    padding: .5rem;
    margin: -.5rem -.5rem -.5rem auto
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

.offcanvas-header .btn-close {
    padding: .5rem;
    margin-top: -.5rem;
    margin-right: -.5rem;
    margin-bottom: -.5rem;
}

@media only screen and (max-width: 479px) {
    .cancellation-list-title {
        padding: 12px 10px;
        font-size: 14px;
    }

    .cancellation-list {
        padding: 12px 10px;
        gap: 10px;
        font-size: 15px;
    }

    .droproutebtnpart .nav-tabs {
        align-items: center;
    }

    .bookingwrapper .tapnow {
        flex-direction: column;
        gap: 12px;
    }

    /* .tapnow h1 {
        font-size: 13px;
    }

    .tapnow a {
        font-size: 13px;
        padding: 6px 10px;
    }*/

    .web_inputterms {
        padding: 10px 0 10px;
    }

    .feedback_wrapper {
        padding: 40px 0 50px;
    }

    .feedbkformgroup {
        padding: 20px 0 0;
    }

    .feedbkinput input {
        padding: 0 0 0 15px !important;
        height: 40px;
        font-size: 14px;
    }

    .feedbkinput {
        gap: 18px;
    }

        .feedbkinput label {
            padding: 0 0 6px;
        }

    .agntpgcaptcha label {
        font-size: 15px;
        padding: 0 0 10px;
    }

    .headermenu {
        top: 10px;
        right: 10px;
    }

    .tophead .logo a img {
        max-width: 250px;
    }

    .headermenu .navbar-inverse .navbar-nav {
        padding: 10px 0 15px;
    }

        .headermenu .navbar-inverse .navbar-nav > li {
            margin: 10px 0 10px !important;
        }

    .headercontactdetails {
        row-gap: 0;
        padding: 30px 0 30px;
    }

    .head_contact01 {
        padding: 30px 0 20px;
    }

        .head_contact01.head_contact02 {
            padding: 0;
        }

    .head_customerdetails {
        flex-basis: 100%;
    }

    .head_paymentissues {
        flex-basis: 100%;
    }

    .head_contact02 {
        border-left: none;
    }

        .head_contact02 p {
            border-top: 1px solid rgb(255 255 255 / 20%);
            padding: 20px 0 0;
        }

    .head_contact01 p {
        display: inline-block;
    }

    .head_contact01 span {
        display: block;
    }

    .countside {
        padding: 40px 0 0;
    }

    .headermenu .navbar-inverse .navbar-nav > li > a {
        font-size: 14px;
    }

    .headermenu .navbar-inverse .navbar-nav > li:first-child {
        margin: 0;
    }

    .footer-contact-details.social {
        margin: 0;
    }

    .eticketwrap {
        padding: 50px 0 10px;
    }

    .panel-heading.eticketprint {
        font-size: 22px;
    }

    .galleryparts {
        padding: 40px 0 20px;
    }

    .contact_suboffice {
        padding: 20px 0 0;
    }

    .userloginpopup .popupotp-input input {
        height: 50px;
    }

    .logilink {
        font-size: 12px;
        padding: 12px 16px;
    }

    .head_paymentissues:before {
        display: none;
    }

    .cityswapicon {
        background-position: center -210px;
        background-size: 42px;
        right: 5px;
        top: 54px;
        height: 42px;
        left: auto;
        transform: rotate(90deg);
    }

    .bookingforminput .inputdata input, .bookingforminput .inputdata input {
        font-size: 14px;
    }

    .bokinginputwrap {
        border-radius: 10px;
    }

    .quickdate label {
        font-size: 12px;
    }

        .quickdate label span {
            font-size: 11px;
        }

    .quickdate {
        top: 17px;
        position: absolute;
        right: 0;
    }

    .bokinginputwrap .bookingforminput {
        float: left;
        width: 100%;
    }

    .bookingforminput.journeydateinput, .bookingforminput.returndateinput {
        width: 100%;
    }

    .carousel .arrow {
        top: 68%;
    }

    .countside .countitem p {
        font-size: 12px;
        min-height: 62px;
    }

    .toptitle h6.title {
        width: 300px;
        max-width: 300px;
    }

    .reviewbox {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }

    .applink button {
        width: 90px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .carousel .arrow > svg {
        width: 24px;
        height: 24px;
    }

    .carousel .arrow.left {
        left: 40%;
    }

    .carousel .arrow.right {
        right: 40%;
    }

    .applink input {
        font-size: 14px;
        padding: 16px 120px 16px 29px;
    }

    .serviceswraptop ul {
        flex-direction: column;
    }

    .toptitle {
        text-align: left;
    }

    .countside .countbox {
        flex-basis: 70%;
    }

    .box {
        right: 6px;
        top: 0px;
    }

    .menu-item {
        height: 26px;
    }

    .burger-line {
        height: 2px;
    }

    #activator .menu-icon,
    #activator .menu-icon::before,
    #activator .menu-icon::after {
        height: 2px;
    }

    .navbarmenu {
        width: 70%;
    }

    .menurightpopup {
        width: 30%;
    }

    .userloginpopup .popupbtn {
        background-position: center -510px;
        background-size: 80px;
        border: none;
    }

    .userloginpopup .popup .popupotp-input input {
        height: 50px;
        padding: 8px;
        font-size: 13px;
    }

    .userloginpopup .popup .popupotp-input .popupbtn-in {
        padding: 10px 0;
        font-size: 13px;
    }

    .popup-sigin-option {
        gap: 70px;
        padding: 30px 0 0px;
    }

        .popup-sigin-option .sigin-option-title h5 {
            font-size: 13px;
        }

            .popup-sigin-option .sigin-option-title h5::after {
                width: 40px;
                height: 2px;
                right: -48px;
                bottom: 2px;
            }

    .sigin-option-icon a i {
        font-size: 17px;
        line-height: 36px;
        width: 36px;
        height: 36px;
    }

    .popup-head img {
        max-width: 40px;
    }

    .tablist .nav-tabs .nav-item .nav-link {
        font-size: 12px;
        background-image: none;
        padding: 10px 0 !important;
    }

    .tablist .nav-tabs {
        gap: 10px;
    }

        .tablist .nav-tabs .nav-item .nav-link.active::after {
            left: 45%;
        }

    .tab-content {
        padding: 0px 20px 56px;
    }

    .searchbtn {
        width: 70%;
    }

        .searchbtn button {
            font-size: 14px;
            padding: 12px 0;
        }

    .hero-style {
        height: 160px;
    }

    .slidercaption {
        left: 0;
        top: 10px;
    }

    .hero-style .slide-title span {
        font-size: 8px;
    }

    .hero-style .slide-title h2 {
        font-size: 12px;
        line-height: 17px;
    }

    .hero-style .slide-text p {
        font-size: 12px;
    }

    .service-title h2 {
        font-size: 42px;
    }

    .servicemain {
        margin: -14px 0 0;
    }

    .destinationshape {
        width: 40px;
    }

    .destination-top-title {
        padding: 12px 0 0 80px;
    }

    .destinatinedetails p {
        font-size: 13px;
        line-height: 24px;
    }

    .awardpara {
        padding: 40px 0px 0 0;
    }

    .awardslide {
        padding: 0 0 120px;
    }

        .awardslide .owl-nav {
            bottom: 50px;
            left: 40px;
        }

    .amenitiesleftpart {
        padding: 0 20px 0;
        flex-wrap: wrap;
    }

    .leftimagecontent {
        position: relative;
        width: 100%;
        right: 0;
        bottom: 0;
    }

    .amenitiesrightpart {
        padding: 0;
    }

    .amenitiesmobiletitle {
        padding: 0 0 40px;
    }

    .test-details {
        padding: 40px 0 0 0px;
    }

    .customer-test-title {
        font-size: 30px;
    }

    .testimonial-slide {
        margin: -14px 0 0;
    }

    .testimonial-carousel .single-testimonial {
        height: 276px;
    }

    .test-block {
        min-height: 1px;
        background-size: cover;
        padding: 0 0 70px;
    }

    .mobile-block-title h2 span {
        padding: 0;
    }

    .mobile-block-title h2 {
        font-size: 32px;
    }

    .app-download-data {
        padding: 60px 10px 60px 10px;
        margin: -8px 0 0;
    }

    .app-download-icon {
        padding: 40px 0 0;
        gap: 20px;
    }

    .app-download-details p {
        font-size: 13px;
    }

    .app-download-details h5 {
        font-size: 20px;
    }

    .mobile-qr-image img {
        margin: 0 0 0 -73px;
        max-width: 300px;
    }

    .mobile-qr-image {
        padding: 40px 0px 24px 0;
    }

    .mobile-qr-bg {
        min-height: 372px;
    }

    .partialradiogroup .css-ahj2mt-MuiTypography-root {
        font-size: 12px !important;
    }

    .footer-navbarblock {
        padding: 0 0px 0;
    }

    .footernav {
        flex-basis: 47%;
    }

    .service-box p {
        font-size: 13px;
        line-height: 22px;
        padding: 14px 0 0;
    }

    .service-box h5 {
        font-size: 16px;
    }

    .service-box {
        padding: 40px 20px 20px;
    }

    #activate-menu {
        right: -50%;
    }

    .awarddata {
        padding: 60px 20px 40px;
    }

    .footer-company-link p,
    .footer-company-link p a {
        font-size: 12px;
    }

    .footer-poweredby p {
        font-size: 12px;
    }

    .footer-contact-data h5 {
        font-size: 16px;
        padding: 6px 0 0px;
    }

    .popupotp-input {
        padding: 20px 0 0;
    }

    .count-box {
        flex-basis: 100%;
    }

    .count-no-bg span {
        font-size: 60px;
    }

    .count-number h2 {
        font-size: 34px;
        width: 100px;
    }

    .count-box-data h5 {
        font-size: 20px;
    }

    .count-no-bg {
        top: -40px;
    }

    .count-data {
        padding: 0;
    }

    #activate-menu {
        width: 300px;
    }

    .sec-title h2 {
        font-size: 24px;
        padding: 0 0 10px;
    }

    .topdestinationroute {
        flex-basis: 100%;
        padding: 60px 0 0;
        width: 100%;
    }

    .innerpage_titleshape h2 {
        font-size: 20px;
    }

    .innerpage_titleshape {
        padding: 0 0 0 20px;
        margin: -26px 0 0;
    }

    .innerpage_top {
        padding: 50px 0 0;
    }

    .inner_head_title span {
        font-size: 22px;
    }

    .contact_suboffice_title h5 {
        font-size: 18px;
        padding: 0 0 3px;
    }

    .web_input input {
        height: 46px;
    }

    .web_inputterms a {
        font-size: 15px;
    }

    .theme_buton_s1 {
        font-size: 15px;
        padding: 10px 24px;
    }

    .innerpage_wrapper {
        padding: 0 0 50px;
    }

    /*About Us Page Style End Here*/


    /*Login Popup Style Start Here*/

    .login_popup_main .css-ypiqx9-MuiDialogContent-root {
        padding: 40px 20px 40px;
    }

    .login_popup_main .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        margin: 20px;
    }
    /*Login Popup Style End Here*/

    .innerpage_head {
        padding: 0 0 25px;
    }

    .conditions_wrapper .contact_suboffice_title {
        padding: 0 0 15px;
    }

    .conditions_wrapper_block_detail {
        padding: 0 0 20px;
    }

    /**** Available Routes Start ****/

    .bookingcontinue {
        padding: 25px 0 0;
    }

        .bookingcontinue button {
            font-size: 14px;
            padding: 8px 26px;
        }

    .restroute_point_popup.css-zw3mfo-MuiModal-root-MuiDialog-root {
        width: 100%;
    }

    .restroute_point_popup .css-ypiqx9-MuiDialogContent-root {
        width: 100%;
    }

    .restroute_point_popup .css-hz1bth-MuiDialog-container .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        width: 100%;
    }

    .routecitytitlepart {
        width: 88%;
    }

    .routecitytitle {
        font-size: 15px;
    }

        .routecitytitle span {
            background-position: center -164px;
            flex-basis: 14%;
            background-size: 90px;
        }

    .routecitytitletime {
        padding: 10px 0 0;
    }

    .dbroutehead {
        flex-basis: 71.2%;
    }

    .modifytocity {
        width: 100%;
    }

    .modifyinput.modifytocity.modifyfromcity {
        padding: 0;
        width: 100%;
    }

    .modifytodate {
        width: 100%;
    }

    .modifyinput.modifytodate.modifyfromdate {
        padding: 0;
    }

    .modifyswapcity {
        right: 5px;
        left: auto;
        top: 35px;
        transform: rotate(90deg);
    }

    .available_route_main {
        padding: 5px 0 0;
    }

    .sortdropdown:checked + label, .sortdropdown:not(:checked) + label {
        font-size: 14px;
        height: 38px;
        width: 200px;
    }

    .for-dropdown::after {
        font-size: 22px;
    }

    .available_route_overbus .available_route_box {
        padding: 15px;
    }

    .available_route_box {
        margin-top: 15px;
        padding: 20px 0 0;
    }

    .routedata_main .routedata {
        padding: 15px 0 0;
    }

    .modifydatasleep.modifydatasleep_connecting {
        font-size: 16px;
        padding: 0 0 16px;
    }

    .changeoverbus {
        font-size: 15px;
        padding: 15px 0 0;
    }

    .waitduration {
        font-size: 14px;
        padding: 7px 0 11px;
    }

    .available_route_box_toprow {
        padding: 0 15px;
    }

    .bus_start_time label {
        font-size: 14px;
    }

    .bus_type_data .bus_duration_time p {
        font-size: 12px;
    }

    .bus_type_data .bus_start_time p {
        font-size: 12px;
    }

    .bus_duration_time span {
        background-size: 60px;
        background-position: center 3px;
    }

    .bus_duration_time {
        width: auto;
        padding: 4px 0 0;
        flex-basis: 60%;
    }

    .bus_type_data p {
        font-size: 13px;
    }

    .route_box.route_box02 span {
        font-size: 14px;
    }

    .route_box.route_box02 label {
        font-size: 13px;
    }

    .route_fare_data label {
        font-size: 15px;
    }

    .route_fare_data span {
        font-size: 13px;
        padding: 4px 0 1px;
    }

    .available_route_box_bottomrow {
        gap: 15px;
    }

    .seat_button button {
        font-size: 14px;
        padding: 8px 24px;
    }

    .seat_button i {
        padding: 9px 22px 8px;
        font-size: 18px;
    }

    .droproutebtnpart {
        padding: 18px 15px 18px;
        gap: 18px;
        align-items: center;
    }

    .available_route_box_bottomrow {
        flex-direction: column;
    }

    .available_route_box .tab-pane {
        padding: 15px 15px 25px;
    }

    .amenities-tab-section {
        padding: 15px;
    }

    .amenities-tab-list {
        gap: 12px;
    }

    .amenities-tab-box {
        padding: 6px 12px;
        gap: 10px;
    }

        .amenities-tab-box i {
            font-size: 16px;
        }

        .amenities-tab-box p {
            font-size: 14px;
        }

    .bookingseatchart {
        gap: 15px;
        flex-basis: 100%;
    }

    .seatitle {
        padding: 8px 0 10px;
        font-size: 14px;
    }

    .upperlowerchart {
        gap: 15px;
    }

    .bookingchartdata {
        gap: 15px;
    }

    .serviceboxtitle {
        font-size: 14px;
        padding: 8px 10px;
    }

    .serviceboxdetail p {
        font-size: 13px;
        width: 35%;
        margin: 0 0 5px;
    }

    .serviceboxdetail label {
        font-size: 13px;
        width: 65%;
        padding: 0 0 0 12px;
    }

    .ba-we-love-subscribers {
        width: 280px;
    }

    .droproutebtnwrap {
        padding: 20px 0 0;
    }

    /**** Customer Info Start ****/

    .custotitle {
        font-size: 18px;
    }

        .custotitle::after {
            bottom: 3px;
        }

    .customerinfoleft {
        gap: 18px;
    }

    .customerinfowrapper {
        padding: 0 0 15px;
    }

    .custinfo_box {
        padding: 15px;
    }

    .cust_box_title h5 {
        font-size: 16px;
    }

    .cust_box_details {
        padding: 6px 0 0px;
    }

    .cust_pass_title h5 {
        font-size: 15px;
    }

    .cust_pass_input input {
        height: 40px;
        font-size: 14px;
    }

    .cust_pass_input .css-xsu6ln-MuiAutocomplete-root .MuiInput-root .MuiInput-input {
        height: 37px;
    }

    .cust_pass_input_details {
        gap: 15px;
    }

    .custinfo_box_wallet .cust_boxdata_details {
        gap: 15px;
    }

    .theme_buton {
        padding: 9px 30px 10px;
    }

        .theme_buton.theme_buton_wallet {
            padding: 9px 28px 10px;
        }

    .custinfo_box_wallet .cust_box_details {
        padding: 15px 0 0;
    }

    .cust_pass_input.gst_input {
        gap: 15px;
    }

    .psngrpaybox .MuiFormControlLabel-root.MuiFormControlLabel-labelPlacementTop.css-1hpqosy-MuiFormControlLabel-root {
        padding: 10px 0 15px 10px;
        margin: 0;
    }

        .psngrpaybox .MuiFormControlLabel-root.MuiFormControlLabel-labelPlacementTop.css-1hpqosy-MuiFormControlLabel-root:last-child {
            padding: 15px 0 10px 10px !important;
        }

    .psngrpaybox .pg_gateway .css-j204z7-MuiFormControlLabel-root {
        padding: 10px 0 15px 10px;
    }

    .psngrpaybox .pg_gateway:last-child .css-j204z7-MuiFormControlLabel-root {
        padding: 15px 0 10px 10px;
    }

    .custinfo_box .css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root .css-i4bv87-MuiSvgIcon-root {
        font-size: 26px;
    }

    .cust_pass_input.cust_pass_input01 label {
        font-size: 15px;
        padding: 0 0 0 8px;
    }

    .cust_pass_input.cust_pass_input01 a {
        font-size: 15px;
    }

    .trip_fare_view {
        padding: 15px !important;
    }

    .customerinfowrapper {
        gap: 10px;
    }

    .pass_journey_details_box p {
        flex-basis: 36%;
    }

    .pass_journey_details_box label {
        flex-basis: 64%;
    }

    .journeysubtitlereturn {
        padding: 30px 0 15px !important;
    }

    .fare_lable {
        padding: 9px 10px 9px;
    }

    .custinfo_box.trip_fare_details {
        padding: 15px;
    }

    .faredetails {
        font-size: 16px;
        padding: 0 0 8px;
    }

    .totalfare_lable {
        padding: 8px 10px;
        margin: 6px 0 0;
    }

    .fare_lable p {
        font-size: 13px;
    }

    .fare_lable label {
        font-size: 14px;
    }

    .totalfare_lable p {
        font-size: 14px;
    }

    .totalfare_lable label {
        font-size: 14px;
    }

    .journey_amount_btnmbl {
        gap: 15px;
        padding: 15px 0 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .journey_amount_btn button {
        font-size: 14px;
        padding: 10px 26px;
    }

    .custlastpopup .css-2rbg70-MuiPaper-root-MuiDialog-paper {
        max-width: 100%;
        margin: 10px;
        padding: 20px;
    }

    .custlastpopup p {
        font-size: 17px;
    }

    .custlastpopup .css-ypiqx9-MuiDialogContent-root {
        padding: 20px 10px;
    }

    .custobtnparts .custbtn {
        padding: 6px 22px;
    }

    .custotpsuccess {
        padding: 25px 0 0;
        font-size: 18px;
    }

    /*E Ticket*/

    .ticket_page_title h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .ticket_orderno {
        padding: 25px 0 14px;
    }

        .ticket_orderno p {
            font-size: 16px;
        }

        .ticket_orderno label {
            font-size: 17px;
        }

    .journey_detail_block {
        padding: 35px 0 0;
    }

    .onwars_journy_top {
        flex-direction: column;
        gap: 10px;
    }

    .onward_journy_bus_type {
        gap: 12px;
    }

        .onward_journy_bus_type p {
            flex-basis: 119px;
        }

    .fare_details_row {
        padding: 10px 0 0;
    }

    .button_bottom {
        padding: 30px 0 50px;
    }
}

@media only screen and (max-width: 359px) {
    .hero-style {
        height: 140px;
    }

    #activate-menu {
        padding: 20px 30px;
        width: 260px;
    }

    .theme-btn-s2 {
        padding: 6px 14px;
        font-size: 10px;
    }

    .popup-sigin-option {
        gap: 40px;
    }

        .popup-sigin-option .sigin-option-title h5::after {
            width: 20px;
            right: -26px;
        }

    .sigin-option-icon {
        gap: 10px;
    }

    .service-title h2 {
        font-size: 36px;
    }

    .servicemain {
        margin: -12px 0 0;
    }

    .destinatinedetails p {
        line-height: 20px;
    }

    .awardslide .owl-carousel.owl-drag .owl-item .item {
        margin: 0 20px 0;
    }

    .customer-test-title {
        line-height: 38px;
    }

    .testimonial-slide {
        margin: -10px 0 0;
    }

    .testimonial-carousel .single-testimonial {
        height: 300px;
    }

    .count-no-bg {
        left: 40px;
    }

    .mobile-block-title h2 {
        text-align: center;
    }

    .app-download-details h5 {
        font-size: 18px;
    }

    .app-download-details p {
        font-size: 11px;
    }

    .mobile-qr-image img {
        margin: 0 0 0 -66px;
        max-width: 270px;
    }

    .mobile-qr-bg {
        min-height: 342px;
    }

    .newsblock h5 {
        font-size: 14px;
    }

    .newsblock p {
        font-size: 11px;
        line-height: 18px;
    }

    .footernav {
        flex-basis: 100%;
    }

    .footer-company-link p,
    .footer-company-link p a {
        font-size: 11px;
    }
}
