/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}

/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}

/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}

/*** About End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** Cars Categories End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

/*** Team End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.text-body-1 {
    color: #fff;
    font-size: 14px;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #0F2454;
    ;
}

.footer .footer-item a {
    line-height: 35px;
    color: #fff;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 22px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

.footer-item p {
    color: #fff;
    font-size: 14px;
}

.addressnew {
    width: 100%;
    float: left;
    border: 1px solid #8792AA;
    padding: 16px
}

.addressnew ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.addressnew ul li {
    display: inline-flex;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    align-items: center;
}

.addressnew ul li a {
    color: #fff;
    display: block;

}

.addressnew ul li span {
    margin-left: 10px;
    display: inline-block;
    /* padding-top: 7px;*/
}

.contect-adam {}

.contect-adam {
    position: relative;
}

.contect-adam h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.contect-adam hr {
    width: 44px;
    margin-top: 0;
    margin-bottom: 0;
    content: " ";
    top: 57px;
    left: 57px;
    position: absolute;
}

.contect-adam p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
}

.contect-adam strong {
    color: #fff;
    display: inline-block;
    width: 100%;
    margin: 10px 28px 5px;
}

.contect-adam p img {
    margin-right: 9px;
}

.contect-adam p a {
    display: contents;
}

.social-links {
    display: flex;
    justify-content: end;
    align-items: center;
}

.social-links a {
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.05);
    margin: 5px 5px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
}

.social-links a .fab {
    font-size: 14px;
    line-height: 27px;
    position: relative;
    z-index: 10;
    transition: color 0.5s;
}

.social-links a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: -90px;
    left: 0;
    background: #000;
    background: linear-gradient(-45deg, #ed1c94, #ffec17);
    position: absolute;
    transition: 0.5s;
}

.social-links a:hover::after {
    top: 0;
}

.social-links a:hover .fab {
    color: #fff;
}

.social-links a:hover {
    transform: translateY(-10px);
}

.footer-item strong span b {
    color: #fff;
}

.footer-item strong span {
    color: #fff;
}

.phone-txt {
    text-decoration: none;
    font-size: 22px;
    color: #1c1c1a;
    font-weight: 800;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f2453;
}

/*** copyright end ***/
.cookies-txt {}

.cookies-txt h1 {
    color: #41479B;
    font-size: 22px;
    font-weight: 700;
}

.cookies-txt h2 {
    color: #41479B;
    font-size: 18px;
    font-weight: 600;
}

.cookies-txt strong {
    color: #2F2F2F;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.cookies-txt p {
    color: #2F2F2F;
    font-size: 15px;
    font-weight: 400;
}

.terms-conditio-box ul {
    margin: 0;
    padding: 0;
}

.terms-conditio-box ul li {
    position: relative;
    padding: 12px 13px;
    color: #2F2F2F;
    font-size: 15px;
    font-weight: 400;
    list-style-type: none;
}

.terms-conditio-box ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 20px;
    left: 0;
    border-radius: 50%;
    background-color: #41479B;
}

.thankyou {
    background: url(../img/thanku-banner.png) no-repeat;
    width: 100%;
    height: 399px;
    text-align: center;
}

.thankyou h2 {
    font-size: 36px;
    color: #00154c;
    font-weight: 800;
    padding: 133px 0 14px;
}

.thankyou p {
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
}

.get-in-touch {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.get-in-touch h2 {
    color: #000000;
    font-size: 28px;
    font-weight: 700;
}

.wide-choice {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.wide-choice h3 {
    color: #000000;
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 20px;
}

.wide-choice p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.your-mind {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.your-mind .questions {
    background: url(../img/banner-2.png) no-repeat;
    width: 100%;
    height: 320px;
    border-radius: 30px;
    background-position: right;
}

.your-mind .questions span {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 19px;
    display: inline-block;
    margin: 208px 33px 0;
}

.your-mind .questions button {
    float: right;
    margin: 182px 36px 0;
    background: #001c76;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 24px;
    border-radius: 10px;
}

.progress-new {
    width: 80%;
    margin: 30px auto 25px;
}

.progress-new ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.progress-new ul li {
    list-style-type: none;
    text-align: center;
}

.progress-new ul li h2 {
    color: #000000;
    font-size: 19px;
    font-weight: 700;
    margin: 28px 0 0;
}

.progress-new ul li p {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    margin-top: 8px;
}

.progress-new ul li span.active {
    background: #001c76;
    border: 2px solid #001c76;
    border-radius: 50%;
    padding: 21px 15px;
}

.progress-new ul li span {
    padding: 21px 15px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #efefef;
}

/*** result page Start ***/

.car-result {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
    border: 1px solid #d7d8d8;
    background-color: #fff;
    border-radius: 9px;
    padding: 0 14px 0;
    margin-bottom: 20px;
}

.car-result .rst-1 {
    width: 34%;
}

.car-result .rst-2 {
    width: 48%;
}

.car-result .rst-2 h2 {
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 0 8px 0;
    color: #222;
}

.car-result .rst-2 p {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    margin-bottom: 9px;
}

.car-result .rst-3 {
    width: 25%;
    text-align: center;
}

.car-result .rst-3 strong {
    font-size: 21px;
    font-weight: 800;
    color: #222;
    display: inline-block;
    margin-bottom: 10px;
}

.car-result .rst-3 strong span {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.car-result .rst-3 button {
    border-radius: 10px;
    background: #fd1001;
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    padding: 8px 0;
    border: none;
    width: 100%;
}

.car-result .rst-3 button a {
    color: #fff;
    text-decoration: none;
}

.person-all {
    display: flex;
    justify-content: flex-start;
}

.person-all span {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    display: inline-block;
    margin-right: 16px;
}

.person-all span img {
    margin-right: 10px;
}

.vehicle-txt {
    font-size: 21px;
    font-weight: 500;
    color: #222;
    margin-bottom: 18px;
}

/*** result page End ***/
/*** addon extra page Start ***/

.extra-all {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 26px;
    gap: 24px;
}

.extra-all .addon-services {
    width: 32%;
    min-height: 429px;
    border: 1px solid #c4c6cc;
    position: relative;
}

.extra-all .addon-services img {
    /* width: 100%; */
}

.extra-all .addon-services h2 {
    font-size: 16px;
    color: #222;
    font-weight: 700;
    margin: 12px 7px 8px;
}

.extra-all .addon-services p {
    font-size: 14px;
    color: #222;
    font-weight: 500;
    margin: 12px 7px 8px;
}

.extra-all .addon-services a {
    color: #355ad8;
    font-size: 14px;
    font-weight: 500;
    margin: 12px 7px 8px;
}

.extra-all .addon-services strong {
    display: block;
    text-align: center;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin: 11px 0 53px;
}

.extra-all .addon-services strong span {
    color: #333;
    font-size: 15px;
    font-weight: 400;
}

.extra-all .addon-services button {
    background-color: #0c0249;
    font-weight: 700;
    padding: 8px 0;
    margin-bottom: 0;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border: none;
    color: #fff;
    line-height: 1.3;
    font-size: 1.0em;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.driver-informer {
    max-height: 530px;
    /* overflow-y: scroll; */
    overflow: auto;
}

.driver-informer img {
    display: block;
    text-align: center;
    margin: 14px auto 18px;
}

.driver-informer h3 {
    font-size: 16px;
    color: #222;
    font-weight: 700;
    text-align: center;
}

.driver-informer h4 {
    font-size: 13px;
    color: #333;
    font-weight: 700;
    margin: 10px 0 0;
}

.driver-informer p {
    font-size: 12px;
    color: #222;
    font-weight: 500;
}

.driver-informer ul {}

.driver-informer ul li {
    font-size: 12px;
    color: #222;
    font-weight: 400;
    padding: 3px 0;
}

.green {
    color: #0ab284;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    margin-left: 8px;
}

.conti-btn {
    border-radius: 10px;
    background: #fd1001;
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    padding: 8px 0;
    border: none;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-bottom: 31px;
}

.Price-details {
    width: 100%;
    float: left;
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 21px;
    background: #f3f3f3;
    border-radius: 10px;
    margin-bottom: 20px;
}

.Price-details h2 {
    font-size: 21px;
    color: #222;
    font-weight: 700;
    margin: 0 7px 11px;
}

.Price-details .dtl {
    display: flex;
    justify-content: space-between;
    margin: 0 7px 10px;
}

.Price-details .dtl span {
    font-size: 14px;
    color: #222;
    font-weight: 500;
}

.Price-details .dtl strong {
    font-size: 16px;
    color: #222;
    font-weight: 600;
}

.conti-btn a {
    color: #fff;
}



.your-car {
    width: 100%;
    float: left;
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 21px;
    border-radius: 10px;
}

.your-car img {
    margin: 0 auto 0;
    display: block;
}

.your-car h2 {
    font-size: 21px;
    color: #222;
    font-weight: 700;
    margin: 0 7px 11px;
}

.your-car strong {
    font-size: 14px;
    color: #222;
    font-weight: 700;
    margin: 0 7px 0;
}

.your-car p {
    font-size: 13px;
    color: #222;
    font-weight: 500;
    margin: 0 7px 8px;
}

/*** addon extra page End ***/

/*** Payment page Start ***/
.chk-txt {
    font-size: 22px;
    color: #222;
    font-weight: 700;
}

.pickup {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 10px;
    background: #f3f3f3;
    border-radius: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.pickup .loc-1 {}

.pickup .loc-1 label {
    font-size: 15px;
    color: #222;
    font-weight: 700;
}

.pickup .loc-1 p {
    font-size: 14px;
    color: #222;
    font-weight: 500;
}

.Personal {
     width: 100%;
    float: left;
    background: rgba(255, 255, 255, 0.70);
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    box-shadow: 0px 3px 4px 0px rgb(12 6 14 / 14%);
    -webkit-box-shadow: 0px 3px 4px 0px rgb(12 6 14 / 14%);
    padding: 15px;
    margin-bottom:30px;
}

.Personal h2 {
    font-size: 22px;
    color: #222;
    font-weight: 700;
}

.Personal .deatls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 19px;
}

.Personal .deatls .data-1 {
    width: 48%;
}

.Personal .deatls .data-1 label {
    display: block;
}

.Personal .deatls .data-1 label {
    font-size: 15px;
    color: #222;
    font-weight: 500;
    margin-bottom: 7px;
}



.about .about-item .about-item-inner p {
    text-align: left;
}

.display-6 {
    font-size: 20px;
}

.text-light {
    font-size: 14px;
}




.Personal .card-deatls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 19px;
}

.Personal .card-deatls .data-1 {
    width: 100%;
}

.Personal .card-deatls .data-1 label {
    display: block;
}

.Personal .card-deatls .data-1 label {
    font-size: 15px;
    color: #222;
    font-weight: 500;
    margin-bottom: 7px;
}

.Personal .month {
    display: flex;
    justify-content: space-between;
    margin-bottom: 19px;
}

.Personal .month .data-1 {
   width: 32%;
}

.Personal .month .data-1 label {
    display: block;
}

.Personal .month .data-1 label {
    font-size: 15px;
    color: #222;
    font-weight: 500;
    margin-bottom: 7px;
}

/*** Payment page  End ***/

/* Search page */
#dropoff-group {
    transition: height 0.4s ease-out, opacity 0.4s ease-out;
    overflow: hidden;
}

/* Hide the native clock icon in WebKit browsers (Chrome, Edge, Safari) */
input[type="time"]::-webkit-calendar-picker-indicator {
    display: none !important;
    -webkit-appearance: none;
}

/* Optional: make cursor behave like clickable field */
input[type="time"] {
    cursor: pointer;
}