/**
* Template Name: My Express
* Version: 1.0
* Author: Ikram Hossen
* Developed By: Codeware Ltd.
* Author URL: www.codewareltd.com
**/

/*====================================================================
	root css
====================================================================*/
:root {
    --theme-body-font: 'Montserrat', sans-serif;
    --textColor: #000;
    --primaryColor:#1e3b66;
    --secondaryColor:var(--primaryColor);
    --accentColor:#4a43e2;
    --grayColor: #f7f7f7;
    --whiteColor: #fff;
    --lightGray: #eee;
}
body {
    font-family: var(--theme-body-font);
    color: var(--textColor) !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #eee;
    font-weight: 500;
}

a {
    text-decoration: none;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

a:hover {
    color: #2f728c;
    text-decoration: none;
}
footer a:hover {
    color: #cfc24a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--theme-body-font);
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999;
    overflow: hidden;
    background: var(--whiteColor);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #34778f;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

.header_profile_icon img {
    width: 40px;
    margin-top: 5px;
}
@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #13a4de;
    color: var(--whiteColor);
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #ee3135;
    color: var(--whiteColor);
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 8;
    padding: 2px 0;
    background: var(--primaryColor);
    position: sticky;
    top: 0;
    width: 100%;
    height: min-content;
    box-shadow: 0px 5px 10px #9d9d9d1f;
}

#header .logo {
    margin: 5px 0;
    width: 140px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.topbar a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all ease-in-out 0.3s;
    color: var(--textColor);
}
.social-links a {
    font-size: 14px;
    display: inline-block;
    padding: 0 10px;
    transition: 0.3s;
    border-right: 1px solid var(--textColor);
    text-align: center;
    line-height: 0;
}
.social-links a:last-child {
    border-right: 0px !important;
    background: var(--accentColor) !important;
    display: inline-block;
    color: var(--whiteColor);
    font-weight: 600;
    border-radius: 30px;
    font-size: 13px;
    padding: 3px 18px;
    margin-left: 10px;
    border: 0;
    line-height: 20px !important;
}
/* Desktop Navigation */

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
    align-items: center;
}
.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 0px;
}

.login-btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.login-user-icon {
    font-size: 24px;
    height: 40px;
    width: 40px;
    background: #EE3135;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    color: var(--whiteColor);
    margin-top: -5px;
}

a.login-btn::before {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--whiteColor);
    top: 2px;
    content: '';
    border: 1px solid #d6cd42;
    border-radius: 50%;
    left: 32px;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #d6cd42;
}

.nav-menu .drop-down ul {
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: var(--whiteColor);
    border: 1px solid var(--lightGray);
    transition: 0.3s;
    width: 200px;
    right: 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.nav-menu .drop-down ul::after {
    content: '';
    height: 16px;
    width: 16px;
    background: var(--whiteColor);
    top: -8px;
    position: absolute;
    right: 20px;
    transform: rotate(45deg);
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.header_profile_icon {
    padding-right: 0px !important;
    margin-top: -4px;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 200px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 4px 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #31748d;
}

.nav-menu .drop-down>a:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    padding-left: 5px;
    font-weight: 600;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}




/* Get Startet Button */

.get-started-btn {
    margin-left: 25px;
    color: #ee3135;
    border-radius: 50px;
    padding: 6px 25px 7px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #ee3135;
    font-weight: 600;
}

.get-started-btn:hover {
    background: var(--whiteColor);
    color: #ee3135;
}

/* Mobile Navigation */
.gallery__section{
    overflow: hidden;
}
.mobile-nav-toggle {
    position: fixed;
    top: 17px;
    right: 15px;
    z-index: 22222;
    border: 0;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    background: #4a43e2;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 10px;
}

.mobile-nav-toggle i {
    color: var(--whiteColor);
}

.mobile-nav {
    position: fixed;
    top: 64px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: var(--whiteColor);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: var(--primaryColor);
    padding: 10px 20px;
    font-weight: 600;
    outline: none;
    font-size: 16px;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: var(--primaryColor);
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    padding-left: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav .active.drop-down>a:after {
    content: "\f106";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(40, 58, 90, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: var(--whiteColor);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    position: relative;
    min-height: 450px;
    overflow: visible;
    padding: 0px !important;
}
.banner_carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    margin: 0 !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}
.banner_carousel .owl-nav button span {
    background: var(--primaryColor);
    width: 40px;
    display: inline-block;
    border-radius: 50%;
    height: 40px;
    line-height: 36px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: var(--whiteColor);
    opacity: 0.7;
}
.banner_carousel .owl-nav button:hover span {
    opacity: 1;
}
button.owl-prev {
    left: 0 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
button.owl-next {
    right: 0 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
img.home_banner_img {
    width: 100%;
}

.input-group-text {
    font-size: 1.3rem;
    min-height: 45px;
    border-radius: 10px 0 0 10px;
}
#hero h1 {
    margin: 0;
    font-size: 40px;
    font-weight: normal;
    line-height: 56px;
    color: #2b86bb;
    text-transform: capitalize;
    margin-bottom: 20px;
    margin-top: 50px;
    text-align: left;
}

.from-to-flex {
    display: flex;
    align-items: center;
}

.from-to-flex>label {
    width: 50%;
}

.s_bus_form_label2 {
    padding-left: 5px;
}

label.search_bus_form_label {
    text-align: left;
    display: block;
    font-size: 15px;
    font-weight: 500;
}
.radio-label {
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}
#hero .input-group {
    flex-wrap: nowrap;
    height: 40px;
}
#date, #date2 {
    position: relative !important;
    padding-top: 7px !important;
    background: #f1f1f1 !important;
    min-height: 45px;
    border-radius: 10px;
}
#date:focus,
#date2:focus {
    border: 1px solid var(--lightGray) !important;
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #ee3135;
    background: var(--whiteColor);
}

#hero .btn-get-started:hover {
    background: #f3f5fa;
}

#hero .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    padding: 10px 0 8px 40px;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: var(--whiteColor);
    position: relative;
}

#hero .btn-watch-video i {
    color: var(--whiteColor);
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 7px;
    transition: 0.3s;
}

#hero .btn-watch-video:hover i {
    color: #47b2e4;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 2px 0;
    background: var(--whiteColor);
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    color: var(--primaryColor);
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/

.cliens {
    padding: 12px 0;
    text-align: center;
}

.cliens img {
    max-width: 100%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    /* -webkit-filter: grayscale(100);
  filter: grayscale(100);*/
}

.cliens img:hover {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.1);
    cursor: pointer;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #ee3135;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #ee3135;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #ee3135;
}

.about .content .btn-learn-more:hover {
    background: #ee3135;
    color: var(--whiteColor);
    text-decoration: none;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #ee3135;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: var(--whiteColor);
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
}

.why-us .accordion-list span {
    color: #47b2e4;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/

.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #37517e;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #47b2e4;
}

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .progress {
    height: 50px;
    display: block;
    background: none;
}

.skills .progress .skill {
    padding: 10px 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    color: #37517e;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e8edf5;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #4668a2;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: var(--whiteColor);
}

.services .icon-box .icon {
    margin-bottom: 10px;
}

.services .icon-box .icon i {
    color: #ee3135;
    font-size: 36px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #ee3135;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
    color: #ee3135;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: var(--whiteColor);
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: var(--whiteColor);
}

.cta .cta-btn {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--whiteColor);
    color: var(--whiteColor);
}

.cta .cta-btn:hover {
    background: #47b2e4;
    border: 2px solid #47b2e4;
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #47b2e4;
    color: var(--whiteColor);
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 3;
    right: 15px;
    transition: all 0.3s;
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: var(--whiteColor);
    font-weight: 600;
    color: var(--whiteColor);
    margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #f9fcfe;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: var(--whiteColor);
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    background: var(--whiteColor);
    transition: 0.5s;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover {
    transform: translateY(-10px);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #37517e;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

.team .member .social a i {
    color: #37517e;
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #47b2e4;
}

.team .member .social a:hover i {
    color: var(--whiteColor);
}

.team .member .social a+a {
    margin-left: 8px;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: var(--whiteColor);
    height: 100%;
    border-top: 4px solid var(--whiteColor);
    border-radius: 10px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #37517e;
}

.pricing h4 {
    font-size: 48px;
    color: #37517e;
    font-weight: 400;
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: #47b2e4;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #47b2e4;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
    background: #47b2e4;
    color: var(--whiteColor);
}

.pricing .featured {
    border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
    background: #47b2e4;
    color: var(--whiteColor);
}

.pricing .featured .buy-btn:hover {
    background: #23a3df;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: var(--whiteColor);
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #ee3135;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #ee3135;
    transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
    color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}



.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #2f728c !important;
    color: white;
}

label.filter_label {
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 500;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
    /* border-top: 3px solid #ee3135;
    border-bottom: 3px solid #ee3135;*/
    padding: 30px;
    background: var(--whiteColor);
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #ee3135;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ee3135;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000000;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: var(--whiteColor);
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #47b2e4;
    color: var(--whiteColor);
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #ee3135;
    color: var(--whiteColor);
}

.contact .php-email-form {
    width: 100%;
    /*border-top: 3px solid #ee3135;
    border-bottom: 3px solid #ee3135;*/
    padding: 30px;
    background: var(--whiteColor);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: var(--whiteColor);
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: var(--whiteColor);
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--whiteColor);
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #13a4de;
    border-top-color: var(--lightGray);
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #13a4de;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #ee3135;
    border: 0;
    padding: 12px 34px;
    color: var(--whiteColor);
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ee3135;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #f3f5fa;
    min-height: 40px;
    margin-top: 72px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #37517e;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4668a2;
    content: "/";
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #47b2e4 !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: var(--whiteColor);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lightGray);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    font-size: 14px;
    margin-top: auto;
    overflow: hidden;
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #f3f5fa;
    text-align: center;
    font-size: 15px;
    color: #444444;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #37517e;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: var(--whiteColor);
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #47b2e4;
    color: var(--whiteColor);
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #209dd8;
}
#footer .footer-top {
    padding: 40px 0px;
    border-top: 1px solid #ddd;
    background: var(--whiteColor);
}
#footer .footer-top a {
    color: #1e3b66 !important;
    font-weight: 600;
}
#footer .footer-top .footer-contact {
    margin-bottom: 0px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #000;
}

#footer .footer-top h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1e3b66;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.footer-links p {
    margin: 0;
    font-size: 14px;
    padding: 6px 0;
}

.footer-links p:first-of-type {
    padding-top: 0 !important;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 3px;
    color: #1e3b66;
    font-size: 16px;
    width: 28px;
    height: 26px;
    text-align: center;
    border: 1px solid #ddd;
    line-height: 25px;
    display: inline-block;
    margin-right: 10px;
    padding-left: 3px;
    border-radius: 5px;
}

#footer .footer-top .footer-links ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #000;
    transition: 0.3s;
    display: inline-block;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--secondaryColor);
    padding-left: 5px;
}
#footer .footer-bottom {
    padding: 15px 0 !important;
    text-align: center;
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.div-wrapper1 {
    position: relative;
    height: 300px;
    width: 300px;
}

.div-wrapper1 img {
    position: absolute;
    left: 0;
    bottom: 0;
}

.footer-contact img {
    width: 165px;
}

.form-control {
    border-radius: 10px;
    min-height: 45px;
    border: 1px solid #ddd;
}
.form-control:focus {
    color: var(--textColor);
    background-color: var(--whiteColor);
    border-color: var(--primaryColor) !important;
    outline: none !important;
    box-shadow: none !important;
}

.bus-filter-wrapper .filter_label {
    font-size: 16px;
    color: #30738d;
    font-weight: 600;
}

input#depart,
input#to {
    width: 25%;
    padding: 10px;
}

.text-center.sbuses button {
    font-weight: 500;
    font-size: 16px;
    /* letter-spacing: 1px; */
    display: inline-block;
    padding: 10px 28px 11px 28px;
    /* border-radius: 50px; */
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: var(--whiteColor);
    background: var(--whiteColor);
    margin-top: 0px;
    border: none;
    background: #ee3135;
}

.logo-txt {
    color: var(--whiteColor);
    font-size: 22px;
    letter-spacing: 0;
}
.btnsubmit {
    font-weight: 500;
    transition: 0.5s;
    background: var(--accentColor) !important;
    color: var(--whiteColor);
    letter-spacing: 0.5px;
    border-radius: 10px;
    min-height: 45px;
    outline: none;
    border: 0;
    width: 100%;
}
.btnsubmit:hover {
    background-color: #3134AE !important;
}

button:focus {
    outline: none !important;
}

.col-lg-12.d-flex.flex-column.justify-content-center.align-items-stretch.order-2.order-lg-1 .content {
    background: var(--whiteColor);
    padding: 98px;
    margin: 50px;
}

.fixed-top {
    position: absolute !important;
}

section#about .col-lg-6 {
    border: 1px solid #f3f5fa;
    padding: 52px;
}

section#about .col-lg-6.pt-4.pt-lg-0 {
    padding-top: 59px !important;
}

section#services .col-xl-4.col-md-6.d-flex.align-items-stretch.aos-init.aos-animate {
    padding-bottom: 20px;
}

.container.footer-bottom.clearfix {
    border-top: 1px dotted var(--whiteColor);
}

.footer-links p a {
    color: var(--whiteColor);
}

#footer .copyright a {
    color: #cfc24a;
}

.faq-list a {
    color: #ee3135;
}

#hero1 {
    width: 100%;
    height: 30vh;
    background: var(--whiteColor);
    background-image: linear-gradient(rgb(110 98 162), rgba(255, 255, 255, 0.5)), url(../img/bgnew.png);
    background-repeat: repeat-x;
    background-attachment: fixed;
    background-position: bottom;
    background-position-x: center;
    background-size: 143% 79%;
}

img.minlogo {
    width: 27% !important;
}

section.d-flex.align-items-center.bresults {
    height: 0px !important;
}

.selecteddest {
    margin-top: -60px;
    background: #f4fdf9;
    padding-top: 22px;
    padding-left: 10px;
}

a.changelink {
    color: #13a4de;
    border: 1px solid #13a4de;
    padding: 5px 20px;
    margin-left: 20px;
    border-radius: 10px;
}

img.nobusfound {
    width: 50%;
}

hr {
    /* font-size: 65px; */
    /* height: 13px; */
    border: 1px solid #dcdcdc;
}

td.busfnd {
    padding-right: 108px;
}

td.busdata {
    padding-right: 56px;
    font-size: 14px;
    font-weight: inherit;
}

td.busdata.seats {
    float: right;
    /* text-align: right; */
    /* text-align: right; */
    padding-right: 0px !important;
    padding-left: 44px;
}

table.busdetails {
    margin-top: 69px !important;
}

table.busdetails tbody tr {
    border: 1px solid #13a4de;
    /* padding: 16px 27px !important; */
    /* margin-bottom: 20px; */
    /* margin-top: 23px; */
    line-height: 29px;
}

table.busdetails tr td {
    padding-left: 25px;
}

td.busdata.dept {
    font-size: 17px;
    font-weight: bold;
    width: 14%;
    padding-left: 0px;
    padding-right: 0px;
}

td.busdata.dur {
    width: 15%;
    font-size: 14px;
}

td.busdata.arr {
    padding-left: 0px;
    font-size: 18px;
    width: 15%;
}

p.busty {
    font-size: 13px;
}

td.opers {
    width: 29%;
}

p.opername {
    line-height: 0;
}

td.busdata.fare {
    width: 14%;
    font-size: 19px;
    font-weight: bold;
    padding-left: 0;
}

td.busdata.seats1 {
    width: 56%;
    /* float: right; */
    /*padding-left: 0;*/
    /* font-size: 15px; */
    /* padding-right: 0px; */
}

button.btndetail {
    border: none;
    background: #f4fdf9;
    color: #ee3135;
    padding: 33px 14px;
    font-size: 17px;
    font-weight: bold;
    border-left: 1px solid;
    text-transform: uppercase;
}

table.maintitletable {
    width: 90%;
}

td.busdata.rating.rate {
    width: 10%;
    padding-left: 0;
    padding-right: 0;
    font-weight: bold;
    font-size: 16px;
}

i.ti-star {
    background: #13a4de;
    padding: 5px;
    color: var(--whiteColor);
}

small.busty span {
    color: #ff1515;
    font-weight: 600;
}

tr.bottomlinks {
    background: #13a4de;
    color: var(--whiteColor);
}

button.btndetail.book a {
    color: #ee3135 !important;
}

a.trmcon {
    color: #28a745;
}

.custom-control-input:checked~.custom-control-label::before {
    color: var(--whiteColor);
    border-color: #13a4de !important;
    background-color: #13a4de !important;
}

table.seatsview tr td {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    padding: 7px 22px;
}

table.seatsview {
    border: none;
}

td.seatava {
    background: url(.../img/avaliable.png);
    background-image: url(../img/avaliable.png);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: contain;
}

td.seatava a {
    color: #050a08;
}

.legends ul li {
    list-style: none;
    float: right;
    vertical-align: middle;
    font-size: 15px;
}


/* New Css */

.service-icon-wrapper {
    min-height: 85px;
    position: relative;
}

.service-icon-wrapper img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    bottom: 0;
}

.icon-box-title {
    overflow: hidden;
    text-transform: uppercase;
    min-height: 50px;
    font-size: 18px;
    line-height: 25px;
    color: #666666;
}

.icon-box-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}


/* Filter */

div#trip-msg {
    border: 1px solid var(--lightGray);
    margin-top: 30px;
    padding: 30px;
    text-align: center;
}

.bus-filter-wrapper {
    margin: 20px 0 5px;
}

.th-arrow-block {
    position: absolute;
    right: 7px;
    border-width: 9px 4px 5px;
    border-color: transparent transparent #6c6c6c;
    border-style: solid;
    top: 3px;
}

th.bus_tbl_head::after {
    position: absolute;
    content: '';
    right: 7px;
    border-width: 5px 4px 9px;
    border-color: #6c6c6c transparent transparent;
    border-style: solid;
    top: 19px;
}

.th-arrow-none {
    display: none !important;
}

.mbrnad-name {
    color: #2f728c;
    font-weight: 600;
    font-size: 22px;
    display: inline-block;
}

.dept-time-wrapper {
    margin-top: 15px;
    position: relative;
}

.dept-time-wrapper h4 {
    margin: 0px;
    color: #4a43e2;
    font-weight: 600;
    position: relative;
    z-index: 2;
    background: var(--whiteColor);
    font-size: 22px;
}

.dept-time-wrapper p {
    margin: 0px;
    position: relative;
    z-index: 2;
    background: var(--whiteColor);
    padding: 0 8px;
    display: inline-block;
    font-weight: 600;
}
.amenities-img-wrap img {
    height: 35px;
}
.amenities-img-wrap img {
    margin: 0 0 10px;
}

.direct_collpase_btn {
    cursor: pointer;
}
button:disabled, input:disabled, select[disabled] + .select2-container .select2-selection{
    background: #bbb7b7 !important;
    overflow: hidden !important;
    opacity: 0.5 !important;
    cursor: no-drop !important;
}
.amenities-toggle-box {
    display: none;
}

.amenities-img-wrap.amenities-img-collapse-wrap {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}
.abs_line {
    position: absolute;
    width: 100%;
    height: .1px;
    background: #a4a4a4;
    top: 12px;
}
.abs_line::before{

}
.dept-time-wrapper .abs_line::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border: 2px solid #1e3b66;
    background: var(--whiteColor);
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 50%;
}
.dept-time-wrapper .abs_line::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    border: 2px solid #1e3b66;
    background: var(--whiteColor);
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 50%;
}
.filter-collpsible-btn {
    width: 100%;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
    color: #333663 !important;
    text-align: left !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    position: relative;
    padding-left: 10px !important;
}

.filter-collpsible-btn::after {
    content: '\f0d7 ';
    position: absolute;
    right: 10px;
    font-family: 'Font Awesome 5 Free';
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    background: var(--primaryColor) !important;
    border: 1px solid var(--primaryColor) !important;
}
.single-collapse {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.table td,
.table th {
    padding: .5rem 0 !important;
}


/* Custom Checkbox */

.checkbox-group {
    display: flex;
    flex-direction: column;
}

.checkbox-group input {
    display: none;
}

.checkbox-group label {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    transition: 0.5s color ease;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    margin-bottom: 4px;
    font-size: 14px;
    color: #2b86bb;
    font-weight: 500;
}

.checkbox-group label::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 0.125em solid #2b86bb;
    border-radius: 2px;
}

.checkbox-group label::after {
    content: "";
    width: 10px;
    height: 10px;
    top: 6px;
    left: 4px;
    border-radius: 0.05em;
    background-color: #2b86bb;
    position: absolute;
    transform: scale(0);
    transition: 0.5s transform ease;
}

.checkbox-group input:checked+label::after {
    transform: scale(1);
}


/* Round-trip One-way starts*/

.radio input[type=radio] {
    position: absolute;
    opacity: 0;
}

.radio input[type=radio]+.radio-label:before {
    content: "";
    background: var(--whiteColor) !important;
    border-radius: 100%;
    border: 2px solid #4a43e2 !important;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: 0;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
    margin-right: 4px;
}

.radio input[type=radio]:checked+.radio-label:before {
    background-color: #4a43e2 !important;
    box-shadow: inset 0 0 0 4px #f4f4f4 !important;
    margin-right: 4px;
}

.radio input[type=radio]:focus+.radio-label:before {
    outline: none !important;
    border-color: var(--accentColor) !important;
}


/* Round-trip One-way ends*/


/* Custom Checkbox */
.nav-menu a {
    display: block;
    position: relative;
    color: var(--whiteColor);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
}

.repeat-arrow-img {
    position: absolute;
    top: 9px;
    z-index: 1;
    width: 40px;
    cursor: pointer;
    padding: 4px 7px;
    left: 49%;
    transform: translateX(-50%);
    border: 1px solid var(--accentColor);
    background: #f1f1f1;
    border-radius: 4px;
}

.homeDatePanel .select2-selection__arrow {
    display: none !important;
}

.location-flex-area {
    display: flex;
    justify-content: space-between;
    position: relative;
}


/* Search bus */

.bus_tckt_rows {
    padding: 10px;
    background: #eceef2;
    margin-top: 5px;
}

#busTable td {
    border: 0px !important;
}

.bus-departure {
    border: 1px solid var(--lightGray);
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    background: var(--whiteColor);
    padding: 15px 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.bus-departure:last-child{
    margin-bottom: 5px !important;
}
th.bus_tbl_head {
    position: relative;
    font-size: 14px;
    padding: 5px 13px;
    cursor: pointer;
    border-bottom: 0px !important;
}

.bus_tckt_rows ul {
    display: flex;
    margin: 0;
}

.bus_tckt_rows ul li h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.bus_tckt_rows ul li {
    display: inline-block;
    flex-basis: 15.5%;
    margin: 0;
    padding: 0 10px;
    text-align: center;
}

.bus_tckt_rows ul li:first-child {
    flex-basis: 22.5%;
    text-align: left;
}

.bus_tckt_rows ul li:last-child {
    text-align: left;
}

#busTable_filter {
    display: none !important;
}

.bus_display_none {
    display: none;
}

.cancelTrip .input-group {
    flex-wrap: nowrap;
    min-height: 45px;
}

.cancelTrip input, .cancelTrip select {
    min-height: 45px;
}
.cancelTrip .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #ee3135;
    background: var(--whiteColor);
}

.cancelTrip .btn-get-started:hover {
    background: #f3f5fa;
}


/* Destination */

.dest-title {
    margin: 0;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 10px;
    color: #333663;
}

.destination-content-wrap:hover .dest-title {
    background: #333663;
    color: var(--whiteColor);
    transition: all ease 0.3s;
    border: 0;
}


/* How it works */
.global-map-area {
    background: linear-gradient(rgb(0 0 0 / 28%), rgb(0 0 0 / 28%)), url(https://busbora.co.tz/assets/default/img/hiw_bg.jpg);
    background-size: cover !important;
}
.global-map-area .section-title h2 {
    color: var(--whiteColor);
}


/* App Section */

.dtbl {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.app_sec .dtbl_cel.left-33 {
    width: 33%;
    text-align: center;
    vertical-align: top;
}


/* Search section new */

.hero_container {
    position: relative;
}

.search_bus_area {
    background: var(--whiteColor);
    padding: 25px 20px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    position: absolute;
    bottom: -90px;
    width: 100%;
    z-index: 5;
    border-radius: 10px;
    right: 0;
    left: 0;
    border-bottom: 3px solid #4a43e2;
}
.search_bus_area span.select2-selection.select2-selection--single {
    display: block;
    margin-top: 0;
    min-height: 45px !important;
    font-size: 16px;
    text-align: left;
    padding-left: 10px;
    border-radius: 10px;
}

.select2-container--default .select2-selection--single {
    background-color: #f1f1f1 !important;
    border: 1px solid var(--lightGray)!important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px !important;
}

.calender-input-group {
    position: relative;
}

.calender-input-group i.fa.fa-calendar {
    position: absolute;
    color: #333663;
    right: 15px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    pointer-events: none;
}

.middle_passengers .table td {
    padding: .5rem 10px !important;
}

#hero input, #hero select {
    min-height: 45px !important;
    border: 1px solid var(--lightGray);
    border-radius: 10px;
    background: #f1f1f1;
}
.hasDatepicker:focus {
    border: 1px solid #c8c8c8 !important;
}

label.abs_label {
    position: absolute;
    color: #777;
    font-size: 13px;
    left: 14px;
    top: 7px;
    z-index: 2;
    font-weight: 500;
}

.modal {
    background: #00000061;
}

#busTable thead,
#busTable tbody {
    display: table;
    width: 100% !important;
}

/* Profile page design */

.profile-left-tab {
    /* border: 1px solid var(--lightGray); */
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    background: var(--whiteColor);
    text-align: center;
}
.profile-user-icon{
    padding: 5px 0px;
}

li.top-li {
    padding: 15px;
    text-align: center;
}

li.top-li .name {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #31748d;
    margin: 0;
}

li.top-li .user-phn {
    font-size: 13px;
    margin: 0;
    color: #333;
}

.profile-left-tab li a {
    padding: 8px 15px;
    display: block;
    text-align: left;
    color: #333333;
    font-weight: 400;
    border-bottom: 1px solid var(--lightGray);
    border-radius: 0;
    border: 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}
.profile-left-tab li a:hover {
    background:#31748d24;
    font-weight: 600;
    color: #191717 !important;
}
.trash-icons{
    color: #ff0000;
}
.profile-left-tab li .active {
    background-image: linear-gradient(to right, #1e3b66, #1d4a72, #1f597d, #276887, #34778f);
    color: var(--whiteColor) !important;
}

.profile-right-tab-content {
    border: 1px solid var(--lightGray);
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    min-height: 500px;
    padding: 20px;
}

.wlc_msg {
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
    border-bottom: 1px dashed #333663;
    color: #333;
    padding-bottom: 10px;
    font-weight: 500;
}

.profile-right-tab-content .form-gp {
    margin-bottom: 15px;
}

.profile-right-tab-content .form-gp input:focus {
    border: 1px solid #333663 !important;
}

.profile-right-tab-content .form-gp input {
    height: 35px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.profile-right-tab-content .form-gp i {
    position: absolute;
    right: 10px !important;
    bottom: 1px !important;
    top: auto !important;
}

.profile-right-tab-content .form-gp label {
    position: relative;
    color: #333663;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-size: 15px;
    font-weight: 600;
}

/* .profile-right-tab-content .submit-btn-area button {
    width: 55%;
    height: 44px;
} */

.my-bookin-tbl th {
    background: #2b86bb;
    font-weight: 500;
    color: var(--whiteColor);
    border: 1px solid var(--whiteColor)6e !important;
    white-space: nowrap;
}

.my-bookin-tbl th,
.my-bookin-tbl td {
    font-size: 14px;
    padding: 5px !important;
}

.fa-eye,
.fa-eye-slash {
    cursor: pointer;
}

.profile-right-tab-content .form-gp input {
    height: 40px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.modify_bus_area {
    margin-bottom: 20px;
}
#returnDate {
    background: #f1f1f1;
}
.search_bus_area.modify_bus_area {
    position: relative;
    bottom: 0;
    margin-top: 25px;
}
.modify-search-btn {
    background-color: #333663;
    color: var(--whiteColor) !important;
    margin-top: 29px;
    border: 0;
    outline: none;
    min-height: 39px;
    font-size: 16px;
}

.calender-modify-input {
    position: relative;
}

.calender-modify-input input {
    border: 1px solid #ddd;
    min-height: 40px;
    font-size: 14px;
}

.calender-modify-input input:focus {
    border: 1px solid #ddd !important;
}

.calender-modify-input i.fa.fa-calendar {
    position: absolute;
    right: 10px;
    top: 44px;
    z-index: 2;
    pointer-events: none;
}

.datebar_mobile_show {
    display: none;
}

ul.datebar {
    display: flex;
    justify-content: space-between;
    list-style: none;
    border-radius: 5px !important;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 40%);
    padding: 0;
    margin: 0;
    min-width: 580px;
}

ul.datebar li {
    width: 14.3%;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px;
    cursor: pointer;
    border-left: 1px solid #ddd;
    background: var(--whiteColor);
}

ul.datebar li:first-child, ul.datebar li:last-child {
    background-color: var(--whiteColor);
    border: 0px !important;
    display: flex;
    justify-content: center;
}
ul.datebar li:first-child{
   border-radius: 10px 0px 0px 10px;
}
ul.datebar li:last-child {
    border-radius: 0px 10px 10px 0px;
    border-left: 1px solid #ddd !important;
}
ul.datebar li a {
    color: var(--textColor);
    white-space: nowrap;
}
ul.datebar li:first-child a, ul.datebar li:last-child a {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
    height: 32px;
    width: 32px;
    line-height: 28px;
    border-radius: 50%;
}
.arrow-icon {
    font-size: 22px !important;
    display: inline-block;
    margin-top: 3px;
}
ul.datebar li span {
    font-size: 13px;
    font-weight: 600;
}

ul.datebar li.active {
    background: var(--primaryColor);
}
ul.datebar li.active a{
    color: var(--whiteColor);
}

.scroll_route_heading {
    font-weight: 600;
}

li.date-disable {
    cursor: no-drop !important;
    background: #ffffffb5 !important;
}

li.date-disable a {
    color: #000 !important;
    opacity: 0.5;
    cursor: no-drop;
}

.modal {
    z-index: 999999;
}

.modify_bus_area span.select2-selection.select2-selection--single {
    border: 1px solid #f1f1f1 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none !important;
}

.butn-adult {
    background: #f1f1f1 !important;
    border: 1px solid var(--lightGray);
    color: var(--textColor) !important;
    text-decoration: none !important;
    width: 100%;
    display: block;
    min-height: 45px;
    text-align: left;
    padding: 0px 10px;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
}

.butn-adult {
    overflow-x: scroll;
}

.butn-adult::-webkit-scrollbar {
    height: .1em;
}

.butn-adult::-webkit-scrollbar,
.butn-adult::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 4px;
}

.butn-adult::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
}

.dropdown-end {
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(0px, 44px);
    width: 100%;
    background: var(--whiteColor);
    display: block;
    list-style: none;
    text-align: left;
    top: 10px;
    box-shadow: 0 10px 40px 0 rgb(104 113 123 / 20%);
    padding: 0px 10px;
    z-index: 1;
}

.dropdown-items {
    color: var(--textColor) !important;
    padding: 2px;
    width: 100%;
    border-bottom: 1px solid var(--lightGray);
    margin-left: 2px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.dropdown-item3 {
    font-weight: lighter;
    font-size: 10px;
    margin-bottom: 0px;
}

.count-butn button {
    margin: 0;
    padding: 0;
    display: inline;
    border: 0;
    background-color: #2b86bb1a;
    width: 30px;
    height: 30px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

.count-butn .quantity {
    display: inline;
    width: 25px;
    outline: none;
    text-align: center;
    color: var(--textColor);
    font-weight: 600;
    border: 0 !important;
    height: 45px;
    background: var(--whiteColor) !important;
}

/* Custom Profile page starts */

.basic-details {
    display: flex;
    align-items: flex-end;
    padding-top: 52px;
}

.profile-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.pr-basic-right {
    position: absolute;
    bottom: -5px;
    right: 0;
}

.pro-text-wraper {
    margin-left: 20px;
}

.profile-rating li i {
    color: #FDCD03;
    margin-right: 7px;
}

.item {
    list-style: none;
}

.profile-table {
    margin-top: 100px;
    margin-bottom: 40px;
}

.tabl {
    justify-content: center;
}

.tab-selection {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 0px 5px 0px 0px;
    justify-content: center;
}

.item-1 {
    padding: 15px 45px;
    color: #707070;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    border-radius: 0 !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #2B86BB;
    background-color: var(--whiteColor);
    border-bottom: 3px solid #2B86BB;
    border-radius: 0 !important;
}

.b-top-nav__1level>a {
    padding: 6px 19px;
    white-space: nowrap;
    float: left;
}

#ui-datepicker-div {
    padding: 10px;
    border-radius: 6px;
}
.ui-datepicker-calendar tr,
.ui-datepicker-calendar td {
    padding: 0px;
}

.tab-content {
    background-color: var(--whiteColor);
}

.pro-text {
    color: var(--whiteColor);
}

.pro-text1 {
    color: #909193;
}

.pro-text2 {
    color: #2b86bb;
    font-size: 15px;
    font-weight: lighter;
}

.profile-image {
    width: 200px;
    height: 243px;
}

.profile-image img {
    width: 100%;
    margin-bottom: 8px;
}

.rating-image {
    margin: 25px auto 17px;
}

.tabl-section {
    position: relative;
}

.text-clr {
    color: #707070;
}

.box-section {
    background-color: var(--whiteColor);
    position: relative;
    padding-top: 40px;
}
.hiw-box {
    text-align: center;
}
.hiw-box p{
    min-height: 46px;
    margin: 0px;
}
.why-book-us .hiw-box {
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 20px;
    border-radius: 10px;
    border: 1px solid var(--lightGray);
    border-bottom: 3px solid var(--accentColor);
    transition: all ease-in-out 0.3s;
    padding: 10px;
    min-height: 270px;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.why-book-us  .hiw-box:hover{
    transform: translateY(-6px)
}
.hiw-box img {
    max-height: 90px;
    margin: 0px 0 20px;
}
.hiw-box h4 {
    color: var(--textColor);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    margin: 0;
}
.section-title {
    font-weight: 600;
    padding-top: 60px;
    color: #000;
    text-transform: capitalize;
}
.bus-list {
    padding-left: 25px;
}
.bus-list li {
    position: relative;
    line-height: 32px;
    list-style: none;
}
.bus-list li::before {
    position: absolute;
    top: 3px;
    left: -22px;
    content: url('../img/bus.png');
}
.app_sec {
    background: #337690 !important;
}
.testimonial-item {
    text-align: center;
    color: var(--whiteColor);
}

.testimonial-item h6 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 17px;
}

.testimonial-item h6 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px;
}

.icon-wrap {
    background: var(--whiteColor);
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 55px;
    border-radius: 50%;
    outline: 2px solid var(--whiteColor);
    border: 10px solid #215d7f;
    margin: 10px;
}

.testimonial-item div p {
    margin: 8px;
    padding: 20px 15px;
    border: 10px solid #2B86BB;
    display: inline;
    border-radius: 50px 50px 50px 50px;
    line-height: 6;
    background-color: var(--whiteColor);
    outline: 2px solid var(--whiteColor);
}

.testimonialcolor {
    background-color: #eaeff5;
    padding: 0;
    min-height: 150px;
    position: relative;
}

.testimonialcolor h2 {
    padding-bottom: 20px;
}

.testimonial-details-left {
    text-align: left;
    padding: 30px 20px;
    width: 85%;
    margin: 0 auto;
}
.play-store-wrapper img {
    width: 180px;
    border-radius: 30px;
    margin-right: 5px;
}
.route_name {
    text-transform: uppercase;
    font-size: 18px;
    margin: 15px 0 0;
    font-weight: 600;
    text-align: center;
}
/* Gallery */
.gallery_carousel .gall_item_inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #eee;
}
.gall-img {
    object-fit: cover;
    height: 300px;
}
.gallery_carousel .gall_item_inner img {
    transition: all 2s;
}
.gallery_carousel .owl-nav {
    margin-top: 0 !important;
    position: absolute !important;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.gallery_carousel button.owl-prev {
    position: absolute !important;
    left: 5px;
}
.gallery_carousel .owl-nav button span {
    background: var(--primaryColor);
    width: 40px;
    display: inline-block;
    border-radius: 50%;
    height: 40px;
    line-height: 36px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: var(--whiteColor);
    opacity: 0.7;
}
.gallery_carousel:hover .owl-nav button span {
    opacity: 1;
}
.gallery_carousel button.owl-next {
    position: absolute !important;
    right: 25px !important;
}
/* Story section */

.stories-wrap {
    background-image: url(../img/story-bg.jpg);
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    background-position: center;
    height: 425px;
    margin: 100px 0px 115px;
    background-size: cover;
}

.stories-wrap::after {
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #00000059;
    position: absolute;
    z-index: 1;
}

.story-item {
    background-color: #2f728c2e;
    margin-top: -50px;
    position: relative;
    top: -45px;
    z-index: 3;
}

.story-heading {
    color: var(--whiteColor) !important;
}

.stories-main {
    padding-bottom: 60px;
}

.single-stories {
    min-height: 330px;
    background-color: var(--whiteColor);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.single-stories-img {
    display: flex;
    justify-content: center;
}

.single-stories-rating {
    text-align: center;
}

.single-stories-img .client-img {
    width: 100px !important;
    margin-bottom: 15px;
    border-radius: 10px;
}

.sort_by .select2-container--default .select2-selection--single {
    border: 1px solid #ddd !important;
}

.sort_by .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important;
    line-height: 45px !important;
    font-size: 16px;
}

/* Payment page */

.wrap {
    background: var(--whiteColor);
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #c8c8c8;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 15%);
    border-radius: 10px;
    overflow: auto;
}

.page-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.page-heading h1 {
    color: #1e3b66;
    font-size: 22px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 700;
}
.page-heading h2 {
    color: #1e3b66;
    font-size: 22px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 700;
}
.page-heading h3 {
    color: #1e3b66;
    font-size: 22px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 700;
}

.rectan {
    display: inline-block;
    height: 30px;
    width: 30px;
    background: #7235c6;
    margin-right: 10px;
    border-radius: 5px;
    /* border: 1px dotted var(--whiteColor); */
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.heading-3 h3 {
    font-size: 16px;
    font-weight: bold;
    color: #707070;
    margin-top: 10px;
}

.heading-p p {
    font-size: 12px;
    font-weight: lighter;
    color: #707070;
}

.payment-form input {
    border: 1px solid #c8c8c8;
    background-color: var(--whiteColor);
    padding: 5px 10px;
    border-radius: 10px;
    min-height: 45px;
}

.payment-form input:focus {
    border: 1px solid #27a9b9 !important;
}

.sidebar-wrap {
    background-color: var(--whiteColor);
    min-height: 420px;
    padding: 15px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border: 1px solid var(--lightGray);
    border-radius: 10px;
    position: sticky;
    top: 127px;
    margin-bottom: 20px;
    overflow: auto;
}

.booking_title {
    color: #32748e;
    font-size: 26px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 600;
}

/* .date {
    font-size: 16px;
} */
.single_item_blank.date {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #7336c4;
}
.text-sm {
    font-size: 14px;
}
.total_data {
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}

.voucher {
    display: flex;
    justify-content: left;
    padding: 1px 6px;
}

.voucher-heading {
    color: #2B86BB;
}

.fw-light {
    font-weight: 300 !important;
    margin: 0;
}

.coupon {
    margin-left: 5px;
    background-color: var(--whiteColor);
    color: #2B86BB;
}

.coupon .input-group input {
    border-right: 1px solid var(--lightGray) !important;
    border: 0;
}

.seat-reservation-btn {
    background-color: var(--whiteColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px !important;
    border-radius: 10px;
    border: 1px solid #eeee;
}

.seat-reservation-btn:hover {
    background: #eee;
}

.seat-reservation-btn:hover .chair img {
    filter: brightness(0);
}
.seat-reservation-btn:hover .seat-text h5 {
    color: var(--textColor)  !important;
}

.seats {
    display: flex;
    width: 100%;
}

.chair {
    margin: 0px 20px;
}

.bt-right-aro {
    padding: 10px;
    padding-right: 0px;
}

.seat-text {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.seat-text h5 {
    margin: 0;
}

.content-head {
    text-align: center;
}

.content-head h2 {
    font-size: 26px;
    margin: 10px 0 0;
    text-transform: capitalize;
    color: var(--primaryColor);
    font-weight: 600;
}

.hidden_bus_seat_layout_panel_bg {
    display: none;
    position: fixed;
    left: 0;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #31738d33;
    height: 100%;
    width: 100%;
    z-index: 88888;
    overflow: hidden !important;
}

.hidden_bus_seat_layout_panel {
    width: 400px;
    background: #eaeff5;
    position: fixed;
    z-index: 99999;
    top: 0px;
    right: 0px;
    bottom: 0px;
    padding-bottom: 50px;
}


/* Works on Firefox */

* {
    scrollbar-width: thin;
    scrollbar-color: #2f728c #ddd;
}


/* Works on Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #ddd;
}

*::-webkit-scrollbar-thumb {
    background-color: #2f728c;
    border-radius: 10px;
    border: 3px solid #ddd;
}

.close_seat_modal_btn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 30px;
    color: #707070;
    cursor: pointer;
    font-weight: 300;
}

.reserve_location {
    font-size: 13px;
    color: #707070;
}

.reservation-body {
    padding: 10px 15px;
}

.main_status_box {
    background: var(--whiteColor);
    box-shadow: 0px 0px 5px 0px var(--lightGray);
    padding-bottom: 5px;
    margin-bottom: 10px;
    border: 1px solid var(--lightGray);
    position: relative;
    overflow-y: auto;
    height: calc(95vh - 142px);
    padding: 0 0 10px;
}

.seat_layout {
    padding: 10px;
    width: 100%;
    margin-left: 0px !important;
    border-radius: 10px;
}

.busStructure-wrapper {
    position: relative;
    padding: 15px;
    margin-bottom: 30px;
}

.seat_legend_ttle h5 {
    color: var(--primaryColor);
    font-weight: 600;
}

.ticket-status-table>tbody>tr>td {
    padding: 4px 0 !important;
    border: 0 !important;
    text-align: center;
}

.ticket-status-table tr {
    border: 0;
}

.tkt_check_box {
    display: none;
}

.tkt_check_box+label {
    display: inline-block;
    height: 40px;
    text-align: center;
    margin: 2px 0px;
    font-size: 12px;
    line-height: 40px;
    width: 40px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0px 2px 5px 1px rgb(0 0 0 / 14%);
    color: #333663 !important;
    border: 1px solid var(--whiteColor);
}

.tkt_check_box:checked+label {
    display: inline-block;
    background-color: var(--primaryColor) !important;
    border: 1px solid var(--primaryColor);
    cursor: pointer;
    color: var(--whiteColor) !important;
    font-size: 12px;
}

.seatStatusFree+label:hover {
    background-color: #2b86bb2b !important;
    border: 1px solid var(--primaryColor);
    cursor: pointer;
}

.tkt_check_box:checked+label:hover {
    background-color: var(--primaryColor) !important;
    color: var(--whiteColor) !important;
}

.seatStatusSold+label {
    background-color: #EAEBED !important;
    color: #333663;
    border: 1px solid #ddd;
    cursor: no-drop;
    border-radius: 2px;
}

.btn-section {
    text-align: center;
    width: 100%;
    display: flex;
}

.butn {
    background-color: var(--whiteColor);
    width: 100%;
    margin: 0px 0px 10px;
    border-radius: inherit;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.14);
    padding: 4px !important;
    font-size: 16px;
    color: var(--primaryColor);
    font-weight: 600;
    outline: none !important;
}

.seat-direction {
    display: flex;
    justify-content: space-evenly;
    margin: 7px 100px 3px;
    color: #707070;
}

.seat-wrapper-box {
    background: var(--whiteColor);
    border-radius: 50px;
    padding: 10px 20px 25px;
    margin: 0 0 0;
    margin-bottom: 20px;
}

.seat-wrapper-box p {
    margin: 0;
    font-size: 13px;
    color: #707070;
    font-weight: 500;
}

.lower-desk {
    text-align: center;
}

.upper-desk {
    text-align: center;
}

.heading-left {
    margin-top: 6px;
    margin-bottom: 0px;
    display: flex;
    justify-content: space-around;
}
.timer {
    margin: 0px 16px 5px;
}
#simple_timer, #simple_timer_modal {
    font-size: 35px;
    font-weight: 900;
    color: red;
    display: block;
    line-height: 35px;
}
.simple_timer_txt {
    color: red;
    font-weight: 500;
    animation: blinker 1.5s linear infinite;
    border: 1px dashed;
    padding: 2px 5px;
    display: inline-block;
    margin: 5px 0px;
}
@keyframes blinker {
    30% {
        color: #1e3b66;
    }
    60% {
        color: red;
    }
    100% {
        color: #ff9100;
    }
}
.premium-icon {
    display: inline-block;
    box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.75);
    border-radius: 8px;
    background-color: var(--whiteColor);
    margin: 0px 4px;
    min-width: 40px;
    min-height: 40px;
    line-height: 40px;
}

.seat-icon-butn {
    border-style: none;
    background-color: var(--whiteColor);
}

.premium-icon-driver {
    display: inline-block;
    box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.75);
    border-radius: 8px;
    background-color: var(--whiteColor) !important;
    height: 40px;
    width: 112px;
}

.icon-left {
    display: flex;
    justify-content: space-around;
}

.seat-catagory {
    position: absolute;
    background: var(--whiteColor);
    top: 0;
    padding: 30px 30px 15px;
    width: 200px;
    z-index: 9;
    right: 400px;
}

.seat-catagory .icon-left {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.seat-catagory .seat-icon-butn {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--whiteColor);
    border-radius: 10px;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.14);
}

.reservation_confirm_btn_wraper {
    background: var(--whiteColor);
    z-index: 999;
    width: 100%;
    height: 70px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid var(--lightGray);
}

.reservation_confirm_btn {
    background: #4A43E2;
    padding: 0px 42px;
    font-size: 22px;
    color: var(--whiteColor);
    font-weight: 600;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    border-radius: 10px;
    top: 10px;
    transition: all ease-in-out 0.3s;
    border: 0px;
}

.reservation_confirm_btn:hover {
    background-color: #3134AE !important;
}

.seat-catagory-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.seat-catagory-item p {
    margin: 0px;
    margin-left: 15px;
}

.extras_seat_wrapper_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.extras_seat_wrapper_inner_flex {
    display: flex;
    align-items: center;
}

.additional-lug-flex {
    display: flex;
    align-items: center;
}

.free_btn {
    background: #2b86bb;
    border-radius: 0px;
    color: var(--whiteColor);
    font-weight: 500;
    padding: 2px 20px !important;
}

.lug-quan {
    display: flex;
    align-items: center;
}


/* Congratulations */

.detail-bc {
    background-color: var(--whiteColor);
    padding: 40px;
    border: 1px solid var(--lightGray);
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    min-height: 470px;
}

.congratulations .detail {
    background-color: #2b86bb;
    margin: 0px 0px 9px;
    justify-content: center;
    color: var(--whiteColor);
    padding: 9px 0px 5px 0px;
    font-weight: bold;
}

.congratulations .right {
    min-height: 470px;
    background-color: var(--whiteColor);
    text-align: center;
    color: #707070;
    border: 1px solid var(--lightGray);
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    padding: 70px 0px;
}

.congratulations.right-text {
    font-size: 12px;
    font-weight: 500;
}

.congratulations .item {
    box-shadow: 0px 5px 6px -2px rgb(0 0 0 / 20%);
    margin: 11px 0 0 0;
    padding: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.congratulations .special {
    background-color: #eaeff5;
}

.congratulations .detail h6 {
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    text-align: center;
}

.congratulations .download-btn {
    border: none;
    background-color: #2b86bb;
    color: var(--whiteColor);
    padding: 5px 21px;
}

.payment_img_inReservation {
    height: 30px;
    object-fit: contain;
}

.total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.passger-info-tbl th, .passger-info-tbl td {
    color: var(--textColor);
    font-size: 14px;
    vertical-align: middle;
}

.checkout_btn {
    background: #4A43E2;
    border: 0;
    border-radius: 10px;
    width: 100%;
    font-size: 20px;
    color: var(--whiteColor) !important;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    padding: 8px;
    transition: all ease-in-out 0.3s;
}

.checkout_btn:hover {
    background-color: #3134AE !important
}

.pickup_point .form-control {
    border: 1px solid #c8c8c8;
    background-color: var(--whiteColor);
    padding: 9px 0px 5px 27px;
    border-radius: 10px;
    padding-left: 15px !important;
}
.select2-container--default .select2-selection--single {
    border-radius: 10px;
}
.phone-dial-code .select2-container--default .select2-selection--single {
    border-radius: 10px 0px 0px 10px !important;
}
.pickup_point .form-control:focus {
    border: 1px solid #27a9b9 !important;
}


/*  */

.Busstops {
    list-style: none;
    margin: 0;
    float: left;
    position: relative;
    padding: 0px;
}

.Busstops .node {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transition: all 300ms ease;
    float: left;
}

.Busstops li {
    line-height: 10px;
    text-align: left;
    margin-left: 100px;
}

.Busstops .stops_time {
    position: absolute;
    left: -13px;
}

.Busstops .activated {
    box-shadow: 0px 0px 3px 2px rgba(194, 255, 194, 0.8);
}

.Busstops .divider {
    height: 20px;
    width: 2px;
    margin-left: 4px;
    transition: all 500ms ease;
}

.Busstops li span {
    display: inline-block;
    margin-left: 15px;
    font-size: 14px;
    color: #000;
}

.Busstops .grey {
    background-color: rgba(201, 201, 201, 1);
}

.seat-icon-butn.available {
    background: var(--whiteColor) !important;
    border: 1px solid var(--whiteColor);
}

.seat-icon-butn.sold {
    background: #eaebed;
    border: 1px solid var(--lightGray);
}

.seat-icon-butn.selected {
    background: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}

.seat-catagory.for-mobile {
    position: relative;
    background: var(--whiteColor);
    padding: 15px 10px 0;
    z-index: 9;
    left: 0;
    right: 0 !important;
    width: 100%;
    border-bottom: 1px solid #2b86bb;
}

.middle_passengers_col td {
    padding: 0.5rem 10px !important;
    font-size: 14px;
}

.card.swapCardTicket {
    padding: 10px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    margin: 0;
    background: #ff850030;
}

.card.swapCardTicket .swapCardTicketContent {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card.swapCardTicket p {
    margin: 0px;
}

span.swapClose {
    opacity: 0.7;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    background: #f5bf85;
    width: 25px;
    text-align: center;
    color: #000;
}

span.swapClose:hover {
    opacity: 1;
}

.datebar_wrapper {
    overflow-y: hidden;
    overflow-x: scroll;
}

.datebar_wrapper::-webkit-scrollbar {
    height: 0;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
}

/*======================
    404 page
=======================*/
.page_404 {
    padding: 40px 0;
    background: var(--whiteColor);
}

.page_404 img {
    width: 100%;
}

.four_zero_four_bg h1 {
    font-size: 80px;
}

.four_zero_four_bg h3 {
    font-size: 80px;
}

.contant_box_404 {
    margin-top: 30px;
}

/*  */
.ui-datepicker .ui-datepicker-prev:after {
    position: absolute;
    left: 5px !important;
}

.ui-datepicker .ui-datepicker-next:after {
    position: absolute;
    right: 5px !important;
}

.ui-datepicker .ui-datepicker-header {
    text-align: center;
}

.ui-datepicker .ui-datepicker-calendar th {
    text-align: center;
    font-size: 14px;
}

.btn_view_eats {
    color: var(--whiteColor) !important;
    position: relative;
    z-index: 1;
    padding: 8px 25px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    text-decoration: none;
    margin-top: 5px;
    text-transform: capitalize;
    background: #4a43e2 !important;
    border-radius: 10px !important;
    min-width: 100px;
}

.btn_view_eats:hover {
    background-color: #3134AE !important
}

.price {
    font-weight: 700;
    font-size: 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #2f728c !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 0px !important;
    background: var(--whiteColor) !important;
    color: #000 !important;
    text-align: center !important;
}
.ui-widget.ui-widget-content {
    border: 1px solid var(--lightGray) !important;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    padding: 10px;
    border-radius: 10px;
    min-width: 340px;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #33758e !important;
    background: #33758e !important;
    color: var(--whiteColor) !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid var(--lightGray) !important;
    text-align: center !important;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    font-size: 14px;
    margin: 3px;
}

.ui-widget-header {
    border: 0px !important;
    background: #33768e !important;
    color: var(--whiteColor) !important;
    border-radius: 5px !important;
}

.ui-datepicker .ui-datepicker-prev:after {
    content: "\f053";
}

.ui-datepicker .ui-datepicker-next:after {
    content: "\f054";
}

.ui-datepicker .ui-datepicker-prev:after, .ui-datepicker .ui-datepicker-next:after {
    font-size: 0.61538em;
    line-height: 1;
    color: var(--whiteColor);
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    padding: 10px 0;
    width: 16px;
    display: block;
    text-align: center;
    cursor: pointer;
}
.ui-datepicker table {
    margin: 0;
}
.ui-datepicker .ui-datepicker-calendar th {
    color: #2f728c !important;
}

.ui-datepicker td span,
.ui-datepicker td a {
    padding: .5rem 0.2em;
}

.select2-container .select2-selection--single {
    height: 45px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px !important;
}

/* Login Page Css */
.login-box {
    margin: 2em 0;
    border-radius: 10px;
    background: #fff;
}

.login-form-head {
    text-align: center;
}

.login-form-head h4 {
    letter-spacing: 0;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 7px;
    color: #333;
}

.form-gp {
    margin-bottom: 15px;
    position: relative;
}

.form-gp input {
    width: 100%;
    height: 44px;
    border: 1px solid #c8c8c8;
    outline: none !important;
    box-shadow: none !important;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
}

.form-gp i {
    position: absolute;
    right: 10px;
    color: #3333336b;
    font-size: 16px;
    top: 21px;
    transform: translateY(-50%);
}
.errorTextMsg {
    color: red;
    font-size: 13px;
}
.submit-btn-area button {
    /* width: 100%; */
    height: 42px;
    color: var(--whiteColor);
    background-color: #4A43E2;
    border-radius: 10px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.4px;
    border: 0 !important;
}
.hotel-svds{
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

.submit-btn-area button:hover {
    background: #3134AE !important;
}

.login-with-txt {
    font-size: 15px;
    color: #444;
}

.social-btn a {
    font-size: 16px;
    display: block;
    height: 44px;
    text-align: center;
    margin-bottom: 12px;
    border-radius: 10px;
    line-height: 44px;
    width: 48%;
}

.google-ico {
    background-color: #DD4F46 !important;
    color: var(--whiteColor) !important;
}

.fb-ico {
    background-color: #405893 !important;
    color: var(--whiteColor) !important;
}

.social-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Download Ticket Css */
.download-ticket {
    margin: 10px auto;
    transition: all 0.3s ease-in-out;
    padding: 50px;
    min-height: auto;
    border: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border-radius: 10px;
    background: var(--whiteColor);
}
.passenger-details-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.passenger-details-box {
    height: 300px;
}
.dnld-tkt-details .page_title h4 {
    font-size: 18px;
    text-transform: none;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}
.page__title{
    font-size: 28px;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    color: var(--primaryColor);
}
.pnr-src-btn {
    margin: 0 auto;
    position: relative;
    bottom: 0;
    text-align: center;
}

.tkt-dnld-left-box {
    margin: 10px auto;
    background: var(--whiteColor);
    border-radius: 0;
    padding: 3px 3px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border-radius: 10px;
    border: 1px solid var(--lightGray);
}

.pay-details-box {
    min-height: 365px;
    border: 1px solid var(--lightGray);
}

.passenger-details-box p {
    text-align: center;
    margin: 0 7%;
    background: #e0b861;
    padding: 20px;
    border-radius: 10px;
    color: var(--whiteColor);
}

footer a {
    color: var(--whiteColor);
    font-weight: 500;
}
.passenger-details-box p i {
    font-size: 40px;
}

.close-btn {
    font-weight: 600;
    color: #f00;
    font-size: 25px;
    background: transparent;
    border: 0;
}

/*Modal*/
.cus_medal .modal-content {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.cus_medal .modal-body {
    padding-bottom: 15px;
}

.row.payment-text {
    margin-top: 5px;
}
#iagree {
    font-size: 14px;
}
.payment_right_box_flex{
    height: 88%;
}
.custom_modal_header{
    background: var(--primaryColor);
    color: var(--whiteColor);
}
.custom_modal_header .btn-close{
    filter: invert(1) !important;
    opacity: 1;
}
.pay-details-box {
    margin: 5px 0;
    min-height: 435px;
    border: 1px solid #eee;
    border-radius: 10px;
    border-bottom: 3px solid var(--primaryColor);
    background: var(--primaryColor)0d;
    position: relative;
    height: 100%;
}
.pay-details-box {
    margin: 5px 0;
    min-height: 435px;
    border: 1px solid #eee;
    border-radius: 10px;
    border-bottom: 3px solid var(--primaryColor);
    position: relative;
    height: 100%;
    max-height: 450px;
    overflow-y: auto;
}
.pay-details-box-inner{
    margin: 5px 0;
    min-height: 435px;
    border: 1px solid #eee;
    border-radius: 10px;
    position: relative;
}
.pay-details-box td {
    font-size: 14px;
}
.pay-details-box .title_Ablack {
    background: var(--primaryColor);
    display: block;
    margin: 0;
    padding: 8px 12px;
    border-bottom: 1px solid var(--primaryColor);
    color: var(--whiteColor) !important;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    border-radius: 10px 10px 0 0;
    font-weight: 500;
}

.input-group-row {
    padding: 10px;
}

.psngr-details .details-list {
    list-style: none;
}

.pay-details-box table {
    margin-bottom: 0;
}

.details-list .table td,
.details-list .table th {
    font-size: 13px;
}

/* Successfull Ticket Design */
/* .ticket_box {
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    padding: 30px;
    min-height: 396px;
    border: 1px solid var(--lightGray);
    border-radius: 10px;
    background: var(--whiteColor);
} */

.tick_dtls_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
    text-align: left;
    border-bottom: 2px dashed #7338c4;
    padding: 0px 0px 5px;
    color: #6d2cce;
}

.before-resv-note {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 17px;
}

span#basic-addon2 {
    padding: 3px;
    background: transparent;
}

.coupon_button {
    margin: 0;
}
.single_item {
    margin: 6px 0 0 0;
    padding: 2px;
    font-size: 15px;
    font-weight: 700;
    color: #444;
    background-color: #e3e3e363;
    text-align: center;
    line-height: 20px;
}
.operator_name {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 10px 0 5px;
    color: var(--primaryColor);
    text-transform: uppercase;
}
.single_item span {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: capitalize;
    color: #6d2ccf;
}
/* .single_item.special {
    background: #27a9b917;
} */
/* .ticket_box.right {
    text-align: center;
    height: 100%;
} */
.page__wrapper{
    background-color: #eee;
}
.congratulations_section{
    background: transparent;
}
.mid_cont_btn i{
 margin: 0px 5px !important;
}
.ticket_box .btn {
    min-width: 215px;
}
.mid_cont_btn {
    color: var(--whiteColor) !important;
    background: #7337c5;
    box-shadow: none !important;
    font-size: 17px;
    font-weight: 500;
    outline: none !important;
    transition: all ease-in-out 0.2s;
    margin: 0 auto;
    text-transform: capitalize;
    border-radius: 30px;
    min-height: 40px;
    padding: 0px 20px;
    line-height: 40px;
    min-width: 120px;
    white-space: nowrap;
}

.mid_cont_btn:hover {
    background: #7538c3d4 !important;
    border-color: #7538c3d4 !important;
}
#psngr_dtls {
    background: transparent;
}
/* .img-success {
    width: 70px;
    margin-top: 50px;
} */

/* Contact */
.contact_leftbox{
    background: var(--accentColor);
    color: var(--whiteColor);
}
.b-contact-form-box {
    border: 1px solid var(--lightGray);
    padding: 50px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border-radius: 10px;
    height: 100%;
}

.b-google-map__info-window-address-title {
    font-weight: 600;
    color: var(--whiteColor);
    text-transform: capitalize;
}
.cont_right_box_ul {
    list-style: none;
}

.cont_right_box_ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cont_right_box_icon {
    color: var(--primaryColor);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 20px;
    background: var(--whiteColor);
}

.marquee_title {
    background: #27a9b9;
    padding: 10px;
    color: var(--whiteColor);
}

.marquee_title {
    background: #27a9b9;
    padding: 10px;
    color: var(--whiteColor);
    white-space: nowrap;
    letter-spacing: 0.4px;
}

.marquee-news {
    padding-top: 10px;
    border-bottom: 2px solid #27a9b9 !important;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    width: 100%;
}

.app_sub_title {
    font-weight: 500;
    color: var(--whiteColor);
    font-size: 20px;
    text-transform: capitalize;
}
.count-butn > div {
    display: flex;
    align-items: center;
}
.back_to_home_btn {
    color: #7032c9;
    font-weight: 500;
    text-transform: capitalize;
    box-shadow: none !important;
    outline: none;
}
.active_lan{
    background-color: #dddddd;
    border-left-color: #5e196a !important;
}
.booking_stops {
    display: inline-block;
    list-style: none;
    margin: 0;
    position: relative;
    padding: 0px;
}
.booking_stops li {
    line-height: 20px;
    text-align: left;
    margin-left: 4px;
    position: relative;
}
.booking_stops li span {
    display: inline-block;
    margin-left: 15px;
    font-size: 14px;
    line-height: 26px;
}
.booking_stops .node_blank {
    background: var(--whiteColor)!important;
    border: 1px solid #c9c9c9!important;
}
.booking_stops li::before {
    position: absolute;
    content: '';
    top: 8px;
    bottom: 0;
    left: 0px;
    width: .01rem;
    background: #c9c9c9;
    height: 100%;
}
.booking_stops .grey {
    background-color: var(--accentColor);
    width: 10px;
    height: 10px;
    position: absolute;
    left: -4px;
    border-radius: 50%;
    top: 8px;
}
.booking_stops li:last-child:after {
    position: absolute;
    content: '';
    bottom: -15px;
    left: 0px;
    width: .01rem;
    background: var(--whiteColor);
    height: 23px;
}
.roundtrip_route_direction_title {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 0;
    color: #1e3b66;
}
.page-heading.onward-return-title {
    justify-content: center;
    border-bottom: 2px dashed #ddd;
}
.page-heading.onward-return-title h6 {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    color: #1e3b66;
}

.spiner {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    color: #1e3b66;
    width: 100%;
    background: #f1f1f1;
    min-height: 45px;
    border-radius: 10px;
    text-align: center;
    line-height: 45px;
}

.spinerSB {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    color: #1e3b66;
    width: 100%;
    background: #f1f1f1;
    min-height: 45px;
    border-radius: 10px;
    text-align: center;
    line-height: 45px;
}
.position-rel {
    position: relative;
}
.cancel-ticket-btn {
    background: #dc3545;
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 10px;
    outline: 0;
    box-shadow: none;
    border: 0;
    font-size: 15px;
    font-weight: 500;
}
.cancel-ticket-btn:hover {
    color: #fff;
    background: #c02e3c;
}
.single-cancel-list-wrap {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}
.list-val {
    margin: 0;
}
.single-cancel-list-wrap label {
    color: #4a43e2;
    font-size: 14px;
    font-weight: 500;
}
.cancel-box {
    position: absolute;
    min-width: 300px;
    right: 0;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px #ddd;
    text-align: center;
    font-size: 14px;
    top: 56px;
    z-index: 2;
}
.cancel-box::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    height: 25px;
    width: 24px;
    background-color: #ffffff;
    transform: rotate(45deg);
    border: 1px solid #eee;
    border-right: 0;
    border-bottom: 0;
}
.phone_prefix_wrap {
    width: 150px;
}
.phone_prefix_text_inp{
    border-radius: 0px 10px 10px 0px !important;
}
/* Popular Trips */
.route_link {
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
    padding-bottom: 10px;
    height: 100%;
}
.popular_trip_img_wrap {
    overflow: hidden;
}
.popular_trip_img{
    height: 300px;
    object-fit: cover;
    width: 100%;
    transition: all ease-in-out 0.3s;
}
.route_link:hover img{
    transform: scale(1.1);
 }
.route-text {
    font-size: 20px;
    text-align: center;
    margin: 15px 10px;
    font-weight: 600;
}
.font_28 {
    font-size: 28px !important;
    line-height: 0;
    font-weight: bolder;
}
.trip_price_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}
.trip_price {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #dc3545;
}
.trip_details_btn {
    background: #4a43e2;
    border: 0;
    color: var(--whiteColor) !important;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 20px;
    border-radius: 10px;
    outline: 0;
    box-shadow: none;
    transition: all ease-in-out 0.3s;
}
.trip_details_btn:hover{
    background: #3134AE !important
}
/* Route Trip Details */
.route_banner {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.route_banner img {
    width: 100%;
    background-size: cover;
    height: 100%;
    object-fit: cover;
}
.route_banner h1 {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    text-shadow: 0px 2px 8px #000;
    font-size: 45px;
    text-transform: capitalize;
}
.route_banner::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000059;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.tkt_table {
    width: 100%;
    max-width: 100%;
}
.tkt_table th, .tkt_table td {
    border: 1px solid #4a43e2;
    font-weight: 500;
}
.route_table td {
    padding: 10px 15px !important;
}
.single_srch_result {
    background: #ffffff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 19%);
    border: 1px solid #eee;
}
.single_srch_result ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.single_srch_result .bus_name_wrap {
    display: grid;
    grid-template-columns: 40% 5% 40% 15%;
}
.single_srch_result .time {
    display: grid;
    grid-template-columns: 45% auto auto;
}
.single_srch_result .heading .seat p {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.single_srch_result .bus_name h6 {
    margin-bottom: 5px;
    color: #763ac1;
    font-size: 17px;
    font-weight: 700;
}
.single_srch_result .bus_name p {
    font-size: 13px;
    color: #5d686e;
    margin-bottom: 5px;
}
.single_srch_result .bus_name_wrap .fa-angle-right {
    color: #763ac1;
    font-size: 24px;
}
.single_srch_result .bus_name_wrap .price {
    font-size: 18px;
    text-align: right;
}
.bus_terminal_wrap {
    padding: 0;
    margin: 0;
    list-style: none;
}
.single_bus_terminal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 13px 10px;
}
.single_bus_terminal:nth-child(even) {
    background-color: #96969621;
}
.single_bus_terminal a:first-child {
    width: 68%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.single_bus_terminal a {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
.single_bus_terminal a img {
    width: 22px;
    filter: grayscale(1);
}
.single_srch_result .time button {
    background: var(--accentColor);
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    transition: .2s all ease-in-out;
}
.beta_tag {
    font-size: 20px;
    font-weight: 600;
    background: #4a43e2;
    color: #ffffff;
    display: inline-block;
    width: 300px;
    text-align: center;
    padding: 4px;
    position: fixed;
    z-index: 999;
    transform: rotate(-45deg);
    top: 40px;
    left: -85px;
}
.phone_postfix_inp{
    border-radius: 0px 10px 10px 0px !important;
}
.phone_prefix_wrap .select2-container--default .select2-selection--single {
    border-radius: 10px 0px 0px 10px;
}
.contact_section{
    background-color: var(--lightGray);
}

.data_view_box {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
    background: #F8D7DA;
    border: 2px dashed #1e3b66;
}
.hide_data_view_boxs {
    position: absolute;
    top: 0;
    right: 0;
    background: #ee3135;
    color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 0 10px;
    cursor: pointer;
    font-size: 20px;
}
#shadow-host-companion {
    padding: 0 !important;
}
.data_view_box_title{
    border-bottom: 1px solid #00000040!important;
    font-size: 18px;
}
/* ===payment_confirm==== */
.ticket_box {
    padding: 15px;
    border: 1px solid var(--lightGray);
    background: #fff;
    border-radius: 10px;
    height: 100%;
}
.ticket_box_heading {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}
.ticket_box_pnr_wrap.copy-text {
    border: 1px dashed #7337c5;
    max-width: 290px;
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    justify-content: space-between;
    margin-top: 5px;
    width: 100%;
}
.copy-text {
    position: relative;
}
.ticket_box_pnr {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #7337c5;
}
.copy-text button {
    font-size: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 4px;
    right: 4px;
    box-shadow: none;
    background: #7337c5d1;
    color: #fcfcff;
    line-height: 20px;
    width: 22px !important;
    height: 22px !important;
    border-radius: 5px;
    transition: all ease-in-out 0.3s;
}

.ticket_box.right {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ticket_box_safe_title {
    font-weight: 400;
    margin: 0;
}
.border__custom {
    padding-left: 40px;
    margin-bottom: 20px;
}
.single_item_coach_title {
    font-size: 18px !important;
    font-weight: 600 !important;
    position: relative;
    margin: 0 0 15px;
}
.arrow_dir_tikt {
    width: 35px;
    display: inline-block;
    font-size: 28px;
    border: 1px solid #ddd;
    border-radius: 50%;
    text-align: center;
    height: 35px;
    position: absolute;
    left: -40px;
    top: -8px;
    color: var(--primaryColor);
}
.dir_img {
    width: 20px;
    margin-top: -5px;
    filter: opacity(0.5);
}
.cancle_tckt_part {
    border: dashed 2px #bcbcbc45 !important;
    border-radius: 2px;
    padding: 10px;
}
.single_item_blank.time {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 5px;
}
.boarding_dropping_point {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 28px;
    color: #000000;
    margin: 0;
}
.arrow_direction {
    margin: auto;
}
.arrow_direction p {
    font-size: 40px !important;
    color: #000 !important;
    line-height: 22px;
    margin: 0;
    font-weight: 700;
    text-align: center;
    padding: 5px 5px;
}
.ticket_box .single_item {
    margin-bottom: 5px;
    padding: 2px 5px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    max-height: 72px;
    border: 1px dashed #ddd;
    text-align: center;
    line-height: 20px;
}
.single_item.special {
    background: #27a9b917;
}
.ticket_box {
    padding: 15px;
    border: 1px solid var(--lightGray);
    background: #fff;
    border-radius: 10px;
    height: 100%;
}
/* number or pnr copy */
.copy-text button:focus {
    background: #7337c5 !important;
    color: var(--whiteColor) !important;
}

.copy-text button:before {
    content: "Copied!";
    position: absolute;
    top: -37px;
    right: 0px;
    background: #7337c5;
    padding: 2px;
    border-radius: 5px;
    font-size: 13px;
    display: none;
    color: #fff;
    z-index: 2;
}

.copy-text button:after {
    content: "";
    position: absolute;
    top: -21px;
    right: 7px;
    width: 10px;
    height: 10px;
    background: #7337c5;
    transform: rotate(45deg);
    display: none;
}

.copy-text.active button:before,
.copy-text.active button:after {
    display: block;
}
/* ====animate=== */
.checkmark {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
    top: 5px;
    right: 5px;
    margin: 0 auto;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 5;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: #fff;
    animation: stroke 2s cubic-bezier(0.65, 0, 0.45, 1) forwards;

}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 1s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}