@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap);

:root {
    --white: #ffffff;
    --gray-lighter: #ECECEC;
    --gray-lighter2: #e0e0e0;
    --gray: #525252;
    --gray-dark: #343a40;
    --primary: #027EFB;
    --primaryHover: #0369c9;
    --secondary: #2b077e;
    --secondaryHover: #1f0952;
    --success: #06c91c;
    --successHover: #06b41a;
    --info: #17a2b8;
    --warning: #ffb907;
    --danger: #e5356a;
    --pink: #ed80a1;
    --purple: #4D0099;
    --purple2: #7C27FF;
    --light1: #f5f5f5;
    --lighter1: #f9f9f9;
    --light: #f8f9fa;
    --light2: #AEAEAE;
    --border-light: #D6D6D6;
    --border-lighter: #e0e0e0;
    --border-lighter2: #e9e9e9;
    --dark: #343a40;
    --dark2: #4a4a4a;
    --black: #000000;
    --black2: #303030;
    --gray-text: #676767;
    --gray-disable: #adadad;
    --form-border: #BCBCBC;
    --font-family-body: "Titillium Web", Roboto, Arial, sans-serif;
    --font-family-title: "Poppins", Roboto, Arial, sans-serif;
    --primary-light-bg: #eff5fc;
    --success-light-bg: #f5fff9;
    --info-light-bg: #f1fdff;
    --warning-light-bg: #fffdf8;
    --danger-light-bg: #fff7f9;
    --default-light-bg: #f8f9fa;
    --primary-calselect-bg: #DBEEFF;
    --discPrice: #9f9f9f;
}

::selection {
    color: var(--white);
    background: var(--primary)
}

.text-primary {
    color: var(--primary) !important
}

.text-secondary {
    color: var(--secondary) !important
}

.text-success {
    color: var(--success) !important
}

.text-info {
    color: var(--info) !important
}

.text-danger {
    color: var(--danger) !important
}

.text-warning {
    color: var(--warning) !important
}

.text-gray {
    color: #575757;
}

a {
    text-decoration: none
}

.customScroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 10px
}

.customScroll::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px
}

.customScroll::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 10px
}

.customScroll::-webkit-scrollbar-button {
    width: 6px;
    border-radius: 10px
}

.customScroll::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
    border-radius: 10px
}

/* hamburger icon animation */

.navbar-toggler {
    width: 28px;
    height: 28px;
    position: relative;
    margin: 0px 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
    top: 0px;
}

.navbar-toggler span:nth-child(2) {
    top: 10px;
}

.navbar-toggler span:nth-child(3) {
    top: 20px;
}

.navbar-toggler.open,
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler.open span:nth-child(1) {
    top: 14px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.navbar-toggler.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler.open span:nth-child(3) {
    top: 14px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/* hamburger icon animation ends */

.navbar-nav {
    background: 0 0
}

.fw-semibold {
    font-weight: 600
}

.w-95 {
    width: 95% !important
}

.w-92 {
    width: 92% !important
}

.w-93 {
    width: 93% !important
}

.w-90 {
    width: 90% !important
}

.w-40 {
    width: 40% !important
}

.w-30 {
    width: 30% !important
}

.align-items-center {
    align-items: center
}

.alert {
    padding: 8px;
    border-bottom-width: 3px;
    font-family: var(--font-family-title)
}

.alert .icon-left {
    font-size: 22px
}

.alert-dismissible .btn-close {
    font-size: 12px;
    padding: 12px
}

.alert-primary {
    color: var(--primary);
    background-color: var(--primary-light-bg);
    border-color: var(--primary)
}

.alert-success {
    color: var(--success);
    background-color: var(--success-light-bg);
    border-color: var(--success)
}

.alert-info {
    color: var(--info);
    background-color: var(--info-light-bg);
    border-color: var(--info)
}

.alert-danger {
    color: var(--danger);
    background-color: var(--danger-light-bg);
    border-color: var(--danger)
}

.alert-warning {
    color: var(--warning);
    background-color: var(--warning-light-bg);
    border-color: var(--warning)
}

.modal-header {
    font-family: var(--font-family-title)
}

.modal-content {
    border-radius: 10px
}

.modal-header.bg-primary .btn-close {
    filter: invert(1)
}

.modal.fade .modal-dialog {
    /* -webkit-transform: translate(0, 0);
    transform: translate(0, 0); 
    
    height: calc(100% - 3.5rem);
    transform: translate(0, 70px);*/
    height: auto;
    transform: translate(0, 20px);
    max-height: 90%;
}

.modal_animation {
    transform: scale(.5) !important;
    opacity: 0;
    transform: translateX(4000px) !important;
    background-color: transparent
}

.modal_animation.show {
    opacity: 1;
    transform: scale(1) !important;
    transform: translateX(0) !important;
    -webkit-transition: .8s ease-out 0s;
    -moz-transition: .8s ease-out 0s;
    -ms-transition: .8s ease-out 0s;
    -o-transition: .8s ease-out 0s;
    transition: .8s ease-out 0s
}

.modal_animation.hide {
    opacity: 0;
    transform: scale(.5) translateX(4000px);
    -webkit-transition: 0s ease-out 0s;
    -moz-transition: 0s ease-out 0s;
    -ms-transition: 0s ease-out 0s;
    -o-transition: 0s ease-out 0s;
    transition: 0s ease-out 0s
}

.overlayLoading {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgb(28 28 28 / 70%);
    z-index: 999999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #333
}

.overlayLoading .containerLoder {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.overlayLoading h4 {
    font-size: 15px;
    font-family: var(--font-family-title);
    color: #000;
    margin-top: 8px;
    font-weight: 300;
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 1px;
    line-height: 20px
}

.overlayLoading h4 span {
    display: block;
    font-weight: 600
}

.overlayLoading .overlayLoadingIn {
    position: absolute;
    top: 40%;
    display: block;
    text-align: center;
    background: var(--white);
    border-radius: 100%
}

.overlayLoadingBlack {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, .7);
    z-index: 999999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center
}

.overlayLoadingBlack .overlayLoadingIn {
    position: absolute;
    top: 40%;
    display: block;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    background: var(--white);
    border-radius: 100%
}

.overlayLoading img {
    width: 350px;
    border-radius: 10px
}

.overlayLoadingBlack img {
    width: 350px;
    border-radius: 100%;
    padding: 6px
}

@media screen and (min-width:320px) and (max-width:1600px) {

    .overlayLoading img,
    .overlayLoadingBlack img {
        width: 200px;
        border-radius: 10px
    }
}

.mainLoader {
    position: fixed;
    width: auto;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999999999;
    background: 0 0;
    padding: 40px;
    border-radius: 5px;
    color: #000
}

.mt-45 {
    margin-top: 2.2rem !important
}

.fs-16 {
    font-size: 16px;
    line-height: 18px
}

* {
    margin: 0;
    padding: 0
}

a {
    color: inherit;
    text-decoration: none
}

a.linkGrHover {
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, rgba(255, 0, 0, 1), rgba(255, 0, 180, 1), rgba(0, 100, 200, 1));
    background-size: 100% 2px, 0 2px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size .4s;
    color: var(--black);
    text-decoration: none
}

a.linkGrHover i {
    font-size: 120%
}

a.linkGrHover:hover {
    background-size: 0 2px, 100% 2px
}

a.link {
    color: var(--primary)
}

a.link:hover {
    color: var(--primaryHover)
}

.seemore {
    margin: 10px 10px 0 10px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    width: 94%;
    float: left
}

.seemore .link .chevron {
    margin: 6px 0 0 4px;
    line-height: 14px;
    float: right
}

.seemore .link.collapsed .chevron:before {
    content: "\ea5f";
    font-family: tabler-icons !important;
    font-style: normal;
    font-size: 18px;
    line-height: 8px
}

.seemore .link .chevron:before {
    content: "\ea62";
    font-family: tabler-icons !important;
    font-style: normal;
    font-size: 18px;
    line-height: 8px
}

.linkGray {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important
}

.linkGray:hover {
    color: var(--dark)
}

.linkGraylight {
    color: var(--gray-text);
    text-decoration: none !important
}

.linkGray:hover {
    color: var(--dark)
}

.linkBlack {
    color: var(--black);
    font-size: 14px;
    font-weight: 600
}

.linkBlack:hover {
    color: var(--dark)
}

.linkPrimary {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600
}

.linkPrimary:hover {
    color: var(--primaryHover)
}

.title-text {
    font-family: var(--font-family-title) !important
}

.body-text {
    font-family: var(--font-family-body) !important
}

body {
    font-family: var(--font-family-body);
    font-size: 16px;
    color: var(--black);
    /* padding-top: 111px */
}

.mainSecSpacing {
    padding-top: 85px !important;
}

.bottomSpacing {
    padding-bottom: 111px !important;
    margin-bottom: 50px;
}

.stickyNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}

.text-primary {
    color: var(--primary)
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-title)
}

h1 {
    font-size: 48px;
    line-height: 52px;
    font-size: calc(1.7rem + 1.3vw);
    line-height: calc(1.7rem + 1.8vw);
}

h2 {
    font-size: 38px;
    line-height: 42px;
    font-size: calc(1.2rem + 1.1vw);
    line-height: calc(1.3rem + 1.3vw);
}

h3 {
    font-size: 30px;
    line-height: 41px;
    font-size: calc(1.1rem + 0.8vw);
    line-height: calc(1.3rem + 0.8vw);
}

h4 {
    font-size: 20px;
    line-height: 24px
}

.page-header {
    padding-bottom: 2rem
}

.page-header .page-header-content {
    padding-top: 35px;
    padding-bottom: 1rem
}

.page-header-title {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    padding-top: 2rem
}

.carousel-title {
    font-size: 64px;
    line-height: 70px;
    color: var(--black);
    font-weight: 600
}

.header-banner {
    /* width: 100%;
    height: 120px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 0px;
    margin: 0px 0px 40px 0px;
    display: block; */

    /* justify-content: center;
    align-items: center;
    flex-direction: column; */
    width: 100%;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 40px 0;
    margin: 70px 0px 0px;
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    position: relative;
}

/* .header-banner:after {
    background: linear-gradient(45deg, #631be1 20%, #0462d4 80%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.78;
    z-index: 0;
    content: '';
} */


.header-banner .overlay {
    background: linear-gradient(45deg, #631be1 20%, #0462d4 80%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.78;
    z-index: 0;
}

.section-title {
    font-size: 38px;
    font-size: calc(1.58rem + 0.8vw);
    line-height: 50px;
    line-height: calc(1.58rem + 1.4vw);
    color: var(--black2);
    font-weight: 600;
    margin-bottom: 10px;
    width: 100%;
    font-family: var(--font-family-title);
    position: relative;
    z-index: 2;
}

.section-title span {
    background: linear-gradient(271deg, #FEC063 0%, #E285CB 51.12%, #A84EFD 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-title {
    font-size: 38px;
    font-size: calc(1.58rem + 0.8vw);
    line-height: 50px;
    line-height: calc(1.58rem + 1.4vw);
    color: var(--black2);
    font-weight: 600;
    margin-bottom: 40px;
    /* width: 100%; */
    font-family: var(--font-family-title);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.page-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 7px;
    width: 95px;
    background: linear-gradient(271deg, #FEC063 0%, #E285CB 51.12%, #A84EFD 100%);
    z-index: 1;
    border-radius: 8px;
}

.page-title:after {
    background: var(--black2);
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 90%;
}

.section-title2 {
    font-size: 35px;
    font-size: calc(1.5rem + 0.8vw);
    line-height: 50px;
    line-height: calc(1.58rem + 1.1vw);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 20px;
    width: 100%;
    font-family: var(--font-family-title);
}

.section-title .exploreLink {
    font-size: 16px;
    float: right;
    margin-top: 15px;
    line-height: 18px;
    color: var(--black);
    font-weight: 400;
    font-family: var(--font-family-title)
}

.driversAgedBox .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 10px !important
}

.section-description {
    font-size: 18px;
    line-height: 30px;
    color: var(--gray-text);
    margin-bottom: 20px;
    float: left;
    width: 100%;
    font-family: var(--font-family-title);
    text-align: justify;
    z-index: 2;
}

.body-description {
    font-size: 16px;
    line-height: 20px;
    color: var(--gray-text);
    margin-bottom: 20px;
    float: left;
    width: 100%;
    font-family: var(--font-family-title);
}

.customTitleOut {
    position: relative;
    width: 100%;
    margin: 20px 0
}

.customTitle {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-title);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 4px 20px;
    line-height: 16px;
    position: relative;
    margin: 0 0 0 20px;
    z-index: 1
}

.customTitle .icon {
    height: 37px;
    width: 37px;
    left: -21px
}

.customTitle .icon img {
    width: 38px;
    position: relative;
    top: -1px;
    left: -4px
}

.customTitle .iconY {
    filter: invert(48%) sepia(40%) saturate(20) hue-rotate(0) brightness(118%) contrast(119%)
}

.customTitleOut:after {
    background: var(--white);
    border-bottom: 2px dashed var(--border-light);
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    content: ""
}

#myImg {
    cursor: pointer;
    transition: .3s
}

#myImg:hover {
    opacity: .7
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(69 69 69 / 90%);
    background-color: rgb(69 69 69 / 90%)
}

#myModal {
    z-index: 3
}

#myModal .modal-content {
    max-width: 470px;
    margin: auto;
    display: block;
    width: 80%
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px
}

#caption,
.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: .6s;
    animation-name: zoom;
    animation-duration: .6s
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 700;
    transition: .3s
}

.close_new {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5
}

.close:focus,
.close:hover {
    color: #bbb;
    text-decoration: none;
    cursor: pointer
}

.transactionRecipt p img {
    cursor: pointer
}

@media only screen and (max-width:700px) {
    .modal-content {
        width: 100%
    }
}

.nav-transparent {
    background-color: transparent
}

.navbar-toggler {}

.navbarBg {
    /* background: url(../images/navBg.jpg) no-repeat; */
    /* background-size: cover; */
    padding: 32px 0px;
    background: rgba(0, 0, 0, 0);
    transition: ease-in-out all 0.5s;
    --bs-bg-opacity: 0;
    box-shadow: none;
}

.navbarBg.scrolled {
    /* background: url(../images/navBg.jpg) no-repeat; */
    /* background-size: cover; */
    padding: 24px 0px;
    --bs-bg-opacity: 1;
    background-color: rgba(17, 02, 55, .9) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
    backdrop-filter: blur(30px);
}

.navbarBg img {
    width: 200px;
    transition: ease-in-out all 0.5s;
    position: absolute;
    top: 14px;
}

.navbarBg.scrolled img {
    width: 165px;
    top: 9px;
}

.main-menu.navbar-nav .nav-link {
    font-family: var(--font-family-title);
    font-weight: 500;
    overflow: hidden;
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    vertical-align: top;
    padding: 0;
    margin: 0 15px;
    color: var(--white);
    font-weight: 400
}

.main-menu.navbar-nav.menu-in .nav-link {
    color: var(--black2);
}

.main-menu.navbar-nav .nav-link::after,
.main-menu.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0
}

.main-menu.navbar-nav .nav-link::before {
    background-color: var(--white);
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(.76, 0, .24, 1)
}

.main-menu.navbar-nav .nav-link::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 100% 50%;
    transform: translate3d(200%, 0, 0);
    transition: transform .3s cubic-bezier(.76, 0, .24, 1);
    color: var(--white)
}

.main-menu.navbar-nav.menu-in .nav-link::after {
    color: var(--black2);
}

.main-menu.navbar-nav .nav-link.active::before,
.main-menu.navbar-nav .nav-link:hover::before {
    transform-origin: 0 50%;
    transform: scaleX(1)
}

.main-menu.navbar-nav .nav-link:hover::after {
    transform: translate3d(0, 0, 0)
}

.main-menu.navbar-nav .nav-link span {
    display: inline-block;
    transition: transform .3s cubic-bezier(.76, 0, .24, 1)
}

.main-menu.navbar-nav .nav-link:hover span {
    transform: translate3d(-200%, 0, 0)
}

.main-menu.navbar-nav .nav-link:hover {
    color: var(--white)
}

.main-menu.navbar-nav .nav-link.active {
    color: var(--white);
    font-weight: 600
}

.main-menu.navbar-nav.menu-in .nav-link::before {
    background-color: var(--primary);
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(.76, 0, .24, 1)
}

.main-menu.navbar-nav.menu-in .nav-link:hover {
    color: var(--primary);
}

.main-menu.navbar-nav.menu-in .nav-link:hover::after {
    color: var(--primary);
}

.main-menu.navbar-nav.menu-in .nav-link.active {
    color: var(--primary);
    font-weight: 600
}

.main-menu.navbar-nav.menu-in .nav-link.active::before,
.main-menu.navbar-nav.menu-in .nav-link:hover::before {
    transform-origin: 0 50%;
    transform: scaleX(1);
}

.main-menu {
    flex-direction: row;
    align-items: center
}

.errorMsg {
    color: var(--danger);
    font-size: 13px;
    margin: 3px 0 3px 0
}

.errorMsgPink {
    color: var(--pink);
    font-size: 13px
}

.input-group-text {
    background-color: var(--lighter1);
    padding: 10px 10px;
    text-align: center;
    justify-content: center
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(3.5rem - 8px) !important;
    line-height: 1.25;
    font-size: 14px;
    color: var(--black);
    padding: 6px 10px;
    font-family: var(--font-family-body)
}

.form-floating>label,
.label-only {
    padding: 12px 10px;
    color: var(--gray-text);
    border: 0;
    font-family: var(--font-family-body);
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-bottom: 8px;
    padding-top: 10px
}

.label-only {
    top: -20px;
    right: 0;
    padding: 0 5px;
    opacity: 1;
    background: var(--white);
    height: auto;
    font-size: 13px;
    line-height: 16px;
    position: absolute;
    pointer-events: none;
    border: 1px solid transparent
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    top: 11px;
    left: 5px;
    padding: 0 5px;
    opacity: 1;
    /* background: var(--white); */
    height: auto;
    line-height: 13px;
    font-family: var(--font-family-body);
    transform: scale(0.80) translateY(-.5rem) translateX(.15rem);
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 2px 10px rgba(141, 2, 255, 0.35);
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0
}

.form-floating>.form-control::placeholder {
    color: transparent !important
}

.input-group>.form-floating:first-child .form-control,
.input-group>.form-floating:first-child .form-select {
    border-radius: 4px 0 0 4px
}

.input-group>.form-floating .form-control,
.input-group>.form-floating .form-select {
    border-radius: 0
}

.input-group>.form-floating:last-child .form-control,
.input-group>.form-floating:last-child .form-select {
    border-radius: 0 4px 4px 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    display: none
}

.backBtnround {
    font-size: 36px !important;
    padding: 0 !important;
    margin: 0;
    color: #cbcbcb;
}

.backBtnround i {
    font-weight: 200;
}

.backBtn {
    align-self: flex-start;
    border: 0;
    background: 0 0
}

.nextBtn {
    align-self: flex-end;
    margin-left: auto;
    border: 0;
    background: 0 0
}

.rounded-4 {
    border-radius: .8rem !important
}

.rounded-5 {
    border-radius: 1.6rem !important
}

.bg-light {
    background: var(--light1)
}

.btn {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 10px 30px;
    font-weight: 500;
    transition: .5s;
    text-align: center;
    font-family: var(--font-family-title)
}

.btn-pill {
    border-radius: 100px
}

.btn-lg {
    font-size: 20px;
    line-height: 24px
}

.btn-sm {
    padding: 4px 20px 4px 20px;
    font-size: 14px;
    font-weight: 600
}

.btn-blue,
.btn-primary {
    background: linear-gradient(90deg, #0c78ed 0, #0065d3 59.48%);
    box-shadow: 0 4px 14px 0 #0098B961;
    color: var(--white);
    text-transform: uppercase;
    transition: all ease-in-out .3s;
    border: 0
}

.btn-blue:hover,
.btn-primary:hover {
    background: linear-gradient(130deg, #0c78ed 0, #0065d3 59.48%);
    color: var(--white);
    box-shadow: 3px 4px 16px 0 #0097b975
}

.btn-primary2 {
    background-image: linear-gradient(135deg, #631be1 0, #0462d4 100%);
    box-shadow: 0 4px 14px 0 #0098B961;
    color: var(--white);
    text-transform: none;
    transition: all ease-in-out .3s;
    border: 0
}

.btn-primary2:hover {
    background-image: linear-gradient(210deg, #631be1 0, #0462d4 100%);
    color: var(--white);
    box-shadow: 3px 4px 16px 0 #0097b975
}


.btn-secondary {
    background: linear-gradient(90deg, #4316ac 0, #2b077e 59.48%);
    box-shadow: 0 4px 14px 0 #4316ac61;
    color: var(--white);
    text-transform: uppercase;
    transition: all ease-in-out .3s;
    border: 0
}

.btn-secondary:hover {
    background: linear-gradient(130deg, #361485 0, #1f0952 59.48%);
    color: var(--white);
    box-shadow: 3px 4px 16px 0 #4316ac75
}



.btn-blue-border {
    border: 2px solid var(--primary);
    color: var(--primary);
    text-transform: uppercase
}

.text-tnormal {
    text-transform: none
}

.btn-blue-border:hover {
    color: var(--white);
    background: var(--primary)
}

.btn-green,
.btn-success {
    background: linear-gradient(90deg, #50de00 0, #02a000 100%);
    box-shadow: 0 4px 14px 0 #0ba0017A;
    color: var(--white);
    text-transform: uppercase;
    transition: all ease-in-out .3s;
    border: 0
}

.btn-green:hover,
.btn-success:hover {
    background: linear-gradient(130deg, #50de00 0, #02a000 100%);
    box-shadow: 3px 4px 16px 0 #0ca0018a;
    color: var(--white)
}

.btn-default,
.btn-gray {
    background-color: var(--light1);
    border-color: var(--border-light);
    color: var(--black);
    text-transform: uppercase
}

.btn-default:hover,
.btn-gray:hover {
    background-color: var(--border-lighter);
    border-color: var(--light2);
    color: var(--black)
}

.btn-white {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
    text-transform: uppercase;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .2)
}

.btn-white:hover {
    background-color: var(--light1);
    border-color: var(--white);
    color: var(--primaryHover)
}

.btn-white-title {
    color: var(--primary);
    font-family: var(--font-family-title);
    text-transform: none
}

.btn-white-border {
    border-color: var(--border-lighter)
}

.btn-light-control {
    background-color: var(--white);
    border-color: var(--gray-lighter)
}

.btn-light-control.show,
.btn-light-control:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white)
}

.btn-rounded-border {
    border: 2px solid var(--primary);
    border-radius: 40px;
    font-size: 14px;
    margin: 10px 10px;
    color: var(--primary);
    font-weight: 600;
    padding: 5px 15px;
    background-color: var(--white)
}

.btn-rounded-border:hover {
    background-color: var(--primary);
    color: var(--white)
}

.step_title {
    font-size: 30px;
    font-weight: 300;
    color: var(--black);
    line-height: 34px;
    font-family: var(--font-family-title)
}

.step_subtitle {
    color: var(--light2);
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;
    font-family: var(--font-family-title)
}

.step_description {
    color: var(--dark2);
    font-size: 16px;
    line-height: 18px
}

.section_sm {
    margin-bottom: 30px
}

.section_md {
    margin-bottom: 60px
}

.section_title {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-family-title)
}

.section_title2 {
    font-size: 22px;
    font-weight: 400;
    font-family: var(--font-family-title)
}

.section_titlewIcon {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-family-title);
    background: linear-gradient(180deg, var(--white) 0, var(--border-lighter) 100%);
    border: 1px solid var(--border-lighter);
    color: var(--black);
    padding: 3px 10px;
    margin-bottom: 10px
}

.section_titlewIcon .icon {
    width: 20px;
    float: left;
    margin: 2px 5px 0 0;
    color: var(--primary);
    font-size: 20px;
    line-height: 20px
}

.section_titlewIcon.bg-gray {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-family-title);
    background: var(--lighter1);
    border: 1px solid var(--border-lighter);
    color: var(--black);
    padding: 3px 10px;
    margin-bottom: 10px;
    border-radius: 5px
}

.section_titlewIcon.bg-gray .icon {
    color: var(--black)
}

.section_cont {
    border: 1px solid var(--border-lighter);
    padding: 5px
}

.customCol_left {
    width: 22%
}

.customCol_right {
    width: 77%
}

.vertical_steps {
    background: var(--light1);
    box-shadow: 0 1px 12px rgba(0, 0, 0, .15);
    font-family: var(--font-family-title);
    border-radius: .3rem 0 0 0
}

.vertical_steps ul.step_list {
    margin: 20px 0;
    padding: 0;
    list-style-type: none;
    counter-reset: css-counter 0;
    position: sticky;
    top: 20px;
    left: 0
}

.vertical_steps ul.step_list li {
    margin: 0 0 0 10px;
    padding: 0 0 30px 35px;
    position: relative;
    counter-increment: css-counter 1;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: #767676
}

.vertical_steps ul.step_list li::before {
    content: counter(css-counter);
    background: var(--light1);
    border: 2px solid var(--dark2);
    position: absolute;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: var(--dark2);
    left: 0;
    top: 0;
    padding: 2px;
    border-radius: 100%;
    z-index: 2;
    z-index: 2;
    width: 25px;
    height: 25px;
    text-align: center
}

.vertical_steps ul.step_list li::after {
    background: #cecece;
    width: 2px;
    left: 12px;
    top: 0;
    bottom: 0;
    position: absolute;
    content: '';
    z-index: 1
}

.vertical_steps ul.step_list li.active {
    color: var(--primary);
    font-weight: 800
}

.vertical_steps ul.step_list li.active::before {
    background: var(--light1);
    border: 2px solid var(--primary);
    color: var(--primary)
}

.vertical_steps ul.step_list li.completed {
    color: #8fc1ef;
    font-weight: 300
}

.vertical_steps ul.step_list li.completed::before {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px
}

.modal {
    padding-top: 0 !important;
    z-index: 1055 !important
}

.modal-fullscreen {
    padding: 10px !important;
    width: 99vw;
    height: 100vh;
    overflow: unset
}

.modal-fullscreen .modal-dialog {
    width: 100% !important;
    max-width: none !important
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 6px;
    background: var(--white)
}

.modal-fullscreen .modal-body {
    overflow-y: auto;
    padding: 0;
    border-radius: 6px
}

.modal-footer {
    justify-content: space-between
}

.modalMain-content {
    padding: 0px 0px 0px 20px;
    float: left;
    width: 100%;
}

.btn-close {
    /* width: 5px;
    height: 5px */
}

.btn-lightbox-close {
    width: 15px;
    height: 15px;
    background: #000;
    padding: 2px;
    border-radius: 50%
}

.btn-modal-close {
    width: 8px;
    height: 8px;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all ease-in-out .5s;
    z-index: 3
}

.btn-modal-close:hover {
    transform: rotate(90deg);
    opacity: 1
}

.btn-modal-dismiss {
    position: absolute;
    top: -17px;
    right: -17px;
    transition: all ease-in-out .5s;
    font-size: 22px;
    background: var(--dark);
    color: var(--white);
    border-radius: 100%;
    border-radius: 100%;
    padding: 25px 25px 15px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    z-index: 1058;
    line-height: 17px
}

.btn-modal-dismiss:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1
}

.close {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 700;
    transition: .3s
}

.modal-xl {
    max-width: 1240px !important
}

.modal-xxl {
    max-width: 1560px !important;
    margin-top: 10px
}

.paymentModal {
    max-width: 1000px !important;
    margin-top: 10px
}

.paymentLeftPanel {
    width: 39%;
}

.paymenytRightPanel {}

.modal-xxl .modal-body {
    padding: 0
}

.modal-xxl.modal-dialog-scrollable .modal-content {
    /* max-height: calc(100vh - 40px);
    height: calc(100vh - 40px) */
    /* height: 100%;
    max-height: 1060px; */
    max-height: 1200px;
    /* Set maximum height */
    /* height: auto; */
    height: 100%;
    /* Allow height to adjust based on content */
    display: flex;
    /* Enable flexbox for better layout control */
    flex-direction: column;
    /* Ensure modal header, body, and footer stack vertically */
}

#fleetListPopup .modal-content,
#fleet_details_modal .modal-content,
#print_e_ticket .modal-content {
    height: 92vh;
    max-height: 1200px;
}

#personalInfo_modal .modal-content,
#kyc_modal .modal-content {
    height: 90vh;
    max-height: 1200px;
}

.paymentModal .modal-content {
    height: 100%;
    max-height: 1200px;
}

@media screen and (min-height: 850px) {

    #personalInfo_modal .modal-content,
    #kyc_modal .modal-content {
        height: 100%;
    }
}


/* .modal-lg.modal-dialog .modal-content,
.modal-md.modal-dialog .modal-content,
.modal-sm.modal-dialog .modal-content {
    max-height: 100%;
    overflow: hidden;
    height: auto
} */


/* .modal-xxl.modal-dialog-scrollable {
    height: 100vh;
    max-height: calc(100vh - 40px)
} */

.contentModal,
.headModal {
    width: 100%;
    display: block;
    float: left;
    /* margin: 0 !important */
}

.loginModal {
    /* height: 726px !important; */
    height: 100% !important;
}

.headModal {}

.contentModal {
    margin-top: 30px !important
}

.alert_new {
    padding: 8px;
    color: var(--black);
    font-size: 13px;
    background-color: #eafbff;
    border: 1px solid var(--primary);
    text-align: left
}

.icn_out {
    border: 1px solid var(--primary);
    background: var(--white);
    padding: 3px 8px;
    color: var(--primary);
    margin-right: 5px;
    border-radius: 50px
}

.cursor_disabled {
    pointer-events: none;
    cursor: normal
}

.my_checkbox {
    margin: 5px 0 10px 0
}

.customCheckbox,
.customRadio {
    position: relative
}

.customRadio input[type=radio] {
    position: absolute;
    left: -9999px
}

.customRadio input[type=radio]+label {
    position: relative;
    padding: 3px 0 0 30px;
    cursor: pointer
}

.customRadio input[type=radio]+label:before {
    content: '';
    background: var(--white);
    border: 2px solid #ccc;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0
}

.customRadio input[type=radio]+label:after {
    content: '';
    background: var(--primary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 11px;
    left: 6px;
    opacity: 0;
    transform: scale(2);
    transition: transform .3s linear, opacity .3s linear
}

.customRadio input[type=radio]:checked+label:after {
    opacity: 1;
    transform: scale(1)
}

.customRadio.disabled input[type=radio]+label:after,
.customRadio.disabled input[type=radio]+label:before {
    background: var(--gray-lighter)
}

.customCheckbox.small input[type=radio]+label:before {
    border: 1px solid #ccc;
    height: 16px;
    width: 16px;
    position: absolute;
    top: 0;
    left: 0
}

.customCheckbox.small input[type=radio]+label:after {
    width: 8px;
    height: 8px;
    top: 4px;
    left: 4px
}

.customCheckbox input[type=checkbox] {
    position: absolute;
    left: -9999px
}

.customCheckbox input[type=checkbox]+label {
    position: relative;
    padding: 0 0 3px 35px;
    cursor: pointer;
    color: var(--black)
}

.customCheckbox.small input[type=checkbox]+label {
    padding: 0 0 3px 25px
}

.customCheckbox input[type=checkbox]+label:before {
    content: '';
    background: var(--white);
    border: 2px solid #ccc;
    border-radius: 3px;
    height: 22px;
    width: 22px;
    position: absolute;
    top: 0;
    left: 0
}

.customCheckbox input[type=checkbox]+label:after {
    content: '';
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: transparent transparent var(--primary) var(--primary);
    width: 14px;
    height: 7px;
    position: absolute;
    top: 5px;
    left: 4px;
    opacity: 0;
    transform: scale(2) rotate(-45deg);
    transition: transform .3s linear, opacity .3s linear
}

.customCheckbox input[type=checkbox]:checked+label:after {
    opacity: 1;
    transform: scale(1) rotate(-45deg);
    color: var(--primary)
}

.customCheckbox.disabled input[type=checkbox]+label:after,
.customCheckbox.disabled input[type=checkbox]+label:before {
    background: var(--gray-lighter)
}

.customCheckbox.small input[type=checkbox]+label:before {
    border: 1px solid #ccc;
    height: 16px;
    width: 16px;
    position: absolute;
    top: 0;
    left: 0
}

.customCheckbox.small input[type=checkbox]+label:after {
    width: 9px;
    height: 5px
}

.customCheckbox.cbFill input[type=checkbox]:checked+label:before {
    background: var(--primary);
    border: 2px solid var(--primary)
}

.customCheckbox.cbFill input[type=checkbox]:checked+label:after {
    border-color: transparent transparent var(--white) var(--white)
}

.customCheckbox.cbFill input[type=checkbox]:checked+label:after {
    color: var(--white)
}

.customCheckbox.cbCirclePrimary .checkLabelCustom {
    position: relative;
    right: 0;
    top: 0;
    width: auto;
    z-index: 2
}

.customCheckbox.cbCirclePrimary .checkLabelCustomLeft {
    float: left;
    position: relative;
    z-index: 2
}

.customCheckbox.cbCirclePrimary input[type=checkbox]+label:before {
    background: var(--white);
    border: 2px solid #ccc;
    border-radius: 50px;
    width: 30px;
    height: 30px
}

.customCheckbox.cbCirclePrimary input[type=checkbox]:checked+label:before {
    background: var(--primary);
    border: 2px solid var(--primary)
}

.customCheckbox.cbCirclePrimary input[type=checkbox]:checked+label:after {
    border-color: transparent transparent var(--white) var(--white)
}

.customCheckbox.cbCirclePrimary input[type=checkbox]:checked+label:after {
    color: var(--white)
}

.customCheckbox.cbCirclePrimary input[type=checkbox]+label:after {
    border-color: transparent transparent var(--primary) var(--primary);
    width: 18px;
    height: 9px;
    top: 8px;
    left: 6px;
    border-width: 0 0 3px 3px
}

.customRadio.crFill input[type=radio]:checked+label:before {
    background: var(--primary);
    border-color: var(--primary)
}

.customRadio.crFill input[type=radio]:checked+label:after {
    border-color: var(--white);
    background: var(--white)
}

.customRadio.crFill input[type=radio]+label:after {
    border-color: var(--primary);
    border-width: 0 0 3px 3px
}

.card-custom {
    box-shadow: none;
    margin-bottom: 10px
}

.card-custom .card-header {
    border: 1px solid var(--border-light);
    background: 0 0;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 10px
}

.card-custom .card-header .btn {
    font-size: 16px;
    font-weight: 700;
    padding: 0;
    float: left;
    line-height: 24px
}

.card-custom .card-header .btn label {
    font-size: 16px;
    font-weight: 700;
    float: left;
    line-height: 24px
}

.card-header.custom-header {
    border-radius: 5px 5px 0 0;
    background: linear-gradient(90deg, #00c6e6 0, #06f 100%);
    font-size: 18px !important;
    line-height: 28px;
    color: var(--white) !important;
    font-weight: 700 !important
}

.card-custom .card-body.custom-body {
    border: 1px solid var(--border-light);
    background: var(--lighter1)
}

.card-body.custom-body.no-bg {
    background: 0 0
}

.border-btn-0 {
    border-bottom: 0
}

.customCaption {
    left: 0;
    text-align: left;
    padding: 20px;
    background: rgba(0, 0, 0, .7);
    bottom: 0;
    border-radius: 0 15px 0 0;
    backdrop-filter: blur(5px)
}

.compareTable {
    border: 1px solid var(--border-light);
    border-radius: 5px;
    padding: 0;
    margin: 20px 0
}

.compareTable table {
    border-color: var(--border-light);
    margin: 0
}

.compareTable thead th {
    background: var(--primary);
    font-size: 18px !important;
    line-height: 28px;
    color: var(--white) !important;
    font-weight: 700 !important;
    text-align: center;
    border-right: 2px solid var(--white)
}

.compareTable thead th:first-child {
    border-top-left-radius: 4px
}

.compareTable thead th:last-child {
    border-top-right-radius: 4px;
    border-right: 0
}

.compareTable thead th:last-child::before {
    content: "VS";
    position: absolute;
    left: -18px;
    top: 2px;
    background: var(--white);
    border: 1px solid var(--primaryHover);
    border-radius: 100px;
    padding: 7px;
    font-size: 16px;
    line-height: 18px;
    color: var(--gray-dark);
    box-shadow: 0 0 8px rgba(0, 0, 0, .5)
}

.compareTable table tbody,
.compareTable table>:not(:first-child) {
    border-top: 0
}

.compareTable tbody td {
    border-bottom: 1px dashed var(--border-light);
    border-right: 2px solid var(--border-light);
    font-size: 16px
}

.compareTable tbody tr:last-child td {
    border-bottom: 0
}

.compareTable tbody tr td:last-child {
    border-right: 0
}

.collapseMinimal .card {
    box-shadow: none;
    border: 0;
    background: #FAFAFA;
    border: 1px solid #E9E9E9;
    border-radius: 5px;
    padding: 5px 5px;
    overflow: hidden;
}

.collapseMinimal .card-header {
    background: var(--white);
    padding: 0;
    border-bottom: 0;
    /* background: none; */
    background: #FAFAFA;
}

.collapseMinimal .card-header h2 {
    line-height: 22px;
}

.collapseMinimal .card-header .btn-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 600
}

.collapseMinimal .card-header .btn-link:focus {
    /* background: var(--white); */
    box-shadow: none;
}

.collapseMinimal.small .card-header .btn-link {
    padding: 2px 10px 2px;
    text-transform: none;
    line-height: 18px;
    font-family: var(--font-family-title);
}

.collapseMinimal.small .card-header .btn-link img {
    width: 20px;
}

.collapseMinimal .card-body {
    border-bottom: 0;
    border-top: 1px solid var(--border-light);
    background: #fff;
}

.collapseMinimal .card-body .table td {
    padding: 7px 10px;
    border: 0;
}

.collapseMinimal .card-body .table tr.tdsm td {
    padding: 3px 10px;
    border: 0;
}

.collapseMinimal .card-body .table tr:last-child td {
    border-bottom: 0;
}

.tncContainer {
    font-family: var(--font-family-body);
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    float: left;
}

.tncContainer .best_title_about_us {
    font-size: 14px;
    margin-bottom: 10px;
    width: 100%;
    float: left
}

.tncContainer .news_des {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    width: 100%;
    float: left
}

.tncContainer .news_titl,
.tncContainer .start_location,
.tncContainer .sub_conte {
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 5px 0;
    font-family: var(--font-family-title);
    width: 100%;
    float: left
}

.tncContainer .over_scroll {
    overflow-x: auto
}

.tncContainer .start_location {
    text-align: left;
    margin-top: 20px;
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    width: 100% !important;
    font-family: var(--font-family-title) !important
}

.btn-toggle-bg {
    background: #e7e7e7;
    border-radius: 60px;
    padding: 7px !important;
    font-weight: 600
}

.btn-toggle-bg .btn {
    padding: 4px 15px;
    background: 0 0;
    border: none;
    color: var(--black);
    border-radius: 50px !important;
    font-weight: 600
}

.btn-toggle-bg .btn[checked] {
    padding: 4px 15px;
    background: var(--primary);
    color: var(--white);
    border: none
}

.btn-toggle-bg2 {
    background: 0 0;
    border-radius: 0;
    padding: 0 !important;
    font-weight: 600
}

.btn-toggle-bg2 label {
    font-weight: 500
}

.btn-toggle-bg2 .btn {
    padding: 6px 15px 6px 40px !important;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--black);
    border-radius: 5px !important;
    font-weight: 600;
    margin: 0 4px 0 4px;
    position: relative;
    line-height: 28px
}

.btn-toggle-bg2 .btn:focus,
.btn-toggle-bg2 .btn:hover {
    border: 1px solid var(--primary);
    box-shadow: 0 2px 10px rgba(2, 134, 255, .35)
}

.btn-toggle-bg2.customRadio input[type=radio]+label:before {
    left: 10px;
    top: 9px
}

.btn-toggle-bg2.customRadio input[type=radio]+label:after {
    left: 16px;
    top: 15px
}

.btn-toggle-bg2 .btn-check+.btn-outline-primary:focus,
.btn-toggle-bg2 .btn-check:checked+.btn-outline-primary:focus,
.btn-toggle-bg2 .btn-check:checked+.btn-outline-primary:hover {
    background: var(--white);
    border: 1px solid var(--primary);
    box-shadow: 0 2px 10px rgba(2, 134, 255, .35)
}

.btn-toggle-bg2 .btn-check:checked+.btn-outline-primary {
    border: 1px solid var(--primary);
    box-shadow: 0 2px 10px rgba(2, 134, 255, .35);
    color: var(--primary);
    background: var(--white)
}

.btn-toggle-bg2 .btn-uk:checked+.btn-outline-primary:after {
    display: block
}

.form-control-dl {
    width: 220px;
    margin: 0 10px 0 -18px;
    border-radius: 5px;
    padding-left: 32px
}

.orSimiralModal2 .modal-content {
    height: auto !important
}

.orSimiralModal2 .modal-body {
    padding: 10px 15px
}

.customleftColumn {}

.customrightColumn {}

/*========== whatsup call ================*/

.whatsappFloating {
    position: fixed;
    /* width: 60px;
    height: 60px; */
    bottom: 20%;
    right: -145px;
    background-color: #2ab318;
    color: var(--white);
    border-radius: 30px 0px 0px 30px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    padding: 10px 15px;
    transition: all ease-in-out 0.3s;
    font-family: var(--font-family-title);
}

.whatsappFloating i {
    position: relative;
    float: left;
}

.whatsappFloating span {
    font-size: 16px;
    margin: 8px 0px 0px 14px;
    line-height: 18px;
    position: relative;
    float: left;
    font-weight: 500;
}

.my-float {
    margin-top: 0px;
    margin-right: 8px;
}

.whatsappFloating:hover {
    padding-right: 30px;
    right: 0;
    color: var(--white);
}


.callFloating {
    position: fixed;
    /* width: 60px;
    height: 60px; */
    bottom: 28%;
    right: -145px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 30px 0px 0px 30px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    padding: 10px 15px;
    transition: all ease-in-out 0.3s;
    font-family: var(--font-family-title);
}

.callFloating i {
    position: relative;
    float: left;
}

.callFloating span {
    font-size: 16px;
    margin: 8px 0px 0px 14px;
    line-height: 18px;
    position: relative;
    float: left;
    font-weight: 500;
}

.callFloating:hover {
    padding-right: 30px;
    right: 0;
    color: var(--white);
}

/*========== whatsup call ================*/

@-moz-document url-prefix() {
    .customScroll {
        scrollbar-width: thin;
        scrollbar-color: var(--purple2) var(--border-lighter);
    }

    html {
        scrollbar-width: thin;
        scrollbar-color: var(--purple2) var(--border-lighter);
    }
}

.customScroll::-webkit-scrollbar,
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 10px;
}

.customScroll::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
    background: var(--purple2);
    border-radius: 10px;
}

.customScroll::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
    background-color: var(--light1);
    border-radius: 10px;
}

.customScroll::-webkit-scrollbar-button,
::-webkit-scrollbar-button {
    width: 6px;
    border-radius: 10px;
}

.customScroll::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
    border-radius: 10px;
}


/* index.css */
.position-relative {
    position: relative !important;
}


.bodyFixWidth,
.sectionFixWidth {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}


.spaceCustom {
    height: 40px;
}


.BannerSection {
    padding: 7rem 0px 5rem 0px;
}

.customeContainer {
    /* max-width: 1200px; */
    max-width: 1440px;
}


.customTabs {
    margin: 0px 40px -2px;
    border: 0;
    font-family: var(--font-family-title);
}

.customTabs li a {
    padding: 15px 20px;
    background: var(--white) !important;
    border: 0 !important;
    border-top: 5px solid var(--white);
    font-weight: 600;
    color: var(--dark);
    font-size: 18px;
    border-radius: 10px 10px 0px 0px !important;
    margin: 0px 5px 0px 0px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
}

.customTabs li a.active {
    background: linear-gradient(135deg, #631BE1 0%, #0462D4 100%) !important;
    color: var(--white) !important;
}

.btn-rounded-border {
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 14px;
    margin: 10px 10px;
    color: var(--primary);
    font-weight: 600;
    padding: 5px 15px;
}

.btn-rounded-border:hover {
    background-color: var(--primary);
    color: var(--white);
}



/* mj */




.grayColor {
    color: var(--discPrice);
}

.dropdown_category {
    width: 870px;
}

.categorySelection {
    width: 320px;
}


.subtext-title {
    font-family: var(--font-family-title);
    color: var(--gray);
}


/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 5px;
}


/* On mouse-over, add a grey background color */

.customeChkBox:hover input~.checkmark {
    background-color: #ccc;
}


/* When the checkbox is checked, add a blue background */

.customeChkBox input:checked~.checkmark {
    background-color: #2196F3;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.customeChkBox input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.customeChkBox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.testimonilasWrap {
    position: relative;
    z-index: 1;
}

.testimonilasWrap:before {
    position: absolute;
    content: '';
    background: #F6F3F3;
    width: 100%;
    height: 64%;
    top: 0;
    left: 0;
    z-index: -1;
}


/* testimonials: added for equal height ends */

.mt-6 {
    margin-top: 6rem !important;
}

.mt-11 {
    margin-top: 11rem !important;
}


/* scroll to top */

.scrollToTopBtn {
    position: fixed;
    right: 10px;
    bottom: 52px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    text-indent: 0;
    display: none;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    transition: ease-in-out all 0.3s;
    padding: 6px 5px;
    box-shadow: 0px 9px 10px 0px #00000024;
    border: 1px solid var(--border-lighter);
    color: var(--gray-text);
}

.scrollToTopBtn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.scrollToTopBtn i {
    font-size: 28px;
}


.comingSoon h1 {
    font-size: 52px;
    line-height: 60px;
    color: var(--black2);
    font-weight: 700;
}


/* index.css */

@media screen and (max-width:999px) {
    .main-menu {
        flex-direction: column;
        align-items: end;
    }

    .navbarBg img {
        width: 170px;
        transition: ease-in-out all 0.5s;
    }

    .navbarBg.scrolled img {
        width: 120px;
    }
}

@media screen and (max-width:767px) {
    .header-banner {
        height: 120px;
    }

    .page-title:before {
        bottom: -2px;
        height: 5px;
    }

    .page-title:after {
        left: 0;
        bottom: 0px;
    }
}