:root{
    --primary-color:#007D64;
    --secondary-color:#7B431A;
    --white:#FFFFFF;
    --black-grey: #494949;
    --grey: #616161;
    --light-grey: #737373;
}

body{
    background-color: rgba(245, 245, 245);
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    font-family: "Lexend", sans-serif;
    font-size: 14px;
    overflow-x: hidden;
}
.light-grey{
    color: var(--light-grey);
}
.grey{
    color:var(--grey);
}
.black-grey{
    color: var(--black-grey);
}
.text-primary{
    color: var(--primary-color) !important;
}
.text-gradient-primary{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-secondary-dark{
    color: var(--secondary-color) !important;
}
.text-gradient-secondary{
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.shadow-primary{
    box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.08);
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
a{
    text-decoration: none;
    color: black;
}
.text-red-color{
    color: #cd0000;
}
.form-control:focus{
    box-shadow: 0 0 0 .25rem rgba(7, 126, 23, 0.25);
}
.fs-7{
    font-size: 18px;
}
.fs-sm{
    font-size: 12px;
}
.mt-5{
    margin-top: 5rem !important;
}
.pagination .page-item .page-link {
    background-color: #fff;
    color: var(--primary-color);
    font-size: 13px;
}
.pagination .page-item.active .page-link {
    color: #fff !important;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-login{
    background: var(--primary-color);
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.08);
    font-size: 12px;
    transition: box-shadow 0.4s ease-in-out;
}
.btn-login:hover,.btn-login:focus{
    background: #095a48;
    box-shadow: 2px 2px 14px 0 #9d9d9d;
}
.breadcrumb{
    font-size: 12px;
}
.form-label{
    font-size: 10px;
    color: #68717e;
}
/*Home Page Faq Section*/

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
}
.accordion-button {
    background-color: transparent !important;
    font-size: 13px;
    font-weight: bold;
    border-radius: 0 !important;
}
.accordion-body p{
    font-size: 14px;
}

.btn-submit{
    background: var(--primary-color) !important;
    padding: 12px;
    border-radius: 4px;
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 600;
    transition: box-shadow 0.4s ease-in-out;
}
.btn-submit:hover,.btn-submit:focus{
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    box-shadow: 2px 4px 12px #b1afaf;
}

/*End of Home Page Faq Section*/

/*-- header style ---*/
header{
    position: sticky;
    top: 0;
    z-index: 9999;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
header.sticky{
    animation: slideDown 0.35s ease-out;
}
.navbar-brand img, .offcanvas-header img{
    width: 80px;
    height: 50px;
}
.navbar-nav .nav-link.active{
    color: var(--primary-color);
}
.navbar-nav .nav-link .icon-active,.navbar-nav .nav-link.active .icon-default{
    display: none !important;
}
.navbar-nav .nav-link.active .icon-active{
    display: inline-block !important;
}
.navbar-nav .nav-item{
    display: none;
}
.sticky .navbar-nav .nav-item{
    display: block;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
@media screen and (max-width: 992px) {
    .navbar-nav .nav-item{
        display: block;
    }
}
@media screen and (max-width: 576px) {
    .tvo-hero-header ul{
        display: none !important;
    }
}
/*-- end header style ---*/

/*--- hero style ---*/
.tvo-hero-header{
    position: absolute;
    top: -90px;
}
.shake-text {
    position: relative;
    height: 90px;
    text-align: left;
    overflow: hidden;
}

.shake-text span {
    position: absolute;
    width: 100%;
    opacity: 1;
    animation: shakeAnim 12s linear infinite;
    left: 0;
}

.shake-text span:nth-child(1) {
    opacity: 0;
    transform: translateX(-200px);
    animation-delay: 0s;
}
.shake-text span:nth-child(2) {
    opacity: 0;
    transform: translateX(-200px);
    animation-delay: 4s;
}
.shake-text span:nth-child(3) {
    opacity: 0;
    transform: translateX(-200px);
    animation-delay: 8s;
}

@keyframes shakeAnim {
    0% {
        opacity: 0;
        transform: translateX(0);
    }
    1% {
        opacity: 1;
        transform: translateX(100px);
    }
    2% {
        opacity: 1;
        transform: translateX(0px);
    }
    4% {
        opacity: 1;
        transform: translateX(50px);
    }
    6% {
        opacity: 1;
        transform: translateX(0px);
    }
    28% {
        opacity: 1;
        transform: translateX(0px);
    }
    30% {
        opacity: 1;
        transform: translateX(-300px);
    }
    33.3% {
        opacity: 1;
        transform: translateX(-400px);
    }
    35% {
        opacity: 0;
        transform: translateX(-400px);
    }
    100% {
        transform: translateX(0);
    }
}

.tvo-hero-header ul{
    border: 1px solid #CDCDCD;
    border-radius: 8px;
    background: #FEFEFE;
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.08);
}
.tvo-hero-header ul li{
    border-right: 1px solid #CDCDCD;
    width: 16.6% !important;
}
.tvo-hero-header ul li:last-child{
    border-right: none;
}
.tvo-hero-header small{
    color: #626262 !important;
    font-weight: 500 !important;
}
.tvo-hero-header .active small{
    color: var(--primary-color) !important;
    font-weight: 500 !important;
}
.tvo-hero-header .icon-active,.tvo-hero-header .tvo-header-icon.active .icon-default{
    display: none !important;
}
.tvo-hero-header .tvo-header-icon.active .icon-active{
    display: block !important;
}
.main-hero:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/hero-activity-banner.webp") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-form{
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}
.hero-form .form-control{
    border: none !important;
    padding: 2px !important;
    color: #212529bf;
    background-color: transparent;
    font-weight: 600;
}
.hero-form .form-control:focus{
    box-shadow: 0 0 0 .25rem rgba(4, 129, 57, 0.25);
}
.hero-form-field-things{
    background-position: right -94px !important;
}
.hero-form-field-travelers{
    background-position: right 0 !important;
}
.hero-form-field-date{
    background-position: right -188px !important;
}
.hero-form-field-location{
    background-position: right 0 !important;
}
.btn-primary{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: 2px 2px 22px 0 rgba(0, 0, 0, 0.09);
    font-size: 14px;
    padding: 12px 20px;
    transition: box-shadow 0.4s ease-in-out;
}
.btn-primary:hover, .btn-primary:focus{
    box-shadow: 4px 4px 22px 0 rgba(0, 0, 0, 0.52);
    background-color: #045C4BFF !important;
}
.btn:focus-visible{
    box-shadow: 0 0 0 .25rem rgba(4, 129, 57, 0.25);
}
.hero-form .btn-primary{
    font-size: 13px;
}
.hero-form .label-gradient-secondary{
    background: linear-gradient(270deg, #E06C41 0%, #B85733 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-form .nav-pills .nav-link{
    display: flex;
    align-items: center;
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
}
.hero-form .nav-pills .nav-link.active{
    color: var(--primary-color);
}
.hero-form .nav-pills .nav-link.active .icon-default,.hero-form .nav-pills .nav-link .icon-active{
    display: none !important;
}
.hero-form .nav-pills .nav-link.active .icon-active{
    display: inline-block !important;
}
.hero-form .select2-container--default .select2-selection--single{
    background-color: transparent;
    border: none;
    font-weight: 400;
    font-size: 15px;
}
.hero-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #212529bf;
}
@media screen and (max-width: 769px) {
    .tvo-hero-header{
        position: relative;
        top: 0;
    }
}
/*--- end hero style ---*/
/*--- feature style---*/
.feature-wrapper{
    border-radius: 30px;
    border-left: 1px solid #E4E4E4;
    background: linear-gradient(106deg, #FFF 0.67%, #FFF8ED 44.29%, #FFF 98.84%);
    backdrop-filter: blur(6px);
    box-shadow: 4px 4px 24px 0 rgba(0, 0, 0, 0.08);
}


.feature-wrapper p{
    font-size: 12px;
    text-transform: capitalize;
}
.ft-scale{
    scale: 0.8;
}
.feature-wrapper .col{
    border-right: 2px solid #E4E4E4;
}
@media screen and (max-width: 576px) {
    .feature-wrapper .col{
        border-right: none;
    }
}
/*-- end feature style--*/
/*-- activity style --*/
.master-bg{
    background: url("../images/activity-bg.webp") repeat-y top center/auto;
    width: 100%;
    height: auto;
}

.category-header .nav-link.active .icon-default,
.category-header .nav-link .icon-active{
    display: none;
}
.category-header .nav-link.active .icon-active{
    display: block;
}
.category-header .nav-link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #DFDFDF;
    background: #F7F7F7;
    color: var(--black-grey);
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
    min-width: 104px;
    min-height: 130px;
}
.category-header .nav-link .nav-text{
    background: linear-gradient(96deg, #737272 0%, #797979 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.category-header .nav-link.active{
    border: 1px solid #007D64;
    background:  linear-gradient(106deg, #FFF 0.67%, #FFF8ED 44.29%, #FFF 98.84%);
    color: var(--primary-color);
    box-shadow: 12px 12px 60px 0 rgba(0, 0, 0, 0.12), 4px 4px 14px 0 rgba(0, 0, 0, 0.08);
}
.category-header .nav-link.active .nav-text{
    background: linear-gradient(0deg, #007D64 0%, #007D64 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tvo-card{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 6px 6px 25px 0 rgba(0, 0, 0, 0.18);
    /*overflow: hidden;*/
}
.card-header--green{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
}
.card-header--secondary{
    background: linear-gradient(98deg, #AC735F 0%, #7B431A 100%);
}
.card-content--dark{
    background: linear-gradient(180deg, rgba(81, 128, 118, 0.00) 0%, #32534D 42.5%) !important;
    padding: 20px;
}
.card-content--white{
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 44%, rgba(255, 255, 255, 0.8) 80%, rgb(255 255 255 / 0%) 100%) !important;
    padding: 20px;
    color: #363636;
}
.tvo-card:hover .card-content--dark{
    background: linear-gradient(180deg, rgb(38 38 38 / 0%) 0%, rgb(18 17 17 / 0%) 22%, rgba(50, 83, 77) 48.5%) !important;
    border-radius: 200px 200px 0 0;
    padding-top: 50%;
}
.tvo-card-head h3{
    font-size: 1.3rem;
    margin-bottom: 6px !important;
    font-weight: 700;
}
.tvo-card-items li{
    border-right: 2px solid #E4E4E4;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    color: var(--secondary-color);
}
.tvo-card-content{
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 125, 100, 0.00) 0%, #007D64 30.5%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.tvo-card-timing{
    border-radius: 100px;
    border: 0.5px solid #FAFFFD;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
}
.tvo-card-timing--green{
    border: 0.5px solid #56A57A;
}
.tvo-card-timing-grey{
   font-weight: 300;
}
.tvo-card .tvo-card-nav{
    height: 0;
    overflow: hidden;
    transition: height 0.4s linear;
}

.tvo-card-nav .tab-pane,
.package-nav-tabs .tab-content{
    font-weight: 300;
}

.tvo-card:hover .tvo-card-nav{
    height: 150px;
}
.tvo-card-nav .tab-content ul{
    padding-left: 0;
    margin-bottom: 0;
}
.tvo-card-nav .tab-content ul li{
    list-style-type: none;
    display: flex;
    font-size: 11px;
    margin-bottom: 4px;
}
.tvo-card-nav p{
    font-size: 11px;
    margin: 0;
}
.tvo-card-nav .tab-content ul li::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../images/card-point-arrow.svg") no-repeat center/contain;
    margin-right: 6px;
}
.tvo-card-nav-white .tab-content ul li::before{
    content: '';
    background: url("../images/card-point-arrow-black.svg") no-repeat center/contain;
}
.rate-starting-text,.rate-slace-text{
    font-weight: 200;
}
.price-deal{
    font-weight: 200;
    font-size: 13px;
}
.price-deal img{
    min-height: 14px !important;
}

.tvo-card:hover .tvo-card-timing{
    display: none !important;
}
.tvo-card-content .nav-tabs .nav-link{
    color: rgb(213 213 213 / 90%);
    border: none;
    border-bottom: 1px solid transparent !important;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 10px;
    margin-right: 4px;
}
.tvo-card-content .nav-tabs .nav-link.active{
    border-bottom: 1px solid var(--white) !important;
    color: var(--white);
}
.tvo-card-content .nav-tabs-black .nav-link{
    color: #6e6d6d !important;
}
.tvo-card-content .nav-tabs-black .nav-link.active{
    border-bottom: 1px solid #363636 !important;
    color: #363636 !important;
}
.btn-white{
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
    border: none !important;
    font-size: 14px;
    font-weight: 500 !important;
    transition: box-shadow 0.4s ease-in-out;
}
.btn-white:hover{
    box-shadow: rgb(0 0 0 / 60%) 2px 2px 22px 0;

}
.whatsapp-link a{
    border-radius: 6px;
    background: linear-gradient(180deg, #4AC14B 0%, #00A744 100%);
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.22);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-nav{
    position: absolute;
    top: -60px;
    right: 0;
}
.owl-prev span,.owl-next span{
    width: 36px !important;
    height: 36px !important;
    display: inline-flex;
    align-items: end;
    justify-content: center;
    font-size: 24px !important;
    color: var(--primary-color) !important;
    background: var(--white) !important;
    border-radius: 100% !important;
    border: 2px solid var(--primary-color) !important;
    margin: 0 20px !important;
    opacity: 0.8;
}
.owl-prev span:hover, .owl-next span:hover{
    opacity: 1;
}
.owl-dots{
    display: flex;
    justify-content: center;
    margin: 20px 0 !important;
    gap: 20px;
}
.owl-dot{
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #cbccce !important;

}
.owl-dot.active{
    background-color: var(--primary-color) !important;
}
@media screen and (max-width: 992px) {
    .owl-nav{
        position: relative;
        margin: 20px 0;
        top: 0;
    }
}
.filter-form-body .search-input{
    font-size: 13px;
    border-left: 0;
}
.filter-form-body .search-icon-box{
    padding-right: 0;
}
.filter-form{
    margin-bottom: 30px;
}
.tvo-title{
    position: relative;
    cursor: pointer;
}
.tvo-title .tvo-title-feature{
    display: none;
}
.tvo-title:hover .tvo-title-feature{
    display: block;
    padding: 14px 8px 8px 8px;
    position: absolute;
    left: 0;
    right: 0;
    width: 200px;
    height: auto;
    background: #fff;
    box-shadow: 0 2px 12px 1px #5656561a;
    border-radius: 8px;
    z-index: 1;
}
/*---end of activity---*/

/*choose us section*/
.choose-us{
    margin-bottom: 50px;
}
.choose-us_lt_wrapper{
    background: url("../images/choose-us-bg.webp") no-repeat center/contain;
    border-radius: 22px;
}

.choose_us_lt_bg{
    border-radius: 22px;
    background: linear-gradient(106deg, #FFF 0.67%, #FFF8ED 44.29%, #FFF 98.84%);
    box-shadow: 8px 8px 60px 0 rgba(0, 0, 0, 0.08);
}

.choose-us-key{
    border-radius: 12px;
    padding: 10px;
    margin: 15px 0;
}
.choose-us-key-icon{
    padding: 14px;
    border-radius: 4px;
    background: #FAFFFD;
    box-shadow: 4px 4px 22px 0 rgba(0, 0, 0, 0.12);
}
.key-icon-hover,.choose-us-key:hover .key-icon{
    display: none !important;
}
.choose-us-key:hover .key-icon-hover{
    display: inline-block !important;
}
.choose-us-key:hover{
    background: var(--white);
    box-shadow: 6px 6px 40px 0 rgba(0, 0, 0, 0.12);
}
.choose-us-key:hover p{
    color: var(--primary-color);
}
@media screen and (max-width: 992px) {
    .choose-us_lt_wrapper{
        padding: 0 !important;
    }
}
/*end of choose us section*/

/*start app banner*/
.app-banner-wrapper{
    box-shadow: 22px 22px 80px 0 rgba(0, 0, 0, 0.12);
    position: relative;
    margin: 50px 0;
}
.app-banner-mobile{
    position: absolute;
    top: -60px;
    left: -30px;
}
.app-banner-mobile img{
    height: 300px;
    width: auto;
}
.app-banner-form input{
    border: 1px solid #E4E4E4 !important;
    border-radius: 4px 0 0 4px !important;
    font-size: 13px;
    font-weight: 300;
}
.app-banner-ios-android img{
    width: 150px;
    height: auto;
}
.btn-get-app-link{
    border-left: 2px solid var(--primary-color) !important;
    border-right-color: #E4E4E4;
    border-top-color: #E4E4E4;
    border-bottom-color: #E4E4E4;
    border-radius: 0 !important;
    color: var(--primary-color) !important;
    font-weight: 600;
}
.btn-get-app-link:focus,.btn-get-app-link:hover{
    border-left: 2px solid var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

@media screen and (max-width: 992px) {
    .app-banner-wrapper{
        padding: 10px;
    }
    .app-banner-mobile{
        display: none;
    }
}
/*end app banner*/

/*home page blog section*/
.blog-card{
    background-color: white;
    border: 1px solid #f1f1f1;
    box-shadow: rgba(50, 50, 93, 0.25) 0 6px 12px -2px, rgba(0, 0, 0, 0.3) 0 3px 7px -3px;
    border-radius: 8px;
}
.blog-card-body{
    padding: 16px;
    border: 2px solid #000;
    border-top: 0;
    border-radius: 0 0 8px 8px;
}
.blog-card-img{
    height: 160px;
    width: 100%;
}
.blog-card-detials h5{
    color: #353535;
}
.blog-card-detials small{
    color: #353535;
    font-weight: 300;
}

/*End of Home Page Blog Section*/

/*footer section*/
footer{
    overflow: hidden;
}
.footer{
    background-image: url("../images/footer-bg.svg");
    background-color: #007D64;
    padding: 30px 10px 20px 10px;
    background-repeat: no-repeat;
    background-position: bottom;
    border-image: url("../images/footer-top-border.webp") 20 / 15px / 15px round;
    margin-top: 40px;
}

.footer .h6{
    text-transform: capitalize;
    font-weight: bolder;
    margin: 14px 0
}

.footer-col ul li{
    margin: 5px 0;
    padding: 5px 0;

}
.legal-link a,
.footer-col a {
    text-decoration: none;
    color: white;
    font-size: 12px;
    display: inline-block;
}
.footer-col address{
    color: white;
    font-size: 13px;
}
.social-media{
    display: flex;
    gap: 10px;
}
.social-media a{
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bi-facebook{
    color: #3664A2;
}
.bi-twitter{
    color: #00ACED;
}
.bi-linkedin{
    color: #3664A2;
}
.bi-youtube{
    color: #FF0000;
}
.bi-instagram{
    color: #ff2e62;
}
.footer-bottom{
    background: #2C2C2C;
    color: var(--white);
}
.footer-address h6{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.footer-address .contact-support-address{
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
}
.footer-address .disclaimer{
    font-size: 10px;
    font-weight: 300;
}
/*End footer section*/

.hero-category:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/category-hero-bg.webp") no-repeat center bottom/cover;
    width: 100%;
    min-height: 100%;
    z-index: -1;
}
.category-header{
    width: 100%;
    overflow: auto;
}
.category-header .nav-pills{
    flex-wrap: nowrap;
}
.category-header::-webkit-scrollbar{
    display: none;
}
.filter-sort{
    border-radius: 100px;
    border: 1px solid #E2E2E2;
    background: var(--white);
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    max-width: 230px;
}
.form-check-input{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.form-check-label{
    font-size: 13px;
    cursor: pointer;
    color: rgba(54, 54, 54, 0.70);
}
.hero-form .nav-pills .nav-link.active .form-check-label{
    color: var(--primary-color);
}
input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 5px;
    background: var(--primary-color) !important;
    outline: none;
    transition: background 0.3s;
}
input[type="range"]:hover{
    box-shadow: 4px 0 16px rgb(12 136 88 / 35%);
}

input[type="range"]::-webkit-slider-thumb {
    pointer-events: all; /* re-enable thumb interaction */
    position: relative;
    z-index: 2;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.range-container input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 1px solid var(--primary-color);
    cursor: pointer;
}
.range-container input[type="range"]::-moz-range-track {
    background: var(--white);
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--white);
}
.range-container {
    position: relative;
    width: 100%;
}

.range-container input[type="range"] {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none; /* prevent default thumb interaction */
    -webkit-appearance: none;
    background: none;
}

.form-check-input:checked{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.clear-btn {
    padding: 6px 12px;
    background: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid var(--secondary-color);
    font-size: 12px;
}

.clear-btn.disabled {
    background: #ccc;
    pointer-events: none;
    cursor: not-allowed;
    display: none;
}

/*-- activity details style--*/
.tvo-detail-body .row{
    --bs-gutter-x: 8px;
}
.tvo-detail-body img{
    height: 100%;
}
.tvo-detail-body aside{
    position: sticky;
    top: 84px;
}
.tvo-detail-head{
    font-size: 12px;
}
.text-light-grey{
    color: #555555;
}
.tvo-detail-footer h3{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tvo-detail-footer p{
    font-size: 13px;
}
.tvo-detail-body-inner{
    box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.tvo-detail-body-inner .gradient-nav{
    border-radius: 6px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.06);
}
.tvo-detail-body-inner .gradient-nav .nav-item .nav-link{
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.60);
    border: 6px solid transparent;
    border-radius: 100px;
}
.tvo-detail-body-inner .gradient-nav .nav-item .nav-link.active{
    border: 6px solid #F8F8F9;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    color: #FAFFFD;
}
.tvo-detail-light-body{
    background: #F9F9F9;
}
.highlight-body ul{
    margin-bottom: 0;
    padding-left: 0;
}
.highlight-body ul li{
    list-style-type: none;
    display: flex;
    margin-bottom: 8px;
    color: #5E5E5E;
    font-size: 13px;
}
.highlight-body ul li::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../images/highlight-arrow-point.png") no-repeat center/contain;
    margin-right: 6px;
}
.highlight-description{
    font-size: 12px;
}
.terms-description ul{
    margin-bottom: 0;
    padding-left: 10px;
}
.terms-description ul li{
    font-size: 12px;
    font-weight: 400;
    margin: 6px 0;
}

.tvo-detail-body-light-inner,.tvo-detail-body-quick{
    background: #FBFBFB;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
    border-radius: 0 0 8px 8px;
}
.day-calendar{
    border-radius: 100px;
    border: 1px solid var(--secondary-color);
    background: var(--white);
    color: #555;
    font-size: 12px;
    padding: 4px;
}
.tvo-detail-body-inclusion,.tvo-detail-body-exclusion{
    border-radius: 8px;
    border: 1px solid #E1E1E3;
    background: #FEFEFE;
}
.tvo-detail-body-inclusion ul li, .tvo-detail-body-exclusion ul li{
    color: #555555;
    font-weight: 300;
}
.tvo-detail-body-inclusion h5{
    border-bottom: 2px solid #00D860;
}
.tvo-detail-body-exclusion h5{
    border-bottom: 2px solid #EF072D;
}
.tvo-detail-body-policy .nav-link.active{
    background: var(--white);
}
.tvo-detail-body-review{
    background: linear-gradient(106deg, #FFF 0.67%, #FFF8ED 44.29%, #FFF 98.84%);
}

.review-body{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 4px 4px 22px 0 rgba(0, 0, 0, 0.08);
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.review-body:before{
    content: "";
    position: absolute;
    left: -10px;
    bottom: -60px;
    width: 98px;
    height: 98px;
    border-radius: 100%;
    opacity: 0.1;
    background: linear-gradient(151deg, rgba(235, 119, 36, 0.71) 30.39%, rgba(246, 159, 53, 0.71) 84.52%);
}
.review-body:after{
    content: "";
    position: absolute;
    right: -10px;
    top: -60px;
    width: 98px;
    height: 98px;
    border-radius: 100%;
    opacity: 0.1;
    background: linear-gradient(151deg, rgba(235, 119, 36, 0.71) 30.39%, rgba(246, 159, 53, 0.71) 84.52%);
}

.green--line{
    background: linear-gradient(180deg, #4AC14B 0%, #06853A 100%);
    width: 50%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.pink--line{
    background: #B8DB47;
    width: 40%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.yellow--line{
    background: #E5D473;
    width: 30%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.blue--line{
    background: #FF914D;
    width: 20%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.red--line{
    background: #F66;
    width: 10%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.review-header-av-rating sup{
    top: -2.5em;
}
.review-body-info p,.text-dark-black{
    color: #303030;
}
.review-body-image img{
    width: 60px;
    height: 60px;
    border-radius: 6px;
}
.review-description{
    font-size: 13px;
    font-weight: 300;
}
.review-shared-post img{
    width: 30px;
    height: 30px;
    border-radius: 6px;
}
.review-shared-post-box{
    position: relative;
}
.review-shared-post-view{
    position: absolute;
    left: 8px;
    top: 4px;
    color: white;
    display: none;
}
.review-shared-post-box:hover .review-shared-post-view{
    display: block;
}
.limit-offers{
    border-radius: 12px;
    border: 1px solid #EF4123;
    background: var(--white);
}
.limit-offers-tag{
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    padding: 8px 16px;
}
.limit-offers-tag:before{
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    background: url("../images/polygon.svg") repeat-y top/auto;
    width: 15px;
    height: 100%;
}
.limit-offers-tag:after{
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    background: url("../images/polygon-right.svg") repeat-y top/auto;
    width: 15px;
    height: 100%;
}
.limit-offers-right{
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
}
.limit-offers-right span{
    transform: rotate(90deg);
}
.limit-offers-del{
    color: #959595;
}
.limit-offers-text {
    font-size: 16px;
    font-weight: 400;
    color: #5E5E5E;
}
.tvo-detail-form{
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    background: #FEFEFE;
    box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.15);
}
.tvo-detail-form .form-control{
    border: 1px solid #EAEAEA;
    background: #FEFEFE;
    font-size: 13px;
    padding: 12px;
}
.tvo-detail-form .form-control::placeholder{
    color: #BCBCBC;
    font-weight: 300;
}
.tvo-detail-form .select2-container .select2-selection--single{
    height: 45px;
    border: 1px solid #EAEAEA;
    background: #FEFEFE;
    font-weight: 300;
}
.tvo-detail-form .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 45px;
    font-weight: 400;
}
.tvo-detail-form .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 45px;
}
.tvo-detail-form .btn-group .btn-outline-primary{
    border: 1px solid #EAEAEA;
    border-radius: 8px !important;
    color: #BCBCBC;
    font-weight: 300;
}
.tvo-detail-form .btn-group .btn-check:checked+.btn{
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}
/* 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;
}
.tvo-detail-body-quick .accordion-item{
    border-radius: 8px;
    margin-bottom: 20px;
}
.tvo-detail-body-quick .accordion-button{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    border: none;
    color: var(--white);
    border-radius: 8px !important;
}
.tvo-detail-body-quick .accordion-button:not(.collapsed){
    border-radius: 8px 8px 0 0 !important;
}
.tvo-detail-body-quick .accordion-button::after{
    background: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20class%3D%22bi%20bi-chevron-down%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.646%204.646a.5.5%200%200%201%20.708%200L8%2010.293l5.646-5.647a.5.5%200%200%201%20.708.708l-6%206a.5.5%200%200%201-.708%200l-6-6a.5.5%200%200%201%200-.708%22%2F%3E%3C%2Fsvg%3E') no-repeat center/ cover;
}
.tvo-detail-body-quick .accordion-body{
    background: #F9F9F9;
}
.tvo-detail-body-quick .accordion-inner .accordion-button{
    background: #F2F2F2 !important;
    border-radius: 0 !important;
    border: 0 !important;
    color: #4A4A4A;
}
.tvo-detail-body-quick .accordion-inner .accordion-button::after{
    background: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23000%22%20class%3D%22bi%20bi-chevron-down%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.646%204.646a.5.5%200%200%201%20.708%200L8%2010.293l5.646-5.647a.5.5%200%200%201%20.708.708l-6%206a.5.5%200%200%201-.708%200l-6-6a.5.5%200%200%201%200-.708%22%2F%3E%3C%2Fsvg%3E') no-repeat center/ cover;
}
.tvo-detail-body-quick .accordion-inner .accordion-body{
    color: #4A4A4A;
}
.tvo-detail-body-quick .accordion-inner .accordion-inner-body{
    margin: 12px 0;
    border-right: 1px solid #e1e1e1;
}
.tvo-detail-body-quick .accordion-inner .accordion-inner-body .bi-star-fill{
    color: #7B431A;
}
.tvo-detail-body-quick h4{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.tvo-detail-body-rating span{
    color: #666D7E;
}
/*--- end activity pages style---*/
/*activity sprite image*/
.act-cat-sprite{display: inline-block;background: url('../images/activity-category-sprite.webp')}
.air-active {width: 42px;height: 42px;background-position: -10px -10px;}
.air-default {width: 42px;height: 42px;background-position: -10px -72px;}
.arts-workshops-default {width: 42px;height: 42px;background-position: -10px -134px;}
.arts-workshops-active {width: 42px;height: 42px;background-position: -10px -196px;}
.cultural-experiences-active {width: 42px;height: 42px;background-position: -10px -258px;}
.cultural-experiences-default {width: 42px;height: 42px;background-position: -10px -320px;}
.entertainment-active {width: 42px;height: 42px;background-position: -10px -382px;}
.entertainment-default {width: 42px;height: 42px;background-position: -10px -444px;}
.family-kids-default {width: 42px;height: 42px;background-position: -10px -506px;}
.desert-adventures-active {width: 42px;height: 42px;background-position: -10px -568px;}
.luxury-activities-default {width: 42px;height: 42px;background-position: -10px -630px;}
.mountain-adventures-active {width: 42px;height: 42px;background-position: -10px -692px;}
.mountain-adventures-default {width: 42px;height: 42px;background-position: -10px -754px;}
.nature-wildlife-default {width: 42px;height: 42px;background-position: -10px -816px;}
.others-active {width: 42px;height: 42px;background-position: -10px -878px;}
.shopping-activities-active {width: 42px;height: 42px;background-position: -10px -940px;}
.luxury-activities-active {width: 42px;height: 42px;background-position: -10px -1002px;}
.others-default {width: 42px;height: 42px;background-position: -10px -1064px;}
.shopping-activities-default {width: 42px;height: 42px;background-position: -10px -1126px;}
.desert-adventures-default {width: 42px;height: 42px;background-position: -10px -1188px;}
.sightseeing-default {width: 42px;height: 42px;background-position: -10px -1250px;}
.sports-active {width: 42px;height: 42px;background-position: -10px -1312px;}
.water-experiences-active {width: 42px;height: 42px;background-position: -10px -1374px;}
.water-experiences-default {width: 42px;height: 42px;background-position: -10px -1436px;}
.nature-wildlife-active {width: 42px;height: 42px;background-position: -10px -1498px;}
.wellness-activities-active {width: 42px;height: 42px;background-position: -10px -1560px;}
.wellness-activities-deault {width: 42px;height: 42px;background-position: -10px -1622px;}
.family-kids-active {width: 42px;height: 42px;background-position: -10px -1684px;}
.sports-default {width: 42px;height: 42px;background-position: -10px -1746px;}
.sightseeing-active {width: 42px;height: 42px;background-position: -10px -1808px;}
/*activity sprite image*/
/*-- package pages style ---*/
.main-package-hero:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/hero-package-banner.webp") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/*---package card style--*/
.package-card{
    border-radius: 12px 12px 0 0;
}

.package-card-header .carousel-item{
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}
.package-card-header .carousel-item:before{
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgb(0, 0, 0, 0.30) 12%, rgb(0 0 0 / 12%) 34%);
    height: 250px;
    width: 100%;
}
.pack-activity{
    color: #686868;
    font-size: 13px;
    font-weight: 500;
}
.carousel-indicators [data-bs-target]{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #D9D9D9;
}

.carousel-indicators .active{
    background-color: #0C8858;
}

.package-card-header p{
    background: #000000c7;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    color: var(--white);
    display: inline-flex;
    padding: 2px 12px;
    position: absolute;
    top: 8px;
    right: 5px;
}
.pack-whatsapp a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    position: absolute;
    border-radius: 100%;
    bottom: 10px;
    right: 6px;
    border: 2px solid var(--primary-color);
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.59);
}
.pack-whatsapp i{
    background: linear-gradient(180deg, #4AC14B 0%, #06853A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    padding-left: 3px;
    font-size: 20px;
}
.pack-location span{
    font-size: 12px;
}
.package-card-footer{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    border-radius: 0 0 12px 12px;
    position: relative;
    overflow: hidden;
}
.btn-tabs{
    cursor: pointer;
}
.package-card-footer:before{
    content: "";
    position: absolute;
    left: -14px;
    bottom: -40px;
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background: #004140;
    opacity: 0.6;
}
.package-card-footer:after{
    content: "";
    position: absolute;
    left: -30px;
    bottom: -10px;
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background: #004140;
    opacity: 0.6;
}
.pack-nav-tabs{
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
}
.pack-nav-tabs-h{
    height: 200px !important;
}
.pack-nav-tabs .nav-link{
    color: #616161 !important;
}
.pack-nav-tabs .nav-link.active{
    color: var(--primary-color) !important;
    background: none !important;
    border-bottom: 2px solid var(--primary-color) !important;
    border-radius: 0;
}
.package-nav-tabs{
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
}
.package-nav-tabs-h{
    height: 160px !important;
}
.package-nav-tabs .nav-link{
    color: #A4A4A4 !important;
    border-bottom: 2px solid transparent !important;
}
.package-nav-tabs .nav-link.active{
    color: var(--primary-color) !important;
    background: none !important;
    border-bottom: 2px solid var(--primary-color) !important;
    border-radius: 0;
}
.package-nav-tabs .tab-content ul{
    padding-left: 0;
    margin-bottom: 0;
}
.package-nav-tabs .tab-content ul li{
    list-style-type: none;
    display: flex;
    font-size: 12px;
}
.package-nav-tabs .tab-content ul li::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../images/highlight-arrow-point-green.svg") no-repeat center/contain;
    margin-right: 6px;
}
.package-card-rate .pack-rate span{
    font-size: 13px;
}
.text-grey-del{
    color: #a6a6a6;
}
.text-red-offer{
    border-radius: 100px;
    border: 0.4px solid  #EF4123;
    background: rgba(255, 0, 0, 0.12);
    color: #EE3F25;
    font-size: 10px;
}
.limit-offers-icon{
    width: 14px !important;
    height: 14px;
    margin-right: 4px;
}
.package-process-card-head.active{
    color: var(--primary-color) !important;
}
.package-process-card-head{
    cursor: pointer;
}
.package-process-card .icon-active,.package-process-card .active .icon-default{
    display: none !important;
}
.package-process-card .active .icon-active{
    display: inline-block !important;
}
.package-process-card{
    transition: 0.3s ease;
}
.package-process-card:has(.package-process-card-head.active) {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.05);
}
.packages-process-card-body1,
.packages-process-card-body2,
.packages-process-card-body3,
.packages-process-card-body4 {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}
.package-process-video{
    position: relative;
}
.package-process-video:before{
    content: "";
    position: absolute;
    left: -126px;
    bottom: -139px;
    background: url(../images/man-standing-orange-wall.webp) no-repeat center / auto;
    width: 267px;
    height: 424px;
    z-index: 1;
}
.package-process-video:after{
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    background: url("../images/banana-circle.webp") no-repeat center/ auto;
    width: 183px;
    height: 176px;
    z-index: -1;
}

@media screen and (max-width: 1200px) {
    .package-process-video:before,.package-process-video:after{
        display: none;
    }
}
.trending .owl-carousel{
    overflow: hidden;
}
.trending .owl-carousel .owl-stage-outer{
    overflow: visible;
}

/*-- package details style --*/
.pack-flight{
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.pack-flight-body-car span{
    font-size: 12px;
    display: inline-flex;
    flex-shrink: 0;
    padding: 0 4px;
    margin: 2px 0;
}
.pack-flight-body .hotel-info{
    font-size: 12px;
}

.border-secondary-color {
    border: 1px solid #EB7724;
}
.tvo-text-second {
    color: #EB7724;
}
.btn-change{
    border: 1px solid var(--primary-color) !important;
    background: transparent;
    font-size: 14px;
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
    padding: 8px 30px;
}
.tvo-detail-light-body .accordion-button{
    font-size: 14px;
    color: #616161;
    font-weight: 400;
}
.tvo-detail-light-body .nav-pills{
    background: #F4FFFF;
    padding: 20px;
}
.tvo-detail-light-body .nav-pills .nav-link{
    border: 1px solid transparent;
    background: transparent;
    border-radius: 20px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
}
.tvo-detail-light-body .nav-pills .nav-link.active{
    border: 1px solid var(--primary-color);
    background: white;
}
.tvo-detail-light-body .nav-pills .nav-link.active span{
    background: var(--primary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.itinerary-wrapper .accordion-body p {
    font-size: 13px;
    font-weight: 300;
}
.itinerary-wrapper .pack-flight-head{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(267deg, #218848 0.52%, #48c68d 102.15%);
}
.itinerary-wrapper .accordion-button{
    border: 1px solid #EB7724;
}
.itinerary-wrapper .tvo-detail-light-body {
    background: #F9F9F9;
}
.tvo-new-primary {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(267deg, #218887 0.52%, #48C6C4 102.15%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*--- end package card style ---*/
/*-- transfer pages style --*/
.main-transfer-hero:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/hero-transfer-banner.webp") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.tvo-step-card{
    border-radius: 8px;
    background: #FAFAFA;
    border: 1px solid #E7E7E7;
}
.tvo-step-card:hover{
    border: 1px solid var(--primary-color);
    background: var(--white);
    box-shadow: 12px 12px 80px 0 rgba(0, 0, 0, 0.14);
}
.tvo-step-card .icon-active, .tvo-step-card:hover .icon-default{
    display: none !important;
}
.tvo-step-card:hover .icon-active{
    display: inline-block !important;
}

.tvo-step-card h3{
    text-transform: capitalize;
}
.tvo-step-card p{
    color:var(--grey);
}

.tvo-step-card:hover h3{
    color: var(--primary-color);
}
.tvo-steps-video video{
    border: 5px solid var(--secondary-color);
}
.tvo-steps-video:before{
    content: "";
    position: absolute;
    right: -14px;
    top: -60px;
    border-radius: 100%;
    border: 8px solid var(--primary-color);
    width: 200px;
    height: 200px;
    z-index: -1;
}
.tvo-steps-video:after{
    content: "";
    position: absolute;
    left: -14px;
    bottom: -60px;
    border-radius: 100%;
    border: 8px solid var(--secondary-color);
    width: 250px;
    height: 250px;
    z-index: -1;
}

.tvo-feature-body:before{
    content: "";
    position: absolute;
    left: -46px;
    top: -66px;
    background: url("../images/transfer-featue-left-top.webp");
    width: 213px;
    height: 229px;
}
.tvo-feature-body:after{
    content: "";
    position: absolute;
    right: -46px;
    bottom: -66px;
    background: url("../images/transfer-featue-left-top.webp");
    width: 213px;
    height: 229px;
    transform: rotate(180deg);
}
.tvo-feature-box h3{
    border-bottom: 2px dashed #efefef;
    padding-bottom: 10px;
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tvo-feature-box p{
    color: var(--light-grey);
}
.transfer-fleet-image img{
    width: auto !important;
    margin: 0 auto;
}
.transfer-fleet-image:before{
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    width: 100%;
    height: 20px;
}
.transfer-fleet-image:after{
    content: "";
    position: absolute;
    left: 50px;
    top: 0;
    width: 200px;
    height: 200px;
    border-radius: 264px;
    opacity: 0.06;
    background: linear-gradient(0deg, #007D64 0%, #007D64 100%);
    filter: blur(26px);
}
.transfer-fleet-image span:before{
    content: "";
    position: absolute;
    top: 70px;
    left: 80px;
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    width: 29px;
    height: 26px;
    transform: skewX(308deg);
}
.transfer-fleet-image span:after{
    content: "";
    position: absolute;
    top: 70px;
    right: 80px;
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    width: 29px;
    height: 26px;
    transform: skewX(308deg);
}
.master-nav .nav-pills{
    border-bottom: 1px solid var(--primary-color);
    display: inline-flex;
    width: max-content;
}
.master-nav .nav-link{
    color: #616161;
    align-items: center;
    display: flex;
    gap: 6px;
    font-weight: 500;
    font-size: 12px;
    border-radius: 0;
    padding: 8px 16px;
    border-bottom: 3px solid transparent;
}
.master-nav .nav-link.active{
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.scroll-container {
    width: 100%;
    height: 32px;
    position: relative;
    overflow: hidden;
}
.scroll-text {
    display: flex;
    width: calc(9313px);
    position: absolute;
    height: 32px;
    white-space: nowrap;
    animation: 60s linear 0s infinite normal none running scroll-text;
}
@keyframes scroll-text {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}
.transfer-fleet .icon-active, .transfer-fleet .nav-link.active .icon-default{
    display: none !important;
}
.transfer-fleet .nav-link.active .icon-active{
    display: inline-block !important;
}
.transfer-fleet .owl-nav {
    position: absolute;
    right: 0;
    top: -50px;
}
.transfer-fleet .owl-prev span, .transfer-fleet .owl-next span{
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
}
.owl-transfer .nav-item{
    display: flex;
    justify-content: center;
}
.transfer-whyus-img:before{
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 800px;
    height: 800px;
    border-radius: 100%;
    background: #FFF8EC;
}
.transfer-whyus-body:before{
    content: "";
    position: absolute;
    left: 0;
    top: -60px;
    background: url(../images/why-us-car-bg.webp) no-repeat left top / contain;
    width: 100%;
    height: 89px;
    z-index: -1;
    opacity: 0.4;
}
.fleet-overview:before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 0.5rem;
    border: 2px solid var(--primary-color);
    bottom: -10px;
    right: -10px;
    background: white;
    z-index: -1;
}
@media screen and (max-width: 992px) {
    .transfer-fleet .owl-nav{
        top: -80px;
    }
}
/*transfer type icons start*/
.car-type-sprite {background: url('../images/car-type-sprite.webp'); display: inline-block; width: 48px; height: 48px;}
.convertible-coupe-default {background-position: -10px -10px;}
.coupe-active {background-position: -10px -78px;}
.convertible-coupe-active {background-position: -10px -146px;}
.coupe-default {background-position: -10px -214px;}
.mpv-active {background-position: -10px -282px;}
.mpv-default {background-position: -10px -350px;}
.hypercar-default {background-position: -10px -418px;}
.pickup-truck-active {background-position: -10px -486px;}
.hypercar-active {background-position: -10px -554px;}
.pickup-truck-default {background-position: -10px -622px;}
.sedan-active {background-position: -10px -690px;}
.sedan-luxury-active {background-position: -10px -758px;}
.sports-car-default {background-position: -10px -826px;}
.sports-car-active {background-position: -10px -894px;}
.van-default {background-position: -10px -962px;}
.bus-active {background-position: -10px -1030px;}
.bus-default {background-position: -10px -1098px;}
.hatchback-active {background-position: -10px -1166px;}
.limousine-default {background-position: -10px -1234px;}
.hatchback-default {background-position: -10px -1302px;}
.sedan-default {background-position: -10px -1370px;}
.sedan-luxury-default {background-position: -10px -1438px;}
.limousine-active {background-position: -10px -1506px;}
.suv-active {background-position: -10px -1574px;}
.suv-luxury-active {background-position: -10px -1642px;}
.suv-default {background-position: -10px -1710px;}
.van-active {background-position: -10px -1778px;}
.suv-luxury-default {background-position: -10px -1846px;}
/*transfer type icons end*/
/*transfer toggle switch*/
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 22px 0;
    width: fit-content;
    position: absolute;
    top: 0;
    right: 0;
}
.toggle-label {
    margin: 0 10px;
    color: #ccc;
    transition: color 0.3s ease;
}
.toggle-switch {
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}
.toggle-switch::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    transition: left 0.3s ease;
}
.toggle-switch.active {
    background: var(--primary-color);
}
.toggle-switch.active::before {
    left: 27px;
}
.content {
    display: none;
}
.content.active {
    display: block;
}
.toggle-container .toggle-label.active {
    color: #333;
}
@media screen and (max-width: 992px) {
    .toggle-container{
        position: relative;
    }
}
/*transfer toggle switch*/
/*-- transfer type -*/
.hero-category-lists{
    width: 90%;
    margin: 0 auto;
}

.hero-type-body .hero-category-lists .search-category-div.active .icon-default,
.hero-type-body .hero-category-lists .search-category-div .icon-active{
    display: none;
}
.hero-type-body .hero-category-lists .search-category-div .icon-default,
.hero-type-body .hero-category-lists .search-category-div.active .icon-active{
    display: inline-block;
}
.hero-type-body .hero-category-lists .search-category-div.active{
    border-bottom: 1px solid var(--primary-color);
}
.hero-category-lists .category-carousel .owl-prev{
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
}
.hero-category-lists .category-carousel .owl-next{
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
}
.hero-category-lists .category-carousel .owl-nav{
    position: static;
    display: flex ;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
}
.hero-category-lists .nav-link .icon-active{
    display: none;
}
.hero-category-lists p{
    font-size: 12px;
}
.transfer-cat-card{
    transition: 0.4s ease;
    padding: 12px;
}
.transfer-cat-card:hover{
    box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 125, 100, 0.28) !important;
}
.transfer-cat-nav .nav-pills .nav-link{
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}
.transfer-cat-nav .nav-pills .nav-link .icon-active,
.transfer-cat-nav .nav-pills .nav-link.active .icon-default{
    display: none !important;
}
.transfer-cat-nav .nav-pills .nav-link.active{
    color: var(--primary-color);
}
.transfer-cat-nav .nav-pills .nav-link.active .icon-active{
    display: inline-block !important;
}
.border-right{
    border-right: 1px solid #E4E4E4;
}
.transfer-cat-off{
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    font-size: 10px;
    padding: 4px 12px !important;
}
.tvo-stamp:before{
    position: absolute;
    top: 0;
    right: 6px;
    content: "";
    height: 80px;
    width: 80px;
    background: url("../images/tvo-stamp.webp") no-repeat center/contain;
    opacity: 0.25;
}
.transfer-cat-btn{
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.transfer-cat-point,.transfer-fleet-feature,.transfer-cat-trust,
.transfer-cat-card-point{
    font-size: 12px;
}
@media screen and (max-width: 992px) {
    .transfer-cat-nav .nav-pills{
        width: max-content;
    }
}
@media screen and (max-width: 768px) {
    .border-right{
        border-right: none;
    }
}


/*--checkout page-*/
.border-secondary-dark{
    border: 1px solid rgba(184, 87, 51, 0.2);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #363636;
    padding: 12px;
    font-weight: 300;
}
.transfer-repair-box{
    background: #f3f3f3;
    border-radius: 8px;
}
.transfer-note{
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(90deg, #F1FCF6 0%, rgba(255, 255, 255, 0.50) 26.2%, rgba(241, 255, 247, 0.80) 100%);
    color: var(--primary-color);
}
.transfer-check-form{
    border-radius: 8px;
    border: 1px solid #E1E1E3;
    background: #FEFEFE;
}
.border-down{
    border-bottom: 2px solid var(--primary-color);
}
.transfer-check-header{
    padding: 20px 0;
}
.transfer-check-header h2{
    color: #363636;
    font-size: 24px;
    font-weight: 700;
}

.transfer-cat-rating i{
    color: #DEB100;
}
.transfer-card-header p{
    color: #616161;
    font-size: 14px;
    font-weight: 400;
}
.transfer-coverage-header h2{
    color: #353535;
    font-size: 18px;
    font-weight: 700;
}
.transfer-coverage-header p{
    color: #616161;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 4px;
}
.transfer-check-form .btn-outline-primary{
    color: #616161 !important;
    font-weight: 300;
    font-size: 14px;
    padding: 11px;
}
.transfer-check-form .btn-check:checked+.btn{
    color: var(--white) !important;
    background: var(--primary-color);
}
.transfer-check-form input{
    font-size: 13px;
    padding: 12px;
}
.transfer-check-form input::placeholder{
    color: #afafaf;
    font-weight: 300;
}
.transfer-check-form .select2-container .select2-selection--single,
.transfer-check-form .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 44px;
}
.transfer-check-form .select2-container--default .select2-selection--single{
    border: 1px solid #E1E1E3;
}
.transfer-check-form .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 40px;
}
.transfer-check-body .nav-pills .nav-link{
    border: 1px solid #EEE;
    background: #F7F7F9;
    color: #616161;
    font-weight: 500;
}
.transfer-check-body .nav-pills .nav-link.active{
    background: var(--primary-color);
    color: var(--white);
}
.transfer-check-note{
    border-radius: 4px;
    background: #FFF7E9;
}
.transfer-check-pay{
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    background: #FEFEFE;
    box-shadow: 6px 8px 15px 0 rgba(0, 0, 0, 0.08);
}
.partial-payment-box {
    background-color: white;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid var(--primary-color);
    padding: 20px;
}
.price-break-box{
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 600 !important;
}
.transfer-check-pay h5,.transfer-check-pay p{
    font-size: 14px;
    font-weight: 300;
    color: #5d5f63;
}
.transfer-pickup,.transfer-drop{
    width: 12px;
    height: 12px;
    border: 2px solid #aaa;
    margin-right: 10px;
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
    background: #fff;
    position: relative;
}
.dots-line{
    position: relative;
    overflow: hidden;
}
.dots-line:before{
    content: "";
    position: absolute;
    left: 50px;
    top: 4px;
    border-left: 2px dashed #b7b7b7;
    width: 0;
    height: 100%;
}
.price-break-box .bi-dash-circle{
    display: none;
}

.partial-payable-amount {
    border-radius: 8px;
    border: 1px solid #E1E1E3;
    background: #FFF;
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.08);
    padding: 10px 24px;
}
.transfer-fleet-head{
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.transfer-fleet-lists li{
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}
.transfer-fleet-feature small{
    color: #353535;
}
.tf-black-text{
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*-- end transfer pages style --*/
/*--- visa pages style ---*/
.main-visa-hero:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/hero-visa-banner.webp") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.visa-card{
    border-radius: 8px;
    border: 1px solid #F2F2F2;
    background: var(--white);
}
.visa-card-header{
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    min-height: 60px;
}
.visa-card-header h2{
    color: var(--white);
}
.visa-card .whatsapp-link{
    position: relative;
    width: 55px;
    top: -8px;
}
.visa-card .whatsapp-link:before{
    content: "";
    position: absolute;
    top: -11px;
    right: 0;
    background: url(../images/visa-card-whatsapp-bg.svg) no-repeat center / auto;
    width: 80px;
    height: 54px;
}
.visa-card .whatsapp-link a{
    border-radius: 100%;
    background: linear-gradient(180deg, #4AC14B 0%, #00A744 100%);
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.22);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 0;
    top: 4px;
}
.visa-card-type{
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-card-info .visa-card-key{
    color: #353535;
    font-weight: 500;
}
.visa-card-info .visa-card-value{
    color: #5E5E5E;
}
.visa-card-rate{
    color: #555555;
}
.visa-card-footer{
    position: relative;
}
.visa-card-footer .proceed{
    background: url(../images/visa-card-footer-bg.svg) no-repeat top / auto;
    width: 100%;
    height: 45px;
    text-align: center;
}
.visa-card-footer .btn-primary{
    font-size: 13px;
    padding: 10px 32px !important;
    color: var(--white) !important;
    border-radius: 14px;
}
.eligible-wrapper{
    border-radius: 8px;
    border: 1px solid #DDD;
    background: var(--white);
    box-shadow: -4px 4px 16px 0 rgba(0, 0, 0, 0.08);
}
.eligible-wrapper-head{
    background-image: url(../images/world-map.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    width: 74%;
}
.eligible-wrapper-img{
    position: absolute;
    right: 0;
    bottom: 0;
}
.eligible-wrapper-img:after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 419px;
    opacity: 0.2;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    filter: blur(100px);
    width: 300px;
    height: 300px;
}
.eligible-wrapper-img:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border-left: 15rem solid transparent;
    border-top: 15rem solid transparent;
    border-bottom: 15rem solid var(--primary-color);
}
.eligible-wrapper-img img{
    position: relative;
    width: 270px;
}

.eligible-countries {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.eligible-countries .home-country{
    border: 1px solid transparent;
    transition: 0.4s ease;
    color: #353535;
}

.eligible-countries .home-country:hover{
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    background: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.12);
}
.country-list ul li {
    list-style: none;
    display: inline-block;
    width: 20%;
}
@media screen and (max-width: 767px) {
    .eligible-wrapper-head{
        width: 100%;
    }
    .country-list ul li {
        list-style: none;
        display: inline-block;
        width: 50%;
    }
    .home-country svg {
        width: 24px;
        height: 24px;
    }
}
@media screen and (min-width: 767px) and (max-width: 992px) {
    .country-list ul li {
        list-style: none;
        display: inline-block;
        width: 25%;
    }
    .eligible-wrapper-head{
        width: 100%;
    }
}
.visa-whyus-body:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: url("../images/whyus-visa-bg.webp") no-repeat right bottom/auto;
    width: 563px;
    height: 303px;
    opacity: 0.1;
}

.testimonial-card{
    box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(107deg, #FFF -0.76%, #F7F7F7 56.95%, #F8F8F8 100%);
    min-height: 250px;
    margin: 30px;
    border-radius: 12px;
}
.testimonial-card .testimonial-card-header{
    align-items: center;
    position: relative;
    left: -50px;
}
.testimonial-card-header .testimonial-card-user{
    width: 90px;
    height: 90px;
    background: #f4f4f4;
    padding: 10px;
    position: relative;
    border-radius: 100%;
    margin-right: 30px;
}
.testimonial-card-header-name small{
    color: #353535;
    font-weight: 300;
}
.testimonial-card-body{
    color: #353535;
}
.testimonial-card-user img{
    width: 70px;
    height: 70px;
    border: 2px solid var(--white);
}
.testimonial .carousel-control-prev-icon,.testimonial .carousel-control-next-icon{
    background-image: none;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 100%;
    font-size: 22px;
    width: 36px;
    height: 36px;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.12);
}
.testimonial .carousel-control-next, .testimonial .carousel-control-prev{
    position: relative;
    display: inline-block;
    margin: 10px 0;
}
/*about country page start*/
.visa-type-country_body{
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 4px 0 var(--secondary-color);
}
.about-country-content .country-content {
    overflow: hidden;
    transition: height 3s ease;
    height: 120px;
}

.about-country-content .expand-btn {
    cursor: pointer;
    color: red !important;
    font-size: 16px !important;
}
/*about country page end*/
/*--visa country page--*/
.visa-guide-card--secondary{
    border: 1px solid var(--secondary-color);
    background: rgba(184, 87, 51, 0.4);
}
.visa-guide-body:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: url("../images/passport-guild-bg.webp") no-repeat center bottom/cover;
    width: 563px;
    height: 303px;
    opacity: 0.6;
}
/*--- visa form style---*/
.visa-af-body .form-label{
    font-size: 12px;
}
.visa-af-body input{
    font-size: 14px;
    color: #3a3a3a;
}
.visa-af-body .select2-container .select2-selection--single,
.visa-af-body .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 55px !important;
    border-color: #e5e8eb;
}
.visa-af-body .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 34px;
    padding-top: 20px;
}
.form-floating > .form-control::placeholder {
    color: revert !important;
    font-weight: normal;
    font-size: 14px;
}
.form-floating > .form-control:not(:focus)::placeholder {
    color: transparent !important;
}
.document-box{
    border: 2px dashed #e1e1e1;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    position: relative;
    text-align: center;
}
.document-box .document-box_header{
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    top: -14px;
    background-color: #fcfffd;
    padding: 4px 10px;
    left: 4px;
    text-transform: uppercase;
    color: #787878;
}
.document-box img{
    width: 80px;
    height: 80px;
    margin: 6px auto;
}
.document-box .btn-doc-upload{
    display: block;
    margin: 5px auto;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #4DB65D;
    background: var(--white);
    color: #4DB65D;
    padding: 6px 0;
    transition: box-shadow 0.5s ease-in-out;
}
.document-box .btn-doc-upload:hover{
    background-color: rgb(76 181 92 / 4%);
    box-shadow: 2px 4px 8px #c4c8cb;
}
.passport_upload,.photo_upload,.document_upload{
    display: none;
}
.passport_btn,.photo_btn,.document_btn{
    cursor: pointer;
}
.doc-hint-form{
    font-size: 12px;
}

/*transfer progress bar*/
.tprogress-bar{
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg , #5DB58E 60% , #AC735F 40%);
}
.progress-icon{
    width: 60px;
    height: 60px;
    border: 2px solid #5DB58E;
    top: 50%;
    transform: translate(-50% ,-50%);
}
.progress-icon span{position: absolute;top: 43%;left: 44%;transform: translate(-50%, -50%);}
.progress-icon1{left: 5%}
.progress-icon2{left: 50%}
.progress-icon3{left: 95%;border-color:#AC735F }
.progress-icon:before{position: relative;content: "Choose Car";top: 10px;right: -59px;font-size: 10px;width: 56px;display: block; color: #616161;}
.progress-icon2:before{content: "Pay"}
.progress-icon3:before{content: "Get Car"}
.vsprogress-bar .progress-icon2{border-color: #AC735F}
.vsprogress-bar {background: linear-gradient(90deg , #5DB58E 45% , #AC735F 40%)}
.vsprogress-bar .progress-icon:before{position: relative;content: "Choose Service";top: 10px;right: -59px;font-size: 10px;width: 80px;display: block; color: #616161;}
.vsprogress-bar .progress-icon2:before{content: "Personal Details"}
.vsprogress-bar .progress-icon3:before{content: "Payment";width: 48px;}

.vsprogress-bar-checkout .progress-icon2{border-color: #5DB58E}
.vsprogress-bar-checkout {background: linear-gradient(90deg , #5DB58E 60% , #AC735F 40%)}
/*transfer progress bar*/

/*-- visa checkout page--*/
.checkout-application__pay input[type="checkbox"] ,
.partial-payable-amount input[type="checkbox"] {
    accent-color: var(--primary-color);
}
.checkout-body-addon-image{
    height: 140px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
.addon-details{
    overflow: hidden;
    height: 0;
}
.visa-checkout-body span,.visa-checkout-body p{
    font-size: 13px;
}
.w-40{
    width: 40% !important;
}
.w-60{
    width: 60% !important;
}

.checkout-body-description {
    min-height: 84px;
}
.checkout-body-description p{
    margin-bottom: 0;
}
.text-over {
    height: 63px;
    overflow-y: scroll;
    display: none;
}
.sidebar::-webkit-scrollbar,
.text-over::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.sidebar::-webkit-scrollbar-track,
.text-over::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #e3e5ff;
    border: 1px solid #8abfcd;
    box-shadow: inset 0 0 6px rgba(76, 154, 171, 0.3);
}
.sidebar::-webkit-scrollbar-track,
.text-over::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #2d8ea1;
}

/*--- end visas pages style---*/
/*--attraction page style--*/
.main-attraction-hero:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/hero-attraction-banner.webp") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.tvo-attr-card{
    margin: 12px 0;
}
.tvo-attr-card-header p{
    border-radius: 100px;
    background: var(--white);
    display: inline-flex;
    padding: 3px 12px;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}
.tvo-attr-card-image img{
    border-radius: 8px 8px 0 0;
    width: 100%;
}
.tvo-attr-card-image:before{
    content: "";
    position: absolute;
    left: -21px;
    bottom: -14px;
    width: 28px;
    height: 28px;
    background: rgb(244 244 244);
    border-radius: 100%;
    z-index: 1;
}
.tvo-attr-card-image:after{
    content: "";
    position: absolute;
    right: -21px;
    bottom: -14px;
    width: 28px;
    height: 28px;
    background: rgb(244 244 244);
    border-radius: 100%;
    z-index: 1;
}
.tvo-attr-card-body{
    padding: 16px;
    border-radius: 0 0 8px 8px;
    border-right: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
    border-left: 1px solid #EDEDED;
    background: var(--white);
    position: relative;
}
.tvo-attr-card-body:before{
    content: "";
    position: absolute;
    top: -2px;
    border-top: 2px dashed #e3e3e3;
    width: 100%;
    left: 0;
}
.tvo-attr-timing{
    color: #525252;
    border-radius: 100px;
    border: 0.5px solid #BDBDBD;
    background: rgba(0, 0, 0, 0.00);
    font-size: 11px;
    font-weight: 300;
    margin: 10px 0;
}
.tvo-attr-card-body .price{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tvo-attr-card-body .rate-slace-text{
    font-weight: 300;
}
.tvo-attr-card-body .rate-save-text{
    border-radius: 100px;
    font-size: 10px;
    border: 0.4px solid #FF0606;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tvo-attr-icons .instant,
.tvo-attr-icons .transfer,
.tvo-attr-icons .meals{
    border-right: 1px solid #DEDEDE;
    width: 19px !important;
}
.tvo-attr-card-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.tvo-attr-card-footer .btn-white{
    border-radius: 8px;
    border: 1px solid #0C8858 !important;
    color: var(--primary-color) !important;
    transition: box-shadow 0.5s ease-in-out;
}
.tvo-attr-card-footer .btn-white:hover{
    box-shadow: 4px 4px 16px #e1e1e1;
}
.attr-checkout-form .select2-container--default .select2-selection--single{
    border: 1px solid #dee2e6;
    height: 36px;
}
.attr-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    font-weight: 300;
}
.attr-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}
.attr-checkout-form input::placeholder{
    font-size: 14px;
    font-weight: 300;
}
.checkout-body-addon{
    padding: 10px;
}
.checkout-body-addon h3{
    font-size: 14px;
    font-weight: 600;
}
.checkout-body-addon p{
    font-size: 12px;
    font-weight: 300;
}
.checkout-body-addon-details .btn-danger{
    font-size: 13px;
    font-weight: 300;
}
.checkout-body-addon-details .btn-primary{
    font-size: 13px;
    font-weight: 300;
    padding: 6px 20px;
}
/*--attraction details--*/
.tvo-detail-ticket-header{
    border-bottom: 1px solid var(--secondary-color);
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
}
.tvo-detail-ticket-card{
    border-radius: 6px;
    border: 1px solid #0C8858;
    background: #F6F6F6;
}
.tvo-detail-ticket-card:before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    width: 24px;
    height: 12px;
    background: var(--white);
    border-radius: 0 0 100px 100px;
    margin: 0 auto;
}
.tvo-detail-ticket-card:after{
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 24px;
    height: 12px;
    background: var(--white);
    border-radius: 100px 100px 0 0;
    margin: 0 auto;
}
.trending-icon{
    width: 103px !important;
    height: 30px !important;

}
.tvo-detail-ticket-card .select2-container--default .select2-selection--single{
    border: 1px solid #e6e6e6;
    height: 40px;
}
.tvo-detail-ticket-card .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 40px;
}
.tvo-detail-ticket-card .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 40px;
}
.premium-card .tvo-attr-card-body{
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    color: var(--white);
}
.premium-card .tvo-attr-timing{
    color: var(--white);
}
.premium-card .rate-save-text{
    background: linear-gradient(90deg, #FFAEA1 0%, #FFAEA1 51.5%, #FFAEA1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 0.4px solid #FFAEA1;
}
.premium-card .price{
    background: linear-gradient(258deg, #83FFBB 0%, #92D1FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.premium-card .btn-white{
    border-radius: 8px;
    border: 1px solid #83FFBB !important;
    background: transparent !important;
    color: #83FFBB !important;
}
.premium-card .tvo-attr-card-header .premium-tag{
    position: absolute;
    top: 24px;
    right: -30px;
    display: block;
    background: linear-gradient(90deg, #F5C72E 0%, #DEB100 27.96%, #D89E01 65.81%, #FFDA44 100%);
    color: #353535;
    z-index: 1;
    width: 140px;
    text-align: center;
    padding: 4px 0;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}
/*--end attraction Page style--*/
/*-- start yacht page style  --*/
.main-yacht-hero:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/hero-yacht-banner.webp") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.tvo-yacht-card{
    position: relative;
    border-radius: 24px;
    border: 1px solid #EEE;
    background: var(--white);
    box-shadow: 8px 8px 22px 0 rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 20px 0;
}
.yacht-premium{
    background: #3A3A3A;
    color: var(--white);
}
.yacht-premium .text-gradient-primary{
    background: linear-gradient(258deg, #83FFBB 0%, #92D1FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tvo-yacht-card-header p{
    background: #4A4A4A;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 0 100px 100px 0;
    padding: 8px 24px 8px 30px;
    color: var(--white);
    font-weight: 300;
    z-index: 1;
    line-height: 130%;
}
.tvo-yacht-card-header strong{
    color: #8EE2BD;
    font-weight: 700;
}
.yacht-premium .tvo-yacht-card-header .premium-tag{
    position: absolute;
    top: 24px;
    right: -30px;
    display: block;
    background: linear-gradient(90deg, #F5C72E 0%, #DEB100 27.96%, #D89E01 65.81%, #FFDA44 100%);
    color: #353535;
    z-index: 1;
    width: 140px;
    text-align: center;
    padding: 4px 0;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}
.tvo-yacht-card-image{
    position: relative;
    border-bottom: 1px solid #818181;
}
.tvo-yacht-wrapper .tvo-yacht-card-image{
    width: 30%;
}
.tvo-yacht-wrapper .tvo-yacht-card-body{
    width: 48%;
}
.tvo-yacht-wrapper .tvo-yacht-card-footer{
    width: 22%;
}
.tvo-yacht-card-image:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 10%, rgb(58 58 58) 100.49%);
    width: 100%;
    height: 100%;
}
.tvo-yacht-card-image img{
    border-radius: 24px 24px 0 0;
    width: 100%;
}
.tvo-yacht-left h3{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}
.tvo-yacht-icons{
    background: rgb(255 255 255 / 0%);
    color: var(--white);
    backdrop-filter: blur(2px);
    display: flex;
    padding: 0 12px;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    position: absolute;
    bottom: 2px;
    width: 100%;
}
.tvo-yacht-icon{
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tvo-yacht-icon span{
    display: block;
    margin: 4px 0;
}
.tvo-yacht-icon .yacht-icon-key{
    margin-top: 10px;
    margin-bottom: 0;
}
.tvo-yacht-icon .yacht-icon-value{
    font-weight: 400;
}
.tvo-yacht-card-body,.tvo-yacht-card-footer{
    padding: 12px;
}
.tvo-yacht-nav{
    margin: 12px 0 0 0;
}
.tvo-yacht-nav .nav{
    margin-bottom: 16px;
}
.tvo-yacht-nav .nav-link{
    border: 0;
    color: #626262;
    font-size: 13px;
    border-right: 2px solid #E4E4E4;
    padding: 0 10px;
    border-radius: 0;
}
.tvo-yacht-nav .nav-link.active{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.yacht-premium .nav-link{
    color: #bbbbbb;
}
.yacht-premium .nav-link.active{
    background: linear-gradient(258deg, #83FFBB 0%, #92D1FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tvo-yacht-nav .tab-pane,
.tvo-yacht-nav .tab-content{
    font-weight: 300;
}
.tvo-yacht-nav .tab-content ul{
    padding-left: 0;
    margin-bottom: 0;
}
.tvo-yacht-nav .tab-content ul li{
    list-style-type: none;
    display: flex;
    font-size: 12px;
    margin-bottom: 4px;
}
.tvo-yacht-nav .tab-content ul li::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../images/highlight-arrow-point-green.svg") no-repeat center/contain;
    margin-right: 6px;
}
.tvo-yacht-deal{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    border-radius: 2px;
    color: var(--white);
    font-size: 10px;
    padding: 4px 20px;
    font-weight: 600;
}
.tvo-yacht-price strong{
    font-size: 24px;
    font-weight: 700;
    color: #353535;
}
.yacht-premium .tvo-yacht-price strong{
    color: var(--white);
}
.tvo-yacht-price small{
    font-weight: 300;
}
.yacht-premium .tvo-yacht-price del,.yacht-premium .tvo-yacht-price small{
    font-weight: 200;
}
.btn-gradient{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%) !important;
    margin: 12px 0 4px 0;
}
.yacht-premium .btn-gradient{
    background: linear-gradient(258deg, #83FFBB 0%, #92D1FF 100%) !important;
    color: #353535 !important;
    font-weight: 500;
    margin: 12px 0 4px 0;
}
.tvo-yacht-help p{
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
    font-size: 12px;
}
.yacht-premium .tvo-yacht-help p{
    color: #FFC6B2;
    -webkit-text-fill-color:#FFC6B2;
}

.tvo-yacht-why-image .row{
    --bs-gutter-x: 0.8rem;
}
.tvo-yacht-why-image img{
    margin: 0.4rem 0;
}
.tvo-yacht-why-body{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.tvo-yacht-why-body .tvo-yacht-why-info h3{
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tvo-yacht-why-body .tvo-yacht-why-info p{
    color: #626262;
    font-size: 13px;
    font-weight: 300;
}

.tvo-yacht-banner{
    margin: 20px 0;
    box-shadow: 12px 12px 66px 0 rgba(0, 0, 0, 0.22);
}

/*--yacht type page--*/
.yacht-type .tvo-yacht-card{
    display: flex;
}
.yacht-type .tvo-yacht-card-image:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(140deg, rgba(0, 0, 0, 0.40) 11.56%, rgba(0, 0, 0, 0.00) 46.08%);
    width: 100%;
    height: 100%;
}
.yacht-type .tvo-yacht-card-image img{
    border-radius: 24px 0 0 24px;
}
.yacht-type .tvo-yacht-right{
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    width: 200px;
    color: var(--white);
}
.yacht-type .btn-gradient{
    width: 170px;
    padding: 12px 0 !important;
}

@media screen and (max-width: 768px) {
    .yacht-type .tvo-yacht-card{
        display: block;
    }
    .tvo-yacht-wrapper .tvo-yacht-card-footer,
    .tvo-yacht-wrapper .tvo-yacht-card-image,
    .tvo-yacht-wrapper .tvo-yacht-card-body{
        width: auto;
    }
}
/*-- yacht details page--*/
.tvo-detail-yacht-box{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
}
.tvo-detail-yacht-box-info p{
    margin: 0;
    color: #626262;
    font-weight: 300;
}
.yt-line-left{
    border-left: 1px solid #E4E4E4;
    padding-left: 10px;
}
.tvo-detail-yacht-box-info span{
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
}
.tvo-details-amenities-head{
    display: flex;
    justify-content: center;
    position: relative;
    top: 10px;
}
.tvo-details-amenities-head span{
    background: var(--white);
    padding: 4px 24px;
    border-radius: 20px 20px 0 0;
    color: #363636;
    font-weight: 300;
    font-size: 16px;
}
.tvo-details-amenities {
    overflow: hidden;
    height: 90px;
    transition: height 0.4s ease;
}
.tvo-details-amenities ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 0;
}
.tvo-details-amenities ul li{
    display: flex;
    padding: 8px 10px;
    gap: 10px;
    align-items: center;
    width: 16%;
    margin: 12px 0;
    font-size: 12px;
    color: #303030;
    border-left: 1px solid #e4e4e4;
}
.tvo-details-amenities-footer{
    display:flex;
    justify-content: center;
    position: relative;
    top: -18px;
}
.tvo-details-amenities-footer p{
    border-radius: 100px;
    border: 1px solid #AC735F;
    background: var(--white);
    margin: 0;
    padding: 4px 12px 4px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}
.tvo-details-amenities-footer p span{
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.yacht-inclusion ul li{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #333333;
    border-left: 1px solid #DEDEDE;
    padding-left: 8px;
    font-size: 13px;
    width: 24%;
    margin: 12px 0;
}

@media screen and (max-width: 992px) {
    .tvo-details-amenities ul li{
        width: 32%;
    }
}
@media screen and (max-width: 768px) {
    .tvo-details-amenities ul li{
        width: 48%;
    }
}


/*-- end yacht page style --*/

/*--- activity sprite image style ---*/
.sprite { background: url('../images/sprites.webp') no-repeat top left; width: 42px; height: 42px; display: inline-block; }
.sprite.travel { background-position: 0 0; width: 84px; height: 84px; }
.sprite.things-to-do { background-position: 0 -94px; width: 84px; height: 84px; }
.sprite.dates { background-position: 0 -188px; width: 84px; height: 84px; }
.sprite.instant-confirmation { background-position: 0 -282px; }
.sprite.safety-core { background-position: 0 -334px; }
.sprite.tour-guides { background-position: 0 -386px; }
.sprite.customer-support { background-position: 0 -438px; }
.sprite.dubai-activite { background-position: 0 -490px; }
.sprite.heading-icons { background-position: 0 -542px; }
.sprite.professional-guides { background-position: 0 -595px; }
.sprite.professional-guides-dark { background-position: 0 -647px; }
.sprite.city-tour-active { background-position: 0 -699px; }
.sprite.no-hidden-fees { background-position: 0 -751px; }
.sprite.exclusive-discounts-dark { background-position: 0 -803px; }
.sprite.authentic-local-experience { background-position: 0 -856px; }
.sprite.exclusive-discounts { background-position: 0 -909px; }
.sprite.authentic-local-experience-dark { background-position: 0 -961px; }
.sprite.transparent-reviews-dark { background-position: 0 -1013px; }
.sprite.personalized-itineraries { background-position: 0 -1066px; }
.sprite.transparent-reviews { background-position: 0 -1119px; }
.sprite.personalized-itineraries-dark { background-position: 0 -1171px; }
.sprite.no-hidden-fees-dark { background-position: 0 -1223px; }
.sprite.for-couples-default { background-position: 0 -1276px; }
.sprite.couples-active { background-position: 0 -1328px; }
.sprite.day-cruise-active { background-position: 0 -1380px; }
.sprite.day-cruise-default { background-position: 0 -1432px; }
.sprite.theme-park-active { background-position: 0 -1484px; }
.sprite.exclusive-active { background-position: 0 -1536px; }
.sprite.desert-safari-active { background-position: 0 -1588px; }
.sprite.exclusive-default { background-position: 0 -1640px; }
.sprite.theme-park-default { background-position: 0 -1692px; }
.sprite.desert-safari-default { background-position: 0 -1744px; }
.sprite.heritage-active { background-position: 0 -1796px; }
.sprite.heritage-default { background-position: 0 -1848px; }
.sprite.adventure-active { background-position: 0 -1900px; }
.sprite.cit-tour-default { background-position: 0 -1952px; }
.sprite.adventure-default { background-position: 0 -2004px; }
.sprite.all-default { background-position: 0 -2056px; }
.sprite.all-active { background-position: 0 -2108px; }
.sprite.ticket-w { background-position: 0 -2160px; width: 16px; height: 16px; }
.sprite.bolt { background-position: 0 -2186px; width: 16px; height: 16px; }
.sprite.offer_deal { background-position: 0 -2212px; width: 19px; height: 19px; }
.sprite.meals-w { background-position: 0 -2241px; width: 16px; height: 16px; }
.sprite.instant { background-position: 0 -2267px; width: 16px; height: 16px; }
.sprite.whatsapp-w { background-position: 0 -2293px; width: 24px; height: 24px; }
.sprite.transfer-w { background-position: 0 -2327px; width: 16px; height: 16px; }
.sprite.info { background-position: 0 -2353px; width: 16px; height: 16px; }
.sprite.tag { background-position: 0 -2379px; width: 16px; height: 16px; }
.sprite.transfers-active { background-position: 0 -2405px; width: 24px; height: 24px; }
.sprite.instant-w { background-position: 0 -2439px; width: 16px; height: 16px; }
.sprite.visas-active { background-position: 0 -2465px; width: 24px; height: 24px; }
.sprite.package-active { background-position: 0 -2499px; width: 24px; height: 24px; }
.sprite.activities-active { background-position: 0 -2533px; width: 24px; height: 24px; }
.sprite.local-eye { background-position: 0 -2567px; width: 30px; height: 30px; }
.sprite.authentic-review { background-position: 0 -2607px; width: 30px; height: 30px; }
.sprite.ticket { background-position: 0 -2647px; width: 16px; height: 16px; }
.sprite.meals { background-position: 0 -2673px; width: 16px; height: 16px; }
.sprite.tours-curated { background-position: 0 -2699px; width: 30px; height: 30px; }
.sprite.transfer { background-position: 0 -2739px; width: 16px; height: 16px; }
/*---- end  activity sprite image style ---*/

/*--- package sprite image style ---*/
.pack-sprite { background: url('../images/pack-sprite.webp') no-repeat top left; width: 42px; height: 42px; display: inline-block;  }
.pack-sprite.location { background-position: 0 0; width: 86px; height: 86px; }
.pack-sprite.all-active { background-position: 0 -96px; height: 42px; }
.pack-sprite.customizable-packages-active { background-position: 0 -148px; }
.pack-sprite.plexible-payment-plans-active { background-position: 0 -201px; }
.pack-sprite.no-hidden-charges-active { background-position: 0 -254px; }
.pack-sprite.customizable-packages-default { background-position: 0 -307px; }
.pack-sprite.unbeatable-pricing-active { background-position: 0 -360px; }
.pack-sprite.government-approved-default { background-position: 0 -413px; }
.pack-sprite.no-hidden-charges-default { background-position: 0 -466px; }
.pack-sprite.plexible-payment-plans-default { background-position: 0 -519px; }
.pack-sprite.customer-rating-active { background-position: 0 -572px; }
.pack-sprite.customer-rating-default { background-position: 0 -625px; }
.pack-sprite.unbeatable-pricing-default { background-position: 0 -678px; }
.pack-sprite.receive-your-booking-confirmation-default { background-position: 0 -731px; height: 42px; }
.pack-sprite.confirm-make-payment-default { background-position: 0 -783px; height: 42px; }
.pack-sprite.receive-your-booking-confirmation-active { background-position: 0 -835px; height: 42px; }
.pack-sprite.fill-the-booking-form-default { background-position: 0 -887px; height: 42px; }
.pack-sprite.fill-the-booking-form-active { background-position: 0 -939px; height: 42px; }
.pack-sprite.IATA-certified { background-position: 0 -991px; height: 42px; }
.pack-sprite.confirm-make-payment-active { background-position: 0 -1043px; height: 42px; }
.pack-sprite.free-cancellation { background-position: 0 -1095px; height: 42px; }
.pack-sprite.expertly-curated-dubai { background-position: 0 -1147px; height: 42px; }
.pack-sprite.explore-select-default { background-position: 0 -1199px; }
.pack-sprite.desert-safari-default { background-position: 0 -1252px; height: 42px; }
.pack-sprite.pilgrim-default { background-position: 0 -1304px; }
.pack-sprite.weekend-default { background-position: 0 -1357px; height: 42px; }
.pack-sprite.adventure-default { background-position: 0 -1409px; }
.pack-sprite.explore-select-active { background-position: 0 -1462px; }
.pack-sprite.honey-moon-default { background-position: 0 -1515px; }
.pack-sprite.weekend-active { background-position: 0 -1568px; height: 42px; }
.pack-sprite.desert-safari-active { background-position: 0 -1620px; height: 42px; }
.pack-sprite.pilgrim-active { background-position: 0 -1672px; }
.pack-sprite.all-default { background-position: 0 -1725px; height: 42px; }
.pack-sprite.adventure-active { background-position: 0 -1777px; }
.pack-sprite.honey-moon-active { background-position: 0 -1830px; }
.pack-sprite.personalized { background-position: 0 -1883px; height: 42px; }
.pack-sprite.government-approved-active { background-position: 0 -1935px; }
.pack-sprite.round-the-clock { background-position: 0 -1988px; height: 42px; }
.pack-sprite.sightseeing-included { background-position: 0 -2040px; width: 16px; height: 16px; }
.pack-sprite.stay-included { background-position: 0 -2066px; width: 16px; height: 16px; }
.pack-sprite.mobile-ticket { background-position: 0 -2092px; width: 16px; height: 16px; }
.pack-sprite.meals { background-position: 0 -2118px; width: 16px; height: 16px; }
.pack-sprite.bolt { background-position: 0 -2144px; width: 16px; height: 16px; }
.pack-sprite.local-taxi { background-position: 0 -2170px; width: 16px; height: 16px; }
/*--- end packages sprite style ---*/

/*--- transfer sprite style ---*/
.trans-sprite { background: url('../images/trans-sprite.webp') no-repeat top left; width: 42px; height: 42px; display: inline-block;  }
.trans-sprite.choose-your-car-default { background-position: 0 0; width: 116px; height: 116px; }
.trans-sprite.you-all-set-default { background-position: 0 -126px; width: 116px; height: 116px; }
.trans-sprite.you-all-set-active { background-position: 0 -252px; width: 116px; height: 116px; }
.trans-sprite.complete-payment-active { background-position: 0 -378px; width: 116px; height: 116px; }
.trans-sprite.choose-your-car-active { background-position: 0 -504px; width: 116px; height: 116px; }
.trans-sprite.select-date-location-active { background-position: 0 -630px; width: 116px; height: 116px; }
.trans-sprite.complete-payment-default { background-position: 0 -756px; width: 116px; height: 116px; }
.trans-sprite.select-date-location-default { background-position: 0 -882px; width: 116px; height: 116px; }
.trans-sprite.free-wifi { background-position: 0 -1008px; width: 86px; height: 86px; }
.trans-sprite.verified-car-brand { background-position: 0 -1104px; width: 86px; height: 86px; }
.trans-sprite.unlimited-kms { background-position: 0 -1200px; width: 87px; height: 86px; }
.trans-sprite.zero-hidden-charges { background-position: 0 -1296px; width: 86px; height: 86px; }
.trans-sprite.best-price-guaranteed { background-position: 0 -1392px; width: 86px; height: 86px; }
.trans-sprite.vast-inventory { background-position: 0 -1488px; width: 86px; height: 86px; }
.trans-sprite.safety { background-position: 0 -1584px; width: 86px; height: 86px; }
.trans-sprite.customer-support { background-position: 0 -1680px; width: 86px; height: 86px; }
.trans-sprite.professional-driver { background-position: 0 -1776px; width: 86px; height: 86px; }
.trans-sprite.tvotourism-verify { background-position: 0 -1872px; width: 86px; height: 86px; }
.trans-sprite.tvotourism-secured { background-position: 0 -1968px; width: 86px; height: 86px; }
.trans-sprite.SUV-active { background-position: 0 -2064px; }
.trans-sprite.sedan-active { background-position: 0 -2116px; }
.trans-sprite.coupe-active { background-position: 0 -2168px; }
.trans-sprite.coach-default { background-position: 0 -2220px; }
.trans-sprite.premium-suv-active { background-position: 0 -2272px; }
.trans-sprite.bus-default { background-position: 0 -2324px; }
.trans-sprite.premium-sedan-active { background-position: 0 -2376px; }
.trans-sprite.mini-van-default { background-position: 0 -2428px; }
.trans-sprite.express-shuttle-default { background-position: 0 -2480px; }
.trans-sprite.coach-active { background-position: 0 -2532px; }
.trans-sprite.hatchback-default { background-position: 0 -2584px; }
.trans-sprite.mini-van-active { background-position: 0 -2636px; }
.trans-sprite.sprinter-default { background-position: 0 -2688px; }
.trans-sprite.bus-active { background-position: 0 -2740px; }
.trans-sprite.limo-default { background-position: 0 -2792px; }
.trans-sprite.sport-car-default { background-position: 0 -2844px; }
.trans-sprite.premium-suv-default { background-position: 0 -2896px; }
.trans-sprite.coupe-default { background-position: 0 -2948px; }
.trans-sprite.SUV-default { background-position: 0 -3000px; }
.trans-sprite.sedan-default { background-position: 0 -3052px; }
.trans-sprite.premium-sedan-default { background-position: 0 -3104px; }
.trans-sprite.express-shuttle-active { background-position: 0 -3156px; }
.trans-sprite.sport-car-active { background-position: 0 -3208px; }
.trans-sprite.sprinter-active { background-position: 0 -3260px; }
.trans-sprite.limo-active { background-position: 0 -3312px; }
.trans-sprite.hatchback-active { background-position: 0 -3364px; }
.trans-sprite.airport-transfer-active { background-position: 0 -3416px; width: 24px; height: 24px; }
.trans-sprite.heart-rounded { background-position: 0 -3450px; width: 16px; height: 16px; }
.trans-sprite.out-station-one-way-active { background-position: 0 -3476px; width: 24px; height: 24px; }
.trans-sprite.help-icon { background-position: 0 -3510px; width: 16px; height: 16px; }
.trans-sprite.secured { background-position: 0 -3536px; width: 16px; height: 16px; }
.trans-sprite.passanger { background-position: 0 -3562px; width: 24px; height: 24px; }
.trans-sprite.check { background-position: 0 -3596px; width: 16px; height: 16px; }
.trans-sprite.luggage { background-position: 0 -3622px; width: 24px; height: 24px; }
.trans-sprite.manual-gear-shift { background-position: 0 -3656px; width: 24px; height: 24px; }
.trans-sprite.speedometer { background-position: 0 -3690px; width: 24px; height: 24px; }
.trans-sprite.fuel { background-position: 0 -3724px; width: 24px; height: 24px; }
.trans-sprite.out-station-round-trip-default { background-position: 0 -3758px; width: 24px; height: 24px; }
.trans-sprite.out-station-one-way-default { background-position: 0 -3792px; width: 24px; height: 24px; }
.trans-sprite.out-station-round-trip-active { background-position: 0 -3826px; width: 24px; height: 24px; }
.trans-sprite.local-hourly-rental-default { background-position: 0 -3860px; width: 24px; height: 24px; }
.trans-sprite.airport-transfer-default { background-position: 0 -3894px; width: 24px; height: 24px; }
.trans-sprite.local-hourly-rental-active { background-position: 0 -3928px; width: 24px; height: 24px; }
.trans-sprite.free-cancellation { background-position: 0 -3962px; width: 86px; height: 86px; }
.trans-sprite.progress-choose-car { background-position: 0 -4058px; }
.trans-sprite.progress-get-car { background-position: 0 -4110px; }
.trans-sprite.progress-pay { background-position: 0 -4162px; }
/*--- end transfer sprite style ---*/
/*--- visa sprite style ---*/
.vs-sprite { background: url('../images/visa-sprite.webp') no-repeat top left; width: 42px; height: 42px; display: inline-block;  }
.vs-sprite.get-your-dubai-visa-active { background-position: 0 0; width: 116px; height: 116px; }
.vs-sprite.verify-the-details-default { background-position: 0 -126px; width: 116px; height: 116px; }
.vs-sprite.fill-out-the-dubai-visa-application-default { background-position: 0 -252px; width: 116px; height: 116px; }
.vs-sprite.verify-the-details-active { background-position: 0 -378px; width: 116px; height: 116px; }
.vs-sprite.pay-the-visa-application-fee-default { background-position: 0 -504px; width: 116px; height: 116px; }
.vs-sprite.get-your-dubai-visa-default { background-position: 0 -630px; width: 116px; height: 116px; }
.vs-sprite.business-visa { background-position: 0 -756px; width: 86px; height: 86px; }
.vs-sprite.visa-on-arrival { background-position: 0 -852px; width: 86px; height: 86px; }
.vs-sprite.transit-visa { background-position: 0 -948px; width: 86px; height: 86px; }
.vs-sprite.expert-visa-guidance { background-position: 0 -1044px; width: 86px; height: 86px; }
.vs-sprite.low-rejection-rate { background-position: 0 -1140px; width: 86px; height: 86px; }
.vs-sprite.tourist-visa { background-position: 0 -1236px; width: 86px; height: 86px; }
.vs-sprite.government-certified { background-position: 0 -1332px; width: 86px; height: 86px; }
.vs-sprite.easy-simplified-application { background-position: 0 -1428px; width: 86px; height: 86px; }
.vs-sprite.quick-approval-process { background-position: 0 -1524px; width: 87px; height: 86px; }
.vs-sprite.photo-icon { background-position: 0 -1620px; width: 81px; height: 81px; }
.vs-sprite.document-icon { background-position: 0 -1711px; width: 81px; height: 81px; }
.vs-sprite.customer-support { background-position: 0 -1802px; width: 87px; height: 86px; }
.vs-sprite.passport-icon { background-position: 0 -1898px; width: 81px; height: 81px; }
.vs-sprite.validity { background-position: 0 -1989px; width: 24px; height: 24px; }
.vs-sprite.process-time { background-position: 0 -2023px; width: 24px; height: 24px; }
.vs-sprite.visa-validity { background-position: 0 -2057px; width: 16px; height: 16px; }
.vs-sprite.stay-validity { background-position: 0 -2083px; width: 16px; height: 16px; }
.vs-sprite.process-days { background-position: 0 -2109px; width: 16px; height: 16px; }
.vs-sprite.round-the-clock-customer-support { background-position: 0 -2135px; }
.vs-sprite.IATA-certified { background-position: 0 -2187px; }
.vs-sprite.dedicated-visa-experts { background-position: 0 -2239px; }
.vs-sprite.government-authorized-agency { background-position: 0 -2291px; }
.vs-sprite.head-icon { background-position: 0 -2343px; }
.vs-sprite.progress-payment { background-position: 0 -2395px; }
.vs-sprite.progress-choose-service-default { background-position: 0 -2447px; }
.vs-sprite.progress-personal-details-active { background-position: 0 -2499px; }
.vs-sprite.progress-personal-details { background-position: 0 -2551px; }
.vs-sprite.progress-payment-active { background-position: 0 -2603px; }
.vs-sprite.progress-choose-service-active { background-position: 0 -2655px; }
.vs-sprite.multiple-payment-options { background-position: 0 -2707px; }
.vs-sprite.fill-out-the-dubai-visa-application-active { background-position: 0 -2759px; width: 116px; height: 116px; }
.vs-sprite.pay-the-visa-application-fee-active { background-position: 0 -2885px; width: 116px; height: 116px; }
/*-- end visa  sprite style---*/


/*about us page css start*/
.about-hero {
    background: var(--primary-color);
    position: relative;
    z-index: 1;
}

.about-hero:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: url("../images/footer-bg.svg") no-repeat bottom right/contain, url("../images/about-hero-top-bg.webp") no-repeat top left/120px;
    z-index: -1;
}
.about-hero h1{
    font-size: 18px;
    font-weight: 700;
}
.about-hero h2{
    font-size: 36px;
    font-weight: 700;
}
.about-mission h2,.about-vision h2{
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}
.about-mission p, .about-vision p{
    color: #616161;
}

.about-service-card {
    border: 1px solid #E5E5E5;
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.10);
    background: #fff url("../images/about-service-card-bg.webp") no-repeat top right/100px;
}
.about-qualities p{
    color: #616161;
}


/*about us page css end*/
/*faq page css start*/
.faq-hero img {
    height: auto;
    max-width: 400px;
}

.faq-section .category-tabs {
    border-bottom: 2px solid var(--primary-color);
    width: fit-content;
}

.faq-section .category-tabs .nav-pills .nav-link {
    background: transparent;
    border-radius: 0;
    color: #8a8a8a;
    font-weight: 600;
}

.faq-section .category-tabs .nav-pills .nav-link.active {
    border-bottom: 2px solid #e8e8e8;
    color: var(--primary-color);
}

.faq-container .accordion-button::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>') no-repeat center/ cover;
}

.faq-container .accordion-button:not(.collapsed)::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-x" viewBox="0 0 16 16"><path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"/></svg>') no-repeat center/ cover;
}

.faq-container .accordion-item {
    border: none;
    border-radius: 0;
    background: transparent;
}

.faq-container .accordion-item .accordion-button {
    border-bottom: 2px solid #e8e8e8;
}


.faq-container .accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top: 2px solid #e8e8e8;
}

.faq-container .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    border-color: #e8e8e8;
}

.faq-container .accordion-body {
    border-bottom: 2px solid #e8e8e8;
}

.faq-container .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

/*faq page css end*/
/*contact form page css start*/
.contact-hero--bg{
    background: url("../images/contact-hero-bg.webp") no-repeat center/cover;
    width: 100%;
    min-height: 230px;
}
.contact-hero{
    background: #fdfdfd;
}

.contact-form{
    border-radius: 22px;
    background: #474747;
    padding: 24px;
    position: relative;
}
.contact-form .form-label{
    color: var(--white);
}
.contact-form .text-error-message{
    color: #ff9797 !important;
    font-size: 13px;
    font-weight: 300;
}
.contact-form h2{
    background: linear-gradient(278deg, #2cc58a 0%, #7FD8B1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.contact-form:before{
    content: "";
    position: absolute;
    right: 0;
    top: -14px;
    background: url("../images/contact-whatsapp-bg.webp") no-repeat top center/auto;
    width: 420px;
    height: 83px;
}
.contact-form .form-input input {
    padding: 10px;
    background: transparent;
    color: white;
    border-color: #717171;
    margin-bottom: 8px;
    font-weight: 300;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}
.contact-form .form-input input::placeholder,
.contact-form .form-input .select2-container .select2-selection--single::placeholder,
.contact-form textarea::placeholder{
    font-weight: 100;
}

.contact-form .form-input .select2-container .select2-selection--single {
    height: 45px;
    padding: 8px 0;
    background: transparent;
    color: white;
    border-color: #717171;
    margin-bottom: 8px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.contact-form .form-input .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white !important;
}

.contact-form .form-input .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
}

.contact-form .form-input .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: white transparent;
}

.contact-form textarea {
    height: 100px !important;
    background: transparent;
    color: white;
    font-weight: 300;
    border-color: #717171;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.contact-form textarea::placeholder,
.contact-form .form-input input::placeholder {
    color: #dedede;
}

.contact-form .form-control:focus {
    background: transparent;
    color: white;
    box-shadow: none;
}

.contact-form .contact-btn {
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%) !important;
    border-radius: 8px;
    color: var(--white) !important;
    border: 1px solid var(--primary-color);
    font-weight: 400;
    transition: box-shadow 0.4s ease;
    padding: 12px 40px;
    margin:20px auto;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.12);
}
.contact-form .contact-btn:hover,
.contact-form .contact-btn:focus{
    background: linear-gradient(98deg, #086340 0%, #0d8751 100%) !important;
    box-shadow: 10px 10px 40px 0 rgba(0, 0, 0, 0.50);
}
.contact-location iframe {
    border-radius: 4px;
    border: 2px solid #D6D6D6;
    box-shadow: 2px 4px 18px 0 rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 250px;
    margin: 24px 0 0 0;
}
.whatsapp-support{
    border-radius: 100px;
    background: linear-gradient(180deg, #4AC14B 0%, #06853A 100%);;
    box-shadow: 4px 4px 18px 0 rgba(0, 0, 0, 0.25);
    padding: 8px 24px 8px 8px;
    position: absolute;
    top: 4px;
    right: 112px;
}
.whatsapp-icons{
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}
.whatsapp-icons i{
    background: linear-gradient(180deg, #4AC14B 0%, #06853A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 26px;
    height: 26px;
    font-size: 14px;
}

.contact-icon {
    background: var(--white);
    height: 45px;
    width: 45px;
    box-shadow: 4px 4px 22px 0 rgba(0, 0, 0, 0.08);
}
.contact-icon .bi::before, [class*=" bi-"]::before{
    font-weight: 600 !important;
    letter-spacing: 1px;

}
.contact-icon i{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-light-grey{
    color: #6c6b6b;
    font-weight: 300;
}
.contact-info{
    color: #494949;
    font-weight: 300;
}
@media screen and (max-width: 768px) {
    .contact-form:before{
        content: none;
    }
    .whatsapp-support{
        position: relative;
        right: 0;
        top: 0;
        margin-bottom: 20px;
    }

}


/*contact form page css end*/

/*refund , privacy , term page css start*/
.privacy-hero:before {
    height: 500px;
    width: 500px;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: url("../images/privacy-policy.webp") no-repeat center/contain;
}

.terms-hero:before {
    background: url("../images/terms-condition.webp") no-repeat center/contain;
}

.refund-hero:before {
    background: url("../images/refund-policy.webp") no-repeat center/contain;
}

.dynamic-content h1,
.dynamic-content h2,
.dynamic-content h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 12px 0;
    text-transform: capitalize;
    color: #353535;
}
.dynamic-content h3{
    font-size: 1.2rem;
    margin: 10px 0;
}
.dynamic-content h4,
.dynamic-content h5,
.dynamic-content h6 {
    font-size: 1rem;
    font-weight: 400;
    margin: 10px 0;
    color: #353535;
}

.dynamic-content img {
    margin: 16px 0;
    width: 100%;
    height: auto;
}

.dynamic-content p,
.dynamic-content ul li,
.dynamic-content ol li {
    margin: 6px 0;
    color: #353535;
    font-weight: 300;
}

.dynamic-content a {
    color: var(--primary-color);
}

.btn-block {
    background: var(--primary-color) !important;
    color: white !important;
    border: 0;
    font-size: 16px;
    width: auto !important;
    padding: 12px 50px;
    margin: 10px auto !important;
    border-radius: 30px !important;
}

/*refund , privacy , term page css end*/
/*partner page css start*/
.partner-hero {
    background: url("../images/partner-hero-bg.webp") no-repeat left top/auto;
    z-index: 1;
}

.partner-hero:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    bottom: 0;
    background: url("../images/partner-hero-img.webp") no-repeat bottom right/contain;
    z-index: -1;
}

@media (max-width: 991.5px) {
    .partner-hero:before {
        display: none;
    }
}

.partner-agency-card {
    border-radius: 40px;
    border: 1px solid var(--primary-color);
    background: #FFF;
    box-shadow: 22px 22px 80px 0 rgba(0, 0, 0, 0.02), 12px 12px 45px 0 rgba(0, 0, 0, 0.04);
}

.partner-agency-card:hover,.partner-agency-card:hover p {
    background: var(--primary-color);
    color: white
}

.partner-agency-card .icon-not-active,
.partner-agency-card:hover .icon-active {
    display: block !important;
}

.partner-agency-card:hover .icon-not-active,
.partner-agency-card .icon-active {
    display: none !important;
}

.partner-become:before {
    position: absolute;
    content: "";
    top: 32%;
    left: 50%;
    height: 4px;
    width: 86%;
    border: 1px solid var(--primary-color);
    background: linear-gradient(258deg, #83FFBB 0%, #92D1FF 100%);
    z-index: -1;
    transform: translateX(-50%);
}

.partner-become-number {
    height: 80px;
    width: 80px;
    border: 3px solid var(--primary-color);
}

.partner-become-card {
    border-radius: 22px;
    border: 1px solid var(--primary-color);
    background: #FFF;
    max-width: 280px;
    min-height: 290px;
}

/*partner page css end*/

/*payment pages css start*/
.payment-receipt {
    background: linear-gradient(106deg, #FFF 0.67%, #FFF8ED 44.29%, #FFF 98.84%);
    --mask: radial-gradient(22px at right, #0000 calc(100% - 1px), #000) 50%/100% 40.7px;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.border-dashed {
    border-right: 2px dashed var(--bs-border-color) !important;
    position: relative;
}

.border-dashed:before {
    content: "";
    position: absolute;
    height: 30px;
    width: 60px;
    background: rgba(244, 244, 244);
    top: -28px;
    right: -30px;
    border-radius: 0 0 50px 50px;

}

.border-dashed:after {
    content: "";
    position: absolute;
    height: 30px;
    width: 60px;
    background: rgba(244, 244, 244);
    bottom: -28px;
    right: -30px;
    border-radius: 50px 50px 0 0;
}

@media (max-width: 767.5px) {
    .border-dashed {
        border-right: 0;
        border-bottom: 2px dashed var(--bs-border-color);
    }

    .border-dashed:after {
        content: "";
        position: absolute;
        width: 30px;
        height: 60px;
        background: rgba(244, 244, 244);
        top: auto;
        right: auto;
        left: 0;
        bottom: -30px;
        border-radius: 0 50px 50px 0;
    }

    .border-dashed:before {
        content: "";
        position: absolute;
        width: 30px;
        height: 60px;
        background: rgba(244, 244, 244);
        bottom: -24px;
        right: 0;
        top: auto;
        border-radius: 50px 0 0 50px;
    }

    .payment-receipt {
        --mask: radial-gradient(22px at bottom, #0000 calc(100% - 1px), #000) 50%/40.7px 100%;
        -webkit-mask: var(--mask);
        mask: var(--mask);
    }
}

/*payment pages css end*/

/*document upload page css start*/
.applicant-details {
    box-shadow: 1px 1px 16px 0 rgba(0, 0, 0, 0.06);
}

.document-upload-note {
    background:  linear-gradient(90deg, #F1FCF6 0%, rgba(255, 255, 255, 0.50) 26.2%, rgba(241, 255, 247, 0.80) 100%);;
}

.application-track-details{
    border: 1px solid  #AC735F50;
}
/*document upload page css end*/
/*--article & details page style--*/
.article-card,.latest-article-card,.hero-article-de-card{
    border: 1px solid #f1f1f1;
    box-shadow: rgba(50, 50, 93, 0.05) 0 6px 12px -2px, rgba(0, 0, 0, 0.3) 0 3px 7px -3px;
    border-radius: 8px;
}

.article-card:hover,.latest-article-card:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0 6px 12px -2px, rgba(0, 0, 0, 0.3) 0 3px 7px -3px;
}
.article-card .card-heading{
    min-height: 40px;
}
.article-card .card-image{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.hero-article-bg:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/hero-blog-bg.webp") no-repeat top/cover;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}
.article-writer{
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
}
.hero-article-de-card{
    height: 400px;
}
.hero-article-de-card:before{
    content: "";
    position: absolute;
    bottom: 0;
    background: linear-gradient(186deg, rgba(0, 0, 0, 0.00) 49.62%, rgba(0, 0, 0, 0.80) 95.07%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.hero-article-de-card p{
    font-size: 12px;
    font-weight: 300;
}
.latest-article-card-image{
    height: 200px;
    overflow: hidden;
}
.article-comment-form{
    border-top: 1px solid #ece8e8;
}
.article-comment-form input, .article-comment-form textarea{
    border-radius: 8px;
    border: 1px solid #9D9D9D;
    font-size: 13px;
    padding: 12px;
}
.article-comment-form input::placeholder,.article-comment-form textarea::placeholder{
    font-size: 13px;
    font-weight: 300;
    color: #616161;
}
@media screen and (max-width: 768px) {
    .hero-article-de-card img{
        height: 350px;
    }
}

/*--track status page style--*/
.track-hero{
    background: url("../images/track-status.webp") no-repeat top right/auto;
}

.ts-form{
    margin: 30px 0px;
}
.ts-form input{
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid rgba(225, 225, 227, 0.50);
    background: #FCFCFC;
    font-size: 13px;
    font-weight: 400;
}
.ts-form .btn-search{
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0px;
    outline: none;
}

.ts-note{
    border-radius: 15px;
    border: 1px solid #E7E7E7;
    background: #FFEDEF;
    padding: 16px;
    margin: 30px 0px;
}
.ts-note ul li{
    font-size: 13px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 8px 0px;
}

.ts-card{
    display: inline-flex;
    border: 1px solid #e4e4e4;
    padding: 6px 20px;
    border-radius: 8px;
    max-width: 360px;
    width: 100%;
}
.ts-card p{
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0px;
}
.ts-card span{
    font-size: 13px;
    font-weight: 400;
}
.ts-body-visa,.ts-body-addon{
    border-bottom: 2px solid #e4e4e4;
    margin: 10px 0px;
    box-shadow: 0px 2px 0px 1px #e4e4e42e;
    padding: 10px;
    border-radius: 10px;
    background: var(--white);
}
.ts-body-visa h2,.ts-body-addon h2{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.ts-body-box_rlt-count{
    width: 100px;
}
.ts-body-box_rlt-count p{
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0px;
}

.ts-body-box{
    display: flex;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    background: linear-gradient(45deg, #fff2e19e, #f8fafc);
}
.ts-body-box_left{
    width: 20%;
}
.btn-extension{
    background-color: #dc3545;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    margin: 10px 0px;
    border-radius: 4px;
}
.ts-body-box_left .ts-body-box_left_profile img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-right: 10px;
}
.ts-body-box_left_profile p{
    font-size: 14px;
    font-weight: 500;
    margin: 4px 0px;
}
.ts-body-box_left_profile span{
    font-size: 13px;
    font-weight: 400;
    margin: 4px 0px;
}
.ts-body-box_right{
    width: 80%;
}

.ts-body-box_rlt_top {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
}

.ts-body-box_rlt p{
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0px;
}
.ts-body-box_rlt span{
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
}
.ts-header h2{
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0px;
}
.ts-body-addon .ts-body-box_rlt_top{
    margin-bottom: 10px ;
}
.ts-body-box_left_profile{
    display: flex;
    align-items: center;
    justify-content: center;
}
.ts-body-box_rlt .Active, .ts-body-box_rlt .Completed{
    padding: 4px 10px 4px 10px;
    color: var(--white);
    background: rgba(72, 187, 120, 1);
    border-radius: 20px;
}

.ts-body-box_rlt .Block,.ts-card-right .UnPaid{
    padding: 4px 10px 4px 10px;
    color: var(--white);
    background: rgba(229, 62, 62, 1);
    border-radius: 20px;
}

.ts-body-box_rlt .Pending, .ts-body-box_rlt .Draft{
    padding: 4px 10px 4px 10px;
    color: var(--white);
    background: rgba(243, 156, 18, 1);
    border-radius: 20px;
}
.ts-body-box_rlt .Partial-Submitted{
    padding: 4px 10px 4px 10px;
    background: rgba(243, 18, 179, 1);
    color: var(--white);
    border-radius: 20px;
}
.ts-body-box_rlt .Submitted,.ts-card-right .Partial-Paid{
    padding: 4px 10px 4px 10px;
    background: rgba(22, 71, 177, 1);
    color: var(--white);
    border-radius: 20px;
}
.ts-body-box_rlt .Verified, .ts-card-right .Paid{
    padding: 4px 10px 4px 10px;
    background: rgba(72, 187, 120, 1);
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Under-Review{
    background-color:#5A4FCF;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Under-Embassy{
    background-color:#B284BE;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Trash{
    background-color:#1B1B1B;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Cancelled{
    background-color:#1CA9C9;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .On-Hold{
    background-color:#E3F988;
    padding: 4px 10px 4px 10px;
    color: var(--black);
    border-radius: 20px;
}
.ts-status-visa .Imm-Sent{
    background-color:#EEDC82;
    padding: 4px 10px 4px 10px;
    color: var(--black);
    border-radius: 20px;
}
.ts-status-visa .Visit-Required{
    background-color:#FF4F00;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Black-Listed{
    background-color:#A0785A;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Rejected{
    background-color:#4A412A;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Approved{
    background-color:#03C03C;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Ready-To-Dispatch{
    background-color:#00563B;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Dispatched{
    background-color:#568203;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Over-Stay{
    background-color:#B7410E;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Absconding{
    background-color:#905D5D;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Exit{
    background-color:#C40234;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Blocked{
    background-color:#ED1B24;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .In-Process{
    background-color:#90EE90;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px
}
.ts-status-visa .Booked{
    background-color:#AFDBF5;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px
}
.ts-status-visa .Scheduled{
    background-color:#C19A6B;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px
}

.ts-status-visa .Closed{
    background-color:#800000;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px
}

.ts-btn-pay{
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 36px;
    border-radius: 4px;
    margin: 6px 0;
    border: 1px solid var(--primary-color);
    display: inline-block;
}
.btn-pay-upload{
    font-size: 13px;
    font-weight: 500;
    color: #1d8fb3;
    background-color: rgba(29, 143, 179, 0.2);
    padding: 4px 16px;
    display: inline-block;
    border-radius: 20px;
}
.ts-note-pay{
    background-color: rgb(189 58 58 / 12%);
    border: 2px solid #bd3a3a;
    padding: 8px;
    border-radius: 5px;
    display: inline-block;
    color: #bd3a3a;
    font-size: 14px;
    font-weight: 600;
    margin: 0px 15px 0px 0px;
}

@media screen and (max-width: 992px) {
    .ts-body-box{
        display: block;
    }
    .ts-body-box_left,.ts-body-box_right{
        width: 100%;
        margin: 10px 0px;
    }
    .ts-body-box_left_profile{
        justify-content: start;
    }
    .ts-body-visa,.ts-body-addon{
        overflow: auto;
    }
    /*.ts-body-box_rlt_top{*/
    /*    display: flex;*/
    /*    flex-wrap: nowrap;*/
    /*    width: max-content;*/
    /*}*/
    .ts-body-box_rlt_top .ts-body-box_rlt{
        margin-right: 15px;
    }
}

@media screen and (max-width: 768px) {
    .ts-body-box_rlt_top{
        flex-wrap: wrap;
        width: auto;
    }
    .ts-body-box_rlt_top .ts-body-box_rlt{
        margin-bottom: 14px;
        width: 100% !important;
    }
}

/*--end track status page style--*/
/*--- Document pending  style----*/
.doc-pending__wrapper{
    padding: 20px 0px;
}
.doc-pending__header h1{
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0px;
}
.doc-pending__form{
    margin: 30px 0px;
}
.doc-pending__body__box{
    padding: 15px;
    margin: 10px 0px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 0px 1px #E7E7E7 inset;
}
.doc-pending__body__box h5{
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0px;
}
.doc-pending__body__box h5 span{
    float: right;
}

.doc-pending__remark{
    padding: 15px;
    margin: 10px 0px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 0px 1px #E7E7E7 inset;
}
.doc-pending__remark h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.doc-pending__remark__body{
    color: var(--primary-color);
    padding: 0px 20px;
}
.doc-pending__body .document-box{
    border: 1px solid #e1e1e1;
    border-radius: 10px ;
    padding: 8px 0px;
    margin: 10px 0px;
    text-align: center;
}

.doc-pending__form .document-box img{
    padding-bottom: 0;
    margin: 0 auto;
}
.doc-pending__body .hint-form{
    font-size: 12px;
    font-weight: 500;
    color: #cc0303;
}
.doc-pending__body .application-form_info{
    font-size: 12px;
    font-weight: 400;
    margin: 4px 0px;
    text-transform: capitalize;
}
.doc-pending__body .passport_head_point{
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0px;
    text-transform: capitalize;
}
.doc-pending__body .btn-upload{
    font-size: 14px;
    font-weight: 500;
    padding: 10px 30px;
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
}

.doc-pending__form input{
    display: none;
}
.document__view{
    display: none;
}
#OpenImgUpload{
    font-size: 13px;
    font-weight: 400;
    border: 0px;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    margin-top: 20px;
}
/*--- end Document pending style----*/
/*-- search form--*/
.form-search-field{
    position: relative;
    min-height: 80px;
}
.search-container {
    position: relative;
    cursor: pointer !important;
}
.search-container label,.form-field-point,.form-field-point label{
    cursor: pointer;
}

#fromInput, #toInput,.input-city-field{
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: none;
    position: absolute;
    top: 28px;
}
.input-city-field:focus-visible{
    outline: 1px solid rgba(9, 99, 98, 0.42) !important;
}

.suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 99;
    display: none;
    top: 69px;
    width: 100%;
}

.suggestions.above {
    top: auto;
    border-radius: 10px 10px 0 0;
}

.suggestion {
    padding: 10px 20px;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
}

.suggestion:hover {
    background-color: #eef6ff;
}

.selected-box {
    display: block;
    cursor: pointer;
}

.city-name,.country-name,.yacht-name{
    font-size: 16px;
    font-weight: 600;
    color: #212529bf;
}
.suggestion .city-name, .suggestion .country-name,.suggestion .yacht-name{
    font-size: 14px;
}

.details {
    font-size: 12px;
    font-weight: 300;
    color: #555;
    margin-top: 2px;
}

.swap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: auto;
    cursor: pointer;
    position: absolute;
    top: 30%;
    right: -18px;
    z-index: 99999;
}
.country-data{
    display: none;
}
/*--end search form --*/
/*sprite images css for about and b2b page start*/
.scale-down {
    scale: 0.8;
}

.sprite-inline { background: url('../images/other-sprite.webp') no-repeat top left; width: 86px; height: 86px; display: inline-block;  }
.sprite-inline.activities { background-position: 0 0; }
.sprite-inline.dynamic-flexible { background-position: 0 -96px; }
.sprite-inline.transfer { background-position: 0 -192px; }
.sprite-inline.government-certified { background-position: 0 -288px; }
.sprite-inline.user-friendly-interfaces { background-position: 0 -384px; width: 116px; height: 116px; }
.sprite-inline.packages { background-position: 0 -510px; }
.sprite-inline.customer-focused { background-position: 0 -606px; }
.sprite-inline.policy-driven-white { background-position: 0 -702px; width: 116px; height: 116px; }
.sprite-inline.expert-booking-default { background-position: 0 -828px; width: 116px; height: 116px; }
.sprite-inline.streamined-request-white { background-position: 0 -954px; width: 116px; height: 116px; }
.sprite-inline.expert-booking-white { background-position: 0 -1080px; width: 116px; height: 116px; }
.sprite-inline.user-friendly-interfaces-white { background-position: 0 -1206px; width: 116px; height: 116px; }
.sprite-inline.top-accommodations { background-position: 0 -1332px; }
.sprite-inline.exclusive-corporate { background-position: 0 -1428px; }
.sprite-inline.customized-business { background-position: 0 -1524px; }
.sprite-inline.dedicated-assistance { background-position: 0 -1620px; }
.sprite-inline.safe-transportation { background-position: 0 -1716px; }
.sprite-inline.effortless-control { background-position: 0 -1812px; }
.sprite-inline.streamined-request-default { background-position: 0 -1908px; width: 116px; height: 116px; }
.sprite-inline.efficient-mangement { background-position: 0 -2034px; }
.sprite-inline.comprehensive-reports { background-position: 0 -2130px; }
.sprite-inline.policy-driven-default { background-position: 0 -2226px; width: 116px; height: 116px; }
.sprite-inline.customer-support { background-position: 0 -2352px; }
.sprite-inline.visa { background-position: 0 -2448px; }
.sprite-inline.earnings-visa { background-position: 0 -2544px; width: 42px; height: 42px; }
.sprite-inline.dedicated-support { background-position: 0 -2596px; width: 42px; height: 42px; }
.sprite-inline.agency-partnership { background-position: 0 -2648px; width: 42px; height: 42px; }
.sprite-inline.complete-profile { background-position: 0 -2700px; }
.sprite-inline.verify-email { background-position: 0 -2796px; }
.sprite-inline.enter-email { background-position: 0 -2892px; }

/*sprite images css for about and b2b page end*/

/*-- yacht sprite css --*/
.yacht-sprite { background: url('../images/yacht-sprite.webp') no-repeat top left; width: 30px; height: 30px; display: flex  }
.yacht-sprite.swimming-pool { background-position: 0 0; }
.yacht-sprite.beauty { background-position: 0 -40px; }
.yacht-sprite.wifi { background-position: 0 -80px; }
.yacht-sprite.massage-room { background-position: 0 -120px; }
.yacht-sprite.gym { background-position: 0 -160px; }
.yacht-sprite.sunpads { background-position: 0 -200px; }
.yacht-sprite.commercial-helipad { background-position: 0 -240px; }
.yacht-sprite.underwater-lights { background-position: 0 -280px; }
.yacht-sprite.air-conditioning { background-position: 0 -320px; }
.yacht-sprite.sauna { background-position: 0 -360px; }
.yacht-sprite.satcom { background-position: 0 -400px; }
.yacht-sprite.helipad { background-position: 0 -440px; }
.yacht-sprite.tender-garage { background-position: 0 -480px; }
.yacht-sprite.steam-room { background-position: 0 -520px; }
.yacht-sprite.spa { background-position: 0 -560px; }
.yacht-sprite.bbq { background-position: 0 -600px; }
.yacht-sprite.stabilisers-underway { background-position: 0 -640px; }
.yacht-sprite.jacuzzi { background-position: 0 -680px; }
.yacht-sprite.yt-length { background-position: 0 -720px; width: 34px; height: 35px; }
.yacht-sprite.stabilizers { background-position: 0 -765px; }
.yacht-sprite.yt-deck { background-position: 0 -805px; width: 34px; height: 35px; }
.yacht-sprite.yt-crew { background-position: 0 -850px; width: 34px; height: 35px; }
.yacht-sprite.yt-cruise-speed { background-position: 0 -895px; width: 34px; height: 35px; }
.yacht-sprite.yt-cabin { background-position: 0 -940px; width: 35px; height: 35px; }
.yacht-sprite.support-icon-p { background-position: 0 -985px; width: 24px; height: 25px; }
.yacht-sprite.tvo-trust-icon-p { background-position: 0 -1020px; width: 24px; height: 25px; }
.yacht-sprite.luxury-yacht { background-position: 0 -1055px; width: 42px; height: 43px; }
.yacht-sprite.customer-support { background-position: 0 -1108px; width: 42px; height: 43px; }
.yacht-sprite.professional-crew { background-position: 0 -1161px; width: 42px; height: 43px; }
.yacht-sprite.yacht-largest-collection { background-position: 0 -1214px; width: 42px; height: 43px; }
.yacht-sprite.support-icon { background-position: 0 -1267px; width: 24px; height: 24px; }
.yacht-sprite.tvo-trust-icon { background-position: 0 -1301px; width: 24px; height: 24px; }
.yacht-sprite.yt-guest { background-position: 0 -1335px; width: 34px; height: 35px; }
.yacht-sprite.length-icon { background-position: 0 -1380px; width: 35px; height: 34px; }
.yacht-sprite.cabin-icon { background-position: 0 -1424px; width: 35px; height: 34px; }
.yacht-sprite.cruise-speed-icon { background-position: 0 -1468px; width: 35px; height: 34px; }
.yacht-sprite.snorkelling { background-position: 0 -1512px; height: 31px; }
.yacht-sprite.crew-icon { background-position: 0 -1553px; width: 35px; height: 34px; }
.yacht-sprite.scuba-diving-equipment { background-position: 0 -1597px; height: 31px; }
.yacht-sprite.inflatable-water-toy { background-position: 0 -1638px; height: 31px; }
.yacht-sprite.floating-pool { background-position: 0 -1679px; height: 31px; }
.yacht-sprite.flyboard { background-position: 0 -1720px; }
.yacht-sprite.towable-toys { background-position: 0 -1760px; height: 31px; }
.yacht-sprite.water-ski { background-position: 0 -1801px; }
.yacht-sprite.wakesurf { background-position: 0 -1841px; height: 31px; }
.yacht-sprite.sailing-boats { background-position: 0 -1882px; height: 31px; }
.yacht-sprite.paddleboard { background-position: 0 -1923px; height: 31px; }
.yacht-sprite.kite-surfer { background-position: 0 -1964px; height: 31px; }
.yacht-sprite.seabobs { background-position: 0 -2005px; }
.yacht-sprite.kayaks { background-position: 0 -2045px; height: 31px; }
.yacht-sprite.wake-board { background-position: 0 -2086px; height: 31px; }
.yacht-sprite.windsurfers { background-position: 0 -2127px; height: 31px; }
.yacht-sprite.waterslide { background-position: 0 -2168px; height: 31px; }
.yacht-sprite.deck-icon { background-position: 0 -2209px; width: 35px; height: 34px; }
.yacht-sprite.guest-icon { background-position: 0 -2253px; width: 35px; height: 34px; }
.yacht-sprite.lift-efoil-foilboard { background-position: 0 -2297px; height: 31px; }
.yacht-sprite.jet-skis { background-position: 0 -2338px; }
.yacht-sprite.recreation { background-position: 0 -2378px; width: 24px; height: 24px; }
.yacht-sprite.games-consoles { background-position: 0 -2412px; }
.yacht-sprite.lift { background-position: 0 -2452px; }
.yacht-sprite.movie { background-position: 0 -2492px; }
.yacht-sprite.swimming-platform { background-position: 0 -2532px; }
.yacht-sprite.sun-deck { background-position: 0 -2572px; }
.yacht-sprite.beach-club { background-position: 0 -2612px; }
.yacht-sprite.satellite-tv { background-position: 0 -2652px; }
.yacht-sprite.deck-jacuzzi { background-position: 0 -2692px; }
.yacht-sprite.fireplace { background-position: 0 -2732px; }
.yacht-sprite.video-on-demand { background-position: 0 -2772px; }
.yacht-sprite.accessible { background-position: 0 -2812px; }

.yacht-cat-sprite { background: url('../images/yacht-category-sprite.webp') no-repeat top left; width: 42px; height: 42px;  }
.yacht-cat-sprite.fishing-boat { background-position: 0 0; width: 43px; }
.yacht-cat-sprite.traditional-dhows { background-position: 0 -52px; width: 43px; }
.yacht-cat-sprite.speedboats-yacht { background-position: 0 -104px; width: 43px; }
.yacht-cat-sprite.super-yacht { background-position: 0 -156px; width: 43px; }
.yacht-cat-sprite.catamarans-yacht { background-position: 0 -208px; }
.yacht-cat-sprite.sailing-yacht { background-position: 0 -260px; width: 43px; }
.yacht-cat-sprite.motor-yacht-default { background-position: 0 -312px; }
.yacht-cat-sprite.traditional-dhows-default { background-position: 0 -364px; }
.yacht-cat-sprite.speedboats-yacht-default { background-position: 0 -416px; }
.yacht-cat-sprite.fishing-boat-default { background-position: 0 -468px; }
.yacht-cat-sprite.super-yacht-default { background-position: 0 -520px; }
.yacht-cat-sprite.catamarans-yacht-default { background-position: 0 -572px; }
.yacht-cat-sprite.sailing-yacht-default { background-position: 0 -624px; }
.yacht-cat-sprite.motor-yacht { background-position: 0 -676px; }

/*-- end yacht sprite css--*/

.search-box {
    position: relative;
    width: 300px;
}

.search-box .input-transfer-field{
    width: 100%;
    padding: 10px 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    color: #212529bf;
    font-size: 15px;
    font-weight: 600;
}
.search-box .input-transfer-field:focus,.search-box .input-transfer-field:focus-visible{
    border: 1px solid #ccc !important;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    outline: 1px solid #ccc !important;
    background: var(--white) !important;
}

.airport-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    border: 1px solid #ccc;
    border-top: none;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}
.airport-suggestions div{
    padding: 10px;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
}
.airport-suggestions div:hover {
    background-color: #f0f0f0;
}
.tvo-card-body img{
    min-height: 450px;
    border-radius: 0 0 8px 8px;
}
/*---new design visa form style --*/
.visa-form-header{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    padding: 40px 0 24px 0;
    position: relative;
}
.visa-form-header:before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("../images/vf-header-img.webp") no-repeat bottom right/contain;
    width: 562px;
    height: 241px;
}
.visa-form-trusted{
    display: inline-flex;
    padding: 3px 6px;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.22);
}
.visa-form-trusted span{
    color: #F4F4F4;
    font-size: 10px;
    line-height: normal;
}
.visa-form-header h1{
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    margin: 10px 0 40px 0;
}
.visa-form-header h1 strong{
    font-weight: 600;
}
.visa-form-feature{
    display: flex;
    align-items: center;
    gap: 24px;
}
.visa-form-feature-box{
    display: flex;
    padding: 8px 16px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    text-align: center;
}
.visa-form-feature-box p{
    margin: 0;
    font-weight: 200;
    font-size: 13px;
    line-height: normal;
}
.visa-form-feature-box small{
    color: rgba(255, 255, 255, 0.60);
    font-size: 10px;
    font-weight: 300;
}
.visa-form-body{
    background: linear-gradient(180deg, #fbfffb 0%, #F9FFF0 100%);
}
.visa-form-body-head{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}
.sub-heading-circle{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid rgba(23, 139, 0, 0.12);
    background: #FAFFF2;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.12);
}
.visa-form-body-head .sub-heading h2{
    font-size: 18px;
    margin: 0;
}
.visa-form-body-head .sub-heading p{
    margin: 4px 0;
    font-size: 13px;
    font-weight: 200;
}
.visa-form-body-head .sub-heading p strong{
    font-weight: 600;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-form-body-progress{
    margin: 24px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.progress-box{
    text-align: center;
}
/*.progress-circle-outer{*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    border-radius: 100%;*/
/*    background: rgb(235 225 219);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/
.progress-circle{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: rgb(243 235 230);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.progress-box.active .progress-circle{
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.progress-circle-inner{
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid rgba(23, 38, 148, 0.12);
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-box.active .progress-circle-inner{
    border: 1px solid #AC735F;
    background: linear-gradient(90deg, rgba(172, 115, 95, 0.80) 0%, rgba(123, 67, 26, 0.80) 100%);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.progress-box.active .progress-circle{
    background: rgb(211 188 172);
}

.progress-box-fill-form::before{
    content: "";
    position: absolute;
    left: 80px;
    top: 40px;
    background: #D9D9D9;
    width: 40%;
    height: 4px;
}
.progress-box-fill-form::after{
    content: "";
    position: absolute;
    left: 80px;
    top: 40px;
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    width: 0;
    height: 4px;
    transition: width 2s ease-in-out;
}
.progress-box-fill-form.animate-progress::after {
    width: 25%;
}
.progress-box-review-details:before{
    content: "";
    position: absolute;
    right: 92px;
    top: 40px;
    background: #D9D9D9;
    width: 41%;
    height: 4px;
}
.progress-box span{
    display: block;
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 13px;
}
.progress-box small{
    color: #505050;
    font-size: 10px;
    font-weight: 300;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(172, 115, 95, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(79, 172, 254, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 172, 254, 0);
    }
}
.visa-form-body-step-info{
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.visa-form-body-step-info p{
    padding: 8px 12px;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(55, 92, 250, 0.22);
    background: #F6F4FF;
    margin: 0;
}
.visa-form-body-step-info p span{
    font-size: 12px;
    background: linear-gradient(90deg, #4162F3 0%, #6F31D9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-form-card{
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, #FEFEFE 0%, #F7FAF6 100%);
    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.08), 12px 12px 88px 0 rgba(0, 0, 0, 0.08);
}
.visa-form-card-head{
    display: flex;
    align-items: center;
    gap: 10px;
}
.visa-form-card-head .sub-heading h2{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-form-card-head .sub-heading p{
    color: #6C6C6C;
    font-family: Inter;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 0;
}
.visa-form-card .form-label{
    font-size: 12px;
    margin-bottom: 4px;
}
.visa-form-card .form-control{
    color: #444;
    font-size: 12px;
    font-weight: 400;
    height: 40px;
}
.visa-form-card input::placeholder{
    font-size: 12px;
    font-weight: 300;
}
.visa-form-card .select2-container--default .select2-selection--single{
    height: 40px;
    border: 1px solid #dee2e6;
}
.visa-form-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 40px;
    font-size: 12px;
    font-weight: 400;
}
.visa-form-card .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 40px;
}
.visa-form-submit-card{
    border-radius: 12px;
    background: #F5FFEF;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.06), 8px 8px 60px 0 rgba(0, 0, 0, 0.12);
}
.visa-form-submit .btn-primary{
    border-radius: 8px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.12);
    width: 100%;
    border: none;
    transition: all 0.5s linear;
    color: var(--white) !important;
}
.visa-form-submit .btn-primary:hover{
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.4);
    background: linear-gradient(98deg, #0C8858 30%, #47aa7e 70%);
}
.visa-form-submit ul li{
    margin: 8px 0;
    font-size: 13px;
    color: #454545;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}
.visa-form-submit .note-card{
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E06C41;
    background: #FFF6F4;
}
.visa-form-submit .note-card p,.visa-form-submit .note-card i{
    font-size: 13px;
    font-weight: 400;
    background: linear-gradient(270deg, #E06C41 0%, #B85733 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-form-faqs-card{
    border-radius: 12px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    box-shadow: 8px 8px 60px 0 rgba(0, 0, 0, 0.08);
}
.visa-form-faqs-card .visa-form-card-head{
    background: #595959;
    color: var(--white);
}
.visa-form-faqs-card .sub-heading-faqs h2{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}
.visa-form-faqs .accordion-button{
    padding: 14px 0;
    font-weight: 400;
}
.visa-form-faqs .accordion-body {
    padding: 6px;
    font-size: 12px;
    font-weight: 300;
}
.visa-form-support{
    background: #F6F6F6;
    padding: 16px;
    border-radius: 0 0 8px 8px;
}
.visa-form-support-head{
    display: flex;
    align-items: center;
    gap: 10px;
}
.visa-form-support-head h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.visa-form-support .phone-card{
    display: flex;
    padding: 6px 16px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.08);
    margin: 12px 0;
}
.visa-form-support .text-color-light{
    color: rgba(53, 53, 53, 0.80);
}
.visa-form-card .note-card{
    border: 1px solid #4DB65D;
    background: #f0fff1;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    color: #40a24f;
    display: flex;
    margin-top: 20px;
}
.visa-form-card .text-danger{
    font-size: 13px;
    font-weight: 400;
}
hr{
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 1;
}
.form-progress-wrapper {
    background: #E3E3E3;
    height: 4px;
    border-radius: 4px;
}
.form-progress-bar {
    border-radius: 100px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 0 0 2px 0 rgba(84, 176, 137, 0.44), 0.4px 0.4px 4px 0 rgba(0, 174, 106, 0.30);
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}
.form-progress-label {
    text-align: right;
    font-size: 14px;
    color: #585858;
}
.visa-form-body aside{
    position: sticky;
    top: 84px;
}
.btn-same{
    border-radius: 6px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 0 0 2px 0 rgb(135 139 137 / 44%), 0.4px 0.4px 4px 0 rgb(65 64 64 / 31%);
    padding: 8px 12px;
    border: none;
    font-size: 10px;
    color: var(--white);
}
.visa-form-card-check .form-check{
    display: flex;
    align-items: center;
}
.visa-form-card-check .form-check-label{
    font-size: 10px;
}
/*---end visa application---*/
/*-- new checkout page style---*/
.check-header{
    padding: 20px 0;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    overflow-x: hidden;
}
.check-flash{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.check-flash-info h1{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}
.check-flash-icon{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 100px;
    background: var(--white);
}
.check-body .fill-bar.animate-progress::after {
    width: 75%;
    z-index: 1;
}
.check-applicant-body{
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, #FEFEFE 0%, #F7FAF6 100%);
    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.08), 12px 12px 88px 0 rgba(0, 0, 0, 0.08);
    position: relative;
}
.check-applicant-body:before{
    content: "";
    position: absolute;
    left: 0;
    top: 84px;
    border-bottom: 1px solid #efefef;
    width: 100%;
}

.check-applicant-card .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #f9fff4 !important;
}
.check-applicant-card .accordion-header{
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: #F1FFE3;
}
.check-applicant-card h3{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.check-applicant-card .applicant-head{
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #626262;
    margin-bottom: 8px;
}
.check-applicant-card .applicant-info{
    display: block;
    font-size: 14px;
    font-weight: 400;
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.check-applicant-service-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.check-applicant-service-header h2{
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
}
.check-service-flash{
    display: flex;
    height: 26px;
    padding: 4px 12px 4px 8px;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    border: 1px solid #EF8923;
    background: #FFF6F6;
}
.check-service-flash p{
    color: #C60;
    font-size: 12px;
    font-weight: 300;
}

.check-service-card-outer{
    position: relative;
}
.check-service-card-outer .btn-check{
    position: absolute;
    clip: auto;
    pointer-events: none;
    width: 20px;
    height: 20px;
    right: 4px;
    top: 30px;
}
.check-service-card{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.check-applicant-service .btn{
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid #D1D5DC;
    color: #626262;
}
.check-applicant-service .btn:hover{
    border: 1px solid #D1D5DC;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #F1FDF4;
    border-color: #32C84C;
    color: #626262;
}
.btn-check:checked+.btn .check-service-card-time{
    background-color: #F1FDF4;
    border-color: #C1F8CE;
}
.check-service-card small{
    font-weight: 300;
    font-size: 12px;
}
.check-service-card-icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #F2F2F2;
}
.btn-check:checked+.btn .check-service-card-icon{
    background: #DFFCE6;
}
.btn-check:checked+.btn .check-service-card-icon .service-default,.service-active{
    display: none;
}
.btn-check:checked+.btn .check-service-card-icon .service-active{
    display: block;
}
.check-service-card-time{
    display: flex;
    padding: 6px 24px 6px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid rgba(98, 98, 98, 0.12);
    background: #F9FAFB;
    color: #626262;
}
.check-service-card-time p{
    font-size: 11px;
    font-weight: 300;
    margin: 0;
}
.btn-delete-ck{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #CD0000;
    background: #CD0000;
    box-shadow: -0.5px -0.5px 2px 0 rgba(205, 0, 0, 0.12), 1px 1px 4px 0 rgba(205, 0, 0, 0.12);
}
.btn-delete-ck .bi-trash{
    font-size: 16px;
    color: white;
}
.btn-edit-ck{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #316AFD;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: -0.5px -0.5px 2px 0 rgba(49, 106, 253, 0.12), 1px 1px 4px 0 rgba(49, 106, 253, 0.12);
}
.btn-edit-ck .bi-pencil-square{
    font-size: 16px;
    color: #316AFD;
}
.check-addons .btn{
    padding: 0;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #E1E1E3;
    background: #FFF;
    box-shadow: 8px 8px 33px 0 rgba(0, 0, 0, 0.06);
}
.check-addons .btn-check {
    position: relative;
    top: 48px;
    left: 14px;
    width: 18px;
    height: 18px;
}
.check-addon-card{
    padding: 8px;
}
.check-addon-card h3{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}
.check-addon-card p{
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
}
.check-addon-rate p{
    font-size: 13px;
    font-weight: 300;
    border-radius: 4px;
    border: 1px solid #EF4123;
    background: #FFF3F3;
    color: #EF4123;
    margin-top: 4px;
}
.check-addon-rate del{
    font-size: 12px;
    font-weight: 300;
    color: #616158;
}
.check-addon-rate span{
    font-size: 22px;
    font-weight: 600;
    color: #353535;
}
.check-applicant-flash{
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #EF8923;
    background: #FFF6F6;
    color: #C60;
}

.check-summary-card{
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    background: #FEFEFE;
    box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.15);
}
.check-booking-box{
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 12px;
    border: 2px solid #ffded9;
    background: rgba(255, 238, 238, 0.51);
}
.check-booking-box-info p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.check-booking-box-info span{
    color: #626262;
    font-size: 13px;
    font-weight: 300;
}
.check-booking-box-circle{
    display: flex;
    width: 67px;
    height: 66px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    flex-shrink: 0;
}
.check-booking-box-circle-inner{
    display: flex;
    width: 63px;
    height: 63px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 100%;
    flex-shrink: 0;
}
.check-booking-box-circle .booking-time{
    font-size: 16px;
    font-weight: 700;
    line-height: 14px;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.check-booking-box-circle .booking-mins{
    color: #626262;
    font-size: 11px;
    font-weight: 300;
    line-height: 12px;
}
.check-summary-total{
    display: flex;
    justify-content: space-between;
}
.check-summary-total p{
    font-size: 24px;
    font-weight: 600;
    color: #4A4A4A;
}
.check-summary-total-price small{
    font-size: 12px;
    font-weight: 300;
    background: linear-gradient(96deg, rgba(54, 54, 54, 0.60) 0%, rgba(73, 73, 73, 0.60) 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.check-summary-promo-head p{
    color: #353535;
    line-height: 14px;
}
.check-payment-secure{
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    background: #FEFEFE;
    box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.15);
    margin: 20px 0;
}
.check-payment-secure-header{
    display:flex;
    align-items: center;
    gap: 10px;
}
.check-payment-secure-icon{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
}
.check-payment-secure-header h3{
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
.check-payment-secure .btn-group .form-check-input{
    position: absolute;
    left: 10px;
}
.check-payment-secure .btn-group .form-check-label{
    padding: 16px 16px 16px 40px;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    background: #FEFEFE;
    margin-bottom: 12px;
    width: 100%;
}
.btn-pre-submit{
    border-radius: 8px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.12);
    width: 100%;
    border: none;
    transition: all 0.5s linear;
    color: var(--white) !important;
}
.btn-pre-submit:hover{
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.4);
    background: linear-gradient(98deg, #0C8858 30%, #47aa7e 70%);
}
.check-summary-subtotal-head{
    font-size: 15px;
    font-weight: 500;
    color: #616161;
}
.summary-toggle-btn{
    background: transparent;
    border: 0;
}
.summary-toggle-btn .bi::before{
    font-weight: 800 !important;
}
.check-summary-subtotal-body {
    height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
    color: #4A4A4A;
    font-size: 13px;
}
.summary-discount .summary-dis{
    font-weight: 600;
    margin-bottom: 0;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.summary-discount .summary-value{
    display: flex;
    padding: 2px 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--white);
    border-radius: 2px;
    margin-bottom: 0;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
}
.check-summary-promo-body .btn-outline-primary{
    border-radius: 8px;
    border: 1px solid #0C8858;
    background: var(--white);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.12);
}
.check-summary-promo-body .btn-outline-primary span{
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.check-summary-promo-body input{
    font-size: 13px;
    padding: 10px;
    color: #5C5C5C;
    border-radius: 4px;
    border: 1px solid #F0F0F0;
    background: #F3F3F5;
}
.check-summary-promo-body small{
    font-size: 10px;
}
.form-submit-card{
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(50, 200, 76, 0.22);
    background: var(--white);
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
    margin: 4px;
    opacity: 0;
    transform: translateX(100%);
    animation: cardSlide 140s linear infinite;
    position: absolute;
    right: 0;
    top: 0;
}

.form-submit-card:nth-child(1) {
    animation-delay: 20s;
}
.form-submit-card:nth-child(2) {
    animation-delay: 50s;
}
.form-submit-card:nth-child(3) {
    animation-delay: 90s;
}
.form-submit-card:nth-child(4) {
    animation-delay: 140s;
}
.form-submit-card:nth-child(5) {
    animation-delay: 200s;
}
.form-submit-card:nth-child(6) {
    animation-delay: 280s;
}

@keyframes cardSlide {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    1.1% {
        opacity: 1;
        transform: translateX(0);
    }
    6.8% {
        opacity: 1;
        transform: translateX(0);
    }
    8.8% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.form-submit-name{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 4px;
}
.form-submit-text{
    color: #626262;
    font-weight: 300;
    padding: 0 8px;
    margin-bottom: 4px;
    font-size: 12px;
}
.form-submit-name .bi-circle-fill{
    color: #32C84C;
    font-size: 10px;
    margin-right: 5px;
    margin-left: 5px;
}
.form-submit-name strong{
    font-weight: 600;
}
.form-submit-card small{
    display: block;
    font-size: 12px;
    padding: 0 10px;
    font-weight: 600;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 992px) {
    .form-submit-cards{
        display: none;
    }
}


.new-footer {
  background: rgb(99 196 129 / 25%);
  color: #353535;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

/* CTA Section */
.footer-cta {
  background: rgb(35 132 65 / 81%);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 50px;
}
.footer-logo{
  width:200px;
  margin-bottom:10px;

}

.footer-cta h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-cta p {
  margin-bottom: 20px;
  font-size: 15px;
}

/* CTA Button */
.cta-btn {
  background: linear-gradient(45deg, #6366f1, #3b82f6);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.4s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99,102,241,0.4);
}

/* Footer Main */
.footer-main h6 {
  color: #353535;
  margin-bottom: 15px;
}

.footer-main ul {
  list-style: none;
  padding: 0;
}

.footer-main ul li {
  margin-bottom: 10px;
}

.footer-main ul li a {
  color: #353535;
  text-decoration: none;
  transition: 0.3s;
}

.footer-main ul li a:hover {
  color: green;
  padding-left: 5px;
}

/* Logo */
.footer-logo {
  color: #fff;
  font-weight: bold;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

/* Social */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #9ca3af;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #3b82f6;
  transform: scale(1.2);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding: 15px 0;
  font-size: 14px;
}