/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap'); */

/* @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&amp;display=swap");

* {
    margin: 0px;

    padding: 0px;
}

body {
    /* font-family: 'Playfair Display', serif; */

    /* font-family: 'Poppins', sans-serif; */
    font-family: "Rubik", sans-serif;
}

:root {
    --first-color: hsl(79, 100%, 49%);
    --white-color: #fff;
    --black-color: #000;
    --body-font: "Rubik", sans-serif;
    --normal-font-size: 0.938rem;
    --tiny-font-size: 0.563rem;
    --heading: 35px;
    --subHeading: 25px;
    --headingWight: 500;
    --section_margin: 60px;
    --heading_content_marging: 50px;
}

.banner-form form h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.heading_content_marging {
    margin-bottom: var(--heading_content_marging);
}

.heading_font_size {
    font-size: var(--heading);
    font-weight: var(--headingWight);
}

.font-small {
    font-size: 12px;
}

a.badge {
    text-decoration: none;
}

a.badge:hover {
    color: white;
}

/* top navbar css start  */

.acr-logo {
    height: 50px;
    width: auto;
    padding: 8px 0px;
}

.top-navbar-main {
    align-items: center;
    background-image: linear-gradient(90deg, #e74e62, #e88215, #ec5f29);
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
            position: sticky;
            top: 0;
            z-index: 99;
        }
        
.footer_main {
}

.top-navbar-main marquee {
    width: 50%;
    color: white;
    display: none;
}

.top-email-main {
    display: flex;
    align-items: center;
    z-index: 3;
}

.top-email-text p {
    color: #000000;
    font-weight: bold;
    margin-bottom: 0px;
    margin-left: 10px;
}

.top-email-text a {
    text-decoration: none;
    color: #000000;
    font-weight: var(--headingWight);
    margin-left: 10px;
}

.top-call-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}

.topbar-email-call {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}

.top-call-text p {
    color: #ffff;
    font-size:15px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.top-call-text a {
    text-decoration: none;
    color: #000000;
    font-weight: var(--headingWight);
    margin-left: 15px;
}

/* top navbar css end  */

.email-main a svg {
    color: white;
    background-color: #184797;
    padding: 5px;
    border-radius: 50%;
}

.call-img-main a svg {
    color: white;
    background-color: #184797;
    padding: 5px;
    border-radius: 50%;
}

.popup-form__title {
    color: white;
}

.form__content {
    display: grid;

    row-gap: 1.5rem;
}

.popup-form__input,
.form__label,
.popup-form__submit {
    border: 0;

    outline: none;

    font-size: var(--normal-font-size);

    font-family: var(--body-font);
}

.form__box {
    width: 312px;

    height: 59px;

    position: relative;

    margin: 4px;
}

.form__box1 {
    width: 312px;

    height: 59px;

    position: relative;
}

.form__shadow {
    position: absolute;

    width: 100%;

    height: 100%;

    background-color: var(--black-color);
}

.popup-form__input {
    position: absolute;

    border: 2.5px solid var(--black-color);

    background-color: var(--white-color);

    width: 100%;

    height: 100%;

    z-index: 10;

    padding: 18px;

    transition: transform 0.3s;
}

.popup-form__input1 {
    position: absolute;

    border: 2.5px solid var(--black-color);

    background-color: var(--white-color);

    width: 100%;

    height: 100%;

    z-index: 10;

    padding: 0 18px;

    transition: transform 0.3s;
}

.popup-form__input:placeholder {
    transition: opacity 0.5s;
}

.form__label {
    z-index: 100;

    position: absolute;

    top: 16px;

    left: 20px;

    font-size: var(--tiny-font-size);

    font-weight: 600;

    transition: 0.2s;

    pointer-events: none;

    opacity: 0;
}

.form__button {
    justify-self: flex-end;

    background-color: var(--black-color);

    margin: 15px 0px;
}

.popup-form__submit {
    padding: 0.875rem 1.5rem;

    color: var(--black-color);

    background-color: var(--first-color);

    cursor: pointer;

    transition: transform 0.3s;
}

.popup-form__submit:hover {
    transform: translate(-6px, -6px);
}

/* Opaque placeholder */

.form__input:focus::placeholder {
    opacity: 0;

    transition: 0.3s;
}

/* Move input and sticky input up */

.popup-form__input:focus,
.popup-form__input:not(:placeholder-shown).popup-form__input:not(:focus) {
    transform: translate(-8px, -8px);

    padding: 28px 18px 18px;

    animation: input-animation 0.5s;
}

/* Move label and sticky label up */

.popup-form__input:focus + .form__label,
.popup-form__input:not(:placeholder-shown).popup-form__input:not(:focus)
    + .form__label {
    opacity: 1;

    top: 2px;

    left: 12px;

    transition: 0.3s;
}

/* Input bounce animation */

@keyframes input-animation {
    0% {
        transform: translate(0);
    }

    40% {
        transform: translate(-9px, -9px);
    }

    60% {
        transform: translate(-7px, -7px);
    }
}

/*=============== BREAKPOINTS ===============*/

/* For large devices */

/*.popup-form__submit {*/

/*  border: none;*/

/*  outline: none;*/

/*  background-color: #17222a;*/

/*  padding: 7px 40px;*/

/*  font-size: 18px;*/

/*  color: white;*/

/*  font-weight: 700;*/

/*  cursor: pointer;*/

/*  transition: background-color 0.3s ease-in-out;*/

/*  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/

/*  border-radius: 10px;*/

/*  border: 2px solid #396afc;*/

/*  margin-top:15px;*/

/*}*/

.button:hover {
    background-color: #121c2480;
}

.popup-wrapper {
    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(2, 2, 2, 0.685);

    z-index: 9998;

    opacity: 0;

    pointer-events: none;

    padding: 10px 20px;

    transition: opacity 0.3s ease-in-out;
}

.popup-wrapper.active {
    opacity: 1;

    pointer-events: all;
}

.popup {
    padding: 36px 30px;

    max-width: 400px;

    width: 100%;

    position: fixed;

    top: 52%;

    left: 50%;

    transform: translate(-50%, -50%);

    background-color: #00000052;
}

.popup-form {
    display: flex;

    flex-direction: column;

    justify-content: center;

    /* align-items: center; */
}

.close-btn {
    position: absolute;

    top: 0;

    right: 0;

    background: none;

    border: none;

    padding: 0;

    border: 0;

    width: 30px;

    height: 55px;

    outline: none;

    cursor: pointer;

    display: inline-block;

    transition: transform 0.3s, opacity 0.3s;

    -webkit-transition: transform 0.3s, opacity 0.3s;

    -moz-transition: transform 0.3s, opacity 0.3s;

    -ms-transition: transform 0.3s, opacity 0.3s;

    -o-transition: transform 0.3s, opacity 0.3s;
}

.close-btn:before,
.close-btn:after {
    content: "";

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 2px;

    height: 30px;

    background-color: #fff;

    border-radius: 1.5px;

    transform: translateY(-50%);
}

.close-btn:before {
    transform: translateY(-50%) rotate(45deg);
}

.close-btn:after {
    transform: translateY(-50%) rotate(-45deg);
}

.close-btn:hover {
    transform: scale(1.1);
}

.close-btn:active {
    opacity: 0.8;

    transform: scale(0.9);
}

/*.popup-form__input {*/

/*  margin-bottom: 20px;*/

/*  padding: 12px 20px;*/

/*  width: 92%;*/

/*}*/

.credit a {
    text-decoration: none;

    color: #fff;

    font-weight: 800;
}

.credit {
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    margin: 10px;

    color: #fff;

    text-align: center;
}

/**/

/* semicircle menu */

.circular-menu {
    position: fixed;

    bottom: 1em;

    right: 1em;
}

.circular-menu .floating-btn {
    display: block;

    width: 3.5em;

    height: 3.5em;

    border-radius: 50%;

    background-color: hsl(4, 98%, 60%);

    box-shadow: 0 2px 5px 0 hsla(0, 0%, 0%, 0.26);

    color: hsl(0, 0%, 100%);

    text-align: center;

    line-height: 3.9;

    cursor: pointer;

    outline: 0;
}

.circular-menu.active .floating-btn {
    box-shadow: inset 0 0 3px hsla(0, 0%, 0%, 0.3);
}

.circular-menu .floating-btn:active {
    box-shadow: 0 4px 8px 0 hsla(0, 0%, 0%, 0.4);
}

.circular-menu .floating-btn i {
    font-size: 1.3em;

    transition: transform 0.2s;
}

.circular-menu.active .floating-btn i {
    transform: rotate(-45deg);
}

.circular-menu:after {
    display: block;

    content: " ";

    width: 2.5em;

    height: 2.5em;

    border-radius: 50%;

    position: absolute;

    top: 6px;

    right: 6px;

    z-index: -2;

    background-color: hsl(4, 98%, 60%);

    transition: all 0.3s ease;
}

.circular-menu.active:after {
    transform: scale3d(5.5, 5.5, 1);

    transition-timing-function: cubic-bezier(0.68, 1.55, 0.265, 1);
}

.circular-menu .items-wrapper {
    padding: 0;

    margin: 0;
}

.circular-menu .menu-item {
    position: absolute;

    top: 1.2em;

    right: 1.2em;

    z-index: -1;

    display: block;

    text-decoration: none;

    color: hsl(0deg 0% 0% / 65%);

    font-size: 0.8em;

    width: 2em;

    height: 2em;

    border-radius: 10%;

    text-align: center;

    line-height: 3;

    color: hsl(0deg 0% 0% / 68%);

    transition: transform 0.3s ease, background 0.2s;
}

.circular-menu .menu-item:hover {
    background-color: hsla(0, 0%, 0%, 0.3);
}

.circular-menu.active .menu-item {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-menu.active .menu-item:nth-child(1) {
    transform: translate3d(1em, -7em, 0);
}

.circular-menu.active .menu-item:nth-child(2) {
    transform: translate3d(-3.5em, -6.3em, 0);
}

.circular-menu.active .menu-item:nth-child(3) {
    transform: translate3d(-6.5em, -3.2em, 0);
}

.circular-menu.active .menu-item:nth-child(4) {
    transform: translate3d(-7em, 1em, 0);
}

/**

 * The other theme for this menu

 */

.circular-menu.circular-menu-left {
    right: auto;

    left: 1em;
}

.circular-menu.circular-menu-left .floating-btn {
    background-color: #184797;
}

.circular-menu.circular-menu-left:after {
    background-color: #184797;

    opacity: 50%;
}

.circular-menu.circular-menu-left.active .floating-btn i {
    transform: rotate(-45deg);
}

.circular-menu.circular-menu-left.active .menu-item:nth-child(1) {
    transform: translate3d(-1em, -7em, 0);
}

.circular-menu.circular-menu-left.active .menu-item:nth-child(2) {
    transform: translate3d(3.5em, -6.3em, 0);
}

.circular-menu.circular-menu-left.active .menu-item:nth-child(3) {
    transform: translate3d(6.5em, -3.2em, 0);
}

.circular-menu.circular-menu-left.active .menu-item:nth-child(4) {
    transform: translate3d(7em, 1em, 0);
}

/* end semicircle menu */

/* new hadder and marquee */

.navbar-bg {
    background-color: whitesmoke;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.acr-navbar-main li a {
    color: #000;
}

/* :root {

            --marquee-speed: 50s;

            --marquee-hover-offset: -50px;

            --marquee-hover-transition-speed: 1s;

            --marquee-fade-edges: 30%;

        } */

.harsh {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 10vh;

    font-size: 1rem;

    padding: 0;

    margin: 0;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

    letter-spacing: 0.02em;

    font-weight: 800;

    color: #fff;

    background: linear-gradient(
        112.1deg,
        rgb(239 111 49 / 0%) 43.4%,
        rgb(239 111 49) 70.2%
    );
}

.marquee {
    overflow: hidden;

    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0%) 0%,
        #000 var(--marquee-fade-edges),
        #000 calc(100% - var(--marquee-fade-edges)),
        rgba(0, 0, 0, 0%) 100%
    );

    &,
    > div {
        display: flex;

        white-space: nowrap;

        gap: 30px;
    }

    > div {
        animation: animate-marquee var(--marquee-speed) infinite linear;

        transition: var(--marquee-hover-transition-speed) margin-left ease-out;

        will-change: transform, margin-left;
    }

    &:hover > div {
        animation-play-state: paused;

        margin-left: var(--marquee-hover-offset);
    }
}

@keyframes animate-marquee {
    0% {
        transform: translateX(0%) translateZ(0);
    }

    100% {
        transform: translateX(-100%) translateZ(0);
    }
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(0, -25%, 0);
    }

    50% {
        transform: translate3d(0, -50%, 0);
    }

    75% {
        transform: translate3d(0, -25%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.acr-navbar-main li a {
    font-size: 14px;
}

.navbar-appointment-btn {
    height: 40px;

    font-size: 1rem;

    transform: rotate(90deg);
}

@keyframes m {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

.card-icon-main {
    color: #000;
}

.login-drop-main {
    color: #000;
}

.top-email-text a {
    color: #ffffff;
}

.top-call-text a {
    color: rgb(255, 255, 255);
}

.shake-clls img {
    animation: Shake 0.5s linear infinite;
}

@keyframes Shake {
    0% {
        transform: rotate(5deg);
    }

    25% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-6deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

.bottom-overlay {
    display: flex;

    width: 1440px;
}

#title,
#title2 {
    padding: 3px 10px;

    color: #fff;

    font-size: 22px;

    margin: 2px 2px 0;

    text-transform: uppercase;

    font-weight: 700;
}

.two-column {
    display: flex;
}

.first-table,
.second-table {
    width: 362px !important;
}

.second-table {
    margin-left: -3px;
}

.search-svg-main {
    color: #e56f31;
}

/* ticker */

#ticker {
    position: absolute;

    top: 2px;

    right: 0;

    left: 0;

    color: #f5f5f5;

    display: flex;

    height: 28px;

    flex-direction: row;

    flex-wrap: nowrap;

    overflow: hidden;

    width: 55% !important;

    #logo {
        position: relative;

        z-index: 5;

        box-shadow: 5px 0 5px -2px rgba(0, 0, 0, 0.4);

        padding: 1px 5px;

        .image {
            height: 30px;

            -webkit-background-size: contain;

            background-size: contain;

            background-repeat: no-repeat;

            background-position: center center;
        }
    }

    &.team-ticker {
        #logo img {
            height: 30px;

            width: auto;
        }
    }

    &.news-ticker {
        #logo img {
            height: 30px;

            width: auto;
        }
    }

    #content {
        display: flex;

        position: relative;
    }

    #source {
        position: absolute;

        right: 0;

        top: 0;

        background: #222;

        padding: 0 20px;

        line-height: 30px;

        height: 30px;

        z-index: 100;

        span {
            font-size: 10px;

            margin-right: 5px;

            color: #999;
        }

        div {
            display: inline-block;
        }
    }

    .team {
        padding: 2px 20px 3px;

        white-space: nowrap;

        font-size: 16px;

        line-height: 26px;

        color: white;

        span {
            display: inline-block;

            padding: 0 7px 0 0;

            font-family: "Overpass Mono", sans-serif;

            font-weight: 800;
        }
    }

    #news {
        margin-left: 1600px;
    }

    .news-item {
        padding: 8px 80px 3px;

        white-space: nowrap;

        font-size: 16px;

        color: #cbcbcb;
    }
}

.line {
    animation: marquee 15s linear infinite;

    display: flex;

    flex-direction: row;

    flex-wrap: wrap;

    justify-content: flex-start;

    align-content: flex-start;

    align-items: flex-start;

    white-space: nowrap;
}

.line div {
    padding-right: 0.5em;
}

.line div:after {
    margin-left: 0.5em;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* new hadder and marquee end */

/* navbar css start  */

.navbar-bg {
    width: 100%;
    background-color: #fff;
    padding: 10px 5px;
            position: sticky;
            z-index: 999;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
.acr-navbar-section {
    display: flex;
    align-items: center;
}

.acr-navbar-main {
    list-style: none;
    display: flex;
    margin-bottom: 0px;
    padding: 0px 10px;
}

.acr-navbar-main li a {
    color: #383737;
    text-decoration: none;
    margin-bottom: 0px;
    font-size: 1rem;
    font-weight: 500;
}

.acr-navbar-main li {
    margin-right: 30px;
}

.acr-navbar-main li a.acr-active {
    color: #e56f31;
}

.navbar-appointment-btn {
    height: 50px;
    background-color: #e56f31;
    display: inline-block;
    vertical-align: middle;
    padding: 0px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-appointment-btn:hover {
    color: #fff;
}

.search-main-section {
    display: flex;
    justify-content: end;
    align-items: center;
}

.search-icon-main {
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
}

.search-icon-main img {
    margin-top: 10px;
    margin-right: 18px;
}

.search-icon-main svg {
    font-size: 22px;
}

/* appointment modal  css start  */

.appointment-dialog .modal-header {
    border-bottom: 0px !important;
}

.modal-backdrop {
    background-color: transparent !important;
}

.appointment-dialog {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-dialog .appointment-contet-modal h2 {
    font-weight: bold;
}

.appointment-dialog .check-price-btn {
    background-color: #e56f31;
    width: 100%;
    color: #fff;
    font-size: 22px;
    border: 0px;
    height: 50px;
    margin-bottom: 40px;
}

.appointment-dialog .modal-footer {
    border-top: 0px;
    padding: 0px 12px;
}

.appointment-dialog .form-select {
    height: 45px;
}

.appointment-dialog .appointment-contet-modal .appointment-car-service {
    margin-top: 25px;
    margin-bottom: 15px;
}

/* appointment modal  css end  */

/* appointmentselectModal start */

.appointmentselect-dialog {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointmentselect-dialog .modal-header {
    border-bottom: 0px !important;
    padding: 0px;
}

.appointmentselect-dialog .modal-header button {
    position: absolute;
    top: 5%;
    right: 3%;
    z-index: 1;
}

.appointmentselect-dialog .modal-body {
    margin: 0px 20px;
}

.appointmentselect-dialog .modal-body h2 {
    font-weight: var(--headingWight);
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 25px;
}

.appointmentselect-dialog .modal-footer {
    border-top: 0px;
    padding: 0px 12px;
}

.appointmentselect-dialog .search-brand-input {
    border-radius: 0px !important;
    height: 45px;
}

.appointmentselect-dialog .search-brand-input::placeholder {
    color: #3f3f3f73 !important;
    font-weight: var(--heading) !important;
}

.appointmentselect-dialog .search-icon svg {
    position: absolute;
    left: 94%;
    top: 30%;
}

.appointmentselect-dialog .brand-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.brand-name-image {
    width: auto;
    height: 38px;
}

.appointmentselect-dialog .brand-logo-center a {
    text-decoration: none;
}

.appointmentsearch-dialog .modal-content .modal-backdrop {
    background-color: transparent;
}

.appointmentfuel-dialog .modal-content {
    left: 81%;
    top: 258px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 500px;
}

.appointmentsearch-dialog .modal-content {
    left: 81%;
    top: 258px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.appointmentnumber-dialog .modal-content {
    left: 81%;
    top: 258px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 500px;
}

.appointmentsearch-dialog {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointmentsearch-dialog .modal-header {
    border-bottom: 0px !important;
    padding: 0px;
}

.appointmentsearch-dialog .modal-header button {
    position: absolute;
    top: 5%;
    right: 4%;
    z-index: 1;
}

.appointmentsearch-dialog .modal-body {
    margin: 0px 20px;
}

.appointmentsearch-dialog .modal-body h2 {
    font-weight: var(--headingWight);

    font-size: 25px;
}

.appointmentsearch-dialog .modal-footer {
    border-top: 0px;
    padding: 0px 12px;
}

.appointmentsearch-dialog .search-brand-input {
    border-radius: 0px !important;
    height: 45px;
    margin: 15px 0px;
}

.appointmentsearch-dialog .search-brand-input::placeholder {
    color: #4d4d4d83 !important;
    font-weight: var(--heading) !important;
}

.appointmentsearch-dialog .search-icon svg {
    position: absolute;
    right: 20px;
    top: 30px;
}

.appointmentsearch-dialog .brand-logo-center {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin-top: 15px;
}

.appointmentsearch-dialog .brand-logo-center a {
    text-decoration: none;
}

.appointmentsearch-dialog .select-modal-name {
    text-align: center;
    margin-bottom: 5px;
    color: #000000;
    font-size: 14px;
}

.appointmentsearch-dialog .search-modal-box {
    margin: 15px 0px;
    height: 380px;
    overflow: auto;
}

/* appointmentsearchModal end */

/* Appointment fuel modal start  */

.appointmentfuel-dialog {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointmentfuel-dialog .modal-header {
    border-bottom: 0px !important;
    padding: 0px;
}

.appointmentfuel-dialog .modal-header button {
    position: absolute;
    top: 5%;
    right: 4%;
    z-index: 1;
}

.appointmentfuel-dialog .modal-body {
    margin: 0px 20px;
}

.appointmentfuel-dialog .modal-body h2 {
    font-weight: var(--headingWight);
    margin-bottom: 15px;
    font-size: 25px;
}

.appointmentfuel-dialog .modal-footer {
    border-top: 0px;
    padding: 0px 12px;
}

.appointmentfuel-dialog .search-brand-input {
    border-radius: 0px !important;
    height: 45px;
    margin: 15px 0px;
}

.appointmentfuel-dialog .search-brand-input::placeholder {
    color: #4d4d4d5d !important;
    font-weight: var(--headingWight) !important;
}

#costume_cross {
    position: absolute;
    top: 0;
    right: 0;
}

.appointmentfuel-dialog .search-icon svg {
    position: absolute;
    right: 20px;
    top: 30px;
}

.parent_warr {
    flex-wrap: wrap;
}

.appointmentfuel-dialog .brand-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.appointmentfuel-dialog .brand-logo-center a {
    text-decoration: none;
}

.appointmentfuel-dialog .select-modal-name {
    text-align: center;
    margin-bottom: 5px;
    color: #000000;
}

.appointmentfuel-dialog .search-modal-box {
    margin: 15px 0px;
}

/* Appointment fuel modal end  */

/* Appointment Number modal start */

.appointmentnumber-dialog {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointmentnumber-dialog .modal-header {
    border-bottom: 0px !important;
    padding: 0px;
}

.appointmentnumber-dialog .modal-header button {
    position: absolute;
    top: 5%;
    right: 4%;
    z-index: 1;
}

.appointmentnumber-dialog .modal-body {
    margin: 0px 20px;
}

.appointmentnumber-dialog .modal-body h2 {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 25px;
}

.appointmentnumber-dialog .modal-footer {
    border-top: 0px;
    padding: 0px 33px;
}

.appointmentnumber-dialog .brand-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.appointmentnumber-dialog .brand-logo-center a {
    text-decoration: none;
}

.appointmentnumber-dialog .select-modal-name {
    text-align: center;
    margin-bottom: 5px;
    color: #000000;
    font-size: 14px;
    word-break: break-all;
}

.appointmentnumber-dialog .check-price-btn {
    background-color: #e56f31;
    width: 100%;
    color: #fff;
    font-size: 20px;
    border: 0px;
    height: 50px;
    margin-bottom: 40px;
}

.appointmentnumber-dialog .form-control {
    height: 45px;
}

.appointmentnumber-dialog .check-price-btn-main {
    width: 100%;
}

/* Appointment Number modal end */

/* navbar css end  */

/* slider css start  */

.acr-slider-section-main {
    background: #fff;
    padding: 0px 0px;
}

.slider-section-main h1 {
    color: #000000;
    font-size: 70px;
    font-weight: bold;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 0px;
}

.slider-section-main h2 {
    color: #e56f31;
    font-size: 49px;
    font-weight: bold;
    text-shadow: 0px 4px 3px rgba(249, 149, 0, 0.5);
    margin-bottom: 0px;
}

.slider-section-main h4 {
    font-size: 16px;
    font-weight: 400;
}

.slider-section-main p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    padding: 30px 0px;
}

.slider-section-main .get-service-btn {
    background-color: #e56f31;
    width: 180px;
    height: 45px;
    text-align: center;
    border-radius: 10px;
    border: 0px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    display: block;
    text-decoration: none;
    line-height: 45px;
    margin-bottom: 20px;
}

.slider-section-box {
    display: flex;
}

/* slider css end  */

/* service css start  */

.service-section::before {
    content: url("../img/service-main-img.webp");
    width: 100%;
    height: auto;
    overflow: hidden;
    position: absolute;
    margin-top: -110px;
    left: 0;
    z-index: -1;
    display: inline-block;
}

.service-section .service-main-btn {
    text-decoration: none;
    text-align: center;
    background: #e56f31;
    color: #fff;
    height: 45px;
    width: 200px;
    display: block;
    line-height: 45px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
}

.service-section .always-service-text p {
    font-size: 37px;
    text-align: center;
    width: 100%;
    margin: 20px auto;
    font-weight: bold;
}

.service-section .always-service-text {
    margin-bottom: 30px;
}

.service-section .services-cate-main {
    position: relative;
    margin-bottom: 100px;
}

.service-section .services-cate-item {
    background-color: #01073c;
    position: absolute;
    top: 78%;
    width: 95%;
    transition-duration: 0.5s;
}

.service-section .services-cate-item:hover {
    width: 100%;
    transition-duration: 0.4s;
}

.service-section .services-cate-item h4 {
    color: #fff;
    font-weight: bold;
    margin-left: 10px;
    text-align: left;
    font-size: 20px;
    margin-bottom: 0px;
}

.service-section .services-cate-item p {
    color: #fff;
    margin-left: 10px;
    text-align: left;
    font-size: 12px;
    margin-bottom: 10px;
}

.service-section .se-cat-bigimage {
    position: absolute;
    top: 0;
    left: 51%;
    width: 70px;
    opacity: 0.5;
}

.service-cat-smallimg {
    height: 46px;
    margin-top: 5px;
    margin-left: 5px;
}

.home-service-main {
    display: flex;
    align-items: center;
    height: 72px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* service css end  */

/* why choose us start */

.why-choose-section {
    padding: 50px 0;
    background-color: #f1f1f1;
}

.why-choose-section-new {
    padding: 25px 0;
}

.why-choose-section .why-choose-inner-item {
    box-shadow: 0px 8px 24px 0px rgba(140, 149, 159, 0.2);
    padding: 20px;
    background: #fff;
    margin: 12px 6px;
    min-height: 250px;
}

.why-choose-section .why-choose-item h4 {
    font-size: 22px;
    font-weight: bold;
    color: #f99500;
}

.why-choose-section .why-choose-item h5 {
    font-size: var(--heading);
    font-weight: bold;
    color: #000000;
}

.why-choose-section .why-choose-item p {
    font-size: 16px;
    color: #000000;
}

.why-choose-section .why-choose-inner-item h4 {
    font-size: 18px;
    margin: 10px 0px 20px 0px;
    color: #000000;
    font-weight: bold;
}

.why-choose-section .why-choose-inner-item p {
    font-size: 15px;
    color: #000000;
    font-weight: normal;
}

.why-choose-section .why-choose-img-main img {
    padding: 0px 15px;
}

.why-choose-section .why-choose-main {
    padding: 0px 15px;
}

/* .why-choose-section .why-choose-box-main{  align-items: center; margin-bottom: 25px; } */

/* why choose us end */

/* extra service*/

.spc {
    padding: 50px 0;
}

.newservice h4 {
    font-size: 50px;
    color: #222;
    font-weight: bold;
}

.extraservice {
    box-shadow: 1px 2px 4px 1px #0000001e;
    padding: 25px;
    margin: 25px 10px;
    border-radius: 8px;
}

.extraservice .servic-type-box-image {
    width: 25% !important;
    display: block;
    margin: auto;
}

.extraservice .servic-type-box h5 {
    color: #222;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
}

.extraservice .service-type-head {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0px;
}

/* end extra service*/

/* end Home page price*/

.pricelist {
    overflow-x: auto;
}

.pricelist h3 {
    padding: 0px 0px;
    font-size: 30px;
    color: #222;
    text-align: left;
    font-weight: var(--headingWight);
}

/* end home page price*/

/* offer slider  css start  */

.offeer-section {
    padding: 45px 0px;
    background: #f1f1f1;
}

.offeer-section h3 {
    padding: 0px 0px;
    font-size: 40px;
    color: #222;
    font-weight: bold;
    text-align: center;
}

.offeer-section .explore-btn {
    background-color: #e56f31;
    color: #fff;
    border: none;
    width: 145px;
    height: 45px;
    font-size: 17px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
}

.offeer-section .offer-section-main img {
    position: relative;
    /*  height: 500px; object-fit: cover;*/
}

.offeer-section .offer-section-item {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.offeer-section .offer-section-item p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: bold;
}

.offeer-section .offer-section-item h4 {
    color: #fff;
    font-size: 48px;
    width: 56%;
    font-weight: bold;
    margin: 35px 0px;
}

.offeer-section .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 1%;
    top: 46%;
    background: #fff;
    transform: translateY(-50%);
    border-radius: 50%;
}

.offeer-section .owl-carousel .owl-nav button.owl-next span {
    background: #fff;
    font-size: 40px;
    height: 40px;
    width: 40px;
    display: block;
    line-height: 38px;
    border-radius: 50%;
}

.offeer-section .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 1%;
    top: 46%;
    background: #fff;
    transform: translateY(-50%);
    border-radius: 50%;
}

.offeer-section .owl-carousel .owl-nav button.owl-prev span {
    background: #fff;
    font-size: 40px;
    height: 40px;
    width: 40px;
    display: block;
    line-height: 38px;
    border-radius: 50%;
}

/* offer slider  css end  */

/* testimonial css start  */

.testimonial-section {
    padding: 35px 0px;
}

.testimonial-section .testiminoal-img-main {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
}

.testimonial-section .testiminoal-img-main-text p {
    color: #d90e0e;
    font-size: 25px;
}

.testimonial-section .testiminoal-img-main-text h4 {
    color: #000000;
    font-size: var(--heading);
    font-weight: bold;
}

.testimonial-section .star-group-icon {
    margin-bottom: 10px;
}

.testimonial-section .star-group-icon svg {
    color: #fec42d;
    font-size: 20px;
    margin-right: 5px;
}

.testimonial-section .test-slider-text {
    font-size: 26px;
    color: #000000;
    font-weight: bold;
}

.testimonial-section .test-rating-sec-main {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.testimonial-section .test-rating-main {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.testimonial-section .test-rating-sec-item {
    margin-left: 15px;
}

.testimonial-section .test-rating-sec-item p {
    margin-bottom: 0px;
    font-size: 21px;
    color: #000000;
}

.testimonial-section .test-rating-sec-item span {
    font-weight: bold;
    font-size: 26px;
    color: #000000;
}

.testimonial-section .testiminoal-carousel-sec-main {
    display: flex;
    align-items: center;
}

.testimonial-section .owl-theme .owl-dots .owl-dot span {
    height: 3px;
    width: 18px;
    background-color: #000;
}

.testimonial-section .owl-theme .owl-dots .owl-dot.active span {
    background-color: #d90e0e;
}

.testimonial-section .owl-theme .owl-dots {
    text-align: center;
}

/* testimonial css end  */

/* brand logo css start  */

.brand-logo-section,
.car-brand-logo-section {
    background-color: #f2f2f2;
    padding: 2rem 0rem;
    display: flex;
    align-items: center;
}

.brand-logo-section .container {
    border-top: 1px solid #ddd;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.brand-logo-section .partner-brand-logo {
    overflow: hidden;
}

.brand-logo-section .partner-brand-logo img {
    width: 100%;
    margin: auto auto;
    object-fit: contain;
    filter: grayscale(1);
}

.brand-logo-section .partner-brand-carousel .owl-stage-outer {
    width: 100% !important;
}

/* brand logo css end */

/* save more css start  */

.save-more-section {
    background-color: #e56f31;
    height: 200px;
    display: flex;
    align-items: center;
}

.save-more-section .save-more-text {
    color: #fff;
    font-weight: bold;
    font-size: 40px;
    margin: 45px 10px;
}

.save-more-section .save-more-text p {
    margin-bottom: 0px;
}

/*.save-more-section .save-more-img::before { content: url('../img/cont-blue-toyota.png'); position: absolute; margin-top: -50px; height: auto;  overflow-x: hidden;  } */

.save-more-img-main {
    position: relative;
}

.save-more-img img {
    margin-left: auto;
    position: absolute;
    top: -41px;
    float: right;
}

/* save more css end  */

/* form  section css start  */

.form-section-bg {
    background-color: #164498;
    padding-bottom: 30px;
}

.form-section-bg .request-text-main {
    width: 50%;
    padding-top: 50px;
    padding-bottom: 35px;
}

.form-section-bg .request-text-main h2 {
    color: #e56f31;
    font-size: 44px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.form-section-bg .msg-success h6 {
    color: #e56f31;
}

.form-section-bg .request-text-main p {
    color: #fff;
    font-size: 15px;
}

.form-section-bg .form-label {
    color: #fff;
}

.form-section-bg .form-control {
    border-bottom: 1px solid #fff !important;
    background-color: unset;
    border: 0px;
    border-radius: 0px;
    color: #fff;
    padding: 0px;
}

.form-section-bg .form-control::placeholder {
    color: #fff;
    padding-left: 0px;
}

.form-section-bg .form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-section-bg .form-select {
    background: unset;
    border: 0px;
    border-bottom: 1px solid #fff;
    border-radius: 0px;
    color: #fff;
    padding: 0px;
}

.form-section-bg .form-select:focus {
    outline: none;
    box-shadow: none;
}

.form-section-bg .form-select option {
    color: #000000;
}

.form-section-bg .form-select svg {
    color: #fff;
}

.form-section-bg .form-btn-contant {
    background-color: #e56f31;
    color: #fff;
    border: 0px;
    width: 165px;
    height: 45px;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 0px;
}

/* form  section css end  */

/* footer css start  */

.footer-bg-main {
    background-color: #a19f9f;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-bg-main .footer-widthset {
    width: 94%;
    margin: auto;
}

.footer-bg-main .footer-img-main {
    border-right: 1px solid #000;
}

.footer-bg-main .footer-img-main p {
    color: #000;
    font-size: 20px;
    padding-top: 10px;
}

.footer-bg-main .footer-img-main img {
    width: 120px;
}

.footer-bg-main .footer-address p {
    color: #000;
    margin-bottom: 0px;
}

.footer-bg-main .footer-address a {
    color: #fff;
    text-decoration: none;
}

.footer-bg-main .footer-email-main {
    padding: 10px 0px;
}

.footer-bg-main .footer-email p {
    color: #000;
    margin-bottom: 0px;
}

.footer-bg-main .footer-email a {
    color: #000;
    text-decoration: none;
}

.footer-bg-main .footer-call p {
    color: #000;
    margin-bottom: 0px;
}

.footer-bg-main .footer-call a {
    color: #000;
    text-decoration: none;
}

.footer-bg-main .fot-about-main {
    list-style: none;
    padding-left: 0px;
}

.footer-bg-main .fot-about-main li .fot-about-main-header {
    font-size: 26px;
    font-weight: bold;
}

.footer-bg-main .fot-about-main li a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    padding-bottom: 10px;
    display: block;
}

.footer-bg-main .fot-ourservice-main {
    list-style: none;
    padding-left: 0px;
}

.footer-bg-main .fot-ourservice-main li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    padding-bottom: 5px;
    display: block;
}

.footer-bg-main .fot-ourservice-main li .fot-ourservice-heading {
    font-size: 26px;
    font-weight: bold;
}

.footer-bg-main .footer-msgimg-main {
    display: flex;
    align-items: center;
}

/* footer css end  */

/* footer down css start  */

.footet-down-bg {
    background-color: #1f1f1f;
}

.footet-down-bg .main-soical-icon {
    color: #fff;
    display: flex;
    align-items: center;
    padding: 20px 0px;
}

.footet-down-bg .main-soical-icon p {
    color: #fff;
    margin-bottom: 0px;
    margin-right: 10px;
}

.footet-down-bg .main-soical-icon svg {
    background-color: #fff;
    color: #000;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    padding: 10px;
}

.footet-down-bg .footet-down-main {
    width: 94%;
    margin: auto;
}

.footet-down-bg .copy-right-text-main {
    display: flex;
    align-items: center;
}

.footet-down-bg .copy-right-text-main p {
    margin-bottom: 0px;
    color: #fff;
    font-size: 20px;
}

.footet-down-bg .back-top-main {
    display: flex;
    align-items: center;
    justify-content: end;
}

.footet-down-bg .back-top-main p {
    color: #fff;
    margin-bottom: 0px;
    margin-right: 5px;
}

/* footer down css end  */

/* service page css start  */

.our-service-section {
    margin-top: var(--section_margin) !important;
    margin-bottom: var(--section_margin);
}

.our-service-section .service-main-heading h1 {
    font-size: 44px;
    font-weight: var(--headingWight);
    text-align: center;
}

.our-service-section .service-main-heading h2 {
    font-size: var(--heading) !important;
    font-weight: var(--headingWight);
    text-align: center;
}

.our-service-section .servic-type-box {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 20px;
    margin: 0px 10px;
    margin-bottom: 20px;
    /* min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;  */
}

.our-service-section .servic-type-box:hover {
    transform: scale(1.04);
    transition: all ease 0.2s;
}

.our-service-section .servic-type-box .servicepage-type-name {
    color: #000000;
    font-size: 16px;
    font-weight: var(--headingWight);
    text-align: center;
    margin-bottom: 0px;
}

.our-service-section .servic-type-box p {
    font-size: 18px;
    color: #000;
    height: 64px;
    overflow: hidden;
    margin-bottom: 5px;
}

.our-service-section .our-ser-send-msgbtn {
    background-color: #e56f31;
    color: #fff;
    width: 190px;
    height: 50px;
    font-size: 23px;
    font-weight: bold;
    border: 0px;
    border-radius: 10px;
}

.our-service-section .our-section-main-btngroup {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.our-service-section .servic-type-box-image {
    width: 50px;
    height: 50px;
    display: block;
    margin: 20px 0px;
}

.our-service-section a.read-more::after {
    content: "\2192";
    color: #e56f31;
    margin-left: 10px;
    font-weight: 600;
}

.our-service-section .service-type-head {
    height: 60px;
    display: block;
    margin: 5px 0px;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0px;
}

/* service page css end  */

/* service inner page css start  */

.service-inner-tophead {
    position: relative;
}

.service-inner-tophead-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-inner-tophead h1 {
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
}

.ser-inner-breadcum {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    margin-bottom: 0px;
    text-align: center;
}

.ser-inner-breadcum li a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0px;
    font-size: 25px;
}

.ser-inner-breadcum li {
    color: #fff;
    font-size: 25px;
}

.ser-inner-breadcum li svg {
    margin: 0px 10px;
    font-size: 21px;
}

.service-innersection-mian .service-inner-mainbg {
    padding: 30px 20px;
    margin: 0px auto 25px auto;
    position: relative;
    box-shadow: 1px 2px 4px 1px #0000001e;
}

#brand_title {
    font-weight: var(--headingWight);
    font-size: 25px;
    margin-bottom: 15px;
}

/* .service-innersection-mian .service-inner-mainbg:hover {
  transform: scale(1.04);
  transition: all ease 0.2s;
} */

.service-inner-mainbg .row .col-md-3 > img {
    margin-bottom: 20px;
}

.brand_cat input {
    width: 100% !important;
    margin-bottom: 20px;
}

.brand_cat .search-icon {
    position: absolute;
    right: 10px;
    top: 10px;
}

.parent_warr {
    display: flex;
    margin-bottom: 20px;
}

.costume_mr_3 {
    margin-right: 50px;
}

.parent_service_package {
    width: 100%;
}

.side_modal {
    max-width: 480px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    height: 480px;
    overflow-y: hidden;
    margin-right: -500px;
    transition: 1s;
}

.none_desk {
    display: none;
}

.overflow_hidden {
    overflow: hidden;
}

.service-innersection-mian .service-inner-basic-heading h2 {
    color: #e56f31;
    font-size: 24px;
    font-weight: var(--headingWight);
}

.service-innersection-mian .basic-service-text-main a {
    color: #187601;
    font-size: 16px;
}

.controll_tick .col-sm-6:nth-child(even) {
    width: 273px !important;
}

.service-innersection-mian .basic-service-text-main ul {
    padding-left: 20px;
}

.service-innersection-mian .service-inner-textname {
    display: flex;
}

.service-innersection-mian .service-inner-textname span svg {
    color: #000851;
    margin-right: 5px;
}

.service-innersection-mian .service-inner-textname p {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(128, 128, 128, 0.747);
    font-weight: 500;
}

.service-innersection-mian .payment-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.service-innersection-mian .ser-inner-addtocart {
    border: 1.5px solid #e56f31;
    color: #e56f31;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 400;
    transition: 1s;
}

.service-innersection-mian .ser-inner-addtocart:hover {
    background-color: #e56f31;
    color: white;
}

/* background-color: #E56F31; */
.service-innersection-mian .packeage-prise p {
    color: #e56f31;
    font-size: 16px;
    margin-bottom: 0px;
}

/*.service-innersection-mian { padding: 40px 0px;}*/

.service-innersection-mian .recommanded-heading {
    background: #4cb050;
    color: #fff;
    height: 30px;
    line-height: 30px;
    font-size: 17px;
    width: auto;
    text-align: center;
    margin-top: -20px;
    margin-left: -20px;
    padding: 0px 8px;
    border-radius: 0px 0px 8px 0px;
}

.service-innersection-mian .explore-more-btnseriner {
    background: #e56f31;
    color: #fff;
    border: 0px;
    padding: 0px 15px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.service-innersection-mian .serin-appointment-btn {
    background: #e56f31;
    color: #fff;
    border: 0px;
    padding: 0px 15px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    border-radius: 10px;
    text-align: center;
    display: block;
    text-decoration: none;
    font-size: 18px;
}

/* service inner page css end  */

/* shoping page start  */

/* .shoping-breadcrum-bg { background-color:#f1f1f1;}  */

.shoping-breadcrum-bg .brand-name-image {
    display: block;
    margin: auto;
}

.shoping-category-bg {
    background: unset !important;
    width: 100%;
}

.shoping-breadcrum-bg .shoping-breadcrum-main {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0px;
    padding: 22px 0px;
    flex-wrap: wrap;
}

.shoping-breadcrum-bg .shoping-breadcrum-main li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #00000078;
}

.shoping-breadcrum-bg .shoping-breadcrum-main li svg {
    margin: 0px 10px;
    font-size: 12px;
    margin-bottom: 0px;
    color: #00000078;
}

.shoping-breadcrum-bg .shoping-breadcrum-main li a {
    text-decoration: none;
    color: #00000078;
    font-size: 14px;
    font-weight: var(--headingWight);
}

.shopping-section {
    margin-bottom: 22px;
    width: 100%;
}

.shopping-section .fliter-main {
    position: sticky;
    top: 48px;
    padding: 15px 20px;
    margin-bottom: 100px;
    box-shadow: 1px 2px 4px 1px #0000001e;
}

.shopping-section .fliter-main ul {
    list-style: none;
    padding-left: 0px;
    padding-right: 0;
}

.shopping-section .fliter-main ul li {
    margin-bottom: 10px;
}

.shopping-section .fliter-main ul li a {
    text-decoration: none;
    color: #000000;
    display: block;
}

.shopping-section .fliter-main ul li a svg {
    color: #000000;
    float: right;
}

.shopping-section .fliter-item1 {
    display: none;
}

.shopping-section .shoping-main-product {
    margin-bottom: 25px;
    box-shadow: 1px 2px 4px 1px #0000001e;
    padding-bottom: 1px;
}

.shopping-section .shoping-main-product:hover {
    transform: scale(1.04);
    transition: all ease 0.2s;
}

.shopping-section .shoping-main-product img {
    height: 163px;
    width: 100%;
    object-fit: contain;
}

.shopping-section .shoping-main-product h5 {
    font-size: 16px;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 10px;
}

.shopping-section .shoping-main-product h5 a {
    text-decoration: none;
    color: #000;
    margin-top: 0px;
    font-weight: bold;
    display: inline-block;
}

.shopping-section #search_ajax_list a {
    text-decoration: none;
    color: #000;
}

.shopping-section .product-title {
    font-size: 14px;
    font-weight: var(--headingWight) !important;
    height: 40px !important;
    line-height: 22px;
}

.shopping-section .product-category-title {
    font-size: 14px;
    color: #00000054;
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

.shopping-section .shoping-card-prise {
    position: absolute;
    bottom: 20px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shopping-section .shoping-star-group {
    color: #e56f31;
}

.shopping-section .shoping-card-text p {
    margin-bottom: 0px;
    color: #e56f31;
    font-size: 16px;
    font-weight: var(--headingWight);
}

.shopping-section .shop-add-btn {
    background-color: #e56f31;
    border: 0px;
    border-radius: 5px;
    color: #fff;
    margin: 0px auto;
    display: block;
    padding: 8px 15px;
}

.wrapper_shoping_cart {
    padding: 10px;
    min-height: 180px;
    position: relative;
}

/* shoping page end  */

/* contact us css start  */

.contact-section-main {
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-section-main .contact-main-heading h1 {
    color: #164498;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

.contact-section-main .address-main-contact {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 10px;
    padding: 25px 25px 0px 25px;
    margin: 25px 0px;
}

.contact-section-main .address-main-contact h2 {
    color: #e56f31;
    font-size: 24px;
    font-weight: bold;
}

.contact-section-main .address-main-contact p {
    width: 40%;
    font-size: 16px;
}

.contact-section-main .address-main-contact img {
    display: block;
    margin-left: auto;
    margin-top: 40px;
}

.contact-section-main .contact-helpnumber-main {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 10px;
    padding: 25px 25px 0px 25px;
    margin: 25px 0px;
}

.contact-section-main .contact-helpnumber-main h2 {
    color: #e56f31;
    font-size: 24px;
    font-weight: bold;
}

.contact-section-main .contact-helpnumber-main a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    display: block;
}

.contact-section-main .contact-helpnumber-main img {
    display: block;
    margin-left: auto;
    width: 80px;
}

/* contact us css end */

/* shopping inner css start  */

/* .shopping-innerbg-secmain { background-color: #f1f1f1; } */

.shopping-innerbg {
    padding: 25px;
    padding: 25px 0px;
}

.shopping-innerbg .product-content-main {
    color: #000000;
    font-size: 24px;
    font-weight: bold !important;
    text-transform: uppercase;
    font-weight: 900 !important;
}

.shopping-innerbg .product-content-main h2 {
    font-weight: var(--headingWight) !important;
}

.shopping-innerbg .share-image {
    display: flex;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 8px;
}

.shopping-innerbg .share-image p svg {
    margin-right: 5px;
}

.shopping-innerbg .share-image p {
    margin-bottom: 0px;
    color: #164498;
    font-size: 15px;
    margin-right: 10px;
}

.share-image a svg {
    color: #164498;
    font-size: 12px;
    font-size: 20px;
    margin-right: 16px;
}

.share-image a img {
    height: 20px;
    width: 20px;
}

.shopping-innerbg .share-image img {
    height: 20px;
    margin-right: 10px;
}

.shopping-innerbg .write-text {
    color: #ff0000;
    font-size: 15px;
    text-decoration: none;
}

/*.shop-inner-prise {  display: flex; justify-content: space-between; margin-bottom: 30px; margin-top: 16px; }*/

.shopinner-prise-text {
    color: #e56f31;
    font-size: 24px;
    padding-bottom: 0px;
}

.shopinner-prise-text p {
    margin-bottom: 0px;
    font-weight: var(--headingWight);
}

.quantity-sec-main {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.quantity-sec-main p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0px;
}

.quantity-sec-main .form-select {
    width: 90px;
    background: #d9d9d9;
    border-radius: 0px;
}

.frame .plus-minus-main {
    width: 100px !important;
    padding: 8px;
    border-radius: 20px;
}

.frame .plus-minus-main > .plus-col > button {
    padding: 0 !important;
}

.quantity-sec-main .frame,
button {
    margin-right: 8px;
}

.quantity-sec-main button {
    font-size: 12px !important;
    padding: 12px;
    border-radius: 10px;
}

.quantity-sec-main button.addtocard-shopinner {
    padding: 12px 30px !important;
}

.shopping-innerbg .addtocard-shopinner {
    background-color: #e56f31;
    color: #fff;
    border: 1px solid #e56f31;
    font-size: 20px;
}

.shopping-innerbg .addtocard-shopinner:hover {
    background-color: unset;
    color: #e56f31;
    border: 1px solid #e56f31;
}

.shopping-innerbg .buyfrom-shopinner {
    color: #164498;
    border: 1px solid #164498;
    font-size: 20px;
    background-color: unset;
}

.shopping-innerbg .buyfrom-shopinner:hover {
    background-color: #164498;
    color: #fff;
}

.description-main {
    padding-bottom: 30px;
    height: auto;
}

.description-main > #tabs li {
    color: #00000078;
    display: inline-block;
    line-height: 45px;
    font-size: 16px;
    margin-right: 5px;
}

.specification-tab-text {
    padding: 0 !important;
}

.specification-tab-text p {
    margin-bottom: 10px !important;
}

.description-main p {
    font-size: 16px;
    margin-bottom: 20px;
}

.description-main p strong {
    font-weight: var(--headingWight);
    font-size: 20px;
}

#sync1 .item {
    margin: 5px;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}

#sync2 .item {
    margin: 5px;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

.owl-theme .owl-nav [class*="owl-"] {
    transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*="owl-"].disabled:hover {
    background-color: #d6d6d6;
}

#sync1.owl-theme {
    position: relative;
}

#sync1.owl-theme .owl-prev {
    left: 18px;
    display: none;
}

#sync1.owl-theme .owl-next {
    right: 18px;
    display: none;
}

#sync2 .owl-nav button.owl-next {
    position: absolute;
    right: -8px;
    top: 23%;
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

#sync2 .owl-nav button.owl-next:hover {
    color: #000;
    background-color: unset;
}

#sync2 .owl-nav button.owl-prev {
    position: absolute;
    left: -8px;
    top: 23%;
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

#sync2 .owl-nav button.owl-prev:hover {
    color: #000;
    background-color: unset;
}

ul#tab li {
    display: none;
}

ul#tab li.active {
    display: block;
}

ul#tabs li.active {
    color: #000000;
}

/* shopping inner css end  */

/* add to cart css start  */

.personal-detail-main {
    background-color: #f2f2f2;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.personal-detail-main h4 {
    color: #164498;
    font-size: 24px;
    font-weight: bold;
}

.personal-detail-main .verify-otpbtn {
    background-color: #e56f31;
    color: #fff;
    width: 150px;
    height: 45px;
    border: none;
    border-radius: 6px;
    margin-bottom: 15px;
    line-height: 34px;
}

.otpinput-main {
    position: relative;
    margin-top: 15px;
}

.otpinput-main a {
    position: absolute;
    top: 22%;
    right: 2%;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

.date-sec-main {
    display: flex;
}

.date-main {
    text-decoration: none;
    border: 1px solid #000;
    padding: 8px 15px;
    border-radius: 10px;
    color: #000;
    margin-right: 10px;
}

.date-main:hover {
    color: #e56f31;
    border: 1px solid #e56f31;
    background-color: rgba(229, 111, 49, 0.3);
}

.date-main p {
    margin-bottom: 0px;
    text-align: center;
    font-size: 12px;
}

a.select-date {
    border: 1px solid #e56f31;
    color: #e56f31;
    background-color: rgba(229, 111, 49, 0.3);
}

.Choose-service-date-main {
    background-color: #f2f2f2;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.Choose-service-date-main h4 {
    color: #164498;
    font-size: 24px;
    font-weight: bold;
}

.pick-slot-main h4 {
    color: #164498;
    font-size: 24px;
    margin: 20px 0px;
}

.pick-slot-main h4 span {
    color: #ccc;
    font-size: 15px;
}

.afternoon-slot-btn {
    background-color: unset;
    border: 1px solid #000;
    width: 100%;
    height: 45px;
    color: #000;
    font-weight: bold;
    line-height: 35px;
}

.afternoon-slot-btn:hover {
    border: 1px solid #e56f31;
    background-color: rgba(229, 111, 49, 0.3);
    color: #e56f31;
}

.afternoon-slot-active {
    background-color: rgba(229, 111, 49, 0.3);
    border: 1px solid #e56f31;
    width: 100%;
    height: 45px;
    color: #e56f31;
    font-weight: bold;
}

.afternoon-slot-sec-main {
    margin: 25px 0px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.4);
    padding-bottom: 25px;
}

.afternoon-slot-sec-main h4 {
    padding-bottom: 20px;
}

.afternoon-slot-sec-main h4 span {
    color: #000;
    background-color: rgba(229, 111, 49, 0.3);
    font-size: 15px;
    padding: 3px 0px 3px 3px;
    margin-right: 5px;
}

.evening-slot-btn {
    background-color: unset;
    border: 1px solid #000;
    width: 100%;
    height: 45px;
    color: #000;
    font-weight: bold;
    line-height: 35px;
}

.evening-slot-btn:hover {
    border: 1px solid #e56f31;
    background-color: rgba(229, 111, 49, 0.3);
    color: #e56f31;
}

.evening-slot-active {
    background-color: rgba(229, 111, 49, 0.3);
    border: 1px solid #e56f31;
    width: 100%;
    height: 45px;
    color: #e56f31;
    font-weight: bold;
}

.evening-slot-sec-main {
    margin: 25px 0px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.4);
    padding-bottom: 25px;
}

.evening-slot-sec-main h4 {
    padding-bottom: 20px;
}

.evening-slot-sec-main h4 span {
    color: #000;
    background-color: rgba(229, 111, 49, 0.3);
    font-size: 15px;
    padding: 3px 0px 3px 3px;
    margin-right: 5px;
}

.sele-date-continue-btn {
    background: #e56f31;
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 140px;
    height: 40px;
}

.sele-date-continue-btn svg {
    margin-left: 5px;
}

.sele-date-continue-sec {
    text-align: end;
    margin-bottom: 20px;
}

.select-btn-main {
    border: 1px solid #000;
    background-color: unset;
    width: 120px;
    height: 35px;
    text-align: center;
    margin-top: 25px;
}

.choose-address-main {
    border: 1px solid rgba(0, 0, 0, 0.4);
    padding: 15px;
    margin: 0px;
}

.select-payment-main {
    background: #f2f2f2;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.select-payment-main h4 {
    color: #164498;
    font-size: 24px;
    font-weight: bold;
}

.select-address {
    background: #f2f2f2;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.select-address h4 {
    color: #164498;
    font-size: 24px;
    font-weight: bold;
}

.pay-online-text {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.pay-online-text img {
    margin-right: 8px;
}

.pay-online-text input {
    text-align: end;
    margin-left: auto;
    accent-color: #e56f31;
}

.pay-cash-text {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.pay-cash-text img {
    margin-right: 8px;
}

.pay-cash-text input {
    text-align: end;
    margin-left: auto;
    accent-color: #e56f31;
}

input[type="radio"] {
    accent-color: #e56f31;
}

.plus-minus-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #ccc;
    width: 90%;
    border-radius: 10px;
}

.minus-btn-col-1 {
    width: 45%;
}

.plus-btn-col-1 {
    width: 25%;
}

.plus-col > button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-col > button,
.number {
    width: 100%;
    border: 0px;
    text-align: center;
    background: unset;
}

.frame .number p {
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: var(--headingWight);
    color: rgb(128 128 128 / 69%);
}

button {
    color: #000;
    outline: none;
}

#minus-btn svg {
    font-size: 14px;
}

.count {
    font-size: 17px;
    color: #fff;
}

.add-to-cart-img {
    width: 50px;
    margin-right: 8px;
}

.service-add-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 30px 0px;
}

.service-add-sec-main {
    display: flex;
    align-items: center;
}

.service-name-text {
    display: flex;
    align-items: center;
}

.service-name-text img {
    width: 45px;
    margin-right: 8px;
}

.service-name-text p {
    margin-bottom: 0px;
}

.service-add-sec-main p {
    margin-bottom: 0px;
    margin-bottom: 0px;
    font-size: 16px;
    margin-right: 11px;
    margin-left: 10px;
}

.add-accessory-sec-main {
    margin-bottom: 30px;
    text-align: end;
}

.add-accessory-btn {
    background-color: #e56f31;
    color: #fff;
    font-size: 17px;
    border: 0px;
    width: 165px;
    height: 45px;
    line-height: 30px;
    border-radius: 8px;
    margin: 20px auto;
}

.item-total-sec-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0px 10px;
}

.item-total-sec-border {
    border-top: 1px solid #ccc;
    margin-top: 7px;
    padding-top: 15px;
}

.you-pay-sec-main {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ccc;
}

.you-pay-sec-main p {
    margin-bottom: 0px;
    padding: 7px 10px;
}

.confirm-booking-btn {
    background-color: #e56f31;
    color: #fff;
    font-size: 16px;
    border: 0px;

    line-height: 30px;
    border-radius: 8px;
    margin: 20px auto;
    padding: 14px;
}

.confirm-booking-btn:hover {
    color: white !important;
}

.card-detial-sec-main {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    margin: 25px 0px !important;
}

.parent_cart_checkout .service-name-text > .border-bottom > .content {
    max-width: 350px !important;
    width: 100%;
}

.parent_cart_checkout .service-name-text > div p,
.parent_cart_checkout .service-name-text > div {
    color: rgb(128 128 128 / 69%);
}

/* add to cart css end  */

/* thank you  page css start  */

.thank-you-sec-main {
    text-align: center;
    margin: 50px 0px;
}

.thank-you-sec-main h2 {
    font-size: 64px;
    font-weight: 800;
}

.thank-you-sec-main p {
    font-size: 20px;
}

.thank-you-sec-main button {
    background-color: #e56f31;
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 200px;
    height: 40px;
}

/* thank you  page css end  */

/* shop  center css start  */

.shop-center-tophead {
    position: relative;
}

.shop-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shop-center-text h1 {
    color: #fff;
    font-size: 60px;
    font-weight: bold;
}

.shop-center-breadcum {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    margin-bottom: 0px;
    text-align: center;
}

.shop-center-breadcum li a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0px;
    font-size: 25px;
}

.shop-center-breadcum li {
    color: #fff;
    font-size: 25px;
}

.shop-center-breadcum li svg {
    margin: 0px 10px;
    font-size: 21px;
}

.shop-center-bg {
    background-color: #f2f2f2;
    padding: 20px;
    margin: 30px 0px;
}

/* .shop-address-main{ display: flex; align-items: center;} */

.address-main {
    padding: 15px;
    text-align: center;
    height: 250px;
}

.address-main svg {
    font-size: 60px;
    color: #164498;
    margin-bottom: 25px;
}

.call-main {
    padding: 15px;
    text-align: center;
    height: 250px;
}

.call-main svg {
    font-size: 60px;
    color: #164498;
    margin-bottom: 25px;
}

.call-main a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 25px;
}

/* shop  center css end  */

#searchbarModal .searchbar-dialog {
    z-index: 9999 !important;
    position: relative !important;
}

#searchbarModal .searchbar-dialog .modal-header {
    border-bottom: 0px;
}

/* mobile menu css start  */

.mo-acr-navbar-main {
    list-style: none;
}

.mobile-menu-main {
    background-color: #ffffff;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.mo-acr-navbar-main li a {
    text-decoration: none;
    color: #000;
    /* font-weight: var(--headingWight); */
    font-size: 16px;
}

.mo-acr-navbar-main li a.acr-active {
    color: #e56f31;
}

.btn-toggle-item {
    background-color: unset;
    padding: 5px 15px;
    border: 0px;
    border-radius: 5px;
}

.btn-toggle-item svg {
    font-size: 24px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 5px;
    border-radius: 5px;
}

.mo-search-main-section {
    display: flex;
    justify-content: end;
}

.mobile-toggle-data {
    /* display: none; */
    position: fixed;
    top: 0 !important;
    transition: 0.5s;
    transform: translateX(100%);
    right: 0px;
    background: #fff;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    top: 0%;
    z-index: 9999;
}

.mobile-menu-sectiondata {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* mobile menu css end  */

.car-service-img-main img {
    width: 100% !important;
}

/* faq section css start  */

.faq-section-main {
    background: #f7f6f68f;
    padding: 30px;
}

.faq-section-main .faq-img-main img {
    display: block;
    margin: auto;
}

.faq-section-main .faq-text-content {
    margin-bottom: 10px;
}

.faq-section-main .accordion-button:focus {
    box-shadow: none;
    color: #000;
    font-weight: bold;
}

.faq-section-main .faq-heading {
    font-weight: bold;
    margin-bottom: 25px;
}

.faq-section-main a.accordion-header {
    display: block;
    background-color: #9fa4a891;
    color: black;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 2px;
    text-decoration: none;
    text-align: left;
    /*font-weight: bold;*/
    border-radius: 10px 10px 0px 0;
}

.faq-section-main a.accordion-header.active-accordion {
    background-color: #9fa4a891;
}

.faq-section-main .accordion-content {
    display: none;
    position: relative;
  padding: 10px 15px;
  border: solid 1px #9fa4a8;
    
  margin-top: 0px;
  border-top: none;
  margin-bottom: 10px;
  text-align: left;
  font-size: 14px;
  border-radius: 0px 0px 10px 10px;
}

.faq-section-main a.accordion-header:after {
    content: "\002b";
    color: #fff;
    font-weight: 800;
    float: right;
    margin-left: 10px;
    font-size: 20px;
}

.faq-section-main a.accordion-header.active-accordion:after {
    content: "\2212";
}

.faq-section-main .accordion-text-content {
    margin-bottom: 0px;
    font-size: 18px;
}

/* faq section css end  */

/* profile page css */

.profileimg {
    display: flex;
    justify-content: center;
    position: relative;
}

.profileimg img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

.profilepenicon {
    position: absolute;
    left: 60%;
    top: 70%;
    background-color: #aaaaaa;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    padding-top: 6px;
    padding-left: 3px;
    opacity: 0.8;
}

/* profile page css */

.search-svg-main {
    margin-right: 20px;
    font-size: 22px;
    color: #e56f31;
}

.card-icon-main {
    color: #e56f31;
    text-decoration: none;
}

.card-icon-main svg {
    font-size: 22px;
    position: relative;
    top: 2px;
}

.card-icon-main:hover {
    color: #184797;
}

.login-icon-text {
    text-align: center !important;
}

.login-icon-text:hover,
.login-icon-text:focus {
    color: #184797;
}

.login-icon-main li {
    margin-right: 0px;
}

.login-icon-main li a:active {
    background-color: #fff;
}

#plus-btn svg {
    font-size: 12px;
}

.shoping-main-product-section {
    min-height: 450px;
}

.login-icon-main {
    transform: translate(-70px, 35px) !important;
    /*transform: translate3d(50px, 35px, 0px) !important;*/
}

#sync1 .product-inner-imgmain img {
    height: 350px;
    object-fit: contain;
}

#sync2 .product-inner-imgmain img {
    height: 125px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #00000066;
}

.minus-btn {
    color: #000;
    font-size: 14px;
    font-size: 14px;
}

.plus-btn {
    color: #000;
    font-size: 14px;
}

.minus-btn:hover {
    color: #000;
}

.plus-btn:hover {
    color: #000;
}

.servic-type-box-section {
    text-decoration: none;
}

/* login css start  */

.login-section-main {
    background-color: #164498;
}

.email-text-heading {
    color: #fff;
}

.input-login-main {
    background: #164498 !important;
    border: 0px;
    border: 1px solid #fff;
    border-radius: 0px;
    color: #fff !important;
    padding-left: 10px;
}

.input-login-main::placeholder {
    color: #fff;
}

.input-login-main:focus {
    background: #164498 !important;
    box-shadow: unset !important;
    border-bottom: 1px solid #fff !important;
}

.forget_msg {
    color: #fff;
    margin-top: 10px;
    display: block;
}

.forget_msg:hover {
    color: #fff;
}

.sign-up-btn-main {
    border: 1px solid #fff;
    background-color: unset;
    width: auto;
    height: 45px;
    /* border-radius: 8px; */
    color: #fff;
    padding: 0px 20px;
    font-size: 18px;
}

/* login css end */

/* register css start  */

.register-section-main {
    background-color: #164498;
}

/* register css end */

/* forget css start  */

.forget-section-main {
    background-color: #164498;
}

/* forget css start  */

.login-form-main {
    padding: 13px 60px;
    width: 100%;
}

.login-img-main img {
    height: 560px;
    object-fit: contain;
    width: 100%;
}

.loging-breadcrum-bg {
    background-color: #164498;
}

.login-breadcrum-main {
    list-style: none;
    padding: 0;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

.login-breadcrum-main li {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 15px;
}

.login-breadcrum-main li svg {
    padding: 0px 8px;
    font-size: 15px;
}

.login-breadcrum-main li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0px;
    font-size: 18px;
    font-weight: bold;
}

.personal-input-main {
    border-radius: 0px;
}

.shop-category-heading {
    padding-top: 0px;
    /* display: block; */
    font-size: 19px;
    font-weight: var(--headingWight);
    padding-bottom: 6px;
    letter-spacing: 1px;
}

.request-select-box {
    display: block;
    width: 100%;
    background: unset;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
}

.request-select-box option {
    color: #000;
}

.request-select-box:focus-visible {
    border-bottom: 1px solid #fff;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    outline: 0px;
}

#tabs {
    padding-left: 20px;
    margin-bottom: 0px;
    cursor: pointer;
    padding-top: 20px;
}

#tab {
    padding-left: 20px;
    margin-bottom: 0px;
}

/*.owText{color: #164498;font-size: 70px;text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;margin-bottom: -41px;font-weight: bold;opacity: 0.5; }*/

#choose-service-center .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    right: -35px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 50px;
    z-index: 1;
}

#choose-service-center .owl-nav button.owl-next:hover {
    background: #fff !important;
    color: #000 !important;
}

#choose-service-center .owl-nav button.owl-next span {
    height: 35px;
    width: 35px;
    display: block;
    font-size: 50px;
    line-height: 35px;
    border-radius: 50%;
}

#choose-service-center .owl-nav button.owl-prev {
    position: absolute;
    top: 45%;
    left: -35px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 50px;
    z-index: 1;
}

#choose-service-center .owl-nav button.owl-prev:hover {
    background: #fff !important;
    color: #000 !important;
}

#choose-service-center .owl-nav button.owl-prev span {
    height: 35px;
    width: 35px;
    display: block;
    font-size: 50px;
    line-height: 35px;
    border-radius: 50%;
}

.servicecenter-dailog {
    max-width: 800px;
}

.servicecenter-dailog .modal-header {
    border-bottom: 0px;
}

.servicecenter-call-main {
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    text-align: left;
    height: auto;
}

.service-center-popupimg {
    height: 300px;
    width: 100%;
    object-fit: contain;
}

.servicecenteraddress-main {
    display: flex;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    text-align: left;
    height: auto;
    margin-bottom: 10px;
}

.servicecenteraddress-main svg {
    font-size: 45px;
    margin-right: 10px;
    color: #164498;
}

.servicecenter-call-main {
    display: flex;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    text-align: left;
    height: auto;
    align-items: center;
}

.servicecenter-call-main svg {
    font-size: 45px;
    margin-right: 10px;
    color: #164498;
}

.servicecenter-call-main a {
    color: #000;
    margin-bottom: 0px;
    text-decoration: none;
    font-size: 23px;
}

.service-center-slider-img {
    margin-top: 25px;
    margin-bottom: 17px;
    height: 250px;
    width: 100% !important;
    object-fit: contain;
}

.serin-appointment-btn-maingroup {
    display: flex;
    justify-content: end;
}

.Scheduled-heading-seriner {
    font-size: var(--heading);
    margin: 25px 0px 25px 0px;
}

.sticky {
    position: fixed;
    width: 100%;
    top: 50;
    z-index: 99;
    animation: b 0.9s ease-in-out;
    left: 0px;
}

.pagination a {
    color: #000000;
    float: left;
    padding: 1px 11px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
    margin: 0 4px;
    font-size: 20px;
}

.pagination a.active {
    background-color: #164498 !important;
    color: #ffffff !important;
    border: 1px solid #164498 !important;
}

.pagination a:hover:not(.active) {
    background-color: #164498;
    color: #fff !important;
}

.pagination-main {
    display: flex;
    justify-content: center;
    margin: 15px 0px;
}

.home-email-input {
    height: 40px !important;
}

.footer-whatappicon {
    position: fixed;
    bottom: 15%;
    right: 15px;
    z-index: 9;
}

.footer-whatappicon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.home-back-totoptext {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background-color: #000;
    height: 40px;
    height: 50px !important;
    width: 50px !important;
    padding: 8px;
    border-radius: 5px;
}

.home-back-totoptext:hover {
    color: #fff;
}

/* new footer  css start  */

footer .footer-soical-icon {
    background-image: linear-gradient(90deg, #e74e62, #e88215, #ec5f29);
    /* background: rgb(246, 29, 29); */
    display: flex;
}

.footer-soical-icon img {
    width: 40px;
    height: 40px;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    margin-right: 7px;
}

.footer-soical-icon svg {
    color: #302e2e;
    margin: 0px auto;
    font-size: 20px;
}

.footer-soical-icon a {
    height: 40px;
    width: 40px;
    display: flex;
    background-color: #fff;
    border-radius: 3px;
    margin-right: 8px;
    align-items: center;
}

.newfooter-bg-main {
    background-color: #1f2021;
    padding: 60px 0px;
}

.newfooter-bg-main .our-service-main {
    list-style: none;
    margin-bottom: 0px;
    padding-left: 10px;
}

.newfooter-bg-main .our-service-main li a {
    text-decoration: none;
    color: #ffffff85;
    font-size: 14px;
    line-height: 2.5;
}

.newfooter-bg-main .our-section-head {
    color: #fff;
    font-size: 20px;
    padding-bottom: 14px;
}

.footer-address .acr-my-tvsimage {
    height: 5em;
}

.footer-address .call-image-main {
    width: 25px;
}

.footer-address .contact-number-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-address .contact-number-main p {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 32px;
}

.footer-address .footer-number-main {
    text-decoration: none;
    font-size: 15px;
    color: #000;
    font-weight: var(--headingWight);
    margin: 0 13px 0 0px;
}

.footer-address .address-text-main {
    display: flex;
    justify-content: center;
}

.footer-address .address-text-main .address-main-imagesec {
    display: flex;
    align-items: start;
}

.footer-address .address-text-main span {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 22px;
    margin-right: 10px;
}

.footer-address .address-text-main a {
    text-decoration: none;
    font-size: 16px;
    color: #000;
}

.addres-image-main {
    width: 31px;
}

.footer-menu-main {
    display: flex;
    justify-content: space-between;
    border-top: 6px solid #071c2c;
    padding: 10px 20px;
    flex-wrap: wrap;
    background-color: #000;
}

.footer-menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    list-style: none;
    padding-left: 0px;
    flex-wrap: wrap;
    margin-left: 60px;
}

.footer-menu-item li a {
    color: white;
    font-weight: 400;
    margin-right: 10px;
}

.footer-menu-item li:last-child a::after {
    content: "";
}

.footer-menu-item li a::after {
    content: "|";
    margin-left: 8px;
}

.copy-right-text {
    margin-bottom: 0px;
    font-weight: 600;
}

.footer-address {
    padding: 7px 0px;
}

/* new footer  css end  */

/* about us css start  */

.about-main-sec h1 {
    text-align: center;
    font-weight: 600;
    font-size: 23px;
    margin-top: 25px;
}

.about-text {
    text-align: center;
    margin-bottom: 0px;
}

.aboutus-logo-section {
    background-color: #164498;
    height: 190px;
    display: flex;
    align-items: center;
}

.about-image-text-main {
    padding: 10px 0px;
}

.about-partner-brand-logo {
    background-color: #f6f5f5;
    height: 110px;
    width: auto;
    display: flex;
    box-shadow: 6px 6px 11px 1px #0000005e;
    margin-right: 15px;
}

.about-partner-brand-logo img {
    height: 70px;
    width: 100%;
    margin: auto;
    object-fit: contain;
}

/* about us css end  */

.filter-click-main {
    width: 100%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.filter-click-main span {
    float: right;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #f1f1f1;
    width: 25px;
    text-align: end;
}

.parent_cart_checkout {
    border-right: 1px solid #5a595978;
    padding: 0px !important;
    width: 100%;
    /* overflow: hidden; */
}

.parent_cart_checkout > .service-name-text:first-child {
    margin-top: 20px;
}

.filter-click-main input {
    margin-right: 10px;
    margin-top: 0 !important;
}

.filter-click-main p {
    margin-bottom: 0;
    font-size: 15px;
}

.service-center-image {
    display: block;
    margin: auto;
}

.filter-click-main .form-check-input:focus {
    box-shadow: none !important;
}

/* cms page css start  */

.cms-page-section {
    background-color: #164498;
    padding: 20px;
}

.cms-image-main {
    height: 450px;
    width: 100%;
    object-fit: cover;
    /*filter: brightness(0.5);*/
}

.cms-section-main {
    position: relative;
}

.cms-section-text {
    position: absolute;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);
    width: 40%;
}

.cms-section-text h1 {
    font-size: 2.7rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
}

.cms-section-main .Request-appointmentbtn {
    background-color: #e56f31;
    color: #fff;
    height: 45px;
    width: 270px;
    line-height: 40px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
}

.cms-email-input {
    height: 45px;
    background: unset !important;
    border-bottom: 1px solid #fff !important;
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
    border-radius: 0px !important;
    padding: 0px !important;
    color: #fff;
}

.cms-email-input:focus {
    box-shadow: none;
    color: #fff;
}

.cms-email-input::placeholder {
    color: #fff;
}

.email-label {
    color: #fff;
    margin-bottom: 0px;
}

.cms-form-text-sec {
    margin: 20px 0px;
}

.cms-page-section .send-otp-main {
    background-color: #e56f31;
    color: #fff;
    border: 0px;
    width: 165px;
    height: 45px;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 0px;
    line-height: 35px;
}

.cms-page-section .request-heading-main {
    font-weight: 600;
    color: #e56f31;
    font-size: 25px;
}

.book-service-cms {
    background-color: #e56f31;
    color: #fff;
    border: 0px;
    width: 165px;
    height: 45px;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 0px;
    line-height: 35px;
}

.contacts_tabs_services {
    list-style: none;
    padding: 0;
}

.contacts_tabs_services li:first-child {
    margin-top: 35px;
}

.contacts_tabs_services li {
    margin-bottom: 15px;
}

.contacts_tabs_services li svg {
    color: red;
    margin-right: 10px;
}

.heading_cms_page {
    font-size: var(--heading);
    font-weight: var(--headingWight);
    margin-top: 20px;
}

/* cms page css end  */
.mobile-filter-iconmain {
    width: 100%;
    display: block;
}

.mobile-filter-iconmain svg {
    font-size: 20px;
    margin-bottom: 10px;
    position: absolute;
    top: -45px;
    right: 0;
    color: #e56f31;
}

.mobile-filter-mian {
    background-color: #ffffff;
    display: none;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 1px 2px 4px 1px #0000001e;
}

.mobile-filter-mian ul {
    list-style: none;
    padding: 0;
}

.login-drop-main {
    margin-bottom: 0px;
    list-style: none;
    color: #e56f31;
    padding: 0px 10px;
    margin-right: 13px;
}

#up-button-main {
    display: none;
}

.up-btn-sticky {
    display: block;
    position: fixed;
    bottom: 25%;
    right: 15px;
}

.select-brand-imgmain {
    height: 380px;
    overflow: auto;
}

.select-brand-imgmain::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    margin: 10px 0px;
}

.select-brand-imgmain::-webkit-scrollbar {
    width: 5px;
}

.select-brand-imgmain::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.appointmentsearch-dialog .search-modal-box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    margin: 10px 0px;
}

.appointmentsearch-dialog .search-modal-box::-webkit-scrollbar {
    width: 5px;
}

.appointmentsearch-dialog .search-modal-box::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.changeandbackmainbtn {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.search-page-bg {
    background-color: #eeeeee;
    padding: 15px;
}

.search-page-bg .search-list-image {
    height: 200px;
    width: 100%;
    object-fit: contain;
    padding: 8px;
}

.search-page-bg .search-list-head {
    font-weight: 600;
}

.search-page-bg .search-card-star {
    margin-bottom: 15px;
}

.search-page-bg .search-list-main-dot {
    margin-bottom: 15px;
}

.search-page-bg .search-list-main-dot span {
    color: #000;
    opacity: 0.5;
    margin-left: 5px;
}

.search-page-bg .search-card-star svg {
    color: #e56f31;
}

.search-page-bg .search-card-star span {
    padding-left: 7px;
}

.search-page-bg .search-list-textmain {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.search-page-bg .prise-total {
    font-size: 20px;
    font-weight: 600;
}

.search-page-bg .prise-discount {
    font-size: 16px;
    text-decoration: line-through;
    color: #e56f31;
}

.search-page-bg .free-shipping-text {
    color: #187601;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
}

.search-page-bg .detail-btn-main {
    border: 0px;
    width: 100%;
    background-color: #e56f31;
    color: #fff;
    text-align: center;
    height: 40px;
    border-radius: 7px;
    margin-bottom: 15px;
}

.search-page-bg .detail-btn-main:hover {
    background-color: unset;
    border: 1px solid #e56f31;
    color: #e56f31;
}

.search-page-bg .add-to-wishlist-btn {
    background-color: unset;
    height: 40px;
    width: 100%;
    border-radius: 7px;
    border: 1px solid #164498;
    color: #164498;
}

.search-page-bg .add-to-wishlist-btn:hover {
    background-color: #164498;
    color: #fff;
    border: 1px solid #164498;
}

.service-inner-modalname {
    margin-bottom: 0px;
    text-align: center;
    word-break: break-all;
}

/* =========================

toyota css

========================= */

.location-cards {
    padding: 20px 0px;
}

.location-card-parent {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;
}

.location-card-one {
    text-align: center;

    background-color: #f1f1f1;

    padding: 30px 0px;

    border-radius: 10px;
}

.location-one {
    width: 24%;
}

.location-one a {
    text-decoration: none;

    color: #000;
}

.location-one a h3 {
    font-size: 22px;
}

.location-card-one img {
    margin-bottom: 15px;
}

/* =====================

location css 

===================== */

.parent-location {
    display: flex;

    flex-wrap: wrap;

    padding: 30px 0px;
}

.left-location-content {
    width: 70%;

    padding: 0px 20px;
}

.right-location-content {
    width: 30%;

    padding: 0px 10px;
}

.call-button-parent {
    background-color: #f1f1f1;

    padding: 25px;

    border-radius: 10px;

    margin-bottom: 25px;
}

.call-icon {
    width: 25%;
}

.call-text {
    width: 75%;
}

.heading-location h2 {
    font-size: 28px;
}

.locations-form h3 {
    font-size: 18px;
}

.address-parent {
    display: flex;

    flex-wrap: wrap;
}

.address {
    width: 50%;

    max-width: 350px;
}

.contact-info {
    width: 50%;

    max-width: 250px;

    margin-left: auto;

    margin-right: auto;
}

.contact-info a {
    text-decoration: none;

    color: #000;
}

.location-button {
    padding: 10px 20px;

    background-color: #e56f31;

    color: #fff;

    border: none;

    border-radius: 5px;
}

.call-button-parent {
    display: flex;

    align-items: center;
}

.call-text a {
    text-decoration: none;

    color: #000;
}

.tag-list-service ul a {
    text-decoration: none;

    color: #000;

    font-size: 16px;
}

.contact-info p {
    margin-bottom: 0px;
}

.address h4 {
    font-size: 20px;

    margin-bottom: 2px;

    color: #164498;

    font-weight: 700;
}

.contact-info h4 {
    font-size: 20px;

    margin-bottom: 2px;

    color: #164498;

    font-weight: 700;
}

.tag-list-service h3 {
    margin-left: 14px;
}

#image-gallery-acr {
    padding: 30px 20px;
}

.content-right-gallery h2 {
    font-size: 45px;

    font-weight: 700;
}

.content-right-gallery h4 {
    font-size: 30px;

    color: #c9c9c9;
}

.slider-section-padding {
    padding: 0px 20px;
}

.content-right-gallery {
    padding: 0px 0px 0px 30px;
}

.search-inner-text {
    display: flex;
}

.service-prise-listmain {
    overflow-x: auto;
}

.service-prise-heading {
    padding: 20px 0px;
}

.page-content {
    overflow-x: auto;
}

.page-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);

    background-color: #f5f5f5;
}

.page-content::-webkit-scrollbar {
    width: 5px;

    height: 5px;

    background-color: #f5f5f5;
}

.page-content::-webkit-scrollbar-thumb {
    background-color: #000000;

    border: 2px solid #555555;
}

.test-slider-text p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0px;
}

.review-with-ellipsis {
    overflow: hidden;

    display: -webkit-box;

    -webkit-line-clamp: 4;
    /* number of lines to show */

    line-clamp: 4;

    -webkit-box-orient: vertical;
}

.review-without-ellipsis {
    display: none;
}

.readmore {
    border: 0px;
    background: unset;
    color: #164498;
    font-size: 16px;
}

.readless {
    border: 0px;
    background: unset;
    color: #164498;
    font-size: 16px;
}

.cart-car-brandname {
    word-break: break-all;
}

.cart-car-modalname {
    word-break: break-all;
}

.toggle-btnmobile {
    display: flex;
    align-items: center;
}

.email-main img {
    height: 35px;
    width: 35px;
    padding: 4px;
}

.call-img-main img {
    height: 35px;
    width: 35px;
    padding: 4px;
}

.login-icon-text svg {
    font-size: 22px;
}

.booking-btn-fix-main {
    position: fixed;
    right: 0;
    transform: translateX(65px);
    top: 43%;
    z-index: 99;
    animation: m;
    animation-duration: 1s;

    -webkit-animation-iteration-count: infinite;

    -webkit-animation-timing-function: ease-in-out;

    -webkit-animation-direction: alternate;
}

.cancle-order-btn {
    background: #dc4c64 !important;
    margin-bottom: 3px;
}

.completed-pdfbtn {
    background: #0d6efd !important;
    margin-bottom: 3px;
}

.cancelled-pdfbtn {
    background: #54b4d3 !important;
    margin-bottom: 3px;
}

.change-slot-pdfbtn {
    background: #e4a11b !important;
    margin-bottom: 3px;
}

.view-invoice-pdfbtn {
    background: #14a44d !important;
    margin-bottom: 3px;
}

#amodal_brands {
    height: 380px;
    overflow-x: auto;
    padding-bottom: 25px;
}

#amodal_brands::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    margin: 10px 0px;
}

#amodal_brands::-webkit-scrollbar {
    width: 5px;
}

#amodal_brands::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.acr-slider-section-main {
    /* max-height: 650px; */
    overflow: hidden;
}

.banner-info {
    color: #fff;
    position: relative;
    z-index: 9;
}

.banner-info > p {
    line-height: 1.5;
}

.back_clip {
    background-color: #012e93e6;
    position: absolute;
    width: 165px;
    height: 260px;
    transform-origin: 50% 50%;
    transform: skewX(-20deg);
    top: -40px;
    left: 10px;
    z-index: -1;
}


.contact-us {
    background: #fff;
    color: #000;
    opacity: 90%;
    padding: 20px 20px 20px 20px;
}
.container.banner-info-holder {
    display: flex;
    margin-top: -550px;
    width: 100%;
}

.z_in {
    z-index: 9;
    padding-bottom: 95px;
}

.tabular-offers {
    width: 100%;
    display: flex;
    margin: 0 auto;
    margin-top: 10px;
    z-index: 3;
    position: relative;
    padding: 0px 55px;
}

.tabular-offers .item {
    width: 230px;
    background: #fff;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.tabular-offers .icon img {
    width: 40px;
}

.tabular-offers .tab-card {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
}

div#offer-section1 {
    display: flex;
    flex-wrap: wrap;
}

div#offer-section1 .item {
    margin: 0px;
    padding: 0px;
}

.offer-section-item {
    width: 100%;
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 300px;
}

.offer-section-details {
    padding: 3rem 0rem 3rem 3rem;
}

.item:nth-child(even) .offer-section-details p {
    order: -1;
}

.offer-section-details a {
    width: 126px;
    padding: 7px;
    background: #fff;
}

.offer-section-details a::after {
    content: "\2192";
    margin-left: 10px;
}

.offer-section-details,
.offer-section-image {
    width: 50%;
    display: grid;
}

.col-md-12.blog-head {
    text-align: center;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.blog-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.blog-image img {
    width: 100%;
    /* object-fit: cover; */
}

.blog-details-bottom {
    padding: 0px 0px 25px 0px;
}

.blog-details {
    display: flex;
    flex-direction: column;
    padding: 25px;
    min-height: 250px;
}

.blog-details h5 {
    font-size: 18px !important;
    font-weight: var(--headingWight);
}

.our-service-section .servic-type-box h3 {
    font-weight: var(--headingWight) !important;
    font-size: 20px !important;
}

.date-overlay {
    position: absolute;
    background-color: rgb(0, 162, 255);
    bottom: 0;
    left: 20px;
    color: white;
    padding: 7px 34px;
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%);
}

.blog-details-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button.banner-form__submit {
    width: 100%;
    background: orangered;
    color: #fff;
    padding: 10px;
    border: 0px;
}

/* section.featured-product {
   background: #eee;
  padding: 3rem 0rem;
} */
#products .item {
    display: inline-block;
    width: 100%;
}

#products .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.product-details {
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.cutted-price {
    text-decoration: line-through;
    margin-right: 10px;
    color: #999;
}

.discounted-price {
    color: #e44d26;
}

h5.card-title {
    font-size: 14px;
    font-weight: var(--headingWight) !important;
    height: 40px;
    line-height: 22px;
}

.price-cart .price {
    width: 50%;
    margin-top: 10px;
}

.price-cart {
    width: 100%;
    display: flex;
    gap: 45px;
}

.price-cart .cart {
    border: none;
    background: #eee;
    width: 40px;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 4px;
    border-radius: 10px;
    right: 0px;
}

section.featured-product h2 {
    text-align: center;
    margin: 20px auto;
    text-transform: uppercase;
}

#products .owl-nav button {
    background-color: #ffff;
}

#products .owl-nav .owl-prev,
#car-brand-carousel .owl-nav .owl-prev,
#offer-section1 .owl-nav .owl-prev {
    left: -27px;
    position: absolute;
    top: 50%;
    font-size: 35px;
    width: 40px;
    transform: translateY(-50%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    color: rgba(128, 128, 128, 0.596);
}

#products .owl-nav .owl-next,
#car-brand-carousel .owl-nav .owl-next,
#offer-section1 .owl-nav .owl-next {
    right: -27px;
    position: absolute;
    top: 50%;
    font-size: 35px;
    width: 40px;
    transform: translateY(-50%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    color: rgba(128, 128, 128, 0.596);
}

#car-brand-carousel {
    padding: 0px 37px !important;
}

.view-all > a {
    text-align: right !important;
}

.bg_dark {
    background-color: rgba(0, 0, 0, 0.205);
    padding: 20px 0px;
    display: flex;
    justify-content: center;
}

.sign_footer {
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.input_footer {
    border: none;
    padding: 7px;
    width: 100%;
    border-radius: 5px 0px 0px 5px;
}

.social_footer_btn {
    border: none;
    background-color: #000;
    padding: 10px;
    color: white;
    font-size: 12px;
    position: absolute;
    top: 0px;
    right: 0;
    border-radius: 0px 5px 5px 0px;
}

.req_button {
    background-color: orangered !important;
    font-size: 16px;
    border-radius: 0;
    width: 175px !important;
    padding: 19px 10px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    transform-origin: 50% 50%;
    transform: skewX(-30deg);
    margin-top: 1rem;
    font-weight: 600;
}

#banner-slider .owl-stage-outer .owl-stage .owl-item img {
    height: 615px;
    object-fit: cover;
}

.custome_bg {
    min-width: 400px;
}

/* .custome_bg:first-child .offer-section-item{
  background-color: #ff5234 !important;
  height: 100%;
}

.custome_bg:nth-child(2) .offer-section-item{
  background-color: #ffbb02 !important;
  height: 100%;
} */

.offer-section-details > a {
    font-weight: 700;
}

.min_width {
    max-width: 359px;
}

#scheduled_package .row {
    background-color: #eee;
    padding: 0 20px;
}

#scheduled_package .row:first-child {
    padding-top: var(--section_margin);
}

#scheduled_package .row:nth-child(2) {
    padding-bottom: var(--section_margin);
}

#scheduled_package .row .text-center h3 {
    font-size: var(--heading);
    font-weight: var(--headingWight);
}

.wrapper_featured {
    margin-bottom: 20px;
}

.wrapper_featured .col-md-12 {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.wrapper_featured .package-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
    min-height: 200px;
    background-color: #ffff;
}

.wrapper_featured .package-item h4 {
    font-size: 14px;
    margin-top: 15px;
    font-weight: var(--headingWight);
}

.wrapper_featured .package-item .package-section-image img {
    width: 100px;
}

#offer-section1 {
    padding: 0px 31px;
}

/* .bg_back {
  position: absolute;
  width: 100%;
  background-color: #eee;
  height: 50%;
  bottom: 0;
  z-index: -1;
  left: 0;
} */
.star-rating svg {
    color: #fbbb02;
    font-size: 10px;
}

.blog-details-bottom > span {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: gray;
    text-transform: uppercase;
}

.blog-details-bottom > span svg {
    margin-right: 5px;
    fill: rgb(0, 162, 255);
}

.product-card .card img {
    height: 163px;
    border: 1px solid #8080803b;
    object-fit: contain;
    width: 100%;
}

footer {
    /* margin-top: var(--section_margin); */
    width: 100%;
}

.social_wrapper {
    display: flex;
}

.social_wrapper a > svg {
    font-size: 1px;
}

.social_wrapper svg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 10px;
    margin-right: 5px;
}

.social_wrapper svg,
a > .fa-facebook {
    background: #3b5998;
    color: white;
}

.social_wrapper a > .fa-linkedin {
    background-color: #007bb5;
}

.social_wrapper a > .fa-twitter {
    background: #55acee;
    color: white;
}

.social_wrapper .fa-share {
    background: #000000;
    color: white;
}

.social_wrapper .fa-whatsapp {
    background: #25d366;
    color: white;
}

.banner_form_check input {
    margin: 0px 7px 0px 0px;
}

/* .wrapper_mobile_category {
  text-align: end;
} */
.orange_clr {
    color: #e56f31;
}

.brand-logo {
    background: #8080802e;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo img {
    object-fit: cover;
    width: 120px !important;
}

#car_services .servic-type-box-section > .servic-type-box {
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bookservice-button {
    background: #e56f31 !important;
    border: none;
    padding: 7px 30px;
}

.left_top {
    position: absolute;
    top: 30px;
    right: 0px;
    background-color: #80808036;
    padding: 5px 10px;
    color: gray;
    font-weight: 400;
}

.frame_90 .plus-minus-main {
    width: 90% !important;
    padding: 5px 10px !important;
}

.frame_90 .plus-minus-main > .plus-col {
    width: 25% !important;
}

.appointmentsearch-dialog .modal-content,
.appointmentfuel-dialog .modal-content,
.appointmentnumber-dialog .modal-content {
    position: absolute !important;
}

.scrolled {
    top: 50px !important;
}

.wrapper_cart_item {
    padding: 0px 20px;
}

/* cms page */

.parent_cms_page {
    width: 100%;
    padding: 20px 0px;
}

.container_cms {
    max-width: 1320px;
    width: 100%;
    margin: auto;
    padding: 0px 30px;
}

.flex {
    display: flex;
    gap: 20px;
}

.flex .tabs_parent {
    min-width: 300px;
}

.tabs {
    list-style: none;
}

.content_wrapper {
    width: 100%;
    overflow: hidden;
    min-width: 350px;
}

.content_wrapper > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tabs {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px 10px;
}

.tabs li.acr-active {
    background-color: rgb(246, 29, 29);
    color: white;
}

.tabs li {
    border: 1px solid rgb(133 133 133 / 21%);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.tabs li:hover {
    background-color: rgb(246, 29, 29);
    color: white;
}

.tabs li:last-child {
    margin-bottom: 0;
}

.get_intouch {
    margin-top: 40px;
}

.get_intouch h4 {
    position: relative;
    margin-bottom: 20px;
}

.get_intouch h4::before {
    display: block;
    content: "";
    position: absolute;
    bottom: -15px;
    height: 2px;
    width: 30px;
    background-color: red;
}

.benifit_img {
    width: 400px;
}

.benifit_img img {
    width: 100%;
}

.benifit_content {
    width: 100%;
}

.flex_a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.get_intouch_mb {
    display: none;
}

/* cms page end */
.card-detial-sec-main {
    display: flex;
    gap: 20px;
}

.plus_minus_tab {
    display: flex;
    justify-content: space-between;
    border: 1px solid #81818159;
    padding: 8px 10px;
    border-radius: 20px;
    width: 120px;
    color: black;
    font-weight: 200;
}

.total_of_cart {
    min-width: 350px;
}

.wrapper_cart_mb .dis_no_991 {
    display: none;
}

.description_item {
    font-size: 14px;
}

.item_price {
    font-size: 14px !important;
}

.wrapper_desc_image {
    display: none;
}

.wrapper_checkout_mb {
    display: none;
}

.description_item,
.item_price {
    color: rgb(128 128 128 / 69%);
}

#close_menu {
    padding: 20px;
    cursor: pointer;
}

.package {
    font-size: 10px;
    position: absolute;
    left: 63px;
    top: -10px;
    color: #0000008f;
}

.rc-anchor-normal {
    width: 100% !important;
}

.serv img {
    margin: 20px auto !important;
}

.parent_of_captcha .g-recaptcha {
    margin: auto;
    /* Center the container */
}

/* Animation */
.mySlides {
    display: none;
    animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 1;
    }
}
.car-model {
    margin-top: 20px;
    color: #24459c;
    text-align: center;
}

.car-model p {
    margin-bottom: 0 !important;
}

@media (max-width: 1537px) {
    .tabular-offers {
        padding: 0;
    }
}

@media (max-width: 1440px) {
    .tabular-offers .item {
        width: 213px;
    }
}

@media (max-width: 1399px) {
    .shopping-innerbg .buyfrom-shopinner {
        margin-top: 20px;
    }
}

@media (max-width: 1281px) {
    .z_in {
        z-index: 9;
        padding-bottom: 85px;
    }

    .appointmentsearch-dialog .modal-content {
        left: 61%;
    }

    .appointmentfuel-dialog .modal-content {
        left: 61%;
    }

    .appointmentnumber-dialog .modal-content {
        left: 61%;
    }

    .offer-section-item {
        height: 208px;
    }
}

@media (max-width: 1200px) {
    .quantity-sec-main button.addtocard-shopinner {
        margin-top: 20px;
    }

    .description_item {
        font-size: 12px;
    }

    .item_price {
        font-size: 12px !important;
    }

    .frame .plus-minus-main {
        width: 80px !important;
    }

    .minus-btn {
        font-size: 12px;
    }

    .plus-btn {
        font-size: 12px;
    }

    .frame .number p {
        font-size: 12px;
    }

    .frame .plus-minus-main {
        padding: 5px;
    }

    .plus_minus_tab {
        width: 100%;
    }

    .p_1200 {
        padding: 0px 10px 0px 0px;
    }
}

@media (max-width: 1025px) {
    .none_mobile {
        display: none;
    }

    .frame .plus-minus-main.details_page {
        /* width: 100px !important; */
        padding: 10px;
    }

    .quantity-sec-main button.addtocard-shopinner {
        margin-top: 0 !important;
    }

    .none_desk {
        display: block;
    }

    .scrolled {
        top: auto !important;
    }

    .parent_service_package {
        margin: 0 !important;
        padding: 0 !important;
    }

    .side_modal {
        display: none;
    }

    .back_clip {
        width: 225px;
        height: 350px;
        transform: skewX(-17deg);
        top: -31px;
        left: 17px;
    }

    .appointmentsearch-dialog .modal-content {
        left: auto;
        top: auto;
    }

    .appointmentnumber-dialog .modal-content {
        left: auto;
        top: auto;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        height: auto;
    }

    .modal-backdrop {
        background: #fefefe !important;
    }

    .appointmentfuel-dialog .modal-content {
        left: auto;
        top: auto;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        height: auto;
    }
}

@media (max-width: 991px) {
    .custome_bg {
        width: 100% !important;
    }
    .service-name-text.row {
        margin: 0 !important;
    }
    .service-name-text.container {
        max-width: 100% !important;
    }
    .frame .plus-minus-main.details_page {
        width: 100% !important;
        padding: 10px;
    }

    .quantity-sec-main button.addtocard-shopinner {
        margin-top: 20px !important;
    }

    .mo-acr-navbar-main li a {
        font-size: 14px;
    }

    .description_item {
        font-size: 14px;
    }

    .item_price {
        font-size: 14px !important;
    }

    .frame .plus-minus-main {
        width: 100px !important;
    }

    .minus-btn {
        font-size: 14px;
    }

    .plus-btn {
        font-size: 14px;
    }

    .frame .number p {
        font-size: 14px;
    }

    .frame .plus-minus-main {
        padding: 5px;
    }

    .parent_cart_checkout {
        border: none;
    }

    .card-detial-sec-main {
        flex-wrap: wrap;
    }

    .total_of_cart {
        padding: 20px 10px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 10px;
    }

    .parent_cart_checkout .service-name-text > .border-bottom > .content {
        font-size: 14px;
    }

    .parent_cart_checkout .service-name-text > div p,
    .parent_cart_checkout .service-name-text > div {
        font-size: 14px;
    }

    .mo-acr-navbar-main li {
        margin-bottom: 10px;
        position: relative;
        padding: 8px 0px;
    }

    .mo-acr-navbar-main li::before {
        position: absolute;
        bottom: -5px;
        content: "";
        left: -32px;
        height: 1px;
        width: 122%;
        background-color: #6f6f6f63;
    }

    .mo-acr-navbar-main li:last-child::before {
        display: none;
    }

    .offer-section-item {
        height: 310px;
    }

    .min_width {
        display: none;
    }

    .acr-slider-section-main {
        padding: 0px;
    }

    #banner-slider .owl-stage-outer .owl-stage .owl-item img {
        height: 500px;
    }

    .container.banner-info-holder {
        margin-top: -414px;
    }

    .tabular-offers {
        margin-top: 105px;
    }

    .sign_footer {
        margin: 20px 0px !important;
    }

    .back_clip {
        width: 208px;
        height: 300px;
        transform: skewX(-17deg);
        top: -32px;
        left: -2px;
    }

    .quantity-sec-main .frame {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .tabular-offers {
        margin-top: 200px;
    }

    #car_services
        .servic-type-box-section
        > .servic-type-box
        > .serv
        .servicepage-type-name {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .container.banner-info-holder {
        margin-top: -456px;
    }
    .plus-minus-main.mt-3 {
        margin: 0 !important;
    }
    .item_price {
        color: orange;
    }
    .item_price,
    .only_checkout_frame {
        width: 50% !important;
    }

    .service-add-main {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        padding: 30px 10px;
    }
    .package {
        left: 120px;
    }

    .wrapper_checkout_mb {
        display: block;
    }

    .shopping-innerbg .product-content-main h2 {
        font-size: 20px !important;
    }

    .shopinner-prise-text p {
        font-size: 16px;
    }

    .shopping-innerbg .buyfrom-shopinner {
        margin-top: 5px;
    }

    h5.card-title {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        display: -webkit-box;
    }

    .service-innersection-mian .packeage-prise p {
        margin-left: 4px;
    }

    /* .service-add-sec-main {
        display: none;
    } */

    .brand-logo-section,
    .car-brand-logo-section {
        padding: 10px 0px;
    }

    .brand-logo-section {
        height: 150px !important;
        margin-bottom: 0 !important;
    }

    .wrapper_checkout_mb .service-add-sec-main {
        display: block !important;
    }

    .wrapper_checkout_mb .service-add-sec-main .item_price,
    .wrapper_checkout_mb .service-add-sec-main .frame {
        margin-top: 10px;
        margin-right: 0 !important;
        margin-left: 0 !important;
        color: rgb(128 128 128 / 69%);
    }

    .only_desk {
        display: none;
    }

    .card-detial-sec-main {
        padding: 0;
        box-shadow: none;
    }

    .service-name-text {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        padding: 30px 10px;
        margin: 0 !important;
        flex-wrap: wrap;
    }

    .service-name-text > .d-flex {
        flex-wrap: wrap;
    }

    .plus_minus_tab {
        width: 120px !important;
    }

    .wrapper_cart_mb .dis_no_991 {
        display: flex;
    }

    .wrapper_cart_mb .dis_no_991 {
        margin-bottom: 10px;
    }

    .service-add-main {
        display: none;
    }

    .card-detial-sec-main.d-block > .service-add-main {
        display: block !important;
    }

    /* .card-detial-sec-main.d-block > .service-add-main {
        padding: 10px 0px 10px 0px !important;
    } */

    .dis_no_991 {
        display: none;
    }

    .service-name-text img {
        width: 100%;
    }

    .tabular-offers {
        margin-top: 180px;
    }

    .offer-section-item {
        height: 222px;
    }

    .shoping-breadcrum-bg .container-fluid {
        justify-content: space-between;
    }

    .req_button {
        margin-top: 20px;
    }

    /* Cms page */
    .flex {
        flex-wrap: wrap;
    }

    .flex .tabs_parent {
        min-width: auto;
        width: 100%;
    }

    .tabs {
        display: flex;
        flex-wrap: wrap;
        box-shadow: none;
        align-items: center;
    }

    .tabs li:last-child {
        margin-bottom: 10px;
    }

    .tabs li {
        margin-right: 10px;
    }

    .tabs li {
        border: 1px solid rgb(246, 29, 29);
    }

    .get_intouch {
        margin-top: 10px;
    }

    .flex_a svg {
        display: none;
    }

    .get_intouch_desk {
        display: none;
    }

    .get_intouch_mb {
        display: block;
    }
    .checkout_only {
        margin: 10px 0px 0px 10px !important;
        position: absolute;
    }
    .checkout_only + .service-add-main {
        padding-bottom: 60px !important;
    }

    /* Cms Page End */
}

@media (max-width: 576px) {
    .cart-mobile-only {
        /* text-align: center; */
        margin-top: 20px;
        color: orange !important;
        width: 50% !important;
    }
    .car_brand_name_wrapper {
        position: relative;
        top: -36px;
        left: 10px;
    }
    .frame_90 {
        width: 50% !important;
        margin-top: 20px;
    }
    .mobile-top-4 {
        margin-top: 10px;
    }

    #banner-slider .owl-stage-outer .owl-stage .owl-item img {
        height: 400px;
    }

    .our-service-section .servic-type-box h3 {
        font-size: 18px !important;
    }

    .our-service-section .servic-type-box-image {
        margin: 20px auto;
    }

    .total_of_cart {
        min-width: 100%;
    }

    .description-main p strong {
        font-size: 16px;
    }

    #tab .shopping-section .product-title {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        display: -webkit-box;
    }

    .shopping-section .shoping-card-prise {
        padding: 0px 22px 0px 0px;
    }

    .shopping-section .shop-add-btn {
        margin: 0 !important;
    }

    .login-form- .justify-content-center {
        padding: 50px 0px;
    }

    .section_all {
        padding-bottom: 0 !important;
    }

    .shopping-section .product-title {
    }

    .discounted-price {
        font-size: 14px;
    }

    #product .owl-stage-outer .owl-stage .owl-item .item .product-card {
        width: 170px;
    }

    .left_top {
        top: 0;
    }

    .confirm-booking-btn {
        padding: 10px;
        font-size: 14px;
    }

    .content_wrapper > img {
        height: 150px;
    }

    .tabs {
        padding: 5px 0px !important;
    }

    .container.banner-info-holder {
        margin-top: -360px;
    }

    .back_clip {
        width: 139px;
        height: 190px;
        transform: skewX(-15deg);
        top: -10px;
        left: 10px;
    }

    .req_button {
        margin-top: 10px;
        width: 150px !important;
        padding: 10px;
    }

    .offer-section-item {
        height: 160px;
    }

    .mobile-filter-iconmain svg {
        top: -50px;
        font-size: 18px;
    }

    .offer-section-item {
        height: 181px;
    }

    .shoping-breadcrum-bg .shoping-breadcrum-main {
        margin-bottom: 20px;
    }

    .input_footer {
        width: 90%;
        margin-bottom: 20px;
    }

    .social_footer_btn {
        right: 15px;
    }

    .custome_bg {
        min-width: 100%;
    }

    .offer-section-details {
        padding: 1rem 0rem 1rem 1rem;
    }

    .offer-section-details h4 {
        font-size: 20px;
    }

    .offer-section-details a {
        padding: 5px;
        font-size: 14px;
    }

    .newfooter-bg-main .our-service-main {
        padding-left: 15px !important;
    }

    .our-service-section .servic-type-box {
        padding: 15px 20px !important;
    }

    #scheduled_package .row {
        padding: 0 15px;
    }

    #offer-section1 {
        padding: 0px 15px;
    }

    .wrapper_featured {
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .newfooter-bg-main {
        background-color: #1f2021;
        padding: 40px 0px;
    }

    :root {
        --heading: 25px;
        --subHeading: 20px;
        --headingWight: 500;
        --section_margin: 30px;
        --heading_content_marging: 25px;
    }

    /*  */
    #products .owl-nav .owl-prev {
        left: 12px;
        top: -60px;
        font-size: 23px;
        width: 35px;
    }

    #products .owl-nav .owl-next {
        left: 65px;
        position: absolute;
        top: -60px;
        font-size: 23px;
        width: 35px;
    }

    #car-brand-carousel .owl-nav .owl-prev {
        left: 12px;
        top: -45px;
        font-size: 23px;
        width: 35px;
    }

    .owl-theme .owl-nav [class*="owl-"]:hover {
        background: white;
    }

    #car-brand-carousel .owl-nav .owl-next {
        left: 65px;
        position: absolute;
        top: -45px;
        font-size: 23px;
        width: 35px;
    }

    #offer-section1 .owl-nav .owl-prev {
        left: 12px;
        top: -35px;
        font-size: 23px;
        width: 35px;
    }

    #offer-section1 .owl-nav .owl-next {
        left: 65px;
        position: absolute;
        top: -35px;
        font-size: 23px;
        width: 35px;
    }

    div#offer-section1 {
        margin-top: 80px !important;
    }

    /*  */
    #search_ajax_list .col-6 {
        width: 100% !important;
    }

    .btn-toggle-item {
        padding: 10px 0px;
    }

    .quantity-sec-main {
        flex-wrap: wrap;
    }

    .quantity-sec-main button.addtocard-shopinner {
        margin: 10px 0px;
    }

    .frame {
        width: 100%;
    }

    .plus-minus-main {
        width: 90%;
    }

    .quantity-sec-main .frame,
    button {
        margin-right: 0;
    }

    .footer-menu-item {
        margin-left: 0;
    }

    .tabular-offers .item {
        width: 155px;
    }

    .tabular-offers .tab-card {
        gap: 5px;
        padding: 5px;
    }

    .tabular-offers .tab-card .tab-details h6 {
        font-size: 1rem;
    }

    .product-card .card img {
        height: auto !important;
    }

    .tabular-offers {
        margin-top: 17.2rem;
        width:92%;
    }

    .content_wrapper {
        min-width: 100%;
    }
}

.checkout-btn {
    margin-top: 30px;
}

span.rupee-sign {
    width: 10px;
    padding: 0px;
    margin: 0px;
    align-items: center;
    display: contents;
}

.dash-icon::before {
    .tab-service-banner img {
        width: 100%;
        max-height: 300px;
        overflow: hidden;
    }

    .tab-service-pages ul li {
        padding: 15px;
        border: 1px solid #eee;
    }

    .tab-service-pages ul li.acr-active {
        background: red;
        color: #fff;
    }

    .tab-service ul li {
        list-style: none;
    }

    .checkout-btn {
        .dash-icon::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 10px;
            width: 20px;
            /* Adjust the length of each dash */
            height: 2px;
            /* Adjust the thickness of each dash */
            background-color: #000;
            /* Adjust the color of each dash */
            transform: translateY(-50%);
        }

        @media (max-width: 321px) {
            .tabular-offers {
                margin-top: 150px;
            }
        }
    }
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
