@import url(//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,cyrillic-ext,greek-ext,vietnamese);
:root{
    --geeta-darkblue:#082E40;
    --geeta-yellow:#FEAC00;
    --geeta-blue:#006A9D;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #545454;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}

fieldset {
    margin-bottom: 20px;
}

legend {
    border-top: 1px solid #e5e5e5;
    padding-top: 10px !important;
}

a {
    text-decoration: none;
}

#container {
    min-height: 100%;
    width: 100%;
    position: relative;
    background: #f6f6f6;
    overflow: hidden;
}

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

#alert {
    z-index: 9999;
    pointer-events: all;
}

#alert .alert {
    margin-bottom: 15px;
}

#header {
    z-index: 1000;
    margin: 0;
    padding: 0;
}

#header .navbar-nav > li > .nav-link {
    color: #FFFFFF;
}

/* Header Notification */
#nav-notification .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
    font-size: 24px;
}

#nav-notification > .nav-link .badge {
    position: absolute;
    top: 7px;
    right: 12px;
    padding: 3px 4px 2px 4px;
    opacity: 0.8;
    border-radius: 6px;
}

/* Desktop */
@media (min-width: 992px) {
    #nav-notification .nav-link {
        line-height: 50px;
    }

    #nav-notification > .nav-link .badge {
        top: 14px;
        right: 11px;
    }
}

#nav-language .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
}

@media (min-width: 992px) {
    #nav-language .nav-link {
        line-height: 50px;
    }
}

/* Header Profile */
#nav-profile .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
}

#nav-profile img {
    max-width: 30px;
}

/* Desktop */
@media (min-width: 992px) {
    #nav-profile .nav-link {
        padding-left: 10px;
        padding-right: 10px;
        line-height: 50px;
    }

    #nav-profile img {
        max-width: 35px;
    }
}

/* Header Logout */
#nav-logout > .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
}

/* Desktop */
@media (min-width: 992px) {
    #nav-logout > .nav-link {
        padding-left: 10px;
        padding-right: 10px;
        line-height: 50px;
    }
}

/* Menu Button */
#button-menu {
    font-size: 25px;
    padding: 0px 16px;
    margin: 2px;
    cursor: pointer;
    color: #6D6D6D;
}

/* Desktop */
@media (min-width: 992px) {
    #button-menu {
        padding: 10px 16px;
    }
}

#column-left {
    width: 200px;
    height: 100%;
    overflow: auto;
    background-color: #FFFFFF;
    border: 1px solid #dbdbdb;
    position: absolute;
    top: 0px;
    left: -200px;
    padding-top: 70px;
}

#column-left span.fa-solid.fa-bars{
    margin-right: 0.8rem;
}

#column-left::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(200, 200, 200, 0);
}

#column-left::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(128, 139, 156, 0.2);
}

#content {
    padding-bottom: 20px;
}

#column-left, #content, #footer {
    transition: all 0.3s;
}

#column-left + #content, #column-left + #content + #footer {
    position: relative;
    left: 0px;
}

#column-left.active {
    left: 0px;
}

#column-left.active + #content, #column-left.active + #content + #footer {
    left: 200px;
}

/* Desktop */
@media (min-width: 992px) {
    #column-left {
        left: 0px;
    }

    #column-left + #content, #column-left + #content + #footer {
        left: 0px;
        margin-left: 200px;
    }

    #column-left.active + #content, #column-left.active + #content + #footer {
        left: 0px;
        margin-left: 200px;
    }
}

/* Navigation */
#navigation {
    color: #000;
    background: #FFFFFF;
    display: block;
    text-transform: capitalize;
    padding: 15px 15px 15px 15px;
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

/* Menu */
#menu, #menu ul, #menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

#menu {
    margin-bottom: 25px;
}

#menu li a {
    text-decoration: none;
    display: block;
    padding: 10px;
    cursor: pointer;
    border-bottom: 0px solid #515151;
}

#menu li a.parent:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    float: right;
    margin-right: 8px;
}

#menu li a.parent:after {
    content: "\f107";
}

#menu li a.collapsed:after {
    content: "\f105";
}

/* 1st lvl */
#menu > li {
    position: relative;
}

#menu > li > a {
    font-size: 14px;
    color: #1872a2;
    padding-left: 20px;
}

#menu > li > a:hover {
    color: var(--geeta-yellow);
}

#menu > li > a > i {
    font-size: 16px;
    width: 18px;
    margin-right: 5px;
    /*color: #b3cbdd;*/
}

#menu > li.active > a {
    color: var(--geeta-yellow);
    background-color: var(--geeta-darkblue);
    font-weight: 600;
}

#menu > li > ul {
    color: var(--geeta-yellow);
}

/* 2nd lvl */
#menu li li a {
    color: #7f8a9b;
}

#menu li li a:before {
    font-family: 'Font Awesome 6 Free';
    content: "\f101";
    font-weight: 900;
    font-size: 13px;
    margin-left: 10px;
    margin-right: 10px;
    transition: margin ease 0.5s;
}

#menu li li a:hover:before {
    margin-right: 20px;
}

#menu li li a:hover {
    color: var(--geeta-yellow);
}

#menu li li.active > a {
    color: var(--geeta-yellow);
    background-color: var(--geeta-darkblue);
    font-weight: 600;
}

#menu li ul a {
    padding-left: 10px;
}

#menu li li ul a {
    padding-left: 20px;
}

#menu li li li ul a {
    padding-left: 30px;
}

#menu li li li li ul a {
    padding-left: 40px;
}

#stats {
    border-radius: 2px;
    color: #808b9c;
    background: #2e3a47;
    margin: 15px 20px;
    padding: 5px 0;
}

#stats ul, #stats li {
    padding: 0;
    margin: 0;
    list-style: none;
}

#stats li {
    font-size: 11px;
    color: #9d9d9d;
    padding: 5px 10px;
    border-bottom: 1px dotted #373737;
}

#stats div:first-child {
    margin-bottom: 4px;
}

#stats .progress {
    height: 3px;
    margin-bottom: 0;
}

/* footer */
#footer {
    height: 40px;
    text-align: center;
}

.page-header {
    vertical-align: middle;
    margin: 20px 0 0px 0;
    padding: 0;
    padding-bottom: 5px;
}

.page-header h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 30px;
    color: #4c4d5a;
    display: inline-block;
    margin-bottom: 15px;
    text-shadow: 0 1px #fff;
}

/* Navs
/* Tabs*/
.nav-tabs > li > a {
    color: #a5a5a5;
}

.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd;
}

.nav-tabs {
    margin-bottom: 25px;
}

.nav-tabs li.nav-item a.active {
    color: #333;
}

.form-label, .col-form-label {
    font-weight: bold;
}

.form-switch-lg {
    font-size: 26px;
    min-height: 36px;
    line-height: 36px;
}

@media (min-width: 992px) {
    .col-form-label {
        text-align: right;
    }
}

.row.mb-3 {
    position: relative;
}

.row.mb-3 + .row.mb-3 {
    padding-top: 1rem;
}

.row.mb-3 + .row.mb-3:before {
    display: block;
    content: '';
    position: absolute;
    width: calc(100% - calc(var(--bs-gutter-x) / 1));
    height: 0px;
    left: calc(var(--bs-gutter-x) / 2);
    top: 0;
    border-bottom: 1px solid #ededed;
}

.form-control:hover {
    border: 1px solid var(--geeta-yellow);
}

div.required .col-form-label:not(span):before, td.required:before {
    content: '* ';
    color: #F00;
    font-weight: bold;
}

.image {
    width: 12rem;
}

.table thead td span[data-toggle='tooltip']:after, label.form-label span:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: bold;
    content: "\f059";
    color: var(--geeta-darkblue);
    margin-left: 4px;
}

.table thead td {
    font-weight: bold;
}

.table thead > tr > td, .table tbody > tr > td {
    vertical-align: middle;
}

.table a.asc:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    content: " \f106";
}

.table a.desc:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    content: " \f107";
}

.pagination {
    margin: 0;
}

/* Cards */
.card {
    border-radius: 5px;
    border: 0;
    box-shadow: 1px 1px 6px 0 rgba(0,0,0,.08);
}

.card-header > i {
    margin-right: 5px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.bootstrap-datetimepicker-widget {
    position: absolute;
    float: right;
    z-index: 9999;
    height: 200px;
    width: 250px;
}


/* Tiles */
.tile {
    color: #FFFFFF;
    transition: all .5s;
    padding: 1rem;
    box-shadow: 1px 1px 6px 0 rgba(0,0,0,.08);
}

.tile-primary {
    background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px solid transparent;
}

.tile-success {
    background-color: #53b953;
}

.tile-warning {
    background-color: #f3aa41;
}

.tile-danger {
    background-color: #e45847;
}

.tile:hover {
    opacity: 0.95;
    border: 1px solid var(--geeta-yellow);
}

.tile a {
    color: #7A8C9A;
    font-size: 0.8rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-in;
}

.tile a:hover{
    color: var(--geeta-darkblue);
    border-color: var(--geeta-darkblue);
    transition: all 0.3s ease-in;
}

.tile-heading {
    text-transform: capitalize;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--geeta-darkblue);
    text-shadow: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.tile .tile-heading .pull-right {
    transition: all 1s;
    opacity: 0.7;
}

.tile:hover .tile-heading .pull-right {
    opacity: 1;
}

.tile-body {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--geeta-darkblue);
    line-height: 48px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
}

.tile-body img{
    min-height: 50px;
}

.tile .tile-body i {
    font-size: 50px;
    opacity: 0.3;
    transition: all 1s;
}

.tile:hover .tile-body i {
    color: var(--geeta-darkblue);
    opacity: 1;
}

.tile .tile-body h2 {
    font-size: 2rem;
    color: var(--geeta-yellow);
    margin-bottom: 0;
}

.tile-footer {
    padding: 5px 0;
}

.jqvmap-label {
    z-index: 999;
}

.card-body .jqvmap-zoomin, .jqvmap-zoomout {
    padding: 0px;
}

/* Filemanager Folder Size */
#filemanager .fa-folder.fa-5x {
    font-size: 10.5em;
}

#extension-list {
    color: #4b525d;
}

#extension-list h2 {
    margin-top: 54px;
    margin-bottom: 44px;
}

#extension-list section {
    border: 1px solid #ddd;
}

#extension-list section > div {
    position: relative;
}

#extension-list section > div + div {
    border-top: 1px solid #ddd;
    padding: 10px;
}

#extension-list section:hover {
    border: 1px solid #1b80c2;
}

#extension-list > .row {
    margin-top: 30px;
}

#extension-list > .row > * {
    margin-bottom: 30px;
}

#extension-list .extension-preview {
    min-height: 150px;
}

#extension-list .extension-preview img {
    margin: 0 auto;
}

#extension-list .extension-preview .extension-description {
    position: absolute;
    background-color: rgba(36, 45, 55, 0.9);
    color: #fff;
    padding: 10px;
    font-size: 14px;
    line-height: 16px;
    opacity: 0;
    height: 100%;
    width: 100%;
}

#extension-list .extension-preview .extension-description:hover {
    opacity: 1;
}

#extension-list i {
    color: #10b4e9;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #extension-list .extension-preview {
        min-height: 123px;
    }

    #extension-list .extension-preview .extension-description {
        font-size: 12.5px;
        padding: 6px;
    }

    #extension-list .extension-preview img {
        margin: 0 auto;
    }

    #extension-list .extension-name {
        min-height: 105px;
    }

    #extension-list .extension-name p {
        color: #000;
        margin-bottom: 0;
        font-weight: 600;
    }

    #extension-list .extension-name p:first-child {
        font-size: 17px;
    }

    #extension-list .extension-name p span {
        color: #4b525d;
        font-weight: 400;
    }

    #extension-list .extension-name h4 a, #extension-list .extension-name p a {
        color: #000;
    }

    #extension-list .extension-name + div > .row {
        margin-top: 0;
    }

    @media screen and (min-width: 992px) and (max-width: 1199px) {
        #extension-list .extension-name + div > .row {
            font-size: 14px;
        }
    }

    #extension-list span {
        font-weight: 600;
    }
}

#marketplace-extension-info #banner img {
    margin-left: auto;
    margin-right: auto;
}

#marketplace-extension-info .extension-review {
    border-top: 5px solid #1b80c2;
    padding-top: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}

#marketplace-extension-info .nav-tabs {
    font-size: 14px;
}

#marketplace-extension-info .nav-tabs + .tab-content {
    margin-top: 30px;
    margin-bottom: 30px;
}

#marketplace-extension-info iframe {
    width: 100%;
    height: 500px;
}

@media screen and (max-width: 767px) {
    #marketplace-extension-info iframe {
        height: 350px;
    }
}

#marketplace-extension-info #buy {
    color: #4b525d;
}

#marketplace-extension-info #buy #price {
    color: #000;
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 5px;
}

#marketplace-extension-info #buy i {
    color: #10b4e9;
}

#marketplace-extension-info #buy hr {
    border-color: #ddd;
    margin: 10px 0;
}

#marketplace-extension-info #sales {
    color: #4b525d;
}

#marketplace-extension-info #sales i {
    color: #7ec239;
    margin-right: 10px;
    font-size: 24px;
}

#marketplace-extension-info #sales strong {
    font-size: 24px;
}

#marketplace-extension-info #comment {
    color: #4b525d;
}

#marketplace-extension-info #comment i {
    margin-right: 10px;
    font-size: 22px;
}

#marketplace-extension-info #comment strong {
    font-size: 22px;
}

#marketplace-extension-info .reply > div {
    margin-top: 15px;
}

#marketplace-extension-info .well .media {
    line-height: 1.2;
}

#marketplace-extension-info .well .media .media-body {
    padding-top: 6px;
}

#marketplace-extension-info .well .media .media-body span {
    font-size: 24px;
    font-weight: 600;
}

#marketplace-extension-info .well .media .media-body small {
    color: #878f9a;
}

@media screen and (max-width: 992px) {
    #marketplace-extension-info .container-fluid {
        padding-bottom: 30px;
    }
}

.list-check {
    list-style: none;
}

.list-check li::before {
    font-family: 'Font Awesome 6 Solid';
    content: "\f00c";
    margin-left: -30px;
    width: 29px;
    display: inline-block;
    color: #7ebd38;
}

.list-check.list-color-blue li::before {
    color: #02afe9;
}

.table-responsive {
    overflow: visible;
}

td {
    color:#7A8C9A;
    position: relative;
}



#button-filter{
    color: var(--geeta-darkblue);
    border-color: var(--geeta-darkblue);
}

#button-filter:hover{
    color: var(--geeta-yellow);
    background-color: var(--geeta-darkblue);
}

.login-header{
    top:4%;
    left: 2%;
}
.login-page .row{
    max-height: 80vh;
}
.login-banner{
    background: url("../image/login_banner.jpg");
    background-size: cover;
}
.login-banner img{
    position: relative;
    visibility: hidden;
}

.login-form{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin-top: -3rem;
    padding: 7rem;
    color: var(--geeta-darkblue);
}
.login-form h1{
    font-weight: 600;
    color:var(--geeta-darkblue);
}

.login-form a{
    color: var(--geeta-yellow);
    font-weight: 600;
}

.login-form a:hover{
    color: var(--geeta-darkblue);
}
.login-form label{
    font-weight:600;
}
.login-form .form-control input{
    padding: 0.9rem 1.3rem;
    color: var(--geeta-darkblue) !important;
}

.login-form .btn{
    font-size: 1rem;
}

.floating-save{
    position: fixed;
    z-index: 2;
    bottom: 0;
    width: 100%;
}

.btn-delete{
    background-color: transparent;
    border-radius: 50%;
    font-size: 1rem;
}

.btn-delete:hover,
.btn-delete:focus{
    background-color: transparent;
    color: var(--bs-danger);
}

@media (min-width:993px) and (max-width:1300px) {
    .login-page .row{
        min-height: 100vh;
        max-height: unset !important;
    }    
}

@media (max-width:1200px) {
    .login-form{
        padding: 5rem;
        margin-top: unset !important;
    }
}

@media (max-width:992px) {
    .login-header{
        background-color: #FFFFFF;
        position: static !important;
        padding: 1rem !important;
    }
    .login-header .container-fluid{
        text-align: center;
    }
    .login-form{
        padding: 4rem;
    }
}

@media (max-width:767px) {
    .mobile-line-break{
        display: none;
    }
}

@media (max-width:575px) {
    
    .login-form{
        padding: 3rem;
    }

    .container-fluid{
        padding: 0 10px;
    }
    .accordion-body,
    .accordion-button{
        padding: 0.7rem;
    }
    .booking-type-details{
        display: flex;
        flex-direction: column;
    }
}

@media (max-width:376px) {
    #child-seat-wrapper .col{
        align-self: flex-end !important;
    }

    .mobile-line-break{
        display: block;
    }
    
}
.password-field {
    position: relative;
}
.password-field i {
    z-index: 1000;
    position: absolute;
    top: 32%;
    right: 3%;
}
.booking-ref-class {
    background-color:var(--geeta-yellow);
    color:#fff;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
}

/* Frontend form */
.user-form{
    background: #E4E4E4;
    min-height: 100dvh;
    height: 100%;
}

.user-form .navbar{
    background-color: #FFF !important;
}

.user-form .navbar-brand,
.user-form .navbar-toggler,
.user-form .navbar-collapse{
    padding: 10px 0;
}

.user-form .navbar-brand img{
    max-height: 85px;
}

.user-form .nav-link{
    position: relative;
    font-family: "Nunito",Sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    padding: 0 !important;
    transition-timing-function: cubic-bezier(.58,.3,.005,1);
}

.user-form .nav-link::after{
    content: "";
    position: absolute;
    opacity: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    left: 0;
    background-color: #55595c;
    z-index: 2;
    transition-timing-function: cubic-bezier(.58,.3,.005,1);
}

.user-form .nav-link:hover{
    color: var(--geeta-yellow);
}

.user-form .nav-link:hover::after{
    opacity: 1;
}

.user-form .nav-link.active{
    color: var(--geeta-yellow);
}

.user-form .nav-link.active::after{
    opacity: 1;
    background-color: var(--geeta-yellow);
}

.user-form .loading-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    background: rgba(255,255,255,0.6);
    top: 0;
    left: 0;
}

.user-form .booking-form{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.user-form .booking-form .form-half,
.user-form .booking-form .car-half{
    background-color: #FFF;
    border: 1px solid var(--geeta-yellow);
    padding: 1.3rem;
    flex: 1;
    position: relative;
}

.user-form .process-list ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-form .process-info,
.user-form .process-info .process-icon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.user-form .process-info .process-icon{
    width:28px;
    height: 28px;
    padding: 8px;
    border-radius: 50%;
    background: #A0A0A0;
}

.user-form .active-process .process-info .process-icon{
    background: var(--geeta-darkblue);
    color: #FFF !important;
}

.user-form .active-process .process-info p{
    color: var(--geeta-darkblue);
}

.user-form .process-list{
    position: relative;
}

.user-form .process-list ul{
    z-index: 3;
    position: relative;
}

.user-form .booking-form .progress-bar{
    z-index: 1;
    background:#A0A0A0 !important;
    position: absolute;
    width: 90%;
    transform: translateX(7%);
    top: 20%;
}

.user-form .booking-form .progress-bar .progress-fill{
    background: var(--geeta-yellow);
    height: 2px !important;
}

.user-form .info-card .preview-data-wrapper{
    position: relative;
}

.user-form .info-card .progress-bar{
    z-index: 1;
    background: #FFF;
    position: absolute;
    width: 2px;
    left: 6%;
    height: 80%;
    transform: translate3d(0%, 3%, 0);
}

.user-form .info-card .progress-bar .progress-fill{
    background: var(--geeta-yellow) !important;
    top: 0 !important;
    width: 2px;
    position: absolute;
}

.user-form .next-btn button{
    width:100%;
    height: 100%;
    background: var(--geeta-yellow);
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 33px;
    letter-spacing: 0.2px;
    color: #000000;
}

.user-form .next-btn button:disabled{
    border: 0;
}

.user-form .form-wrapper .form-validation{
    display: flex;
    gap: 2rem;
}

.user-form .booking-form{
    flex-basis: 70%;
    padding:0 1.5rem;
}

.user-form .input-box{
    flex: 1;
}

.user-form .input-group{
    background: #FAFAFA;
    gap: 1rem;
    border: 1px solid #DDD;
    padding: 0.8rem !important;
    flex: 1 1 45%;
}

.user-form .form-control{
    border: 0 !important;
    padding: 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 23px;
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
    background: transparent !important;
}

 .form-control::placeholder {
  color: #cdcdcd;
  opacity: 1;
}

.user-form .divider{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.user-form .form-select{
    border: 0;
    background-color: transparent;
    padding: 0.4rem 0.2rem !important;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.user-form .journey-radio-btn,
.user-form .form-check{
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

.journey-radio-btn{
    gap: 1rem;
}

.user-form .form-check{
    gap: 0.7rem;
}

.user-form .journey-radio-btn .form-check-input:checked[type="radio"]{
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23FEAC00'/%3e%3c/svg%3e");
}

.user-form .journey-radio-btn .form-check-input:checked,
.user-form .journey-radio-btn .form-check-input{
    background-color: #FFEABC;
    border-color: #FFEABC;
    width: 1rem;
    height: 1rem;
}

.user-form .journey-radio-btn label{
    font-size: 0.7rem;
    line-height: 0.7rem;
    color: #082E40;
}

.user-form .form-label{
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 19px;
    letter-spacing: 0.2px;
    color: var(--geeta-blue) !important;
}

.user-form .form-info {
    display: flex;
    gap: 0.5rem;
}

.user-form .form-info .titles,
.user-form .form-info .info{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.user-form .info-card .form-data-preview .journey-info .titles{
    flex-basis: 40%;
    gap: 0.1rem;
}

.user-form .info-card .form-data-preview .journey-info .titles p{
    margin-bottom: 0 !important;
}

.user-form .info-card .form-data-preview .journey-info .info{
    gap: 0.1rem;
}

.user-form .info-card .form-data-preview ::-webkit-scrollbar{
    width:4px !important;
}

.user-form .info-card .form-data-preview ::-webkit-scrollbar-track {
    background: var(--geeta-blue);
    border-radius: 4px;
}

.user-form .info-card .form-data-preview ::-webkit-scrollbar-thumb {
    background: var(--geeta-yellow);
}

.user-form .info-card .form-data-preview .journey-info .info p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
    text-overflow: ellipsis;
    margin-bottom: 0 !important;
}

.user-form .form-info .titles *{
    font-size: 0.8rem !important;
    color: var(--geeta-yellow) !important;
    font-weight: 600 !important;
}

.user-form .form-info .info *{
    font-size: 0.8rem !important;
    color: #FFF !important;
}

.user-form .booking-form .details-row{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
}

.user-form .overview-card{
    position: relative;
    overflow: hidden;
    flex-basis: 36%;
    border: 1px solid var(--geeta-yellow);
    max-height: 100%;
}

.user-form .journey-details{
    z-index: 2;
    background-color: var(--geeta-yellow);
    padding: 1rem;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    align-items: center;
}

.user-form .journey-details .distance,
.user-form .journey-details .duration{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.user-form .overview-card #map{
    height: 200px;
}

.user-form .info-card{
    height: 100%;
    max-height: 100%;
    padding: 4rem 2rem;
    overflow: auto;
    background-color: var(--geeta-darkblue);
}

.user-form .info-card ul{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.user-form .info-card .process-info .process-icon{
    width:2.5rem;
    height: 2.5rem;
    min-width:2.5rem;
    min-height: 2.5rem;
    margin-top: 0.5rem;
}

.user-form .info-card .form-data-preview h6{
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2rem;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: var(--geeta-yellow);
}

.user-form .info-card .form-data-preview .journey-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.user-form .info-card .form-data-preview .journey-info p{
    margin-bottom: 0.3rem !important;
}

.user-form .info-card .form-data-preview .return-journey{
    flex-basis: 100% !important;
}

.user-form .info-card .process-info{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}

.user-form .info-card .process-info .process-icon{
    background: var(--geeta-darkblue);
    z-index: 3;
    border: 2px solid #FFF;
}

.user-form .info-card .active-process .process-info .process-icon{
    background: var(--geeta-yellow) !important;
    border: 1px solid var(--geeta-yellow);
    color: #FFF !important;
}

.user-form .active-process .process-info .process-icon path{
    fill: #FFF;
}

.user-form .info-card .process-info .preview-info{
    min-height: 4rem;
    margin-top: 0.8rem;
}

.user-form .info-card .process-info .preview-info p{
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    color: #FFF;
    margin-bottom: 0;
}

.user-form .info-card .titles .info-title{
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: var(--geeta-yellow) !important;
}

.user-form .info-card .info-reqd{
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.65) !important;
}

.user-form .info-card .submit-wrapper button:disabled{
    background: rgba(231, 247, 255, 0.5);
    color: #2A4958;
}

.user-form .info-card .submit-wrapper button{
    width: 100%;
    padding: 0.9rem;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2rem;
    letter-spacing: 0.2px;
    background: var(--geeta-yellow);
    color: #000;
}

.user-form .veh-info{
    border: 1px solid #DDD;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 5px;
}

.user-form .vehicle-card.selected .veh-info{
    background: var(--geeta-yellow);
}

.user-form .vehicle-card{
    cursor: pointer;
}

.user-form .veh-info .veh-data{
    flex-basis: 79%;
    background: #FFF;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.2rem 1rem;
    gap: 2rem;
}

.user-form .veh-info .veh-data .veh-img img{
    max-width: 200px;
}

.user-form .veh-info .veh-data .veh-name{
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0.2px;
    color: #7A7A7A;
}

.veh-capacity{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.veh-capacity .pax-capacity p,
.veh-capacity .luggage-capacity p{
    margin-bottom: 0;
}

.veh-capacity .pax-capacity,
.veh-capacity .luggage-capacity{
    padding:0.4rem 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #DDD;
}

.user-form .veh-info .veh-price{
    flex-basis: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-form .vehicle-card.selected .veh-price{
    background: var(--geeta-yellow);
}

.user-form .flight-search{
    background-color: #7A8C9A;
    color: #FFFFFF;
    border-radius: 8px !important;
    padding: 5px 10px;
    align-self: center;
}

.user-form #flightData .text{
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-bottom: 0 !important;
}

.user-form .veh-info .veh-price p{
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.2px;
    color: #000;
    margin-bottom: 0;
}

.animate-switch-container {
    position: relative;
    overflow: hidden;
    border: 0;
    background-size: 50px 50px;
    min-height: 200px;
}

.animate-switch {
    width: 100%;
}

.animate-switch.ng-animate {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: absolute;
}

.animate-switch.ng-leave {
    left: 0;
}

.forward .animate-switch.ng-leave.ng-leave-active {
    left: -100%;
}

.backward .animate-switch.ng-leave.ng-leave-active {
    left: 100%;
}

.forward .animate-switch.ng-enter {
    left: 100%;
}

.backward .animate-switch.ng-enter {
    left: -100%;
}

.animate-switch.ng-enter.ng-enter-active {
    left: 0;
}

.confirm-form table ,
.confirm-form table td,
.confirm-form table tr,
.confirm-form table th{
    border-color: #DDDDDD !important;
}

.confirm-form table td{
    width: 50% !important;
    font-weight: 600 !important;
    color: #000 !important;
    padding: 1rem;
}

.confirm-form table tr:nth-child(2n){
    background: #e0e9ed !important;
}

.confirm-form table tr,
.confirm-form table th{
    background: #FFFFFF !important;
    padding: 1rem;
}

.g-recaptcha {
    width: 100%;
}

#upgrade-text{
    margin: 0 !important;
    padding: 0.8rem;
    padding-bottom: 0 !important;
    display: none;
}

#upgrade-text span{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    border-radius: var(--bs-border-radius);
    color: var(--geeta-blue);
    font-weight: 600;
}

.fade-element.ng-enter {
    transition: 0.5s linear all;
    opacity: 0;
}
.fade-element.ng-enter-active {
    opacity: 1;
}

.fade-element.ng-leave {
    transition: 0.5s linear all;
    opacity: 1;
}
.fade-element.ng-leave-active {
    opacity: 0;
}

@media(max-width:768px){

    .overview-card{
        display: none;
    }

    .user-form .form-wrapper .form-validation{
        display: block;
    }

    .user-form .booking-form{
        flex-basis: 100%;
        padding: 0.5rem !important;
    }

    .user-form .booking-form .progress-bar{
        width: 75%;
        transform: translateX(15%);
    }

    .user-form .booking-form .form-half, .user-form .booking-form .car-half{
        padding: 0.7rem;
    }

    .details-row{
        flex-direction: column;
    }

    .user-form .input-group{
        padding: 0.5rem !important;
    }

    .user-form .input-group-text{
        padding: 0.3rem !important;
    }

    .user-form .input-group-text svg{
        width:20px !important;
        height: auto !important;
    }

    .user-form .veh-info,
    .user-form .veh-info .veh-data{
        flex-direction: column;
    }

    .user-form .veh-info .veh-price{
        padding: 1rem 0;
    }

    
    .luggage-info{
        flex-direction: row;
        flex-wrap: wrap;
    }

    .luggage-info .input-group{
        flex-basis: 45%;
    }

}

.pricing-wrapper table td,
.pricing-wrapper .table > thead,
.pricing-wrapper table th{
    background: transparent !important;
    width: 33% !important;
}

.pricing-wrapper table th,
.pricing-wrapper table td,
.pricing-wrapper table td.cost,
.pricing-wrapper table th.cost{
    color: #FFF;
    font-size: 1rem;
}

.cost{
    text-align: right !important;
}

.addresses{
    display: flex;
    gap:2rem;
}

.chart-wrapper{
    position: relative !important;
}

.legend-wrapper tbody{
    display: flex;
    gap: 1rem;
    margin-top: -1rem;
    margin-bottom: 0.5rem;
}

.legend-wrapper tbody tr{
    padding: 0.2rem;
    border: 1px solid transparent;
}

.legend-wrapper tbody tr:has(.selected){
    border: 1px solid #666666;
    border-radius: 8px;
}

.legend-wrapper button{
    background: transparent;
    border: 0;
    padding: 0;
}

.legend-wrapper button.selected{
    font-weight: 600;
}

.price-wrapper{
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.pricing-wrapper *{
    font-size: 1.8rem;
    color: #FFF;
    font-weight: 600;
    margin: 0 !important;
}

.booking-class label{
    font-size: 1.4rem !important;
    padding: 1rem;
}

#package-modal ul{
    display: flex;
    flex-direction: column;
    color: black;
    gap: 1rem;
}

.input-box .package-info{
    outline: none;
    position: absolute;
    right: 7%;
    top: 10%;
}

.user-form *{
    outline: none !important;
}

.user-form{
    font-family: "Nunito",Sans-serif;
}

.iti__selected-dial-code{
    border: 0 !important;
    padding: 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 23px;
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
    background: transparent !important;
}

.invalid-feedback[ng-show] {
  display: block;
}

.mobile-final-step{
    display: none;
}

.checkboxes .form-check-input:checked{
    background-color: #898989;
    border-color: #898989;
}

@media(max-width:768px){
    .mobile-final-step{
        display: block;
    }
    .overview-card{
        border: 1px solid var(--geeta-yellow);
        padding: 0.9rem;
        flex: 1;
        position: relative;
    }
    .user-form .info-card{
        padding: 2rem 1rem;
    }
    .user-form .info-card .progress-bar{
        left: 5%;
    }
    .user-form .info-card .process-info .process-icon{
        width: 2rem;
        height: 2rem;
    }
    .booking-form h3{
        font-size: 0.9rem;
    }

    .user-form .form-label{
        margin-bottom: 0 !important;
    }

    .user-form .form-control{
        font-size: 0.9rem !important;
    }
    .checkboxes input{
        font-size: 0.9rem !important;
    }
    .navbar-brand img{
        max-width: 150px !important;
    }
}

.grecaptcha-badge{
    display: none;
}

.offcanvas-close{
    border: 3px solid #666666;
    border-radius: 50%;

}

.nav-item{
    --bs-nav-link-color:#000000 !important;
}

.circle {
  width: auto;
  height: auto;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #0000001a;
}

.pulse {
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

.filter-button{
    border: 1px solid #000;
    background: #FFF;
    font-weight: 600;
    color: var(--geeta-yellow);
}

.filter-button:hover{
    background: var(--geeta-yellow);
    border-color: var(--geeta-yellow);
    color: #FFF;
}

.filter-button.selected{
    background: var(--geeta-yellow);
    border-color: var(--geeta-yellow);
    color: #FFF;
}


#booking tr:has(.assigned){
    background-color: rgb(255 149 0 / 10%);
}

#booking tr:has(.accepted){
    background-color: rgb(178 226 178 / 10%);
}

#booking tr:has(.rejected){
    background-color: rgb(255 111 111 / 10%);
}

#booking .status .btn{
    min-width: 85px !important;
    padding: 2px;
    border-radius: 8px;
    font-weight: bold;
    cursor:default;
}

#booking .status:has(.assigned) div{
    color: var(--geeta-yellow);
    border: 2px solid var(--geeta-yellow);
}
#booking .status:has(.accepted) div{
    color: #4cb64c;
    border: 2px solid #4cb64c;
}
#booking .status:has(.rejected) div{
    border: 2px solid #FF6F6F;
    color: #FF6F6F;
}

.review-form .booking-form{
    background-color: #F8F8F8 !important;
    border-radius: 50px 50px 0px 0px;
    position: relative;
    z-index: 1;
}

.review-form h1{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    text-align: center;
    color: var(--geeta-darkblue);
}

.review-form .banner-img{
    margin-bottom: -8%;
}

.review-form .driver-info{
    margin-top: -12%;
}

.review-form .driver-info h2{
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.7rem;
    text-align: center;
    color: var(--geeta-darkblue);
}

.driver-photo img{
    max-width: 150px;
    max-height: 150px;
}

.driver-photo{
    border: 8px solid #FFF5CE;
    border-radius: 50%;
    overflow: hidden;
    background-color: #FFF5CE;
    padding: 0;
}

.question-box{
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.question-box.special-question{
    padding: 1rem;
    flex-direction: column;
    background: #E8F8FF;
    border: 1.5px solid #FFCC00;
    border-radius: 10px;
}

@media(min-width:992px){
    .reviews.container{
        max-width: 50%;
    }
}

.reviews .rev-btn .btn{
    width: 100%;
    background-color: var(--geeta-darkblue);
    color: #FFF;
    font-weight: 600;
    border-radius: 6px !important;
    margin-bottom: 2rem;
}

@media(max-width:768px){
    .review-form .banner-img {
        margin-bottom: -15%;
    }
    .review-form .driver-info {
        margin-top: -25%;
    }
    .question-box{
        flex-wrap: wrap;
        gap: 10px;
        padding: 1rem;
    }
    .question-box .rating{
        margin: 0 !important;
    }
    .driver-photo img{
        max-width: 120px;
        max-height: 120px;
    }
  	.user-form .input-box .address-box{
        flex-direction: column;
        padding-top: 0.5rem !important;
    }
}

.parking-info .parking{
    font-size: 0.9rem;
    color: white;
    font-weight: 400;
    line-height: normal;
    display: block;
}

.parking-info .parking a{
    font-size: 0.9rem;
    color: var(--geeta-yellow);
    line-height: normal;
}

.user-form .input-box .grey-text{
    color: #676767 !important;
    font-size: 0.9rem;
}