@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');
@import url('tabler-icons.css');
 :root {
    --white: #ffffff;
    --gray-lighter: #EDEDED;
    --gray: #525252;
    --gray-dark: #343a40;
    --primary: #027EFB;
    --primaryHover: #0369c9;
    --secondary: #6c757d;
    --success: #18ba4e;
    --successHover: #169941;
    --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;
    --dark: #343a40;
    --dark2: #4a4a4a;
    --black: #000000;
    --gray-text: #707070;
    --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;
}

.text-primary {
    color: var(--primary) !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;
}

a {
    text-decoration: none;
}


/*custom scroll*/

.customScroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 10px;
}

.customScroll::-webkit-scrollbar-thumb {
    background: #159ce0;
    border-radius: 10px;
}

.customScroll::-webkit-scrollbar-track {
    /* height: 50px; */
    background-color: #f0f0f0;
    border-radius: 10px;
}

.customScroll::-webkit-scrollbar-button {
    width: 6px;
    /* background: #ccc */
    border-radius: 10px;
}

.customScroll::-webkit-scrollbar-thumb:hover {
    background: #159ce0;
    border-radius: 10px;
}

.navbar-nav {
    background: none;
}


/*custom scroll ends*/

.fw-semibold {
    font-weight: 600;
}

.w-95 {
    width: 95% !important;
}

.w-90 {
    width: 90% !important;
}

.w-40 {
    width: 40% !important;
}

.w-30 {
    width: 30% !important;
}

.align-items-center {
    align-items: center;
}


/*custom alerts*/

.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*/

.modal-header {
    font-family: var(--font-family-title);
}

.modal-content {
    border-radius: 10px;
}

.modal-header.bg-primary .btn-close {
    filter: invert(1);
}


/* right-to-left sliding effect */

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal_animation {
    transform: scale(0.5) !important;
    opacity: 0;
    transform: translateX(4000px) !important;
    background-color: transparent;
}

.modal_animation.show {
    opacity: 1;
    transform: scale(1) !important;
    transform: translateX(0px) !important;
    -webkit-transition: 0.8s ease-out 0s;
    -moz-transition: 0.8s ease-out 0s;
    -ms-transition: 0.8s ease-out 0s;
    -o-transition: 0.8s ease-out 0s;
    transition: 0.8s ease-out 0s;
}

.modal_animation.hide {
    opacity: 0;
    transform: scale(0.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;
}


/* right-to-left sliding effect ends */


/*custom alerts*/


/* 
.overlayLoading {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.7);
    z-index: 999999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
} */

.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: #333333;
}

.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;
    /* left: 0; */
    /* right: 0; */
    text-align: center;
    background: var(--white);
    border-radius: 100%;
}

.overlayLoadingBlack {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 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;
    /* left: 0; */
    /* right: 0; */
    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: transparent;
    padding: 40px;
    border-radius: 5px;
    color: #000;
}

.mt-45 {
    margin-top: 2.2rem!important;
}

.fs-16 {
    font-size: 16px;
    line-height: 18px;
}

* {
    margin: 0px;
    padding: 0px;
    /* font-weight: normal; */
}

a {
    color: inherit;
    text-decoration: none;
}


/* section {
    float: left;
    width: 100%
} */

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 400ms;
    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 0px 10px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    /* margin-bottom: 5px; */
    width: 94%;
    float: left;
}

.seemore .link .chevron {
    margin: 6px 0px 0px 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);
}

.linkBlack {
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
}

.linkGray: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: 58px;
}

.stickyNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
}

.text-primary {
    color: var(--primary);
}

 ::selection {
    color: var(--white);
    background: var(--primary);
}


/* typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-title);
}

h1 {
    font-size: 48px;
    line-height: 52px;
}

h2 {
    font-size: 38px;
    line-height: 42px;
}

h3 {
    font-size: 30px;
    line-height: 41px;
}

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: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 40px 0px;
    margin: 0;
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    position: relative;
}

.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;
    line-height: 50px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 20px;
    /* float: left; */
    width: 100%;
    font-family: var(--font-family-title);
    position: relative;
    z-index: 2;
}

.section-title2 {
    font-size: 35px;
    line-height: 50px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 20px;
    /* float: left; */
    width: 100%;
    font-family: var(--font-family-title);
    z-index: 2;
}

.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;
}

.customTitleOut {
    position: relative;
    width: 100%;
    margin: 20px 0px;
}

.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: 0px 0px 0px 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(0deg) 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: "";
}


/* typography ends */


/* modal img CSS start */

#myImg {
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999999;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(69 69 69 / 90%);
    /* Fallback color */
    background-color: rgb(69 69 69 / 90%);
    /* Black w/ opacity */
}

#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;
}

.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.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: bold;
    transition: 0.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:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.transactionRecipt p img {
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}


/* header nav */

.nav-transparent {
    background-color: transparent;
}

.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: 0px 15px;
    color: #000;
    font-weight: 400;
}

.main-menu.navbar-nav .nav-link::before,
.main-menu.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
}

.main-menu.navbar-nav .nav-link::before {
    background-color: var(--primary);
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(0.76, 0, 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(0.76, 0, 0.24, 1);
    color: var(--primary);
}

.main-menu.navbar-nav .nav-link:hover::before,
.main-menu.navbar-nav .nav-link.active::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(0.76, 0, 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(--black);
}

.main-menu.navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.main-menu {
    flex-direction: row;
    align-items: center;
}

.main-menu .profileBtn {
    padding: 5px 7px;
    font-family: var(--font-family-title);
    color: var(--black);
}

.main-menu .profileBtn .pic {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 1px solid var(--border-lighter);
    padding: 2px;
    margin: 0px 5px 0px 0px;
    float: left;
}

.main-menu .profileBtn .pic img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    float: left;
    border-radius: 100%;
}

.main-menu .profileBtn .name {
    margin: 6px 5px 0px 5px;
    float: left;
    font-weight: 400;
}

.main-menu .profileBtn:hover {
    color: var(--primary);
}

.main-menu .profileBtn.active {
    font-weight: 600;
}

.main-menu .dropdownProfile .dropdown-menu {
    font-family: var(--font-family-title);
    border: 1px solid var(--border-lighter);
    border-radius: 8px;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    right: 0;
}

.main-menu .dropdownProfile .dropdown-menu .profilePicLi {
    text-align: center;
    position: relative;
    margin-top: 0;
}

.main-menu .dropdownProfile .dropdown-menu .profilePicLi:after {
    position: absolute;
    left: -8px;
    right: -8px;
    top: -24px;
    content: '';
    background: var(--primary-calselect-bg);
    height: 70px;
    z-index: -1;
}

.main-menu .dropdownProfile .dropdown-menu .profilePicLi .pic {
    width: 75px;
    height: 75px;
    display: inline-block;
    border: 2px solid var(--border-lighter);
    padding: 2px;
    border-radius: 100%;
    background: var(--white);
}

.main-menu .dropdownProfile .dropdown-menu .profilePicLi .pic img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    float: left;
    border-radius: 100%;
}

.main-menu .dropdownProfile .dropdown-menu li {
    font-size: 14px;
    text-align: left;
    margin: 5px 0px;
}

.main-menu .dropdownProfile .dropdown-menu li .username {
    font-size: 18px;
    font-weight: 700;
}

.main-menu .dropdownProfile .dropdown-menu li a:hover {
    background: var(--danger-light-bg);
}

.main-menu .dropdownProfile .dropdown-menu li a:focus,
.main-menu .dropdownProfile .dropdown-menu li a.active {
    background: var(--primary);
    color: var(--white);
}


/* .main-menu li {
    margin-right: 10px;
}

.main-menu li:last-child {
    margin-right: 0px;
} */


/* header nav ends */

.errorMsg {
    color: var(--danger);
    font-size: 13px;
    margin: 3px 0px 3px 0px;
}

.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 - 10px) !important;
    line-height: 1.25;
    font-size: 14px;
    color: var(--black);
    padding: 8px 10px;
    font-family: var(--font-family-body);
}

.form-floating>label,
.label-only {
    padding: 10px 10px;
    color: var(--gray-text);
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-bottom: 7px;
    padding-top: 24px;
}

.label-only {
    top: -20px;
    right: 0px;
    padding: 0px 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: -5px;
    left: 10px;
    padding: 0px 5px;
    opacity: 1;
    background: var(--white);
    height: auto;
    line-height: 32px;
    font-family: var(--font-family-body);
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0px 2px 10px rgba(2, 134, 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;
}

.form-floating:focus,
.form-floating:not(:placeholder-shown) {
    /* padding-top: $form-floating-input-padding-t;
padding-bottom: $form-floating-input-padding-b; */
}

.input-group>.form-floating:first-child .form-control,
.input-group>.form-floating:first-child .form-select {
    border-radius: 4px 0px 0px 4px;
}

.input-group>.form-floating .form-control,
.input-group>.form-floating .form-select {
    border-radius: 0px;
}

.input-group>.form-floating:last-child .form-control,
.input-group>.form-floating:last-child .form-select {
    border-radius: 0px 4px 4px 0px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    display: none;
}

.backBtn {
    align-self: flex-start;
    border: 0;
    background: none;
}

.nextBtn {
    align-self: flex-end;
    margin-left: auto;
    border: 0;
    background: none;
}

.rounded-4 {
    border-radius: 0.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: 0.5s;
    text-align: center;
    font-family: var(--font-family-body);
}

.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-color: var(--primary);
    border-color: var(--primary); */
    background: linear-gradient(90deg, #0C78ED 0%, #0065D3 59.48%);
    box-shadow: 0px 4px 14px 0px #0098B961;
    color: var(--white);
    text-transform: uppercase;
    transition: all ease-in-out 0.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 0px #0097b975;
}

.btn-primary2 {
    /* background-color: var(--primary);
    border-color: var(--primary); */
    background-image: linear-gradient(135deg, #631BE1 0%, #0462D4 100%);
    box-shadow: 0px 4px 14px 0px #0098B961;
    color: var(--white);
    text-transform: none;
    transition: all ease-in-out 0.3s;
    border: 0;
}

.btn-primary2:hover {
    background-image: linear-gradient(210deg, #631BE1 0%, #0462D4 100%);
    color: var(--white);
    box-shadow: 3px 4px 16px 0px #0097b975;
}

.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-color: var(--success);
    border-color: var(--success); */
    background: linear-gradient(90deg, #50de00 0%, #02a000 100%);
    box-shadow: 0px 4px 14px 0px #0BA0017A;
    color: var(--white);
    text-transform: uppercase;
    transition: all ease-in-out 0.3s;
    border: 0;
}

.btn-green:hover,
.btn-success:hover {
    background: linear-gradient(130deg, #50de00 0%, #02a000 100%);
    box-shadow: 3px 4px 16px 0px #0ca0018a;
    color: var(--white);
}

.btn-gray,
.btn-default {
    background-color: var(--light1);
    border-color: var(--border-light);
    color: var(--black);
    text-transform: uppercase;
}

.btn-gray:hover,
.btn-default: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: 0px 1px 8px rgba(0, 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:hover,
.btn-light-control.show {
    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: bold;
    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: normal;
    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);
    /* box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2); */
    padding: 3px 10px;
    margin-bottom: 10px;
}

.section_titlewIcon .icon {
    width: 20px;
    float: left;
    margin: 2px 5px 0px 0px;
    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);
    /* box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2); */
    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: 0px 1px 12px rgba(0, 0, 0, 0.15);
    font-family: var(--font-family-title);
    border-radius: .3rem 0px 0px 0px;
}

.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: 0px 0px 0px 10px;
    padding: 0px 0px 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: 0px;
    top: 0px;
    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: 0px;
    bottom: 0px;
    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: 0px !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;
    /* height: 100%;
    margin: 0;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%) !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: 20px;
}

.btn-close {
    width: 5px;
    height: 5px;
}

.btn-lightbox-close {
    width: 15px;
    height: 15px;
    background: #000000;
    padding: 2px;
    border-radius: 50%;
}

.btn-modal-close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all ease-in-out 0.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 0.5s;
    font-size: 22px;
    background: var(--dark);
    color: var(--white);
    border-radius: 100%;
    border-radius: 100%;
    padding: 25px 25px 15px 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    z-index: 1058;
    line-height: 17px;
}

.btn-modal-dismiss:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}


/* modal close btn */

.close {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #f1f1f1;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.modal-xl {
    max-width: 1240px !important;
}

.modal-xxl {
    max-width: 1560px !important;
    margin-top: 10px;
}

.modal-xxl .modal-body {
    padding: 0;
}

.modal-xxl.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 40px);
    height: calc(100vh - 40px);
}

.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);
}

.headModal,
.contentModal {
    width: 100%;
    display: block;
    float: left;
    margin: 0 !important;
}

.contentModal {
    margin-top: 50px !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;
}


/* custom radio */

.cursor_disabled {
    pointer-events: none;
    cursor: normal;
}

.my_checkbox {
    margin: 5px 0px 10px 0px;
}

.customRadio,
.customCheckbox {
    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 0.3s linear, opacity 0.3s linear;
}

.customRadio input[type="radio"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

.customRadio.disabled input[type="radio"]+label:before,
.customRadio.disabled input[type="radio"]+label:after {
    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;
}


/* custom checkbox */

.customCheckbox input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

.customCheckbox input[type="checkbox"]+label {
    position: relative;
    padding: 0px 0 3px 35px;
    cursor: pointer;
    color: var(--black);
}

.customCheckbox.small input[type="checkbox"]+label {
    padding: 0px 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 0.3s linear, opacity 0.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:before,
.customCheckbox.disabled input[type="checkbox"]+label:after {
    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;
}


/* blue fill checkbox */

.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);
}


/* blue circle fill checkbox */

.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;
}


/* blue circle fill checkbox ends*/


/* blue fill radio */

.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;
}


/* blue fill radio */

.card-custom {
    box-shadow: none;
    margin-bottom: 10px;
}

.card-custom .card-header {
    border: 1px solid var(--border-light);
    background: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 10px;
}

.card-custom .card-header .btn {
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    float: left;
    line-height: 24px;
}

.card-custom .card-header .btn label {
    font-size: 16px;
    font-weight: bold;
    float: left;
    line-height: 24px;
}

.card-header.custom-header {
    border-radius: 5px 5px 0px 0px;
    background: linear-gradient(90deg, #00C6E6 0%, #0066ff 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: none;
}

.border-btn-0 {
    border-bottom: 0;
}


/* carousel custom caption */

.customCaption {
    left: 0;
    text-align: left;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    bottom: 0;
    border-radius: 0px 15px 0px 0px;
    backdrop-filter: blur(5px);
}


/* carousel custom caption */


/* custom table */

.compareTable {
    border: 1px solid var(--border-light);
    border-radius: 5px;
    padding: 0;
    margin: 20px 0px;
}

.compareTable table {
    border-color: var(--border-light);
    margin: 0px;
}

.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: 0px 0px 8px rgba(0, 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;
    /* text-align: center; */
}

.compareTable tbody tr:last-child td {
    border-bottom: 0;
}

.compareTable tbody tr td:last-child {
    border-right: 0;
}


/* custom table ends */

.collapseMinimal .card {
    box-shadow: none;
    border: 0;
}

.collapseMinimal .card-header {
    background: var(--white);
    padding: 0;
}

.collapseMinimal .card-header .btn-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}

.collapseMinimal.small .card-header .btn-link {
    padding: 5px 10px;
    text-transform: none;
    line-height: 18px;
}

.collapseMinimal .card-body {
    border-bottom: 1px solid var(--border-light);
}

.collapseMinimal .card-body .table td {
    padding: 7px 10px;
}

.tncContainer {
    font-family: var(--font-family-body);
    font-size: 14px;
    font-weight: normal;
    padding: 10px;
}

.tncContainer .best_title_about_us {
    /* font-family: var(--font-family-title); */
    font-size: 14px;
    margin-bottom: 10px;
    width: 100%;
    float: left;
}

.tncContainer .news_des {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
    width: 100%;
    float: left;
}

.tncContainer .news_titl,
.tncContainer .start_location,
.tncContainer .sub_conte {
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0px 5px 0px;
    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: none;
    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: transparent;
    border-radius: 0px;
    padding: 0px !important;
    font-weight: 600;
}

.btn-toggle-bg2 label {
    font-weight: 500;
}

.btn-toggle-bg2 .btn {
    padding: 7px 15px 7px 40px !important;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--black);
    border-radius: 5px !important;
    font-weight: 600;
    margin: 0px 4px 0px 4px;
    position: relative;
    line-height: 28px;
}

.btn-toggle-bg2 .btn:hover,
.btn-toggle-bg2 .btn:focus {
    border: 1px solid var(--primary);
    box-shadow: 0px 2px 10px rgba(2, 134, 255, 0.35);
}

.btn-toggle-bg2.customRadio input[type="radio"]+label:before {
    left: 10px;
    top: 11px;
}

.btn-toggle-bg2.customRadio input[type="radio"]+label:after {
    left: 16px;
    top: 17px;
}

.btn-toggle-bg2 .btn-check:checked+.btn-outline-primary:hover,
.btn-toggle-bg2 .btn-check:checked+.btn-outline-primary:focus,
.btn-toggle-bg2 .btn-check+.btn-outline-primary:focus {
    background: var(--white);
    border: 1px solid var(--primary);
    box-shadow: 0px 2px 10px rgba(2, 134, 255, 0.35);
}

.btn-toggle-bg2 .btn-check:checked+.btn-outline-primary {
    border: 1px solid var(--primary);
    box-shadow: 0px 2px 10px rgba(2, 134, 255, 0.35);
    color: var(--primary);
    background: var(--white);
}


/* .btn-toggle-bg2 .btn-uk+.btn-outline-primary:after {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 10px solid var(--primary);
    border-bottom: 10px solid transparent;
    content: '';
    position: absolute;
    display: none;
    top: 12px;
    right: -10px;
} */


/* .btn-toggle-bg2 .btn[checked],
.btn-toggle-bg2 .btn-check:checked+.btn-outline-primary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
} */

.btn-toggle-bg2 .btn-uk:checked+.btn-outline-primary:after {
    display: block;
}

.form-control-dl {
    width: 220px;
    margin: 0px 10px 0px -18px;
    border-radius: 5px;
    padding-left: 32px;
}

.orSimiralModal2 .modal-content {
    height: auto !important;
}

.orSimiralModal2 .modal-body {
    padding: 10px 15px;
}

@media only screen and (max-width: 991px) {
    .main-menu {
        flex-direction: column;
        align-items: end;
    }
    .main-menu.navbar-nav .nav-link {
        margin: 0;
    }
    .dropdownProfile {
        margin-right: 0 !important;
    }
}