@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --theme-lightprimary: #4C219F;
    --theme-darkprimary: #3D0791;
    --theme-darksecondary: #F9601C;
    --theme-lightsecondary: #feefe8;
    --theme-darkgradient: linear-gradient(206deg, var(--theme-darksecondary), var(--theme-darkprimary));
    --theme-paracolor: #494453;
    --theme-mainheadcolor: #1D1A22;
    --theme-lightbg: #F8F1FC;
    --theme-blackcolor: #000000;
    --theme-whitecolor: #ffffff;
    --theme-mainhead: "Noto Sans", sans-serif;
    --theme-mainpara: "Noto Sans", sans-serif;
    --theme-regular:400;
    --theme-medium: 500;
    --theme-bold: 700;
    --theme-smallradius: 4px;
    --theme-mediumradius: 8px;
    --theme-transition: all 0.5s ease-in-out;;
    --theme-bordercolor: #e2e2e2;
    --theme-shadow: 0 2px 4px rgb(0 0 0 / 10%),0 2px 4px rgb(0 0 0 / 10%);
}
img{
    max-width: 100%;
    object-fit: cover;
}
body, html{
    font-family: var(--theme-mainpara);
    overflow-x: hidden;
/*	    background: #FEF7FF;*/
}
.services.pt60 {
    background: #FEF7FF;
}
.rent-car {
    background: #FEF7FF;
}
[dir="rtl"] .copyright p {
    direction: ltr;
}
.service-cta {
    background: #FEF7FF;
}
.hero-second {
    background: #FEF7FF;
}
.flash-sale.ss {
    background: #FEF7FF;
}
.oil-change {
    background: #FEF7FF;
}
.car-for-you {
    background: #FEF7FF;
}
.products.home-p {
    background: #FEF7FF;
}
.service-cta {
    background: #FEF7FF;
    padding: 30px 0;
}
.on-demand.ptb60 {
    background: #FEF7FF;
}
[dir="rtl"] .whatsapp-number span, [dir="rtl"] .whatsapp-number p {
    direction: ltr;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--theme-mainhead);
    color: var(--theme-mainheadcolor);
    margin-bottom: 0;
}
p{
    font-family: var(--theme-mainpara);
    margin-bottom: 0;
    color: var(--theme-paracolor);
    font-size: 16px;
}
ul li,
ol li{
    list-style: none;
}
ul, ol{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
.ptb60{
    padding-top: 60px;
    padding-bottom: 60px;
}
.pt60{
    padding-top: 60px;
}
.pb60{
    padding-bottom: 60px;
}
.prl60{
    padding-right: 60px;
    padding-left: 60px;
}
.ptb30{
    padding-top: 30px;
    padding-bottom: 30px;
}
.pt30{
    padding-top: 30px;
}
.pb30{
    padding-bottom: 30px;
}
.prl30{
    padding-right: 30px;
    padding-left: 30px;
}
.pr30{
    padding-right: 30px;
}
.pl30{
    padding-left: 30px;
}
.mtb20{
    margin-top: 20px;
    margin-bottom: 20px;
}
.mt20{
    margin-top: 20px;
}
.mb20{
    margin-bottom: 20px;
}
.mrl20{
    margin-right: 20px;
    margin-left: 20px;
}
.mr20{
    margin-right: 20px;
}
.ml20{
    margin-left: 20px;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.textcenter{
    text-align: center;
}
.textleft{
    text-align: left;
}
.textright{
    text-align: right;
}
.capitalize{
    text-transform: capitalize !important;
}
.bglight{
    background: var(--theme-lightbg);
}
.bglight1{
    background: #fef7ff;
}
.darkbg{
    background: var(--theme-darkprimary);
}
.text-white{
    color: var(--theme-whitecolor);
}
.text-bold{
    font-weight: var(--theme-bold);
}
.text-medium{
    font-weight: var(--theme-medium);
}
@font-face {
  font-family: 'Noto Color Emoji';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notocoloremoji/v32/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFabsE4tq3luCC7p-aXxcn.0.woff2) format('woff2');
  unicode-range: U+1f1e6-1f1ff;
}
.noto-color-emoji-regular {
  font-family: "Noto Color Emoji", sans-serif;
  color: #2d2d2d;
  font-weight: 400;
  font-style: normal;
}
.bgdarkprimary{
    background: var(--theme-darkprimary);
}
.bglightprimary{
    background: var(--theme-lightprimary);
}
.theme-btn{
    background: var(--theme-darksecondary);
    color: var(--theme-whitecolor);
    text-align: center;
    padding: 10px 20px;
    border-radius: 12px;
    font-family: var(--theme-mainhead);
    font-size: 16px;
    width: 170px;
    display: block;
    position: relative;
}
.theme-btn::after{
    content: "\F138";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: var(--theme-whitecolor);
    font-size: 18px;
    font-family: "bootstrap-icons";
}
[dir="rtl"] .theme-btn::after {
    left: 12px;
    z-index: 999;
    right: auto;
    transform: rotate(-180deg);
    bottom: 7px;
}
.theme-btn-white {
    background: var(--theme-whitecolor);
    width: fit-content;
    color: var(--theme-darkprimary);
    padding: 9px 20px;
    border-radius: 60px;
}
button{
    outline: none;
    border: none;
}
button:focus{
    outline: none;
    border: none;
    box-shadow: none;
}
.form-control,
.form-select{
    font-family: var(--theme-mainpara);
    font-size: 15px;
    color: var(--theme-paracolor);
    padding: 10px 15px;
    height: 100%;
}
.form-control:focus,
.form-select:focus {
    color: var(--theme-mainheadcolor);
    background-color: var(--theme-whitecolor);
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
.sub-title{
    color: var(--theme-mainheadcolor);
    font-family: var(--theme-mainhead);
    font-size: 20px;
    font-weight: var(--theme-bold);
}
.sub-heading{
    font-family: var(--theme-mainhead);
    font-size: 32px;
    font-weight: var(--theme-bold);
    color: var(--theme-mainheadcolor);
    text-transform: uppercase;
    position: relative;
    z-index: 5;
}
.sub-heading span::after{
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--theme-darksecondary);
    z-index: -1;
}
.lightbg{
    background: var(--theme-lightbg);
}
.sub-heading-white{
    font-family: var(--theme-mainhead);
    font-size: 32px;
    font-weight: var(--theme-bold);
    color: var(--theme-whitecolor);
    position: relative;
    z-index: 5; 
}



.hero-banner-slider .slick-prev.slick-disabled::before,
.hero-banner-slider .slick-next.slick-disabled::before {
    color: #000;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before{
    opacity: 1;
}
.hero-banner-slider .slick-next:before {
    color: #fff;
    opacity: 1;
}
.hero-banner-slider .slick-next:before,
.hero-banner-slider .slick-prev:before{
    font-size: 14px;
}
.hero-banner-slider .slick-prev,
.hero-banner-slider .slick-next{
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-darksecondary);
    border-radius: 50%;
    font-size: 12px;
    z-index: 10;
}
.hero-banner-slider .slick-next{
    right: 60px;
    top: auto;
    bottom: 100px;
}
.hero-banner-slider .slick-prev{
    left: auto;
    right: 60px;
    top: auto;
    bottom: 150px;
    z-index: 2;
}
.hero-banner-slider .slick-next.slick-disabled,
.hero-banner-slider .slick-prev.slick-disabled{
    background: var(--theme-whitecolor);
}
.hero-banner1,
.hero-banner2{
    background-image: url(../img/hero-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0 500px 0;
}
.hero-banner-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #0000000d, #00000000);
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}
.hero-content-box span{
    color: var(--theme-darksecondary);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: var(--theme-medium);
}
.hero-content-box h1{
    color: var(--theme-whitecolor);
    font-weight: 600;
    font-size: 55px;
    text-transform: uppercase;
    margin: 10px 0;
}
.hero-content-box p {
    color: var(--theme-whitecolor);
    font-size: 24px;
    font-weight: 300;
}
form.book-here-form {
    background: var(--theme-darkprimary);
    padding: 10px 30px;
    border-radius: 0 10px 10px 10px;
}
.book-here p {
    background: var(--theme-lightprimary);
    color: var(--theme-whitecolor);
    padding: 6px 20px;
    border-radius: 8px 8px 0 0;
    display: inline-block;
}


.hero-second-design {
    background: var(--theme-whitecolor);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-top: -60px;
}
.hero-card {
    padding: 20px;
    display: flex ;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-icon {
    width: 40px;
    height: 40px;
    background: var(--theme-darksecondary);
    border-radius: 50%;
    display: flex ;
    align-items: center;
    justify-content: center;
}
.hero-icon img{
    max-width: 27px;
}
.hero-head h5 {
    font-weight: var(--theme-bold);
}
.hero-card2, .hero-card4 {
    background: var(--theme-lightsecondary);
    height: 100%;
}

.service-card {
    padding: 20px 0 0 20px;
    position: relative;
    background: var(--theme-whitecolor);
    box-shadow: var(--theme-shadow);
    border-radius: 10px;
    border: 1px solid #DBD1E2;
        margin: auto 8px;
    transition: var(--theme-transition);
    display: block;
    height: 140px;
    overflow: hidden;
	    overflow: hidden;
    margin-bottom: 20px;
}
.service-card:hover{
    background: var(--theme-darkgradient);
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: var(--theme-darkgradient);
    -webkit-mask: var(--theme-darkgradient) content-box,  var(--theme-darkgradient);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover::before{
    opacity: 1;
}
.service-card:hover .sevice-name h5{
    color: var(--theme-whitecolor);
}
.sevice-name h5 {
    height: 40px;   
}
.service-img {
    display: flex;
    justify-content: end;
}

.service-img img{
    height: 60px;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before{
    opacity: 1;
}
.service-slider .slick-next:before {
    opacity: 1;
}
.service-slider .slick-next:before,
.service-slider .slick-prev:before{
    font-size: 14px;
    color: var(--theme-blackcolor)  ;
}
.service-slider .slick-prev,
.service-slider .slick-next{
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-lightbg);
    border-radius: 50%;
    font-size: 12px;
    z-index: 10;
   top: 53%;
/*    transform: translate(-50%);*/
    z-index: 3;
}
.service-slider .slick-next{
    right: -6px;
}
a.service-cta-dark.rent {
    line-height: 30px;
}
.service-slider .slick-prev{
    left: -6px;
}

.service-cta-design{
    background: url('../img/main-tyre-assis.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding: 50px 40px;
    position: relative;
    border-radius: 20px;
    z-index: 5;
    overflow: hidden;
}
.service-cta-design::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--theme-blackcolor), transparent);
    z-index: -1;
}
[dir="rtl"] .service-cta-design::after{
    display: none;
}
.service-cta-content span {
    color: var(--theme-darksecondary);
    font-weight: var(--theme-medium);
    font-size: 20px;
}
.service-cta-content h2 {
    color: var(--theme-whitecolor);
    font-weight: var(--theme-bold);
    margin: 7px 0;
}
.service-cta-content p{
    color: var(--theme-whitecolor);
    font-size: 24px;
    font-weight: var(--theme-regular);
}
.service-cta-price {
    display: flex;
    align-items: center;
    gap: 20px;
}
.service-cta-price h2{
    color: var(--theme-darksecondary);
    font-weight: var(--theme-bold);
}
.service-cta-price span {
    color: var(--theme-whitecolor);
    font-weight: var(--theme-bold);
}
.service-cta-light,
.service-cta-dark {
    padding: 7px 20px;
    border-radius: 60px;
    text-align: center;
    font-family: var(--theme-mainhead);
    font-weight: var(--theme-medium);
    font-size: 13px;
}
.service-cta-light{
    background: var(--theme-whitecolor);
    color: var(--theme-lightprimary);
}
.service-cta-light:hover{
    color: var(--theme-lightprimary);
}
.service-cta-dark{
    background: var(--theme-lightprimary);
    color: var(--theme-whitecolor);
}
.service-cta-dark:hover{
    color: var(--theme-whitecolor);
}


.on-demand-box {
    background: var(--theme-darksecondary);
    border-radius: 10px;
    overflow: hidden;
}
.demand-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.white-btn{
    background: var(--theme-whitecolor);
    color: var(--theme-mainheadcolor);
}
.white-btn::after{
    color: var(--theme-mainheadcolor);
}
.on-demand-content h4{
    font-weight: var(--theme-bold);
}
.on-demand-content h4,
.on-demand-content p{
    color: var(--theme-whitecolor);
}

.category-card {
    background: var(--theme-whitecolor);
    border-radius: 10px;
    padding: 7px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--theme-transition);
    border: 1px solid #DBD1E2;
    position: relative;
    height: 100%;
}
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: var(--theme-darkgradient);
    -webkit-mask: var(--theme-darkgradient) content-box,  var(--theme-darkgradient);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category-card:hover::before{
    opacity: 1;
}



.flash-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px 5px;
}
.flash-main-head{
    font-size: 27px;
}
.flash-sale-design{
    background: var(--theme-darksecondary);
    border-radius: 20px;
    padding: 40px 30px;
}
.flash-left{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
.flash-box{
    display: flex;
    align-items: center;
    gap: 14px;
}
.flash-left h4{
    color: var(--theme-whitecolor);
    font-weight: var(--theme-bold);
}
.theme-white-btn{
    border: 1px solid var(--theme-whitecolor);
    border-radius: 60px;
    text-align: left;
}
.theme-white-btn:hover{
    color: var(--theme-whitecolor);
    cursor: pointer;
}
.theme-white-btn::after{
    right: 8px;
}
.flash-btn-cat{
    background: #ffffff00;
}
.flash-timing{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
}
.flash-timing::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    height: 100%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}
.flash-hr, .flash-min, .flash-sec{
    background: var(--theme-whitecolor);
    border-radius: 5px;
    padding: 2px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    position: relative;
}
.flash-hr::after,
.flash-min::after {
    content: ":";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -13px;
    color: var(--theme-whitecolor);
    font-size: 25px;
}
.flash-hr  .flash-time,
.flash-min .flash-time,
.flash-sec .flash-time{
    font-size: 20px;
    text-align: center;
    font-weight: var(--theme-bold);
    margin-bottom: -3px;
}
.flash-hr span, .flash-min span, .flash-sec span{
    font-size: 10px;
    text-align: center;
}
.flash-sale .row.pt30 > .col-lg-3 {
    padding-left: 6px;
    padding-right: 6px;
}
.flash-card {
    background: var(--theme-whitecolor);
    box-shadow: var(--theme-shadow);
    border-radius: 12px;
    padding: 10px;
	min-height: 460px;
}
.flash-sale.ss p {
    min-height: 62px;
}
/*
.flash-bottom p {
    min-height: 62px;
}
*/
.product-select-box .service-cta-dark {
    line-height: 30px;
    font-size: 14px;
}
.flash-top{
    background: var(--theme-lightbg);
    border-radius: 16px;
    position: relative;
}
.flash-offer {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--theme-darksecondary);
    padding: 5px 10px;
    border-radius: 16px 0 20px 0;
    color: var(--theme-whitecolor);
    text-transform: capitalize;
    font-size: 14px;
}
.products .flash-btn.btn-cart {
    gap: 6px;
    padding: 5px 15px;
}
[dir='rtl'] .tick-checkbox-item input {
    left: 0 !IMPORTANT;
    margin-left: 35px;
    position: absolute;
}
[dir='rtl'] .form-select {
    background-position: left .75rem center;
}
button.talkto {
    align-items: center;
}
.flash-heart {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--theme-whitecolor);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-mainheadcolor);
}
.flash-heart:hover{
    color: var(--theme-mainheadcolor);
}
.flash-price {
    display: flex;
    align-items: center;
    gap: 13px;
}
.flash-price h6{
    color: var(--theme-darksecondary);
    font-weight: var(--theme-bold);
}
.flash-bottom h5 {
    color: var(--theme-mainhead);
    font-weight: var(--theme-bold);
}
.flash-bottom p {
    color: var(--theme-darkprimary);
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Number of lines to show */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.flash-bottom span {
    font-size: 14px;
    color: var(--theme-mainhead);
	    line-height: 30px;
}
.flash-price .flash-discount{
    color: var(--theme-darksecondary);
    text-decoration: line-through;
    font-weight: var(--theme-bold);
}
.flash-btn-box{
    display: flex;
    align-items: center;
    gap: 20px;
}
.flash-msg {
    width: 35px;
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--theme-lightbg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--theme-mainheadcolor);
}
.flash-msg:hover{
    color: var(--theme-mainheadcolor);
}
.flash-btn {
    background: var(--theme-darkprimary);
    padding: 5px 20px;
    border-radius: 60px;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 20px;
	line-height: 30px;
    color: var(--theme-whitecolor);
}
a#exploreBtn {
    line-height: 30px;
}
[dir="rtl"] .flash-btn{
    flex-direction: row;
}
[dir='rtl'] .slick-next:before {
    
    content: '\f284' !important;
}
[dir='rtl'] .slick-prev:before {
    content: '\f285'!important;
}
[dir="rtl"] .btn-cart {
    flex-direction: row-reverse;
    gap: 10px !important;
    width: 146px;
}
.login-section button.service-cta-dark {
    padding: 12px 20px;
}
.login-section a.service-cta-dark {
    padding: 12px 20px;
} 
.flash-btn:hover{
    color: var(--theme-whitecolor);
}
.flash-image {
    height: 185px;
    mix-blend-mode: multiply;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flash-image img {
    object-fit: contain;
    height: 100%;
}

.oil-change-card{
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 5;
}
.oil-change-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, black, transparent);
    border-radius: 20px;
    z-index: -1;
}
[dir="rtl"] .oil-change-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(260deg, black, transparent);
    border-radius: 20px;
    z-index: -1;
}
.oil-change1{
    background: url('../img/oil-change1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}
.body-parts1{
    background: url('../img/body-parts1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}
.details-oil-change{
    background: url('../img/details-oil-change.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}
.details-body-parts{
    background: url('../img/details-body-pats.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}
[dir="rtl"] .oil-change-card{
    height: calc(250px - 40px);
}
.oil-change-card h3 {
    color: var(--theme-whitecolor);
    font-weight: var(--theme-medium);
    text-transform: capitalize;
}
.oil-change-card h5{
    color: var(--theme-darksecondary);
    font-weight: var(--theme-bold);
}

.product-slider .flash-card {
    margin: 10px 10px 10px 0;
    background: transparent;
    box-shadow: none;
}

.product-faq-bg {
    position: relative;
    overflow: hidden;
}
.product-top-content {
    position: absolute;
    top: -1px;
    left: 0%;
    background: var(--theme-darksecondary);
    color: var(--theme-whitecolor);
    padding: 7px 25px;
    border-radius: 20px 0 30px 0;
}
[dir="rtl"] .product-top-content{
    left: 19%;
}
.product-bottom-content {
    position: absolute;
    top: 70px;
    left: 5%;
}
[dir="rtl"] .product-bottom-content{
    left: 25%;
}
.product-bottom-content h5, .product-bottom-content p {
    color: var(--theme-whitecolor);
    text-align: left;
}
.product-faq-info {
    position: absolute;
    bottom: -1%;
    left: 2px;
    overflow: hidden;
    width: 80%;
    display: flex;
    justify-content: flex-end;
    border-radius: 30px;
}
[dir="rtl"] .product-faq-info{
    left: 23%;
}

.brands{
    padding-top: 160px;
}
.brands-card {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 20px 10px 0;
    flex-direction: column;
    height: 150px;
}
.brands-img {
    background: var(--theme-lightbg);
    border-radius: 4px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.brands-img img {
    height: 90px;
    object-fit: contain;
    padding: 5px;
    mix-blend-mode: multiply;
}
.brands-name p {
    text-align: center;
    margin-top: 10px;
    font-weight: var(--theme-bold);
}   


.download-img {
    display: flex;
    justify-content: end;
}
.download-app-content span {
    font-size: 20px;
    font-weight: var(--theme-bold);
}
.download-app-content h2 {
    font-weight: var(--theme-bold);
    margin-bottom: 25px;
}

footer{
    background: var(--theme-darkprimary);
}
.footer-content h4{
    color: var(--theme-whitecolor);
    font-weight: var(--theme-medium);
}
.footer-content p{
    color: var(--theme-whitecolor);
}
.footer-social-media a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--theme-whitecolor);
    background: var(--theme-lightprimary);
    display: inline-block;
    text-align: center;
    line-height: 40px;
    color: var(--theme-whitecolor);
    font-size: 20px;
    margin-right: 10px;
}
.footer-content h5{
    color: var(--theme-whitecolor);
}
.footer-links ul li a{
    color: var(--theme-whitecolor);
    padding: 0 0 10px 0;
    display: inline-block;
}
.footer-contacts-item{
    display: flex;
    padding: 0 0 10px 0;
    gap: 10px;
}
.footer-contacts-item i{
    color: var(--theme-whitecolor);
    margin-right: 10px;
}
.footer-contacts-item a{
    color: var(--theme-whitecolor);
}
.footer-country .dropdown.bootstrap-select.form-control,
.footer-country button.btn.dropdown-toggle.btn-light,
.footer-language .dropdown.bootstrap-select.form-control,
.footer-language button.btn.dropdown-toggle.btn-light{
    background: transparent !important;
    border: none;
    outline: none;
    padding: 0 0 7px 0 !important;
}
.footer-country button.btn.dropdown-toggle.btn-light:focus,
.footer-language button.btn.dropdown-toggle.btn-light:focus{
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.footer-language .filter-option-inner-inner,
.footer-country .filter-option-inner-inner {
    color: var(--theme-whitecolor);
    font-family: var(--theme-mainpara);
    font-size: 16px;
}
.copyright{
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
.copyright p{
    color: var(--theme-whitecolor);
}
.rent-car-content {
    background: var(--theme-whitecolor);
    border-radius: 10px;
    box-shadow: var(--theme-shadow);
    overflow: hidden;
}
.rent-car-content .mercedes{
    color: var(--theme-darksecondary);
    font-weight: var(--theme-medium);
}
.rent-car-content h4{
    font-weight: var(--theme-bold);
}
.overview span,
.specifications span{
    font-weight: var(--theme-bold);
}
.specification-box {
    background: var(--theme-lightbg);
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    gap: 15px;
}
.specification-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: var(--theme-whitecolor);
    border-radius: 4px;
    text-align: center;
    line-height: 50px;
}
.specification-icon img {
    width: 30px;
}
.specification-name h6 {
    font-weight: var(--theme-bold);
}
.rent-car-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--theme-lightbg);
    padding: 20px;
}
.rent-price {
    display: flex;
    align-items: center;
    gap: 5px;
}
.rent-price h5{
    font-weight:  var(--theme-bold);
    color: var(--theme-darkprimary);
}
.rent-price span{
    color: var(--theme-darkprimary);
}
.rent-car-top{
    padding: 20px;
}
.rent-car-img img{
    border-radius: 20px 0 0 20px;
}
.rent-car .row.g-0 > .col-lg-7,
.rent-car .row.g-0 > .col-lg-5,
.car-for-you .row.g-0 > .col-lg-4,
.car-for-you .row.g-0 > .col-lg-8 {
    padding: 0;
    margin: 0;
}


.span-bold{
    color: var(--theme-mainheadcolor);
    font-weight: var(--theme-bold);
}
.car-for-you-content h3{
    font-weight: var(--theme-bold);
}
.car-for-you-banner{
    background: url('../img/car-for-you.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    border-radius: 0 10px 10px 0;
}
.car-for-you-card .car-for-image img{
    border-radius: 10px;
}
.car-for-name h5{
    color: var(--theme-whitecolor);
}
.car-for-you-banner-content span {
    color: var(--theme-whitecolor);
    font-weight: var(--theme-bold);
}
.car-for-you-banner-content h3 {
    color: var(--theme-whitecolor);
    font-weight: var(--theme-bold);
}
.car-for-you-banner-content h3 span {
    color: var(--theme-whitecolor);
    font-weight: var(--theme-bold);
    font-size: 60px;
    position: relative;
    z-index: 5;
}
.car-for-you-banner-content h3 span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 17px;
    background: var(--theme-darksecondary);
    z-index: -1;
}
.car-for-you-banner-content h6{
    color: var(--theme-whitecolor);
}
.car-for-you-content {
    background: var(--theme-whitecolor);
    box-shadow: var(--theme-shadow);
    padding: 30px;
    border-radius: 10px;
}
.select-car select{
    border: 1px solid #CBC3D5;
    font-family: var(--theme-mainpara);
    color: var(--theme-paracolor);
}
.select-car select:focus{
     border: 1px solid #CBC3D5 !important;
}



.testimonial-card-row {
    position: relative;
    margin-bottom: -100px;
}
.testimonials::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--theme-lightprimary);
}
.testimonial-span{
    color: var(--theme-darksecondary);
    text-transform: uppercase;
}
.testimonial-card {
    display: flex ;
    gap: 20px;
    background: var(--theme-whitecolor);
    padding: 20px;
    border-radius: 10px;
}
.testimonial-img img{
    max-width: 100px;
}
.testimonial-content h5 {
    font-weight: var(--theme-medium);
}
.testimonial-content p {
    font-size: 14px;
}
.star-icon i {
    color: var(--theme-darksecondary);
}
.star-icon .unfill-star{
    color: var(--theme-lightbg);
}
[dir="rtl"] .star-icon {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}


.about{
    background: var(--theme-darkprimary);
}
.about-content p {
    color: var(--theme-whitecolor);
}
.founder-box {
    display: flex;
    align-items: center;
    gap: 30px;
}
.founder-name h4 {
    color: var(--theme-whitecolor);
    font-weight: var(--theme-bold);
}

.about-content {
    padding: 60px 25px;
}
.why-book-roadhero {
    background: var(--theme-blackcolor);
    padding: 40px;
    position: relative;
    margin-bottom: -200px;
}
.why-book-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.why-book-roadhero h2{
    color: var(--theme-whitecolor);
    font-weight: var(--theme-medium);
}
.why-book-icon {
    min-width: 50px;
    min-height: 50px;
    background: var(--theme-darksecondary);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-book-content h5 {
    color: var(--theme-whitecolor);
    font-weight: var(--theme-medium);
}
.why-book-content p {
    color: var(--theme-whitecolor);
}

.breadcrumb-services{
    background: url('../img/breadcrumb-service-bg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    z-index: 5;
    padding: 150px 0;
}
.breadcrumb-services::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-120deg, #000000cc, #0000002b);
    z-index: -1;
}
.breadcrumb-services-content h1{
    color: var(--theme-whitecolor);
    font-size: 45px;
    font-weight: var(--theme-medium);
}
.breadcrumb-services-content p{
    color: var(--theme-whitecolor);
    font-size: 37px;
    font-weight: var(--theme-regular);
}

.how-work-card {
    background: var(--theme-whitecolor);
    box-shadow: var(--theme-shadow);
    padding: 20px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    position: relative;
}
.how-work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: var(--theme-darkgradient);
    -webkit-mask: 
        var(--theme-darkgradient) content-box, 
        var(--theme-darkgradient);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
.how-work-icon {
    width: 50px;
    height: 50px;
    background: var(--theme-darkprimary);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
}
.how-work-icon img {
    max-width: 30px;
}
.how-work-left span {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--theme-darksecondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-whitecolor);
    font-size: 12px;
    border: 1px solid var(--theme-whitecolor);
}
.how-work-right h6{
    font-weight: var(--theme-bold);
    margin-bottom: 5px;
}
.how-work-right p{
    font-size: 14px;
}


.select-car-design{
    background: url('../img/select-car-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    border-radius: 20px;
    z-index: 5;
    overflow: hidden;
    padding: 40px 20px;
}
.select-car-design::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--theme-darkprimary), transparent);
    z-index: -1;
}
.top-select-car {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-select-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--theme-whitecolor);
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-select-icon img {
    max-width: 35px;
}
.top-select-left span {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--theme-darksecondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-whitecolor);
    font-size: 12px;
    border: 1px solid var(--theme-darkprimary);
}
.bottom-select-car{
    background: var(--theme-whitecolor);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}
.bottom-select-car span::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px;
    background: #CBC3D5;
    z-index: -1;
}


.compatible-parts{
    border: 2px dashed var(--theme-darkprimary);
    border-radius: 20px;
    padding: 20px;
}
.compatiable-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.compatiable-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.compatiable-icon {
    width: 45px;
    height: 45px;
    background: var(--theme-darkprimary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compatiable-icon img {
    max-width: 30px;
}
.compatiable-head h6{
    color: var(--theme-darkprimary);
    font-weight: var(--theme-bold);
}
.compatiable-close {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-lightbg);
    border-radius: 4px;
    color: var(--theme-blackcolor);
    font-size: 20px;
}
.select-car-page .form-select{
    border: 1px solid #CBC3D5;
    padding: 10px !important;
}
.select-car-page .form-select:focus{
    border: 1px solid #CBC3D5 !important;
}
.select-car-page .form-select ~ label,
.select-car-page .form-control ~ label{
    transform: scale(.85) translateY(0%) translateX(0) !important;
    left: 30px;
    width: fit-content;
    text-align: center;
    background: var(--theme-lightbg);
    display: inline-block;
    top: -18%;
    padding: 0px 6px !important;
    height: auto;
    color: #000;
    font-weight: 400;
    opacity: 1 !important;
    font-size: 14px;
}
.form-floating > .form-control::placeholder {
  opacity: 1 !important;
  color: #494453;
}
.service-kwd-content span,
.service-kwd-content h4{
    color: var(--theme-whitecolor);
}
.select-service-design {
    background: var(--theme-lightbg);
    padding: 20px;
    border-radius: 10px;
}
.select-service-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.select-service-icon{
    width: 50px;
    height: 50px;
    background: var(--theme-darkprimary);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
}
.select-service-icon img{
    max-width: 30px;
}
.select-service-left-box span {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--theme-darksecondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-whitecolor);
    font-size: 12px;
    border: 1px solid var(--theme-whitecolor);
}


.select-service-accordion .accordion-item {
    background-color: var(--white);
    border: none;
    border-radius: 20px !important;
}
.select-service-accordion .accordion-button{
    color: var(--theme-mainheadcolor);
    background-color: var(--theme-whitecolor);
    box-shadow: none;
    font-weight: var(--theme-bold);
    border-radius: 10px;
}
.select-service-accordion .accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:last-of-type .accordion-collapse{
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}
.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:first-of-type .accordion-button{
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}
.accordion-button::after{
    content: "\F64D";
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: var(--theme-lightbg);
    border-radius: 4px;
    font-size: 16px;
    background-image: none !important;
    font-family: "bootstrap-icons";
}
.select-service-accordion .accordion-button:not(.collapsed)::after{
    content: "\F63B";
    background-image: none !important;
    transform: rotate(0deg) !important;
}
.tick-checkbox-item{
    background: var(--theme-lightbg);
    padding: 15px 40px;
    border-radius: 11px;
    display: flex;
    flex-direction: column;
}
.tick-checkbox-design {
    display: flex;
    align-items: center;
}
.tick-box-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 8px;
    margin-top: 8px;
}
.tick-box-para {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.tick-box-para p{
    font-size: 14px;
}
.tick-box-para span{
    color: var(--theme-darkprimary);
    font-weight: var(--theme-bold);
}
.tick-image-item {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0 15px 40px;
}
.tick-image img {
    max-width: 80px;
}
.tick-box-label{
    margin-left: 15px;
}
.tick-checkbox-item .form-check-input:checked{
    background-color: var(--theme-darksecondary);
    border-color: var(--theme-darksecondary);
}
.tick-box-label .form-check-label{
    margin-bottom: 0;
    font-size: 14px;
    font-weight: var(--theme-bold);
}
.tick-box-label .tick-box-price1 {
    color: var(--theme-darkprimary);
    font-weight: var(--theme-bold);
    font-size: 14px;
}
.tick-box-label .tick-box-discount {
    color: var(--theme-darksecondary);
    font-weight: var(--theme-bold);
    font-size: 14px;
    text-decoration: line-through;
}
.form-with-check label{
    color: var(--theme-darkprimary);
}
.service-includes ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.service-includes ul  li p{
    padding-left: 20px;
    position: relative;
    color: var(--theme-blackcolor);
    font-weight: var(--theme-medium);
}
.service-includes ul li p::after{
    content: "\F270";
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 15px;
    color: #0BA36C;
    font-family: "bootstrap-icons";
    transform: translateY(-50%);
}
.want-select {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.want-select a,
.want-select a:hover{
    color: var(--theme-darkprimary);
}

.breadcrumb-list ul {
    display: flex;
    align-items: center;
    gap: 15px;
}
.breadcrumb-list ul li a,
.breadcrumb-list ul li i {
    color: var(--theme-mainheadcolor);
}
.breadcrumb-list ul li i{
    font-size: 12px;
}
.breadcrumb-list ul li .breadcrumb-list-active{
    color: var(--theme-darkprimary);
    font-weight: var(--theme-medium);
}
.product-card-box .row > .col-lg-4{
    padding-right: 7px;
    padding-left: 7px;
}
.product-card-box .flash-card{
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.product-card-btn-design {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-card-btn ul {
    gap: 8px;
}
.product-card-btn .nav-link{
    color: var(--theme-lightprimary);
    background: var(--theme-lightbg);
    border-radius: 10px;
    font-size: 14px;
    font-weight: var(--theme-medium);
}
.product-card-btn .nav-link.active{
    background: var(--theme-darkprimary);
    color: var(--white);
}
.sort-right{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.sort-by select{
    background: transparent;
    border-radius: 60px;
    padding: 5px 10px;
    font-size: 14px;
}
.grip-dots, .humburger {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grip-dots{
    background: #e2d5ff;
}
.humburger{
    background: var(--theme-lightbg);
}
.pagination-box-design ul{
    gap: 10px;
}
.pagination-box-design .page-link {
    position: relative;
    display: block;
    padding: 5px 10px;
    margin-left: -1px;
    line-height: normal;
    color: var(--theme-mainheadcolor);
    background-color: var(--theme-lightbg);
    border: none;
    border-radius: 5px !important;
    font-size: 14px;
}
.pagination-box-design .page-link.active{
    background: var(--theme-darkprimary);
    color: var(--white);
}
.pagination-box-design .page-link i {
    font-size: 14px;
}
.product-search {
    background: var(--theme-lightbg);
    border-radius: 60px;
    padding: 2px 20px;
    display: flex;
    align-items: center;
}
.product-search input {
    border: none;
    outline: none;
    background: transparent;
}
::-webkit-scrollbar {
  width: 8px;
  background: var(--theme-whitecolor);
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--theme-paracolor); 
  border-radius: 10px;
}
.filter-brands {
    background: var(--theme-lightbg);
    border-radius: 15px;
    padding: 20px;
}
.all-brands{
    overflow: hidden;
    overflow-y: scroll;
    height: 200px;
    padding: 0 5px;
}
.all-brands .form-check {
    margin: 10px 0;
}
.all-brands .form-check-input:checked {
    background-color: var(--theme-darksecondary);
    border-color: var(--theme-darksecondary);
}
.all-brands .form-check-input{
    background: transparent;
    border: 1px solid var(--theme-bordercolor);
}
.all-brands .form-check-input:focus{
    box-shadow: none !important;
}
.all-brands .form-check-input:active{
    filter: brightness(100%);
}
.tyre-size-img img {
    border-radius: 5px;
}

.min-max {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.min-box, .max-box {
    background: var(--theme-whitecolor);
    padding: 3px 8px;
    border-radius: 5px;
}
.min-price-box, .max-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.min-box span,
.max-box span {
    font-size: 14px;
}
.min-price-box,
.max-price-box{
    font-size: 16px;
}
.min-price-box .kwd,
.max-price-box .kwd {
    color: var(--theme-paracolor);
    font-weight: var(--theme-bold);
    font-size: 14px;
}





  .range-slider {
    margin: 20px 0;
    padding-top: 3.5em;
    position: relative;
    text-align: center;
  }
  .range-slider:before,
  .range-slider:after {
    content: " ";
    display: table;
  }
  .range-slider:after {
    clear: both;
  }
.min-price-box h6, 
.max-price-box h6 {
    font-size: 10px;
}
  @media (min-width: 640px) {
    .range-slider {
      padding-top: 3.5em;
    }
  }
  @media (min-width: 1024px) {
    .range-slider {
      padding-top: 3.5em;
    }
  }
  .range-slider .track {
    bottom: 15px;
    height: 6px;
    left: 0;
    margin-bottom: -3px;
    position: absolute;
    width: 0;
    z-index: 50;
  }
  @media (min-width: 640px) {
    .range-slider .track {
      bottom: 15px;
    }
  }
  @media (min-width: 1024px) {
    .range-slider .track {
      bottom: 15px;
    }
  }
  .range-slider .track--full {
    background: var(--theme-whitecolor);
    width: 100%;
    border-radius: 10px;
  }
  .range-slider .track--included {
    background: var(--theme-darkprimary);
    border-radius: 10px;
  }
  .range-slider .slider-thumb {
    background: red;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    display: block\9;
    height: 10px;
    left: 0;
    position: absolute;
    width: 10px;
    z-index: 101;
  }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .range-slider .slider-thumb {
      display: block;
    }
  }
  @media (min-width: 640px) {
    .range-slider .slider-thumb {
      height: 30px;
      width: 30px;
    }
  }
  @media (min-width: 1024px) {
    .range-slider .slider-thumb {
      height: 30px;
      width: 30px;
    }
  }
  .range-slider [type="range"] {
    -webkit-appearance: none;
    background: none;
    height: 30px;
    margin: 0;
    outline: none;
    padding: 0;
    pointer-events: none;
    position: relative;
    width: 100%;
    z-index: 75;
  }
  @media (min-width: 640px) {
    .range-slider [type="range"] {
      height: 30px;
    }
  }
  @media (min-width: 1024px) {
    .range-slider [type="range"] {
      height: 30px;
    }
  }
  .range-slider [type="range"]:focus {
    outline: none;
  }
  .range-slider [type="range"]::-moz-focus-outer {
    border: 0;
  }
  .range-slider [type="range"]:first-of-type {
    float: left;
    margin-bottom: -30px;
  }
  @media (min-width: 640px) {
    .range-slider [type="range"]:first-of-type {
      margin-bottom: -30px;
    }
  }
  @media (min-width: 1024px) {
    .range-slider [type="range"]:first-of-type {
      margin-bottom: -30px;
    }
  }
  .range-slider [type="range"]:last-of-type {
    float: right;
    margin-bottom: 0;
  }
  .range-slider [type="range"]::-webkit-slider-runnable-track {
    background: none;
    border: 0;
    height: 6px;
    z-index: -1;
  }
  .range-slider [type="range"]::-ms-fill-lower {
    background: none;
    border: 0;
  }
  .range-slider [type="range"]::-ms-fill-upper {
    background: none;
    border: 0;
  }
  .range-slider [type="range"]::-ms-track {
    background: transparent;
    border: 0;
    border-color: transparent;
    color: transparent;
    height: 6px;
    z-index: -1;
  }
  .range-slider [type="range"]:focus::-ms-fill-lower {
    background: none;
    border: 0;
  }
  .range-slider [type="range"]:focus::-ms-fill-upper {
    background: none;
    border: 0;
  }
  .range-slider [type="range"]::-moz-range-track {
    -moz-appearance: none;
    background: none;
    border: 0;
    height: 6px;
    z-index: -1;
  }
  .range-slider [type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: var(--theme-whitecolor);
    border: 2px solid var(--theme-darkprimary);
    border-radius: 50%;
    cursor: pointer;
    height: 15px;
    margin-top: -6px;
    outline: 0;
    pointer-events: all;
    position: relative;
    width: 15px;
    z-index: 100;
  }
  @media (min-width: 640px) {
    .range-slider [type="range"]::-webkit-slider-thumb {
      height: 15px;
      margin-top: -6px;
      width: 15px;
    }
  }
  @media (min-width: 1024px) {
    .range-slider [type="range"]::-webkit-slider-thumb {
      height: 15px;
      margin-top: -6px;
      width: 15px;
    }
  }
  .range-slider [type="range"]::-ms-thumb {
    background: var(--theme-whitecolor);
    border: 2px solid var(--theme-darkprimary);
    border-radius: 50%;
    cursor: pointer;
    height: 15px;
    margin-top: 0;
    pointer-events: all;
    position: relative;
    width: 15px;
    z-index: 100;
  }
  @media (min-width: 640px) {
    .range-slider [type="range"]::-ms-thumb {
      height: 30px;
      width: 30px;
    }
  }
  @media (min-width: 1024px) {
    .range-slider [type="range"]::-ms-thumb {
      height: 30px;
      width: 30px;
    }
  }
  .range-slider [type="range"]::-moz-range-thumb {
    -moz-appearance: none;
    background: var(--theme-whitecolor);
    border: 2px solid var(--theme-darkprimary);
    border-radius: 50%;
    cursor: pointer;
    height: 15px;
    margin-top: -6px;
    pointer-events: all;
    position: relative;
    width: 15px;
    z-index: 100;
  }
  @media (min-width: 640px) {
    .range-slider [type="range"]::-moz-range-thumb {
      height: 30px;
      margin-top: -12px;
      width: 30px;
    }
  }
  @media (min-width: 1024px) {
    .range-slider [type="range"]::-moz-range-thumb {
      height: 30px;
      margin-top: -6px;
      width: 30px;
    }
  }
  .range-slider .output,
  .range-slider output {
    background: transparent;
    border: 1px solid transparent;
    border-radius: unset;
    color: var(--theme-paracolor);
    display: inline-block;
    height: 2.5em;
    left: 50%;
    line-height: 2em;
    padding: 0 0.20em;
    position: absolute;
    text-align: center;
    top: 0;
    transform: translate(-50%, 0);
  }


.breadcrumb-products{
    background: url('../img/product-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom, center;
    z-index: 5;
}
.breadcrumb-products::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.breadcrumb-product-content p{
    font-size: 24px;
    font-weight: var(--theme-regular);
}
.breadcrumb-product-content span{
    color: var(--theme-darksecondary);
}
.breadcrumb-product-content h1{
    font-size: 40px;
}
.product-select-box .row > .col{
    padding-right: 7px;
    padding-left: 7px;
}
.product-select select {
    height: 45px;
    width: 100%;
    padding: 0px 10px;
    border: 1px solid var(--theme-bordercolor);
    border-radius: 4px;
}
.product-detail-card{
    border-radius: 16px;
    overflow: hidden;
}
.product-details-name{
    position: absolute;
    top: 0;
    left: 0;
    background: var(--theme-darksecondary);
    padding: 5px 10px;
    border-radius: 16px 0 20px 0;
    color: var(--theme-whitecolor);
    text-transform: capitalize;
    font-size: 14px;
}
.product-details-image img {
    border-radius: 16px;
}
.product-details-slider .slick-dots{
    bottom: 14px;
}
.product-details-slider .slick-dots li.slick-active button:before{
    color: var(--theme-darkprimary);
}
.instock{
    background: #0ba36c;
    color: var(--theme-whitecolor);
    padding: 5px 10px;
    border-radius: 40px;
    font-size: 14px;
    font-family: var(--theme-mainpara);
}
.product-details-top-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.product-details-left span{
    color: var(--theme-lightprimary);
    font-size: 14px;
    font-weight: var(--theme-bold);
}
.product-details-left p{
    font-size: 14px;
    color: var(--theme-lightprimary);
}
.product-details-price {
    display: flex ;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}
.product-details-price h5{
    color: var(--theme-darksecondary);
}
.product-details-price h6{
    color: var(--theme-darksecondary);
    text-decoration: line-through;
}
.product-details-tyre-size{
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-details-tyre-size p {
    background: var(--theme-lightbg);
    color: var(--theme-mainparacolor);
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
}
.writebtn{
    color: var(--theme-lightprimary);
    font-size: 14px;
    font-family: var(--theme-mainpara);
    font-weight: var(--theme-medium);
}
.create-account {
    display: block;
    text-align: center;
    color: var(--theme-darkprimary);
    background: var(--theme-whitecolor);
    padding: 9px 15px;
    border-radius: 60px;
    border: 1px solid var(--theme-darkprimary);
}
.product-details-btn {
    display: flex ;
    align-items: center;
    justify-content: end;
    border-top: 2px solid #efe4f1;
    margin-top: 10px;
    padding-top: 15px;
    gap: 20px;
}
.addtocart{
    background: var(--theme-darkprimary);
    padding: 5px 20px;
    border-radius: 60px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 7px;
    color: var(--theme-whitecolor);
}
.talkto{
    background: transparent;
    border: 2px solid var(--theme-darkprimary);
    padding: 1px 20px;
    border-radius: 60px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 7px;
    color: var(--theme-darkprimary);
}
.product-details-btn-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.heart, .share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-lightbg);
    min-width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: var(--theme-paracolor);
}
.product-details-btn-left .heart {
    position: relative !important;
    top: 0;
    right: 0;
}
.product-details-slider .slick-dots li button:before{
    content: "" !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}
.product-details-slider .slick-dots li,
.product-details-slider .slick-dots li button {
    width: 6px !important;
    height: 6px !important;
}
.product-details-slider li.slick-active button::before {
    font-size: 12px !important;
    width: 25px;
    height: 7px;
    border-radius: 20px !important;
    background: var(--theme-darkprimary) !important;
    right: 0;
    left: auto;
}

.schedule-oil{
    border-radius: 20px;
    padding: 30px;
}
.apply-filter.mt-3 {
    display: flex;
    align-items: center;
    gap: 25px;
}
.apply-msg {
    width: 35px;
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--theme-darkprimary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--theme-whitecolor);
}



.my-list-top {
    display: flex ;
    align-items: end;
    justify-content: space-between;
}
.remove-cart {
    background: var(--theme-lightbg);
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--theme-mainparacolor);
}
.form-check-input:checked{
    background-color: var(--theme-darksecondary);
    border-color: var(--theme-darksecondary);
}
.my-list-middle, .my-list-bottom {
    background: var(--theme-lightbg);
    border-radius: 10px;
    overflow: hidden;
}
.my-list-desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.my-list-delete {
    display: flex;
    align-items: center;
    gap: 15px;
}
.my-service-detail {
    display: flex;
    gap: 25px;
    padding: 0 15px 15px 15px;
}
.my-service-details-price {
    display: flex;
    gap: 20px;
}
.allow-service {
    display: flex;
    justify-content: end;
    padding: 0 30px 0 0;
}
.list-decre form {
    display: flex;
    align-items: center;
    background: #e6e4e8;
    padding: 5px;
    border-radius: 60px;
}
.value-button{
    background: #cfbef5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
}
.list-decre form input{
    background: transparent;
    outline: none;
    border: none;
}
.value-show {
    width: 30px;
    text-align: center;
    font-size: 16px;
}
.cart-price {
    display: flex;
    align-items: center;
    gap: 6px;
}
.cart-price h6{
    color: var(--theme-darksecondary);
    text-decoration: line-through;
}
.my-list-details {
    display: flex;
    align-items: start;
}
.list-image {
    background: #ebdeff;
    height: 100%;
}
.list-image img {
    mix-blend-mode: multiply;
    margin: 0 auto;
    display: block;
}
.my-list-bottom-desc{
    padding: 15px;
}
.my-list-toggle .form-check-input{
  border: 1px solid rgba(0,0,0,.5);
  background-color: var(--theme-lightbg);
}
.my-list-toggle .form-switch .form-check-input{
   width: 45px;
   height: 24px;
}
.my-list-toggle .form-check-label{
    margin-left: 15px;
}
.summary-total-item {
    display: flex ;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin: 12px 0;
}
.summary-total-box{
    background: var(--theme-lightbg);
    overflow: hidden;
    border-radius: 15px;
}
.summary-total-top{
    padding: 20px;
}
.subtotal-amount span, .subtotal-amount-head h6, .summary-total span{
    color: var(--theme-paracolor);
}
.summary-confirm-total {
    background: #E9DDFF;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.summary-total h5{
    color: var(--theme-darkprimary);
}
.summary-coupon .input-group-text {
    background: #0ba36c;
    color: var(--theme-whitecolor);
    border-radius: 10px;
}
.summary-coupon .form-control{
    background: #f2f9d9;
    border: 1px solid transparent;
    padding: 10px 10px 10px 60px;
    position: relative;
    border-radius: 10px 0 0 10px !important;
}
.summary-coupon .discount-img{
    position: absolute;
    background: url(../img/discount.png);
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    width: 100%;
    height: 100%;
    max-width: 25px;
}
.light-card-bg {
    background: var(--theme-lightbg);
    padding: 30px;
    border-radius: 10px;
}
.emergency-bg{
    padding: 30px 30px 0 30px !important;
}
.emergency-br{
    border-radius: 10px 10px 0 0;
}
.car-infor {
    background: var(--theme-whitecolor);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}
.brd-btn {
    border: 1px solid var(--theme-darkprimary);
    padding: 10px 15px;
    color: var(--theme-darkprimary);
    border-radius: 60px;
    font-family: var(--theme-mainhead);
}
.brd-btn:hover{
    color: var(--theme-darkprimary);
}
.car-info-input .form-control{
    padding: 15px !important;
}
.location-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    left: auto;
}
.save-location{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.disable-location {
    width: 100%;
    display: block;
    border-radius: 60px;
    padding: 10px 16px;
    color: #d1d1d1;
}
.delivery-address {
    padding: 20px;
    border-radius: 10px;
}
.iframe iframe {
    border-radius: 10px;
}
.wallet-account {
    display: flex ;
    align-items: center;
    gap: 20px;
}
.wallet-info{
    border: 2px dashed var(--theme-bordercolor);
    padding: 10px 20px;
}
.select-date input[type="radio"],
.select-morning-slot input[type="radio"] {
    display: none;
}
.select-date input[type="radio"]:checked + .date-label{
    color: var(--theme-whitecolor);
    background: var(--theme-darkprimary);
}
.select-morning-slot input[type="radio"]:checked + .time-label{
    background: var(--theme-darksecondary);
    color: var(--theme-whitecolor);
}
.date-label{
    width: 50px;
    height: 70px;
}
.time-label{
    padding: 10px;
}
.date-label, .time-label{
   background: var(--theme-whitecolor);
    display: flex ;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
}
.pickup-top {
    display: flex ;
    align-items: center;
    justify-content: space-between;
}
.month-selector {
    background: transparent;
    border: 1px solid var(--theme-bordercolor);
    padding: 6px 10px;
    border-radius: 60px;
    font-size: 14px;
}
.wallet-detail a{
    font-size: 14px;
    color: var(--theme-paracolor);
}
.track-btn{
    display: flex ;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.track-btn .brd-btn{
    padding: 7px 15px;
}
.emergency-service-card {
    background: var(--theme-whitecolor);
    display: flex ;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 15px;
}
.emergency-service-head span {
    color: var(--theme-darksecondary);
    font-size: 14px;
}
.emergency-service-content {
    display: flex ;
    align-items: center;
    gap: 10px;
}
.emergency-service-img img {
    height: 50px;
}
.emergency-card2{
    background: #F1E9D4;
}
.emergency-card3{
    background: var(--theme-lightbg);
}
.tyre-icon-card {
    display: flex ;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tyre-icon {
    width: 65px;
    height: 65px;
    background: var(--theme-darkprimary);
    border-radius: 50%;
    text-align: center;
    line-height: 65px;
}
.emergency-top {
    background: var(--theme-darkprimary);
    padding: 15px;
    border-radius: 10px 10px 0 0;
    position: relative;
}
.sos-design {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme-darksecondary);
    padding: 7px 15px;
    border-radius: 0 8px 0 40px;
    color: var(--theme-whitecolor);
}
.emergency-middle {
    background: var(--theme-whitecolor);
    padding: 15px;
}
.emergency-middle p {
    font-size: 13px;
}
.emergency-bottom {
    background: #E9DDFF;
    padding: 10px 15px;
    display: flex ;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 10px 10px;
}
.emergency-price {
    display: flex;
    gap: 10px;
}
.emergency-price h6 {
    font-weight: var(--theme-bold);
    color: var(--theme-darkprimary);
}
.emergency-price span {
    color: var(--theme-darksecondary);
    text-decoration: line-through;
    font-weight: var(--theme-bold);
    font-size: 14px;
}
.current-loc {
    display: flex;
    align-items: center;
    justify-content: end;
    color: var(--theme-darkprimary);
    font-size: 14px;
}
.current-loc:hover{
    color: var(--theme-darkprimary);
}
.emergency-kwd {
    background: var(--theme-darkprimary);
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
}
.rentcar-card{
    padding: 40px 60px 40px 40px;
    border-radius: 16px;
    height: 100%;
}
.rentcar-darksecondary {
    background: url(../img/rent-orange.png) #F9601C;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center, center;
}
.rentcar-darkprimary{
    background: url(../img/rent-blue.png) #3D0791;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center, center;
}
.rentacar-blue img, .rentacar-orange img {
    max-width: 70%;
}
[dir="rtl"] .rentacar-blue,
[dir="rtl"] .rentacar-orange{
    display: flex;
    justify-content: flex-end;
}
.rentacar-blue, .rentacar-orange {
    display: flex;
    justify-content: flex-end;
}
.darksecondary{
    background: var(--theme-darksecondary);
}
.card-box.light {
    background: var(--theme-lightbg);
    padding: 20px;
    border-radius: 12px;
}
.switch-btn {
    width: 50px;
    height: 50px;
    background: var(--theme-darkprimary);
    text-align: center;
    line-height: 50px;
    color: var(--theme-whitecolor);
    font-size: 25px;
    border-radius: 8px;
}
.pick-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}
.section-title h6::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--theme-darksecondary);
    box-shadow: 0px 0px 0px 4px rgb(245 187 166);
}
.popular-car-card {
    background: var(--theme-lightbg);
    border-radius: 12px;
    padding: 15px;
    height: 300px;
}
.popular-car-top {
    display: flex ;
    justify-content: space-between;
}
.popular-car-head h6{
    font-size: 14px;
}
.popular-card-middle {
    display: flex ;
    flex-direction: column;
}
.popular-car-image img{
    height: 120px;
    mix-blend-mode: multiply;
    object-fit: contain;
}
.popular-car-item, .popular-card-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.popular-car-heart a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--theme-darkprimary);
    background: #E9DDFF;
    text-align: center;
    line-height: 30px;
    display: inline-block;
}
.popular-car-price {
    display: flex ;
    align-items: center;
    gap: 5px;
    color: var(--theme-darkprimary);
    font-size: 14px;
}
[dir="rtl"] .popular-car-price{
    font-size: 10px;
}
.popular-car-price h6{
    color: var(--theme-darkprimary);
    font-size: 14px;
}
[dir="rtl"] .popular-car-price h6{
    font-size: 12px;
}
.car-icon-info {
    color: var(--theme-paracolor);
    font-size: 12px;
}
.popular-car-head .car-subtitle {
    font-size: 12px;
}
.popular-card-bottom button{
    font-size: 14px;
}
.similar-card{
    margin-right: 15px;
}
.similar-thumbnail-img{
    margin: 10px;
}
.similar-thumbnail-img img{
    border-radius: 10px;
    background: var(--theme-lightbg);
}
.rental-pickup {
    background: var(--theme-whitecolor);
    padding: 20px;
    border-radius: 8px;
}
.need-card {
    display: flex ;
    align-items: center;
    justify-content: space-between;
}
.need-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.need-card .form-check-input{
    border: 1px solid rgba(0, 0, 0, .5);
    background-color: var(--theme-lightbg);
    width: 45px;
    height: 24px;
}
.user-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: transparent;
    border: 2px solid var(--theme-bordercolor);
    border-radius: 50%;
}
.forum-container {
    background: var(--theme-whitecolor);
    box-shadow: var(--theme-shadow);
    padding: 40px 20px;
    border-radius: 10px;
}
span.verified {
    width: 17px;
    height: 17px;
    background: #3466f6;
    border-radius: 50%;
    color: var(--theme-whitecolor);
    min-width: 17px;
    text-align: center;
    font-size: 12px;
    line-height: 17px;
    margin-left: 8px;
}
.forum-tags span,
.forum-tags a,
.forum-tags a:hover{
    color: var(--theme-paracolor);
}
.comments-box-container {
    background: var(--theme-lightbg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--theme-bordercolor);
}
.comments-title h4 {
    border-bottom: 1px solid var(--theme-bordercolor);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.add-comments {
    display: flex ;
    align-items: center;
    gap: 10px;
}
.add-comment-text {
    background: #dad4de;
    padding: 10px;
    border-radius: 10px;
    display: flex ;
    align-items: center;
    width: 100%;
    gap: 20px;
}
.add-comment-text input,
.add-comment-text .form-control:focus {
    background: transparent;
    outline: none;
    border: none;
}
.comment-testimonial-item {
    display: flex;
    align-items: start;
    gap: 30px;
}
.comment-testimonial-box {
    background: var(--theme-whitecolor);
    padding: 20px;
    border-radius: 10px;
}
.comment-testimonial-head {
    display: flex ;
    align-items: center;
    justify-content: space-between;
}
.comment-testimonial-date span {
    color: var(--theme-darkprimary);
    font-size: 14px;
}
.comment-testimonial-review {
    display: flex ;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.comment-testimonial-ml {
    margin-left: 70px;
}


.launch-box {
    display: flex ;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--theme-bordercolor);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.launch-founder{
    display: flex;
    align-items: center;
    gap: 15px;
}
.launch-founder-img img {
    border: 3px solid var(--theme-darkprimary);
    border-radius: 50%;
}
.add-media {
    color: var(--theme-darkprimary);
    font-size: 14px;
    background: #eeeeee;
    padding: 3px 5px;
    border-radius: 4px;
}
.launch-form input, .launch-form textarea,
.launch-form .form-control:focus {
    background: #ECE6F1;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .instock{
    display: ruby-text;
    width: 100%;
}
[dir="rtl"] .product-card-btn ul{
    flex-direction: row-reverse;
}

@media only screen and (max-width:768px){
#bookingForm .col-md.col-xs-6.col-sm-6 {
    width: 50%!important;
    padding: 0px 15px;
}
.hero-content {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

}

[dir="rtl"] .sevice-name.mb20 {
    text-align: right;
    padding-right: 12px;
}
/* [dir="rtl"] .service-img
 {
    display: flex;
    justify-content: start;
} */
/* [dir="rtl"] .service-slider .slick-next {
    right: auto;
    left: 0;
} */
 [dir="rtl"] .service-slider .slick-next {
    left: -6px ! IMPORTANT;
}
.products.home-p h6 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	    min-height: 40px;
}
.products.home-p p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
/*    min-height: 22px;*/
	min-height: 25px;
}
.home-p .flash-bottom {
    min-height: 216px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-cta .service-cta-button a {
    line-height: 30px;
	padding: 5px 20px;
}
.service-cta .service-cta-button {
    display: flex;
    gap: 10px;
    align-items: center;
}
.flash-bottom p:empty {
    display: none;
}
.flash-sale.ss h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
[dir="rtl"] .service-slider .slick-prev {
    right: -6px;
    /* right: 0 !important; */
    left: auto;
}
[dir="rtl"] .service-cta-content {
    text-align: right;
}
[dir="rtl"] .demand-row .col-lg-5.order-1.order-md-2 {
    order: 1 !important;
}

[dir="rtl"] .demand-row .col-lg-1.order-2.order-md-1 {
    order: 2 !important;
}
[dir="rtl"] .on-demand-content {
    text-align: right!important;
    padding-right: 20px;
}

[dir="rtl"] .flash-left,
[dir="rtl"] .my-list-delete {
    flex-direction: row-reverse;
}
[dir="rtl"] .my-list-delete{
    width: 100%;
    justify-content: flex-end;
    flex-direction: row-reverse;
}
[dir="rtl"]  h2.sub-heading-white.flash-main-head {
    text-align: right;
}
[dir="rtl"] .oil-change-card {
    text-align: right;
}
[dir="rtl"] .about-content, [dir="rtl"] .why-book-roadhero, [dir="rtl"] .testimonial-content {
    text-align: right;
}
[dir="rtl"] .download-app-content {
    text-align: right;
}
[dir="rtl"] .app-store img {
    margin: initial !important;
}
[dir="rtl"] .footer-content, [dir="rtl"] .copyright  {
    text-align: right;
}

[dir="rtl"] .accordion-button::after {
    position: absolute;
    left: 7px;
}

/* [dir="rtl"] .accordion-body.service-content {
    text-align: right;
} */

[dir="rtl"] .accordion-body.service-content {
    text-align: right;
    min-height: 108px;
}
[dir="rtl"]  .product-details-btn {
    flex-direction: row-reverse;
}
[dir="rtl"] .accordion-body.service-content p {
    font-size: 20px;
}
[dir="rtl"]  .product-details-btn-left {
    flex-direction: row-reverse;
}
[dir='rtl'] .my-list-description h5.text-bold, .my-list-description [dir='rtl'] h5.text-bold {
    text-align: right;
}

[dir='rtl'] .allow-service {
    display: flex;
    justify-content: start;
    padding: 0 30px 0 0;
}
[dir='rtl'] .bottom-select-car h6 {
    text-align: right;
}
[dir='rtl'] .bottom-select-car .d-flex.justify-content-end.mt20 {
    justify-content: flex-start !important;
}
[dir='rtl'] .top-select-right {
    text-align: right;
}

[dir='rtl'] .faq .Filter-row {
    direction: ltr;
}

[dir='rtl'] .heading-box.mb-4 {
    text-align: right;
}
[dir='rtl'] .product-faq {
    text-align: right;
}

[dir='rtl'] .top-navbar .form-control, [dir='rtl'] .top-navbar .form-select {
    font-family: var(--theme-mainpara);
    font-size: 15px;
    padding: 4px 15px !important;
    height: 100%;
    border: none;
}

[dir='rtl'] .top-navbar-left-side, [dir='rtl'] .top-navbar-right-side {
    flex-direction: row-reverse;
}
[dir='rtl'] .whatsapp {
    flex-direction: row-reverse;
}

[dir='rtl'] .cart-number1 {
    right: 52px;

}

[dir='rtl'] .search-btn button {
    background: #3d0791;
    padding: 2px 10px;
    border-radius: 25px;
    color: #fff;
}
[dir='rtl'] .search-btn {
    padding: 2px 12px;
}

[dir='rtl'] .whatsapp-col {
    border-left:none;
}
[dir='rtl'] .bottom-navbar-design ul {
    flex-direction: row-reverse;
}

[dir='rtl'] .dream-car .row.filter-row.d-flex.align-items-center.justify-content-lg-end {
    flex-direction: row;
}

[dir='rtl'] .rent-car-top, [dir='rtl'] .rent-car-left
 {
    text-align: right;
}
[dir='rtl'] .specifications .row {
    flex-direction: row-reverse;
}

[dir='rtl'] .car-for-you-content {
    text-align: right;
}
[dir='rtl'] .select-car select {
    padding-right: 40px;
}

[dir='rtl'] .car-for-you-banner-content {
    text-align: center;
}
[dir='rtl'] .rent-price h5 {
    display: flex;
    flex-direction: row-reverse;
}
[dir='rtl'] .footer-social-media {
    flex-flow: row-reverse;
    display: inline-flex;
}
[dir='rtl'] .service-img {
    display: flex;
    justify-content: start;
}

[dir='rtl'] .service-slider{
    direction: ltr;
}

[dir='rtl'] .product-details-btn-left{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

[dir="rtl"] .service-cta-dark {
    font-size: 12px;
    line-height: 20px;
}
.product-details-image {
    background: var(--theme-lightbg);
}
[dir="rtl"] .car-title{
    text-align: right;
}
[dir="rtl"] .flash-bottom,
[dir="rtl"] .flash-bottom h5,
[dir="rtl"] .flash-bottom p,
[dir="rtl"] .flash-bottom span{
    text-align: right;
}
[dir='rtl'] .all-brands .form-check {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
[dir="rtl"] .filter-brands h5{
    text-align: right !important;
}
[dir="rtl"] .select-service-accordion .product-service-btn, [dir="rtl"] .product-details-btn .talkto {
    flex-direction: row-reverse !important;
    padding: 1.5rem 1.25rem;
}
[dir="rtl"] .product-details-tyre-size {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
[dir="rtl"] .flash-btn-no-full{
    width: 50% !important;
}
[dir="rtl"] .save-location .form-check{
    padding: 2.5em !important;
}
[dir="rtl"] .payment-detail{
    text-align: left;
}

[dir='rtl'] #morningSlots,
[dir='rtl'] #afternoonSlots{
    flex-direction: row-reverse;
}
[dir="rtl"] .popular-car-head .car-subtitle{
    display: table;
}
[dir="rtl"] .product-details-btn .addtocart {
    width: 50%;
}
[dir="rtl"] .specifications span {
    text-align: left;
    display: block;
}
[dir="rtl"] .tick-box-label {
    margin-right: 40px;
}
[dir="rtl"] .form-with-check label{
    margin-right: 30px;
}
[dir="rtl"] .form-card-design {
    border-radius: 8px 0 0 8px;
}
[dir="rtl"] .car-login-img img {
    border-radius: 0 8px 8px 0;
}
[dir="rtl"] .service-cta-dark{
    padding: 8px 20px;
}
[dir="rtl"] .theme-white-btn{
    text-align: right;
}
[dir="rtl"] .flash-timing::after{
    right: -81px;
}
[dir="rtl"] .about {
    margin-bottom: 40px;
}
/* home page mobile */
@media only screen and (max-width:768px){
	ul.dropdown-menu.show {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}
    [dir='rtl'] .hero-content-box h1 br {
        display: none;
    }
    [dir='rtl'] .hero-content {
        position: absolute;
        top: 40%;
        left: 0;
        width: 100%; 
        transform: translateY(-50%);
    }
    
    [dir='rtl'] .select-service-accordion button.accordion-button {
        flex-direction: row-reverse ;
    }

    [dir='rtl'] .service-img {
        display: flex;
        justify-content: end;
    }

    [dir='rtl'] .flash-left {
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 15px;
        flex-wrap: wrap;
    }

    [dir='rtl'] .service-how-work{
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .service-how-work::-webkit-scrollbar {
        height: 4px; 
    }
    [dir='rtl'] button.accordion-button,
    [dir='rtl'] .select-service-accordion button.accordion-button{
        flex-direction: row;
    }
    [dir='rtl'] .product-details-btn{
        flex-direction: column-reverse !important;
        align-items: end;
    }
    [dir='rtl'] .flash-btn{
        padding: 8px 20px;
    }
    [dir='rtl'] .talkto,
    [dir='rtl'] .car-info-button{
        width: 100%;
    }
    [dir='rtl'] .popular-card-middle{
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    [dir='rtl'] .popular-car-item{
        flex-direction: column;
    }
    [dir='rtl'] .hero-card2, .hero-card4{
        background: transparent;
    }
    
    [dir="rtl"] .my-list-delete{
        width: 100%;
        justify-content: flex-end;
        flex-direction: row-reverse;
    }
    [dir='rtl'] .hero-card1, .hero-card3{
        background: var(--theme-lightsecondary);
    }
    [dir="rtl"] .service-slider .slick-prev {
        left: auto;
        right: -25px !important;
    }
    [dir="rtl"] .service-slider .slick-next {
        left: -6px !important;
    }
    
    [dir="rtl"]  h2.sub-heading-white.flash-main-head{
        text-align: left;
    }
    [dir='rtl'] .car-for-you.pb60 .container > .row,
    [dir='rtl'] .rent-car .container > .row{
        flex-direction: column-reverse;
    }
    [dir="rtl"] .select-service-accordion .service-tyre-btn{
        flex-direction: row !important;
    }
    [dir="rtl"] .tick-checkbox-design {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    [dir='rtl'] .flash-btn-box,
    [dir='rtl'] .addtocart{
        width: 100% !important;
    }
    [dir="rtl"] .time-label{
        width: 104px;
    }
    .time-label{
        font-size: 10px;
    }
    .flash-sale .row.pt30 > .col-lg-3 {
        padding-left: 6px;
        padding-right: 6px;
        width: 50%!important;
    }
    .product-top-content{
        left: unset;
    }
    .product-bottom-content{
        left: 10%;
    }
    .product-faq-info{
        left: 4%;
        bottom: 2px;
        overflow: hidden;
    }
}
.product-card-section .flash-bottom h5 {
        overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
 
}
.product-card-section .flash-bottom p {
   display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 22px;
    margin-top: 8px;
    min-height: 44px;
}
.product-card-box span.flash-discount {
    line-height: 20px !important;
}
.slick-prev:before, .slick-next:before{
    color: var(--theme-darkprimary);
}



[dir="rtl"] .sos-design {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    right: auto;
    background: var(--theme-darksecondary);
    padding: 7px 15px;
    border-radius: 8px 0px 40px 0px;
    color: var(--theme-whitecolor);
}

[dir="rtl"] .emergency-spare-head h6 {
    text-align: right;
} 