/**
* Template Name: Long Term Airport Parking
* Version: 1.0
* Author: Ikram Hossen
* Developed By: Codeware Ltd.
* Author URL: www.codewareltd.com
**/
/*====================================================================
root css
====================================================================*/


:root {
    --font-family: "Open Sans", sans-serif;
    --textColor: #000000;
    --primaryColor: #54c147;
    --redColor: #FE0101;
    --grayColor: #ddd;
    --whiteColor: #fff;
    --lightGray: #f2f3f3;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--textColor) !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #F8FAFF;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.base_color {
    color: var(--primaryColor) !important;
}

/* 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: var(--primaryColor);
    text-decoration: none;
}

footer a:hover {
    color: var(--primaryColor);
}

.footer-top {
    font-size: 16px;
}

.footer-bottom a {
    color: var(--textColor);
    text-transform: capitalize;
}

.footer-bottom a:hover {
    color: var(--whiteColor);
}

.width_80_percent {
    width: 80%;
}

.payment_wrap {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
    border-radius: 5px;
    border: 1px solid #54c1477d;
    max-width: 250px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
    background: var(--whiteColor);
}

#preloader .wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: center;
    transform: translateY(-50%);
}

#preloader img {
    position: relative;
    height: 200px;
    width: 200px;
    background-color: var(--whiteColor);
    padding: 20px;
    border-radius: 50%;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.modal {
    z-index: 99999;
}

.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
--------------------------------------------------------------*/
.topbar {
    background: var(--primaryColor);
    padding: 5px 0;
}

.topbar a {
    color: var(--whiteColor);
    font-size: 14px;
}

.topbar a:hover {
    color: var(--textColor) !important;
}

.social-links a {
    font-size: 14px;
    display: inline-block;
    transition: 0.3s;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 21px;
    border-radius: 10px 0px;
    margin-left: 6px;
    color: var(--whiteColor);
    border: 2px solid var(--whiteColor);
}

#header {
    transition: all 0.5s;
    z-index: 8;
    padding: 4px 0;
    background-color: var(--whiteColor);
    position: relative;
    top: 0;
    width: 100%;
    height: min-content;
    box-shadow: 0px 5px 10px #9d9d9d1f;

}

#header .logo {
    width: 100px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

footer .social-links {
    justify-content: center;
    margin-bottom: 5px;
}

.footer_subscribe_btn {
    background: var(--primaryColor);
    border-radius: 30px !important;
    text-transform: capitalize;
    font-weight: 500;
    padding: 6px 20px;
    transition: .2s all ease-in-out;
    color: var(--whiteColor) !important;
    font-size: 18px;
}

.footer_subscribe_btn:hover {
    background-color: #28a745 !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 0px;
}

.login-btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.lang__anc {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
}

.flag-icon {
    margin-right: 5px !important;
}

.login-user-icon {
    font-size: 24px;
    height: 37px;
    width: 37px;
    background: var(--whiteColor);
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    color: var(--whiteColor);
}

.login-btn:hover {
    background: transparent !important;
}

.nav-menu a:hover, .nav-menu .active>a, .nav-menu li:hover>a {
    color: var(--primaryColor);
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: var(--whiteColor);
    border: 0;
    transition: 0.3s;
    min-width: 250px;
    right: 0;
    border-radius: 5px;
    box-shadow: 0px 4px 10px #00000036;
}

.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 li:first-child a {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.nav-menu .drop-down li:last-child a {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.nav-menu .drop-down ul a {
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 400;
    color: var(--textColor);
    text-transform: capitalize;
    border-bottom: 1px solid #eee;
}
li.b-top-nav__1level.f-top-nav__1level:last-child a {
    padding-right: 0px;
}
header li a.active {
    color: var(--primaryColor);
}

.nav-menu .drop-down li a:hover {
    color: var(--primaryColor) !important;
}

.nav-menu .drop-down li a.active {
    color: var(--primaryColor) !important;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: var(--primaryColor);
}

.nav-menu .drop-down>a:after {
    content: "\f107";
    font-family: 'FontAwesome';
    padding-left: 5px;
}

.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;
}

.signin_signup_wrap {
    display: flex;
    border-radius: 30px;
    gap: 5px;
}

.signin_signup_wrap a {
    padding: 5px 19px;
    border-radius: 5px !important;
    border: 1px solid var(--whiteColor);
    transition: all ease-in-out 0.3s;
    font-weight: 500 !important;
}

.signin_signup_wrap a:first-child {
    background: var(--whiteColor);
    color: var(--textColor);
}

.signin_signup_wrap a:first-child:hover {
    background: transparent;
    color: var(--whiteColor);
}

.signin_signup_wrap a:last-child {
    background: transparent;
}

.signin_signup_wrap a:last-child:hover {
    background: var(--whiteColor);
    color: var(--textColor);
}

/* Mobile Navigation */

.mobile-nav-toggle {
    position: absolute;
    top: 13px;
    right: 15px;
    z-index: 9;
    border: 0;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    background: var(--primaryColor);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
}

.mobile-nav-toggle i {
    color: var(--whiteColor);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 99999999;
    overflow-y: auto;
    background: var(--whiteColor);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
.mobile-nav ul {
    padding-top: 40px;
}
.mobile-nav ul li ul {
    padding-top: 0;
}
.mobile-nav a {
    display: block;
    position: relative;
    color: var(--textColor);
    padding: 4px 20px;
    font-weight: 500;
    outline: none;
    font-size: 16px;
    text-transform: capitalize;
    padding: 6px 10px !important;
}
.mobile-nav ul li ul a {
    font-size: 15px;
    padding-left: 0px !important;
}
.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: 'FontAwesome';
    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;
    overflow: visible;
    padding: 0px !important;
}

.banner_content {
    position: absolute;
    top: 50px;
    z-index: 2;
    left: 10%;
    right: 10%;
    margin: 0 auto;
}

.home_banner_img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.home_banner_img_wrap {
    position: relative;
}

.home_banner_img_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #00000040;
}

.input-group-text {
    font-size: 1.3rem;
}

#hero h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    color: var(--whiteColor);
    text-transform: capitalize;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
    text-shadow: 0px 3px 10px #0000003b;
}

.banner_content p {
    color: var(--whiteColor);
    width: 70%;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    text-shadow: 0px 3px 10px #0000003b;
}
.book_spot {
    font-size: 25px  !important;
    font-weight: 700 !important;
    margin-top: 10px !important;
    color: #FFEB3B !important;
    text-shadow: 0px 0px 10px #000000bd !important;
}

.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-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
}

#hero .input-group {
    flex-wrap: nowrap;
    height: 46px;
}

.select2-container {
    background: #fff;
    border-radius: 5px;
}

#date,
#date2 {
    position: relative !important;
    padding-top: 7px !important;
    background: #fff;
    height: 46px;
    border-radius: 5px;
    cursor: pointer;
}

#date:focus,
#date2:focus {
    border: 1px solid #c8c8c8 !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-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: left;
    padding-bottom: 0px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
}

.page_title {
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# 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: var(--primaryColor) !important;
    color: white;
}

label.filter_label {
    margin-bottom: 2px;
    font-weight: 500;
    text-transform: capitalize;
}

/*--------------------------------------------------------------
# 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: var(--textColor);
}

.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%;
    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);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    font-size: 17px;
    background: var(--whiteColor);
    margin-top: auto;
    color: var(--textColor);
    overflow: hidden;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid #54c1471a;
}

#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;
}

#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: var(--textColor);
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--textColor);
}

#footer .footer-top h4 {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    text-transform: capitalize;
    padding-bottom: 10px;
}
#footer .footer-top h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    z-index: 1;
    background-color: var(--primaryColor);
}
.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;
    font-size: 16px;
    width: 28px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    display: inline-block;
    margin-right: 10px;
    padding-left: 4px;
    border-radius: 3px;
    background: var(--whiteColor);
    color: #000;
}

#footer .footer-top .footer-links ul li {
    padding: 4px 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: var(--textColor);
    transition: 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--primaryColor);
}
#footer .footer-top .footer-links ul a::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f101";
    display: inline-block;
    font-size: 1rem;
    vertical-align: middle;
    color: var(--textColor);
    opacity: 0.95;
    position: absolute;
    left: 0;
    transition: 0.3s;
}
#footer .footer-top .footer-links ul a:hover::after{
     color: var(--primaryColor);
}

#footer .footer-top .social-links a i {
    line-height: 24px !important;
}

#footer .footer-top .social-links a:hover {
    background: #2b86bb;
    color: var(--whiteColor);
    text-decoration: none;
}

#footer .footer-bottom {
    padding: 10px 0 !important;
    text-align: center;
    background: var(--primaryColor);
    color: var(--whiteColor);
    font-size: 15px;
}

.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: 5px;
    min-height: 46px;
}

.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: var(--primaryColor);
    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(--primaryColor) !important;
    color: var(--whiteColor);
    line-height: 46px;
    border: 0 !important;
    letter-spacing: 0.5px;
    border-radius: 5px;
    height: 46px;
    text-transform: capitalize;
}

.btnsubmit:hover {
    background-color: #46ae3a !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);
}

.faq-list a {
    color: #ee3135;
}

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: 5px;
}

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;
}

/* Filter */

div#trip-msg {
    border: 1px solid var(--lightGray);
    margin-top: 30px;
    padding: 30px;
    text-align: center;
    background: #eee;
}

.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: var(--textColor);
    font-weight: 600;
    font-size: 20px;
    display: inline-block;
}

.dept-time-wrapper {
    margin-top: 5px;
    position: relative;
}

.dept-time-wrapper h4 {
    margin: 0px;
    color: var(--primaryColor);
    font-weight: 600;
    position: relative;
    z-index: 2;
    background: var(--whiteColor);
    font-size: 17px;
    min-width: 75px;
}

.duration_time_wrap {
    width: 300px;
    text-align: center;
    position: relative;
    margin: 0 5px;
}

.duration_time_wrap::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #ddd;
    left: 0;
    right: 0;
    top: 50%;
}

.duration_time {
    background: var(--whiteColor);
    padding: 0 5px;
    position: relative;
    z-index: 1;
}

span.arrow-icon i {
    width: 28px;
    height: 28px;
    display: inline-block;
    border-radius: 50%;
    line-height: 27px;
    background: #d4242e;
    color: var(--whiteColor);
}

.dept-time-wrapper p {
    display: inline-block;
    font-size: 16px;
    margin: 0;
}

.list_price {
    font-weight: 700;
    font-size: 18px;
}

/* 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 var(--primaryColor) !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: var(--primaryColor) !important;
    box-shadow: inset 0 0 0 4px #f4f4f4 !important;
    margin-right: 4px;
}

label.radio-label {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.radio input[type=radio]:focus+.radio-label:before {
    outline: none !important;
    border-color: var(--primaryColor) !important;
}


/* Round-trip One-way ends*/


/* Custom Checkbox */
.nav-menu a {
    display: block;
    position: relative;
    color: var(--textColor);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 30px;
}

.repeat-arrow-img {
    position: absolute;
    top: 10px;
    z-index: 1;
    width: 35px;
    cursor: pointer;
    background: var(--whiteColor);
    padding: 4px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--primaryColor);
    height: 31px;
    object-fit: contain;
    border-radius: 3px;
}

.homeDatePanel .select2-selection__arrow {
    display: none !important;
}

.location-flex-area {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 8px;
}

/* Search section new */

.hero_container {
    position: relative;
    z-index: 2;
}

.search_bus_area.modify_bus_area {
    background: #fff;
}

.search_bus_area {
    background: var(--whiteColor);
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 5;
    border-radius: 8px;
    right: 0;
    left: 0;
}
.alert_box {
    margin: 0;
    background: #dc354514;
    padding: 10px;
    border-radius: 5px;
    color: #dc3545;
    border: 1px solid #dc354545;
    font-weight: 700;
    font-size: 22px;
     animation: blinkText 2s infinite;
}

@keyframes blinkText {
  0%   { opacity: 1; }
  50%  { opacity: 0.3; }
  100% { opacity: 1; }
}
.home_search_bus_area {
    margin-top: -50px;
}

.search_bus_area span.select2-selection.select2-selection--single {
    display: block;
    margin-top: 0;
    height: 46px !important;
    font-size: 16px;
    text-align: left;
    padding-left: 10px;
    border-radius: 5px;
    border: 0;
}

.select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: 1px solid #c8c8c8 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px !important;
}

.calender-input-group {
    position: relative;
}

.calender-input-group i.fa {
    position: absolute;
    color: var(--primaryColor);
    right: 16px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 15px;
    background: var(--whiteColor);
}

.middle_passengers .table td {
    padding: .5rem 10px !important;
}

#hero input,
#hero select {
    height: 46 !important;
    background: transparent;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
}

.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;
}

.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_wrap {
    position: relative;
    bottom: 50px;
}

.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;
}

.mobile.datebar li span {
    font-size: 16px !important;
    font-weight: 800 !important;
    white-space: nowrap;
}

ul.datebar li {
    width: 14.3%;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 5px;
    cursor: pointer;
    border-left: 1px solid #ddd;
    border-top: 2px solid transparent;
    border-bottom: 2px solid var(--whiteColor);
    border-radius: 5px;
    background: var(--primaryColor)de;
    justify-content: center;
    background: var(--whiteColor);
}

.mobile.datebar li {
    width: 100% !important;
}

ul.datebar li a {
    color: var(--textColor);
}

.arrow-icon {
    font-size: 30px !important;
    display: inline-block;
}

ul.datebar li:first-of-type {
    border: 0px !important;
}

ul.datebar li span {
    font-size: 13px;
    font-weight: 600;
}

ul.datebar li.active {
    background: var(--whiteColor);
    border-bottom: 2px solid var(--primaryColor);
}

ul.datebar li.active a {
    color: var(--primaryColor);
}

.scroll_route_heading {
    color: var(--primaryColor);
    font-weight: 500
}

li.date-disable {
    cursor: no-drop !important;
}

li.date-disable a {
    color: #333;
    opacity: 0.7;
    cursor: no-drop;
}

.modify_bus_area span.select2-selection.select2-selection--single {
    font-size: 14px;
    border: 1px solid #ddd !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none !important;
}

.butn-adult {
    background: transparent !important;
    border: 1px solid #c8c8c8;
    color: #444 !important;
    text-decoration: none !important;
    width: 100%;
    display: block;
    height: 46px;
    line-height: 46px;
    text-align: left;
    padding: 0px 12px;
    border-radius: 5px;
    font-size: 15px;
    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);
    padding: 0px 4px;
    width: 100%;
    background: var(--whiteColor);
    display: block;
    list-style: none;
    text-align: left;
    border-radius: 5px;
    top: 10px;
    box-shadow: 0 10px 40px 0 rgb(104 113 123 / 20%);
    padding: 0px 20px;
    z-index: 1;
}

.dropdown-items {
    color: var(--primaryColor) !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;
}

.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: #444;
    font-weight: 600;
    border: 0 !important;
    height: 46px;
}

.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: var(--textColor);
    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: 5px 20px;
    white-space: nowrap;
    float: left;
    margin: 0 2px;
}

#ui-datepicker-div {
    border: 1px solid var(--lightGray);
    padding: 0px;
    border-radius: 0px;
}

.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: var(--textColor);
}

/* How it works */
.hiw-box img {
    max-height: 50px;
    margin: 0px 0 10px;
}

.hiw-box h3 {
    color: var(--textColor);
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    margin: 0;
    text-align: center;
}

.hiw-box p {
    min-height: 46px;
    margin: 0px;
}

/* Why us */
.box-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.hiw-box {
    border-radius: 5px;
    width: 19%;
    transition: all ease-in-out 0.3s;
    padding: 10px;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    background: var(--whiteColor);
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    height: 100%;
}

.hiw-box:hover {
    background: var(--lightGray);
    transform: translateY(-6px);
    box-shadow: none;
}

/* Route */
.gallery_carousel .owl-nav {
    margin-top: 0 !important;
    position: absolute !important;
    width: 100%;
    top: 45%;
    transform: translateY(-50%);
}

/* Payment page */

.wrap {
    background: var(--whiteColor)00;
    padding: 15px 20px;
    margin-top: 20px;
    border: 1px solid var(--lightGray);
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border-radius: 5px;
}

.page-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sale_page_heading h1 {
    color: var(--primaryColor);
    font-size: 24px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 600;
}

.rectan {
    display: inline-block;
    height: 25px;
    width: 25px;
    background: var(--primaryColor);
    margin-right: 10px;
    border-radius: 50%;
    border: 3px dotted var(--whiteColor);
}

.heading-3 h3 {
    font-size: 16px;
    font-weight: bold;
    color: var(--textColor);
    margin-top: 10px;
}

.heading-p p {
    font-size: 12px;
    font-weight: lighter;
    color: var(--textColor);
}

.payment-form input {
    border: 1px solid #c8c8c8;
    background-color: var(--whiteColor);
    padding: 5px 10px;
    border-radius: 5px;
    width: 100%;
    min-height: 46px;
}

.phone-dial-code .select2-container--default .select2-selection--single {
    border-radius: 5px 0px 0px 5px;
}

.passengers ul {
    list-style: none;
    padding: 10px;
    border: 1px solid var(--lightGray);
    margin: 10px;
}

.passengers ul li {
    line-height: 24px;
    font-size: 14px;
}

.payment-form input:focus {
    border: 1px solid var(--primaryColor) !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: 5px;
    position: sticky;
    top: 120px;
    margin-top: 20px;
}

input {
    outline: none !important;
}

select {
    appearance: button !important;
    -webkit-appearance: button !important;
    -moz-appearance: button !important;
}

.pass_format_name {
    background: #f3f3f3;
    padding: 5px;
    color: var(--primaryColor);
    font-size: 18px;
    letter-spacing: 0.3px;
    border-bottom: 1px dashed var(--primaryColor);
    margin: 0 0 5px;
    text-align: center;
    display: inherit;
}

select:focus {
    border: 1px solid var(--primaryColor) !important;
}

.table>:not(:first-child) {
    border-top: 0 !important;
}

.selectSeatDetailsWrapper {
    background: #eeeeee;
    padding: 15px 15px 10px;
    border: 1px dashed #d4242e;
    border-radius: 5px;
}

.pasngrs_title {
    border: 0;
    padding: 0;
    margin: 0;
}

#simple_timer {
    font-size: 25px;
    font-weight: 900;
    color: var(--primaryColor);
}

.booking_title {
    color: var(--primaryColor);
    font-size: 26px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 500;
}

.date {
    color: var(--textColor);
    font-weight: bold;
    font-size: 16px;
}

.total_data {
    color: var(--textColor);
    font-weight: 500;
    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;
    border-radius: 0;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    padding: 15px 20px !important;
    border-radius: 5px;
}

.seats {
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 10px;
    background: #eeeeee;
    border: 1px dashed var(--primaryColor);
}

.chair {
    margin: 0px 18px 0 8px;
}

.bg__box {
    background: #f3f3f3;
    border-radius: 5px;
    padding: 15px 15px 0px;
    margin-bottom: 15px;
    border: 1px solid var(--lightGray);
    border-bottom: 2px solid var(--primaryColor);
}

.bt-right-aro {
    padding: 10px;
    padding-right: 0px;
}

.location_sale_form {
    font-weight: 900;
    font-size: 20px;
    color: #1f1f1f;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.right_arrow_img {
    width: 25px;
    margin: 0 10px;
    opacity: 0.4;
}

.seat-text {
    text-align: left;
}

.seat-text h5 {
    margin: 0;
    color: var(--textColor);
    font-size: 18px;
}

.content-head {
    text-align: center;
}

.content-head h1 {
    font-size: 26px;
    margin: 10px 0 0;
    text-transform: capitalize;
    color: var(--primaryColor);
    font-weight: 500;
}

.hidden_bus_seat_layout_panel_bg {
    display: none;
    position: fixed;
    left: 0;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #2b86bb4f;
    height: 100%;
    width: 100%;
    z-index: 999999;
    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: var(--primaryColor) #ddd;
}


/* Works on Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #ddd;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primaryColor);
    border-radius: 5px;
    border: 3px solid #ddd;
}

.close_seat_modal_btn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 30px;
    color: var(--textColor);
    cursor: pointer;
    font-weight: 300;
}

.reserve_location {
    font-size: 13px;
    color: var(--textColor);
}

/* 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 {
    width: 250px;
}

.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;
    border: 0;
    padding: 3px !important;
}

.checkout_btn {
    background: var(--primaryColor);
    border: 0;
    border-radius: 5px;
    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: var(--primaryColor) !important;
}

.pickup_point .form-control {
    border: 1px solid #c8c8c8;
    background-color: var(--whiteColor);
    padding: 9px 0px 5px 27px;
    border-radius: 5px;
    padding-left: 15px !important;
}

.pickup_point .form-control:focus {
    border: 1px solid var(--primaryColor) !important;
}

/*======================
404 page
=======================*/
.page_404 {
    padding: 40px 0;
}

.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 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    text-decoration: none;
    margin-top: 5px;
    text-transform: capitalize;
    background: var(--primaryColor) !important;
    border-radius: 5px !important;
    min-width: 115px;
    box-shadow: none !important;
    outline: 0;
}

.btn_view_eats:hover {
    background-color: var(--primaryColor) !important;
}

.price {
    font-weight: 600;
    font-size: 24px;
    margin: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primaryColor) !important;
}

.iti {
    display: block !important;
}

.iti__country {
    white-space: pre-wrap;
}

.iti__country-list {
    min-width: 350px;
}

#ui-datepicker-div {
    padding: 10px;
    border-radius: 6px;
    z-index: 99999 !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: var(--textColor) !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: 5px;
    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 var(--primaryColor) !important;
    background: var(--primaryColor) !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: var(--primaryColor) !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: black;
    font-family: "FontAwesome";
    font-weight: normal;
    padding: 10px 0;
    width: 16px;
    display: block;
    text-align: center;
    cursor: pointer;
}

.ui-datepicker table {
    margin: 0;
}

.ui-datepicker .ui-datepicker-calendar th {
    color: var(--textColor) !important;
}

.ui-datepicker td span,
.ui-datepicker td a {
    padding: .5rem 0.2em;
}

.select2-container .select2-selection--single {
    height: 46px !important;
}

.phone_prefix_wrap .select2-container .select2-selection--single {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-right: 0px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
}

/*Modal*/
.cus_medal .modal-content {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.cus_medal .modal-body {
    padding-bottom: 40px;
}

.row.payment-text {
    margin-top: 5px;
}

.pay-details-box {
    margin: 5px 0;
    min-height: 365px;
    border: 1px solid #ddd;
}

.pay-details-box .title_Ablack {
    background: var(--primaryColor);
    display: block;
    margin: 0;
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
    color: var(--whiteColor) !important;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.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: 14px;
}

/* Successfull Ticket Design */
.ticket_box {
    padding: 25;
    border: 1px solid var(--lightGray);
    background: var(--whiteColor);
    border-radius: 5px;
    height: 100%;
    min-height: 326px;
}

.tick_dtls_title {
    font-size: 20px;
    color: var(--textColor);
    text-align: center;
    padding: 2px 0 8px;
    margin-bottom: 0;
    font-weight: 700;
}

.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;
}

button:disabled, button[disabled],
button:disabled, button[disabled]:hover,
button:disabled, button[disabled]:focus {
    cursor: no-drop;
    opacity: 0.7;
    background: var(--primaryColor) !important;
}

.dcbtn-disable {
    cursor: no-drop !important;
}

.dcbtn-disable a {
    cursor: no-drop !important;
    opacity: 0.6;
}

a.dcbtn-disable {
    cursor: no-drop !important;
    opacity: 0.6;
}

.done__btn {
    background: var(--primaryColor);
    padding: 1px 10px 2px;
    border-radius: 5px;
    display: inline-block;
    margin: 6px 0;
    color: var(--whiteColor);
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

.ticket_box .single_item {
    margin: 8px 0 0 0;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--textColor);
    background-color: #e3e3e36b;
    max-height: 72px;
    min-height: 52px;
    border-radius: 30px;
}

.arrow_direction p {
    font-size: 30px !important;
    padding-top: 0px !important;
    color: var(--textColor) !important;
    line-height: 38px;
}

.single_item.special {
    background: var(--primaryColor);
}

.single_item_coach_title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #d4242e !important;
    position: relative;
}

.single_item_blank.time {
    font-size: 30px;
    font-weight: 600;
}

.single_item_blank.date {
    font-size: 13px;
    font-weight: 600;
}

.boarding_dropping_point {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.border__custom {
    padding-left: 40px;
    margin-bottom: 20px;
}

.arrow_dir_tikt {
    width: 35px;
    display: inline-block;
    font-size: 29px;
    border: 1px solid #ddd;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    height: 35px;
    position: absolute;
    left: -40px;
    top: -7px;
}

.single_item {
    margin: 6px 0 0 0;
    padding: 2px;
    font-size: 15px;
    font-weight: 700;
    color: #444;
    background-color: #e3e3e363;
    line-height: 20px;
}

.back_to_home_btn {
    text-transform: capitalize;
}

.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: var(--primaryColor);
}

.single_item_blank {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.single_item.special {
    background: #27a9b917;
}

.ticket_box.right {
    text-align: center;
    height: 100%;
}

.img-success {
    width: 70px;
}

/* Contact */
label {
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
}

.b-contact-form-box {
    border: 1px solid var(--lightGray);
    min-height: 460px;
    padding: 25px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border-radius: 5px;
    background: var(--whiteColor);
    border-radius: 25px;
    height: 100%;
}

.b-google-map__info-window-address-title {
    font-weight: 600;
    color: var(--textColor);
    text-transform: capitalize;
}

.cont_right_box_ul {
    list-style: none;
}

.cont_right_box_ul li {
    display: flex;
    margin-bottom: 10px;
}

.errorTextMsg {
    color: red;
    font-size: 14px;
}

.cont_right_box_icon {
    color: var(--primaryColor);
    border: 1px dashed #c1c1c1;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 31px;
    border-radius: 50%;
    font-size: 20px;
}

.marquee_title {
    background: var(--primaryColor);
    padding: 13.5px 8px;
    color: var(--whiteColor);
    border-bottom: 3px solid var(--primaryColor);
    white-space: nowrap;
    letter-spacing: 0.4px;
    border-radius: 5px 0 0 5px;
    text-transform: capitalize;
    font-size: 18px;
}

.marquee-news {
    border-bottom: 2px solid var(--primaryColor) !important;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    width: 100%;
    border-radius: 0 5px 5px 0px;
    background: var(--whiteColor);
}

marquee {
    padding: 5px;
    margin-top: 10px;
}

.marquee-news p {
    color: #000;
}

.homeDatePanel .form-control {
    height: 46px;
}

.homeDatePanel .input-group-text {
    flex-wrap: nowrap;
    height: 46px;
    margin-right: -1px;
}

.homeDatePanel .btnsubmit {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.single-cancel-list-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.single-cancel-list-wrap>div {
    margin: 0 4px;
}

.single-cancel-list-wrap label {
    font-size: 14px;
    margin: 0;
    padding-left: 20px;
    display: block;
    text-align: left;
    text-transform: capitalize;
}

.single-cancel-list-wrap .list-val {
    font-size: 14px;
    background: var(--whiteColor);
    padding: 5px 20px;
    border-radius: 30px;
    color: #000;
    margin: 0px;
    text-align: left;
}

.cancel-ticket-btn {
    background: #E06666;
    color: var(--whiteColor) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 20px;
    border-radius: 30px;
    display: inline-block;
    position: relative;
    border: 0;
}

.position-rel {
    position: relative !important;
}

.cancel-box {
    display: none;
    position: absolute;
    top: 50px;
    min-width: 250px;
    background: #f3f3f3;
    box-shadow: 0px 4px 5px var(--textColor);
    z-index: 3;
    padding: 10px;
    right: 0;
    border: 2px solid #e06666;
    text-align: center;
    border-radius: 2px;
}

.cancel-box::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -15px;
    right: 20px;
    background-color: #f3f3f3;
    height: 26px;
    width: 24px;
    transform: rotate(48deg);
    border-top: 2px solid #e06666;
    border-left: 2px solid #e06666;
}

.attentin-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--textColor);
    margin: 15px 0 5px;
}

.cancel_trip_title {
    font-size: 14px;
    padding: 5px;
    margin: 0;
}

label.stripe {
    display: flex;
    align-items: center;
}

.stripe img {
    border: 1px solid var(--lightGray);
    padding: 5px;
    background: #f7f7f7;
}

.active_lan {
    background-color: #dddddd;
    border-left-color: var(--primaryColor) !important;
}

.lang_dropdown {
    border-left: 0 !important;
}

.back__home__btn {
    display: inline-block;
    font-weight: 500;
    color: var(--textColor);
    text-transform: capitalize;
    box-shadow: none !important;
}

.back__home__btn:hover {
    color: var(--primaryColor);
}

.mobile-nav-active button {
    z-index: 999999;
}

.sidebar-wrap .pbodyb {
    display: flex;
    align-items: baseline;
}

.sidebar-wrap #agree_ckbx {
    margin-right: 8px;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
    box-shadow: none;
    outline: 0;
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--primaryColor);
    outline: 0;
    box-shadow: none;
}

.accordion-button {
    color: var(--textColor);
    font-weight: 600;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(111) !important;
}

/* Park Search page */
.searchpage_banner {
    position: relative;
}

.searchpage_banner .home_banner_img {
    height: 200px;
}

.searchpage_banner h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    color: var(--whiteColor);
    text-transform: capitalize;
    margin-top: 0;
    text-align: center;
    text-shadow: 0px 3px 10px #0000003b;
}

.searchpage_banner .banner_content {
    position: absolute;
    top: 75px;
    transform: translateY(-50%);
}

.info_details .banner_content {
    top: 50% !important;
}

.details_title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}

.details_wrapper label {
    font-weight: 600;
    text-transform: capitalize;
}

.parking_featured_img_wrap {
    position: relative;
}

.parking_featured_img_wrap .price_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    background: var(--whiteColor);
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: 900;
    min-width: 120px;
    height: 120px;
    text-align: center;
    border-radius: 50%;
    border: 3px solid var(--primaryColor);
}

.parking_featured_img_wrap .absolute_price_div {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.promo_price {
    font-size: 17px;
}

.parking_featured_img_wrap .title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.parking_box_item_content {
    padding: 10px 15px;
}

.parking_box_item_content .sub_title {
    text-align: center;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.parking_box_item_content .sub_sub_title {
    text-align: center;
    color: #666;
    margin: 0;
    display: none;
}

/* .enhance-icons {
    list-style: none;
    display: block;
    float: left;
    width: 100%;
    background-color: #f1f1f1;
    padding: 5px;
    border-radius: 5px;
    margin: 10px 0 20px;
    min-height: 70px;
} */

.enhance-icons li {
    float: left;
    text-align: center;
    display: block;
    width: 32%;
    font-size: 12px;
    font-weight: 600;
}

.enhance-icon-image {
    display: block;
    clear: both;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    max-width: 20px;
    height: auto;
    height: 15px;
    filter: brightness(0);
}

.bullets-wrapper {
    clear: both;
    min-height: 100px;
}

a.map-icon {
    text-decoration: underline;
    float: left;
    display: block;
    /* width: 55px; */
    color: #f93827;
    font-size: 14px;
    text-align: center;
    /* text-decoration: none; */
    font-weight: 600;
    margin-top: 8px;
}

img.map-icon-image {
    display: block;
    clear: both;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    max-width: 45px;
    height: 24px;
}

.enhance-button {
    font-size: 16px;
    background: var(--primaryColor);
    float: right;
    color: var(--whiteColor) !important;
    padding: 5px 10px;
    line-height: 34px;
    border-radius: 5px;
    transition: all ease-in-out 0.3s;
    height: 46px;
    min-width: 100px;
    text-align: center;
    text-transform: capitalize;
    box-shadow: none !important;
}

.pass_show {
    display: none;
}

.pay_with_btn_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.details_wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border: 1px solid #eee;
    height: 100%;
}

.enhance-button:hover {
    background-color: #46ae3a !important
}

.enhance-footer {
    display: block;
    float: right;
    width: 100%;
    margin-top: auto;
    padding: 15px;
}

.form-group {
    margin-bottom: 10px !important;
}
.border_box{
    border-radius: 5px 0px 0px 5px !important;
}
.select2-container--default .select2-selection--single {
    border-radius: 0px 5px 5px 0px;
}
/* Progressbar */
.Container-progessbar {
    display: flex;
    width: 100%;
    padding: 40px 0px 30px;
    counter-reset: step;
}

.Container-progessbar li {
    width: calc(100%/4);
    text-align: center;
    counter-increment: step;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #747d8c;
}

.Container-progessbar li:before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #dedede;
    color: #000000;
    font-weight: bold;
    margin-bottom: 15px;
}

.Container-progessbar li:after {
    content: "";
    height: 3px;
    width: 100%;
    background-color: #dedede;
    position: absolute;
    left: -50%;
    top: 23px;
    z-index: -2;
}

.Container-progessbar li:first-child:after {
    display: none;
}

.Container-progessbar li.active:before,
.Container-progessbar li.active::after {
    background-color: var(--primaryColor);
    color: #fff;
    border-color: var(--primaryColor);
    content: '\f00c';
    font-family: 'FontAwesome';
}

.Container-progessbar li.error:before,
.Container-progessbar li.error::after {
    content: '\f00d' !important;
    font-family: 'FontAwesome';
}

.Container-progessbar li.error:before,
.Container-progessbar li.error::after {
    background-color: #EA2027;
    color: #fff;
    border-color: #EA2027;
}

.bus-departure {
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all ease-in-out 0.2s;
    border-radius: 10px;
    overflow: hidden;
}

.parking_featured_img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.code_with_mobile_inp {
    border-radius: 0px 5px 5px 0px !important;
}

/* Parking Details Page */
.park_details {
    box-shadow: 0px 0px 30px rgb(127 137 161 / 21%);
    padding: 25px;
    min-height: 100%;
    border: 2px dashed #54c147;
    border-radius: 5px;
}

/* Time TAble */
.time_table td {
    background: #54c1471c;
    border: 3px solid #ffffff;
    text-align: center;
    font-weight: 800;
    font-size: 15px;
    border-radius: 10px;
    padding: 6px;
}

.holiday_in_logo {
    max-width: 250px;
}

.text-initial {
    text-transform: initial !important;
}

.gallery_wrapper {
    max-height: 500px;
    overflow: auto;
}

.gallery_wrapper img {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.eircode_wrap {
    position: relative;
}

.abs_src_icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    padding: 0;
    background: #aca9a936;
    border: 0;
    outline: 0;
    box-shadow: none;
    transition: all ease-in-out 0.3s;
    font-size: 16px;
    color: #000;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
}

.abs_src_icon:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.subscribe_me {
    text-transform: initial !important;
}

.subscribe_me::selection {
    background-color: transparent;
}

.subscribe_me::moz-selection {
    background-color: transparent;
}

.btn_scroll {
    background: var(--primaryColor);
    font-size: 26px;
    height: 40px;
    width: 40px;
    line-height: 20px;
    color: #fff;
    padding: 0;
    border: 0;
    box-shadow: none !important;
    outline: 0;
}


/*Payment Failed*/
.payment_failed_content {
    background: #fff;
    padding: 40px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border: 1px solid #eee;
}

.payment_failed_content span {
    font-size: 60px;
    width: 150px;
    height: 150px;
    display: inline-block;
    line-height: 150px;
    text-align: center;
    border-radius: 50%;
    background: #ea2027;
    font-weight: 700;
    color: #fff;
}

.payment_failed_content h4 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 15px 0px;
}

.payment_failed_content a {
    font-size: 20px;
}

.beta_tag {
    font-size: 20px;
    font-weight: 600;
    background: #000000;
    color: #ffffff;
    display: inline-block;
    width: 300px;
    text-align: center;
    padding: 4px;
    position: fixed;
    z-index: 999;
    transform: rotate(-45deg);
    top: 40px;
    left: -85px;
}




/* Nipun Mitra Added New Css  */

.feature-box {
    background-color: #eaf6ea;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.feature-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    color: #54C047;
    margin-bottom: 15px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.custom-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: auto;
    border: 1px solid #e9e9e9;
    height: 300px;
}

.custom-box p {
    font-size: 14px !important;
}

.icon-circle {
    background-color: var(--primaryColor);
    color: #fff;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 8px;
}

.note-text {
    color: #ff2e28;
    font-weight: 500;
    border: 2px dashed #000;
    padding: 10px;
    border-radius: 8px;
}

.divider {
    border-left: 3px solid var(--primaryColor);
}

.badge-custom {
    background-color: var(--primaryColor);
    color: #fff;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .divider {
        border-left: none;
        border-top: 3px solid var(--primaryColor);
        margin: 30px 0;
    }
}


#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: var(--primaryColor);
    /* Bootstrap primary blue */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    color: #fff !important;
    transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.contact-section {
    padding: 60px 0;
}

.eyebrow {
    color: var(--primaryColor);
    font-weight: 800;
    letter-spacing: 0.6px;
    font-size: 14px;
    text-transform: uppercase;
}

.contact-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 44px;
    margin: 10px 0 18px;
    color: #222;
}

.contact-desc {
    color: #7a7a7a;
    font-size: 16px;
    max-width: 520px;
}

.contact-list {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    color: var(--primaryColor);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

.contact-item .item-text {
    color: #444;
    font-size: 15px;
    line-height: 1.3;
}

.contact-item .item-text small {
    color: #7a7a7a;
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

/* Map card styling */
.map-card {
    background: #f8fbfd;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 8px;
}

.map-embed {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 2px;
}

@media (max-width: 767.98px) {
    .contact-title {
        font-size: 32px;
    }

    .map-embed {
        height: 300px;
    }

    .contact-section {
        padding: 30px 0;
    }
}

span.info-box-icon-center {
    border-radius: 50%;
    position: absolute;
    color: #f93827;
    background: #fff;
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    bottom: -20px;
    right: 50%;
    border: 2px solid var(--primaryColor);
    transform: translateX(60%);
}


/* Bus */
p.sub_title {
    font-weight: bold;
    color: #0C3B64;
    font-size: 24px;
    margin-bottom: 0;
}


.amenities-items p {
    font-weight: bold;
    font-size: 10px;
    font-weight: 500;
}

p.sub_sub_title {
    color: #151414;
    font-size: 15px;
}

.time-and-date {
    font-size: 16px;
}

.select_button {
    background-color: var(--primaryColor);
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    border-bottom: 3px solid #2e9123;
    border-radius: 6px;
    transition: 0.2s all ease;
    width: 100px;
    text-align: center;
}

.select_button:hover {
    background-color: #2e9123;
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    border-bottom: 3px solid #2e9123;
    border-radius: 6px;
}

.main-price h3 {
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
    color: #151414;
}

.parking_box_item_content_x {
    padding: 12px;
}

.amenities-items {
    list-style: none;
    border: 1px solid #ddd;
    padding: 4px;
    border-radius: 4px;
}

.price-box-wrapper {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    margin-top: 60px;
}

.enhance-footer_x {
    /* height: 100px; */
    display: flex;
    justify-content: end;
    align-items: end;
}

.fw-bold {
    font-weight: 600 !important;
}

.badge-custom {
    background-color: var(--primaryColor);
    color: #fff;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    white-space: pre-wrap;
    line-height: 30px;
}

/* Responsive Media  */

@media (max-width:991px) {

    span.info-box-icon-center {
        border-radius: 50%;
        position: absolute;
        color: #f93827;
        background: #fff;
        height: 30px;
        width: 30px;
        text-align: center;
        font-size: 16px;
        line-height: 30px;
        top: 102px;
        right: 160px;
        border: 2px solid var(--primaryColor);
    }

    .parking_featured_img_wrap_x img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .parking_box_item_content_x {
        padding: 20px;
    }

    .price-box-wrapper {
        padding: 20px;
        display: block;
        flex-direction: column;
        justify-content: end;
        align-items: end;
        margin-top: 0px !important;
    }

    .enhance-footer_x {
        height: unset;
        display: block;
        justify-content: end;
        align-items: end;
    }
  

}


  /* @media (max-width:420px) {
      span.info-box-icon-center {
          right: 130px;
      }
 } */

.services_charge {
    /* border: 2px solid var(--primaryColor); */
    width: 36%;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    background: #ffd600;
    font-weight: 500;
    margin-top: 9px;
}
.parking_featured_img_wrap_x {
    padding: 0px 5px;
}
.parking_featured_img_x {
    height: 200px;
    border-right: 1px solid #ddd;
    object-fit: contain;
}
.article_content{
    border: 1px solid #ddd;
    padding: 50px 70px;
    border-radius: 10px;
}
.article_content h2{
    font-weight: 600;
    color: var(--primaryColor);
}
.article_content h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primaryColor);
}
.article-icon-flex{
    display: flex;
    gap: 15px;
}
.article-icon-flex .article-icon {
    display: flex;
    flex-direction: column;
    min-width: 60px;
    align-items: center;
}
.article-icon img {
    max-width: 44px;
}
.article-icon-flex .article-icon i {
    font-size: 40px;
    color: #54c047;
    min-width: 50px;
    text-align: center;
    display: inline-block;
}
.info-box {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
    border: 1px solid #eee;
    height: 100%;
}
.parking_hotel_name {
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
    border-left: 3px solid #54c147;
    background: #54c1471f;
    padding: 5px;
}
.available_soon_tag {
    margin: 0;
    position: absolute;
    z-index: 1;
    right: 0;
    background: var(--primaryColor);
    color: #fff;
    padding: 10px 20px;
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: italic;
    border-radius: 0px 0px 0px 30px;
    top: 0;
    text-align: center;
    animation: blink 4s ease-in-out infinite;
}

@keyframes blink {
    0% {
        background-color: var(--primaryColor);
    }
    50% {
        background-color: var(--redColor);
    }
    100% {
        background-color: var(--primaryColor);
    }
}

.amenities-items {
    display: flex;
    gap: 5px;
    align-items: center;
}

.carousel-control-next,
.carousel-control-prev {

    opacity: 1 !important;
    color: #fff !important;

}
.mobile-nav-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}

/* Launce Notice */
.launch-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    color: white;
    padding: 15px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideDown 0.8s ease-out;
}
 .launch-notice.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
}

.launch-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: sparkle 4s linear infinite;
}

.notice-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sparkle-icon {
    font-size: 24px;
    animation: rotate 3s linear infinite;
}

.notice-text {
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.launch-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 2px;
    font-weight: 400;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes sparkle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/* Park Box Design */
.park-box-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all ease-out 0.3s;
}
.park-box-item-content {
    padding: 20px;
}
.park-box-item-content h3 {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
    line-height: 30px;
    font-weight: 600;
}
.park-box-item-content a{
    color: var(--textColor);
}
.park-box-item-content a:hover{
    color: var(--primaryColor);
}
.park-box-item .park_logo {
    position: absolute;
    max-width: 140px;
    left: 20px;
    top: 20px;
    max-height: 80px;
    object-fit: cover;
    border-radius: 5px;
    z-index: 1;
    transition: all ease-out 0.3s;
    pointer-events: none;
    background: #fff;
    min-width: 130px;
    padding: 5px;
}
.park-box-item .park-box-item-img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.park-box-item:hover .park_logo{
    transform: scale(1.1);
}
.park-box-item .view_details_btn {
    background: transparent;
    min-height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border: 2px solid var(--primaryColor);
    color: var(--textColor);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 5px;
    transition: all ease-out 0.3s;
    padding: 0px 20px;
    min-width: 160px;
}
.park-box-item .view_details_btn:hover,
.park-box-item .view_details_btn:focus{
    background: var(--primaryColor);
    color: var(--whiteColor);
}
.hero_location_map {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 75px;
    color: #ffffff;
    font-size: 20px;
    text-shadow: 0px 2px 5px #000000;
    margin: 0;
}
.parking-header-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}
.parking-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.parking-feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.parking-feature-card:hover {
    transform: translateY(-5px);
}

.parking-feature-icon {
    width: 100px;
    height: 100px;
    background-color: #54c1472b;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parking-feature-icon img {
    width: 60px;
}
.parking-feature-icon i {
    color: white;
    font-size: 24px;
}

.parking-feature-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    font-size: 1rem;
}

.parking-location-section {
    background: white;
    padding: 50px 0;
}

.parking-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.parking-location-text h2 {
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.parking-address-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.parking-address-details {
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 250px;
}
.map_not_found_area{
    min-height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}
.parking-hours-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.parking-hours-info {
    line-height: 1.6;
}
.parking-map-container {
    border-radius: 15px;
    overflow: hidden;
    max-height: 400px;
    position: relative;
    background: #e9ecef;
}
.parking-info-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}
/* Parking modal */
 .parking-receipt-app {
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.parking-receipt-modal-content, .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
}

.parking-receipt-modal-header, .modal-header {
    background: var(--primaryColor);
    color: white;
    border: none;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.parking-receipt-modal-title, .modal-title{
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.parking-receipt-hotel-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.parking-receipt-modal-body, .modal-body{
    padding: 20px;
    background: #fff;
}
.btn-close {
    filter: invert(1);
    opacity: 1;
    outline: none !important;
    box-shadow: none !important;
}
.parking-receipt-title-section {
    text-align: center;
    margin-bottom: 15px;
}

.parking-receipt-hotel-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--textColor);
    margin-bottom: 4px;
}
.parking-receipt-booking-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.parking-receipt-booking-info:last-child {
    border-bottom: none;
}

.parking-receipt-booking-label {
    font-size: 14px;
}

.parking-receipt-booking-value {
    font-size: 14px;
    color: var(--textColor);
    font-weight: 600;
}

.parking-receipt-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 24px 0;
}

.parking-receipt-payment-summary {
    background: #54c1471c;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}
.parking-receipt-payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.parking-receipt-payment-item:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-weight: 700;
}
.parking-receipt-payment-item:last-child .parking-receipt-payment-amount {
    font-weight: 700;
}
.parking-receipt-payment-label {
    font-size: 14px;
}

.parking-receipt-payment-amount {
    font-size: 14px;
    color: var(--textColor);
    font-weight: 600;
}

.parking-receipt-final-total .parking-receipt-payment-label {
    color: var(--textColor);
    font-weight: 700;
    font-size: 16px;
}

.parking-receipt-final-total .parking-receipt-payment-amount {
    font-weight: 700;
    font-size: 18px;
}

.parking-receipt-modal-footer {
    border: none;
    padding: 0px 20px 20px;
    display: flex;
    gap: 12px;
}

.parking-receipt-btn-print {
    background: var(--primaryColor);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.2s ease;
    flex: 1;
    outline: none;
    box-shadow: none;
}

.parking-receipt-btn-print:hover {
    background: #46ae3a !important;
    color: white;
}
.parking-receipt-trigger-btn {
    background: var(--primaryColor);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(84, 193, 71, 0.3);
    transition: all 0.3s ease;
}

.parking-receipt-trigger-btn:hover {
    background: var(--primaryColor);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(84, 193, 71, 0.4);
    color: white;
}

.parking-receipt-close-icon .close-btn{
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    filter: invert(1);
    opacity: 1;
}

.parking-receipt-close-icon:hover, .close-btn:hover{
    color: white;
}
.modal.fade .modal-dialog {
    transform: scale(0.8) !important;
    transition: transform 0.3s ease-out !important;
}

.modal.show .modal-dialog {
    transform: scale(1) !important;
}

.cookies-consent-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookies-consent-container.cookies-consent-active {
    transform: translateY(0);
}

.cookies-consent-wrapper {
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin: 0;
}

.cookies-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookies-consent-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookies-consent-icon {
    width: 48px;
    height: 48px;
    background: var(--primaryColor);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.cookies-consent-text {
    flex: 1;
}

.cookies-consent-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.cookies-consent-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.cookies-consent-privacy-link {
    color: var(--primaryColor);
    text-decoration: none;
    font-weight: 600;
}

.cookies-consent-privacy-link:hover {
    color: var(--primaryColor);
    text-decoration: underline;
}

.cookies-consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookies-consent-btn-decline {
    background: transparent;
    border: 2px solid var(--primaryColor);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cookies-consent-btn-decline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: var(--primaryColor);
}

.cookies-consent-btn-accept {
    background: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cookies-consent-btn-accept:hover {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    transform: translateY(-1px);
}

.cookies-consent-btn-settings {
    background: transparent;
    border: none;
    color: #6b7280;
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.cookies-consent-btn-settings:hover {
    color: var(--primaryColor);
    background: rgba(84, 193, 71, 0.1);
}

.cookies-consent-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cookies-consent-close-btn:hover {
    color: #6b7280;
    background: #f3f4f6;
}

.cookies-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookies-settings-modal.cookies-settings-active {
    opacity: 1;
    visibility: visible;
}

.cookies-settings-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookies-settings-modal.cookies-settings-active .cookies-settings-content {
    transform: scale(1);
}

.cookies-settings-header {
    padding: 24px 32px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookies-settings-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cookies-settings-body {
    padding: 32px;
}

.cookies-category-item {
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
}

.cookies-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cookies-category-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.cookies-category-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.cookies-toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.cookies-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookies-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 24px;
}

.cookies-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookies-toggle-input:checked + .cookies-toggle-slider {
    background-color: var(--primaryColor);
}

.cookies-toggle-input:checked + .cookies-toggle-slider:before {
    transform: translateX(24px);
}

.cookies-toggle-input:disabled + .cookies-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookies-settings-footer {
    padding: 24px 32px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.demo-content {
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
}

.demo-trigger {
    background: var(--primaryColor);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.demo-trigger:hover {
    background: var(--primaryColor);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookies-consent-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookies-consent-actions {
        width: 100%;
        justify-content: space-between;
    }

    .cookies-consent-btn-decline,
    .cookies-consent-btn-accept {
        flex: 1;
        text-align: center;
    }

    .cookies-settings-body {
        padding: 24px 20px;
    }

    .cookies-settings-header,
    .cookies-settings-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cookies-consent-wrapper {
        padding: 20px 16px;
    }

    .cookies-consent-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookies-consent-btn-decline,
    .cookies-consent-btn-accept {
        width: 100%;
    }
}

/*  */
.gallery_carousel .owl-item img {
    border-radius: 15px;
    border: 1px solid #eee;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
}
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent !important;
}
.owl-theme .owl-nav button{
     background-color: transparent !important;
}
.owl-prev {
    position: absolute;
    top: 50%;
    z-index: 22;
    left: 5px;
    transform: translateY(-20%);
}
.owl-next {
    position: absolute;
    top: 50%;
    z-index: 22;
    right: 5px;
    transform: translateY(-20%);
}
.owl-theme button span {
    font-weight: 500;
    background: var(--primaryColor);
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 25px;
    color: #fff !important;
    font-size: 36px;
    opacity: 1;
    transition: all ease-in-out 0.3s;
}
#hero .park_logo {
    position: absolute;
    max-width: 250px;
    left: 20px;
    top: 20px;
    max-height: 85px;
    object-fit: contain;
    border-radius: 5px;
    z-index: 1;
    transition: all ease-out 0.3s;
    pointer-events: none;
    background: #fff;
    padding: 5px;
}
/* ======fieldset====== */
.bg_colors{
    background: #54c1471f;
}
/* .details_cars{
  border: 1px solid #eee !important;
  border-radius: 5px;
} */
fieldset {
    border: 2px solid #eee !important;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
}

legend.details_title {
    float: none;
    width: auto;
    padding: 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--textColor);
    text-align: left;
}

/* কিছু bootstrap theme legend লুকিয়ে দেয়, তাই জোর করে দেখাতে */
fieldset legend {
    display: inline-block !important;
}

/* ======button===== */
.parking-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 16px;
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fff;
    transition: transform 0.2s ease;
}

.parking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.parking-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}

.parking-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 10px;
}
.parking-title a{
    color: #000;
}
.parking-title a:hover{
    color: var(--primaryColor);
}

 .crowne_img{
     padding: 10px 13px;
     margin-bottom: 0px;
     background: #ffffff;
     border: 0;
     display: flex;
     justify-content: center;
 }
.crowne_img img {
    height: 90px;
    object-fit: contain;
}
.location_icons {
    font-size: 12px;
    color: #93115b;
    padding: 3px;
}

.parking-location {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.parking-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.feature {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    background-color: #f1f5f9;
    color: #0b2d5e;
}

.feature.secure {
    background-color: #e0f2f1;
}

.feature.affordable {
    background-color: #fff3e0;
}

.parking-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.book-btn-parking {
    background-color: var(--primaryColor);
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.book-btn-parking:hover {
    color: var(--whiteColor);
    background-color: #2e9123;
}
.link_404 {
    color: #fff!important;
    padding: 10px 20px;
    background: var(--primaryColor) !important;
    margin: 5px 0;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    transition: all .5s ease;
}
.four_zero_four_bg h1 {
    font-size: 100px;
    color: var(--primaryColor) !important;
    text-shadow: 1px 1px 1px var(--primaryColor),    
		2px 2px 1px var(--primaryColor),
		3px 3px 1px var(--primaryColor),
		4px 4px 1px var(--primaryColor),
		5px 5px 1px var(--primaryColor),
		6px 6px 1px var(--primaryColor),
		7px 7px 1px var(--primaryColor),
		8px 8px 1px var(--primaryColor),
		25px 25px 8px rgba(0,0,0, 0.2) !important;
}

