html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "Livvic", serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
div.wrapper {
    width: 100%;
    height: auto;
}
div.container {
    width: 1280px;
    max-width: calc(100% - 160px);
    margin: 0 auto;
}

/***===========================
    THIS IS HEADER STYLE START
=============================***/
header#siteHeader {
    background: #000;
}
header#siteHeader .headerTop {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 160px);
    max-width: 1280px;
    margin: 0 auto;
    height: 100px;
    align-items: center;
}
header#siteHeader .headerNavigation {
    background: #000;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header#siteHeader .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}
header#siteHeader .nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
header#siteHeader.search-bar {
    display: flex;
    align-items: center;
}
header#siteHeader .search-bar select,
header#siteHeader .search-bar input {
    padding: 8px;
    border-radius: 5px;
    border: none;
    margin-right: 5px;
}
header#siteHeader .nav-right {
    display: flex;
    gap: 25px;
    align-items: center;
    color: white;
}
div.nav-container .search-bar {
  display: flex;
}
header#siteHeader .nav-right span {
    font-weight: 500;
    margin-left: 50px;
    line-height: 1.3em;
}
header#siteHeader .nav-right a {
    font-weight: 500;
    font-size: 14px;
}
div.nav-container .search-bar form .formGoup {
    display: flex;
    border: 1px solid #fff;
    border-radius: 90px;
}
div.nav-container .search-bar form .formGoup input {
    background: transparent;
    color: #fff;
    outline: none;
    font-weight: 500;
    height: 30px;
    width: 250px;
    text-indent: 15px;
}
div.nav-container .search-bar form .formGoup input::-webkit-input-placeholder { /* Edge */
  color: #fff;
}
div.nav-container .search-bar form .formGoup input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}
div.nav-container .search-bar form .formGoup input::placeholder {
  color: #fff;
}
div.nav-container .search-bar form .formGoup button {
    background: transparent;
    color: #fff;
    border: 0;
    outline: none;
    padding: 0px 15px 0px 5px;
    cursor: pointer;
    font-size: 18px;
}
div.nav-container .search-bar #selectCity {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 90px;
    width: 150px;
    padding: 0px 15px;
    font-weight: 500;
    margin-right: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('../../images/h_bottom.png');
    background-repeat: no-repeat;
    background-position: 92%;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
div.nav-container .search-bar #selectCity:focus {
    border-radius: 0px;
}

/* Navigation Menu */
header#siteHeader .main-nav {
  background: #000;
  width: calc(100% - 160px);
  max-width: 1280px;
}
header#siteHeader .nav-list {
    display: flex;
    width: 100%;
    gap: 50px;
}
header#siteHeader .nav-list li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    padding: 18px 0px;
}
header#siteHeader .nav-list li ul.submenu {
    position: absolute;
    background: #000;
    margin-left: -20px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    margin-top: 30px;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    min-width: 150px;
    opacity: 0;
    z-index: 1234;
}
header#siteHeader .nav-list li ul.submenu li a {
    padding: 10px 20px;
    display: inline-block;
}
header#siteHeader .nav-list li ul.submenu li:first-of-type a{
    padding-top: 30px;
}
header#siteHeader .nav-list li ul.submenu li:last-of-type a{
    padding-bottom: 20px;
}
header#siteHeader .nav-list li:hover ul.submenu {
    visibility: visible;
    margin-top: 0;
    opacity: 1;
}
header#siteHeader .nav-list li:hover i.fa-angle-down{
    transform: rotate(-180deg);
}
header#siteHeader .nav-list li.megaList:hover .megaMenu {
    visibility: visible;
    margin-top: 0;
    opacity: 1;
}
header#siteHeader .nav-list li .megaMenu {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    width: 30%;
    background: #000;
    padding: 10px 20px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    margin-left: -18px;
    margin-top: 30px;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    opacity: 0;
    z-index: 1234;
}
header#siteHeader .nav-list li .megaMenu .columnItem {
    width: 33%;
    margin-bottom: 15px;
}
header#siteHeader .nav-list li .megaMenu .columnItem ul.megaItem li a {
    padding: 6px 0px;
}
header#siteHeader .nav-list li .megaMenu .columnItem ul.megaItem li:first-of-type a{
    font-weight: 600;
    font-size: 16px;
}
header#siteHeader .nav-list li .megaMenu .columnItem ul.megaItem li:first-of-type a i {
    margin-left: 8px;
}
header#siteHeader .nav-list li.one:first-of-type a {
    color: #959595;
    margin-right: 40px;
    font-size: 16px;
    padding: 16px 0px;
}
header#siteHeader .nav-list li a i.fa-angle-down {
    position: relative;
    left: 2px;
    top: 2px;
    transition: 0.3s ease-in-out;
}
/***===========================
    THIS IS HEADER STYLE END
=============================***/


/*=============================
    Home Banner Styles 
==============================*/
section.banner .overlay {
    background-color: rgba(0,0,0,0.5);
    height: 500px;
}
section.banner .overlay .container {
    display: flex;
    align-items: center;
    height: 100%;
}
section.banner {
    width: 100%;
    height: auto;
    display: inline-block;
}
.banner-content {
    color: white;
    max-width: 600px;
}
.banner-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}
.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
}
.check-button {
    background: white;
    color: black;
    padding: 12px 50px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    border: 1px solid #fff;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
.check-button:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

/***===============================
    HOME PAGE SLIDER TABS
================================***/
section.car-tabs-section {
    padding: 80px 0;
    margin: 0 auto;
}
section.car-tabs-section .tab-buttons {
    display: flex;
    background: #000;
    padding: 6px;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 370px;
}
section.car-tabs-section .tab-button {
    padding: 10px 24px;
    background: #000;
    border: 2px solid #000;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #fff;
}
section.car-tabs-section .tab-button.active {
    background: #fff;
    color: #000;
}
section.car-tabs-section .tab-content {
    display: none;
    margin: 40px 0px;
}
section.car-tabs-section .tab-content.active {
    display: block;
}
div.car-card {
    padding: 15px;
    border: 1px solid #ccc;
    margin: 0px 7px;
    border-radius: 8px;
    max-width: 306px;
    transition: 0.3s ease-in-out;
    position: relative;
}
div.car-card .car-image {
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}
div.car-card .image{
    width: 100%;
    height: 166px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
}
div.car-card .image a {
    max-width: 100%;
    height: 100%;
}
div.car-card .image img {
    width: 100%;
    max-height: 100%;
    height: auto;
    transition: 0.3s ease-in-out;
} 
div.car-card:hover {
    border: 1px solid #000;
}
div.car-card:hover img{
    transform: scale3d(1.1,1.1,1.1);
}
div.car-card .car-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
div.car-card .car-specs {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}
div.car-card .car-price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
div.car-card .car-location {
    color: #666;
    font-size: 14px;
    padding-left: 16px;
    position: relative;
    line-height: 1.2em;
    display: flex;
    justify-content: start;
    align-items: center;
}
div.car-card .location-icon {
    color: #4CAF50;
    margin-right: 5px;
}
div.car-card .car-location i {
    position: absolute;
    left: 0;
    color: #32B256;
    font-size: 12px;
}
div.car-card .car-title a {
    text-decoration: none;
    color: #000;
    display: inline-block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 32px;
}
div.car-card .favItemCar {
    display: inline-block;
    font-size: 25px;
    position: absolute;
    right: 6px;
    top: 6px;
    z-index: 123;
    cursor: pointer;
}

.browse-button {
    display: block;
    width: 200px;
    margin: 40px auto 0;
    padding: 15px;
    background: #000;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    border: 2px solid #000;
}
.browse-button:hover {
    background: #fff;
    border: 2px solid #000;
    color: #000;
}
button.slick-prev.pull-left.slick-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 3px;
    left: -7px;
    background: #fff;
    z-index: 123;
    transition: 0.3s ease-in-out;
}
button.slick-prev.pull-left.slick-arrow:hover {
    background: #000;
}
button.slick-prev.pull-left.slick-arrow:hover i {
    color: #fff;
}
button.slick-prev.pull-left.slick-arrow:before {
    display: none;
}
button.slick-prev.pull-left.slick-arrow i {
    color: #000;
    font-size: 20px;
}
button.slick-next.pull-right.slick-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 3px;
    right: -7px;
    background: #fff;
    z-index: 123;
    transition: 0.3s ease-in-out;
}
button.slick-next.pull-right.slick-arrow:before {
    display: none;
}
button.slick-next.pull-right.slick-arrow i {
    color: #000;
    font-size: 20px;
}
button.slick-next.pull-right.slick-arrow:hover {
    background: #000;
}
button.slick-next.pull-right.slick-arrow:hover i {
    color: #fff;
}
button.slick-prev.pull-left.slick-arrow,
button.slick-next.pull-right.slick-arrow {
    visibility: 0 !important;
    opacity: 0 !important;
}
div.car-slider:hover button.slick-prev.pull-left.slick-arrow{
    visibility: 1 !important;
    opacity: 1 !important;
}
div.car-slider:hover button.slick-next.pull-right.slick-arrow {
    visibility: 1 !important;
    opacity: 1 !important;
}

/***====================
    VIDEO SECTION
=====================***/
section.video-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
section.video-section.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}
section.video-section .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
section.video-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
section.video-section .play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}
section.video-section .play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #000;
    margin-left: 5px;
}
div.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}
div.video-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
}
div.video-modal .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/***===============================
    THIS IS TABES SECTION 5 TABES
================================***/
.body-types {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.body-types h2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
}
.body-types .tab-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.body-types .home_tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    padding: 15px;
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.body-types .home_tab-button:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}
.body-types .home_tab-button.active {
    background: #000;
    color: white;
}
.body-types .home_tab-button img {
    margin-bottom: 8px;
    filter: brightness(0.8);
}
.body-types .home_tab-button.active img {
    filter: brightness(0) invert(1);
}
.body-types .home_tab-button span {
    font-size: 14px;
    font-family: Arial, sans-serif;
}
.body-types .home_tab-content {
    display: none;
    padding: 20px;
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}
.body-types .home_tab-content.active {
    display: block;
}

/****HOME ALL TABS SECTION****/
section#mainTabsSec {
    margin-top: 80px;
}
div.body-type-tabs {
    display: flex;
    justify-content: center;
    padding: 7px;
    border-radius: 4px;
    margin-bottom: 25px;
}
div.body-type-tabs .m-tab-item {
    border: 0;
    background: #F8F8F8;
    padding: 15px 25px;
    border-radius: 4px;
    cursor: pointer;
}
div.body-type-tabs .m-tab-item.active {
    background: #000;
    color: #fff;
}
div.body-type-tabs .m-tab-item.active img{
    filter: invert(1);
    width: auto;
    height: auto;
}
div.body-type-tabs .m-tab-item .tab-icon {
    margin-bottom: 5px;
}
div.body-type-tabs .m-tab-item span {
    font-weight: 600;
}
div.mainTabsItem .tabContentItem .m-tab-content {
    display: none;
}
div.mainTabsItem .tabContentItem .m-tab-content.active {
    display: block;
}

/****HOME SECTION HOW WORKS***/
section.how-works-home {
    margin: 80px 0px;
}
section.how-works-home .content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}
section.how-works-home .content p {
  line-height: 1.3em;
  font-size: 18px;
  font-weight: 400;
}
div.contentColumn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 50px;
}
div.contentColumn .box {
    text-align: center;
}
div.contentColumn .box h1 {
    color: #5B5B5B;
    font-size: 90px;
    font-weight: 700;
}
div.contentColumn .box h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0px;
}
div.contentColumn .box p {
    font-size: 18px;
    line-height: 1.3em;
}

/***HOME PAGE BANNER SCTION***/
section.banner-bgsec .banner-bg {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 350px;
    width: 100%;
}
section.banner-bgsec .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
}
section.banner-bgsec .banner-content {
    padding: 40px;
    max-width: 600px;
}
section.banner-bgsec .banner-title {
    color: white;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
}
section.banner-bgsec .banner-button {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}
section.banner-bgsec .banner-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/***HERE IS THE HTML FOR BRANDS LOGO***/
section.brands-section {
    padding: 80px 0px;
    margin: 0 auto;
}
section.brands-section .brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
section.brands-section .brand-item {
    background-color: #f5f5f5;
    padding: 35px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
section.brands-section .brand-item:hover {
    transform: scale3d(1.05,1.05,1.05);
    box-shadow: 0px 0px 3px #ccc;
}
section.brands-section .brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/***HOME PAGE HERO SECTION ***/
section.hero-section {
    background: white;
    display: flex;
    align-items: center;
    padding: 80px 0px;
    background: #F8F7F7;
}
section.hero-section .hero-box {
    display: flex;
    align-items: center;
    gap: 50px;
}
section.hero-section .hero-image {
    flex: 1;
    max-width: 50%;
}
section.hero-section .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
section.hero-section .hero-content {
    flex: 1;
    padding: 20px;
}
section.hero-section .hero-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 700;
}
section.hero-section .hero-title {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}
section.hero-section .hero-description {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
}
section.hero-section .hero-button {
    background-color: #000;
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-weight: 700;
    border: 2px solid #000;
}
section.hero-section .hero-button:hover {
    background-color: #fff;
    color: #000;
}

/***HOME WHY CHOOSE US SECTION****/
section.why-choose {
    background-color: #000;
    color: white;
    padding: 70px 0px 80px;
    text-align: center;
}
section.why-choose .siteH {
    background: #000 !important;
}
section.why-choose .why-choose-title::before,
section.why-choose .why-choose-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: white;
}
section.why-choose .why-choose-title::before {
    left: 0;
}
section.why-choose .why-choose-title::after {
    right: 0;
}
section.why-choose .why-choose-description {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
section.why-choose .features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
section.why-choose .feature {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
section.why-choose .feature img {
    width: 50px;
    height: 50px;
    fill: white;
}
section.why-choose .feature-title {
    font-weight: 600;
    font-size: 18px;
}


/***HOME PAGE FAQ SECTION***/
section.faq-section {
    margin: 80px auto;
    padding: 0 20px;
}
div.secHeading {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
div.secHeading::before {
    content: "";
    height: 1px;
    width: 100%;
    background: #ccc;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 19px;
}
div.secHeading .siteH {
    font-size: 35px;
    font-weight: 700;
    background: #fff;
    display: inline-block;
    z-index: 123;
    position: relative;
    padding: 0px 40px;
}
section.faq-section .faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}
section.faq-section .faq-item {
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}
section.faq-section .faq-question {
    padding: 20px 20px 20px 30px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}
section.faq-section .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    background: white;
}
section.faq-section .faq-answer p {
    margin: 0;
    padding: 20px 0;
}
section.faq-section .faq-question::before {
    content: 'Q';
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    position: absolute;
    left: 12px;
}
section.faq-section .faq-question::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
section.faq-section .faq-item.active .faq-question::after {
    transform: rotate(-135deg);
}
section.faq-section .faq-item.active .faq-answer {
    max-height: 200px;
}

/**============================
    SITE FOOTER - START
============================**/
footer.footer {
    background-color: #333;
    color: white;
    padding: 80px 0px 20px;
    position: relative;
}
footer.footer .mainFooter {
    position: absolute;
    right: 0;
    z-index: 1234;
    width: 350px;
    height: 350px;
    bottom: 0;
}
.footer-container {
    width: 1280px;
    max-width: calc(100% - 160px);
    margin: 0 auto;
    display: flex;
    gap: 30px;
}
footer.footer .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer.footer .footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}
footer.footer .footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
}
footer.footer .social-icons {
    display: flex;
    gap: 15px;
}
footer.footer .social-icons a {
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: 0.3s ease-in-out;
}
footer.footer .social-icons a:hover {
    background: #000;
    color: #fff;
    transform: scale3d(1.1,1.1,1.1) rotate(360deg);
}
footer.footer .social-icons img {
    width: 20px;
    height: 20px;
}
footer.footer .footer-links h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}
div.newsletter h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
footer.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer.footer .footer-links li {
    margin-bottom: 15px;
}
footer.footer .footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 400;
}
footer.footer .footer-links a:hover {
    opacity: 0.8;
}
footer.footer .newsletter form {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    z-index: 1234;
    position: relative;
}
footer.footer .newsletter input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    flex-grow: 1;
    outline: none;
}
footer.footer .newsletter button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    background: #000;
}
footer.footer .newsletter button:hover {
    background-color: #333;
}
footer.footer .footer-bottom {
    margin-top: 70px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
}
footer.footer .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-right: 30%;
}
footer.footer .footer-bottom-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
}
.footer-container .footer-brand {
    width: 33%;
}
.footer-container .footer-links {
    width: calc(33% - 100px);
    padding-left: 100px;
}
.footer-container .newsletter {
    width: 33%;
}
/**============================
    SITE FOOTER - END
============================**/




/**============================
   ABOUT US PAGE STYLE START
============================**/
section#pageTopBanner {
    position: relative;
    width: 100%;
    height: 400px;
}
section#pageTopBanner .bgImage {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
}
section#pageTopBanner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
section#pageTopBanner .content {
    position: relative;
    padding-top: 150px;
    color: #ffffff;
    width: 400px;
}
section#pageTopBanner .content h2 {
    font-size: 70px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
section#pageTopBanner .content p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}
/***About page section -2 start***/
section.mission-section {
    padding: 80px 0;
    background-color: #ffffff;
}
section.mission-section .mission-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
section.mission-section .mission-text {
    flex: 1;
}
section.mission-section .mission-text h3 {
    color: #5B5B5B;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}
section.mission-section .mission-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}
section.mission-section .mission-text p {
    font-size: 18px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 40px;
    font-weight: 400;
    text-align: justify;
}
section.mission-section .years-counter {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 40px;
}
section.mission-section .counter-number {
    font-size: 110px;
    font-weight: 700;
    color: #5B5B5B;
    line-height: 1;
}
section.mission-section .counter-text {
    flex: 1;
}
section.mission-section .counter-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}
section.mission-section .counter-text p {
    font-size: 16px;
    margin: 0;
    color: #000;
    line-height: 1.5em;
}
section.mission-section .mission-image {
    flex: 0 0 45%;
}
section.mission-section .mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/***ABOUT PAGE TEAM IMAGE***/
section.team-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}
section.team-section .siteH {
    background: #f8f8f8;
}
section.team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
section.team-section .team-member {
    text-align: center;
}
section.team-section .team-member-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}
section.team-section .team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
section.team-section .team-member:hover img {
    transform: scale(1.05);
}
section.team-section .team-member h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
}
section.team-section .team-member p {
    font-size: 16px;
    color: #5B5B5B;
    font-weight: 400;
}

/***ABOUT BLOG PAGE DESIN***/
section.blog-section {
    padding: 80px 0 150px;
    background-color: #ffffff;
}
section.blog-section .blog-wrapper {
    display: flex;
    gap: 60px;
}
section.blog-section .blog-intro {
    flex: 0 0 25%;
}
section.blog-section .blog-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}
section.blog-section .blog-intro p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #000;
    font-weight: 400;
}
section.blog-section .view-all-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}
section.blog-section .view-all-btn:hover {
    background-color: #000;
    color: #fff;
}
section.blog-section .blog-cards {
    flex: 1;
    display: flex;
    gap: 30px;
}
section.blog-section .blog-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}
section.blog-section .blog-card:hover {
    transform: translateY(-5px);
}
section.blog-section .blog-card img {
    width: 100%;
   /* height: 240px;
    object-fit: cover;*/
}
section.blog-section .card-content {
    padding: 24px;
    position: absolute;
    z-index: 123;
    background: #fff;
    bottom: -50px;
    box-shadow: 0px 0px 4px #ccc;
    border-radius: 5px;
    right: 60px;
}
section.blog-section .card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}
section.blog-section .card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 16px;
    font-weight: 400;
}
section.blog-section .date {
    display: block;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

/**============================
   CONTACT US PAGE STYLE START
============================**/
section.contact-Info-pg {
    width: 100%;
    display: inline-block;
    margin: 80px 0px;
}
section#pageTopBanner.contactUs {
    position: relative;
    width: 100%;
    height: 300px;
}
section#pageTopBanner.contactUs .content {
    padding-top: 70px;
}
section.contact-Info-pg .top-text {
    text-align: center;
    line-height: 1.5;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 40px;
    color: #000;
    font-weight: 400;
}
section.contact-Info-pg .boxes-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 1000px;
    margin: 0 auto;
}
section.contact-Info-pg .box {
    flex: 1;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
section.contact-Info-pg .icon-circle {
    width: 70px;
    height: 70px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
section.contact-Info-pg .icon-circle i {
    color: #000;
    font-size: 25px;
}
section.contact-Info-pg .title {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0px 20px;
}
section.contact-Info-pg .time {
    color: #5B5B5B;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}
section.contact-Info-pg .description {
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 400;
}
section.contact-Info-pg .btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 0px;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}
section.contactFormHere {
    background: #F8F7F7;
    padding: 80px 0px;
}
section.contactFormHere .formBoxInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}
section.contactFormHere .formBoxInfo .left {
    width: calc(50% - 20px);
}
.formBoxInfo .left h2 {
    color: #000;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 25px;
}
.formBoxInfo .left p {
    font-size: 18px;
    line-height: 1.3em;
    font-weight: 400;
}
section.contactFormHere .formBoxInfo .right {
    width: calc(50% - 20px);
}
.formBoxInfo .right form{
    background: #000;
    padding: 40px;
    border-radius: 10px;
    position: relative;
}
.formBoxInfo .right form br {
    display: none;
}
div.contactFormSeven .twoFields p {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
.formBoxInfo .right form label {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.formBoxInfo .right form input {
    width: 100%;
    height: 40px;
    text-indent: 15px;
    margin-top: 7px;
    margin-bottom: 18px;
    outline: none;
    border: 0;
    border-radius: 3px;
}
.formBoxInfo .right form textarea {
    width: calc(100% - 20px);
    height: 100px;
    margin-top: 7px;
    margin-bottom: 18px;
    outline: none;
    border: 0;
    border-radius: 3px;
    padding: 10px;
}
.formBoxInfo .right form.wpcf7-form.invalid .wpcf7-not-valid-tip {
    position: absolute;
    font-size: 12px;
    top: auto;
    bottom: -27px;
    left: 0;
}
.formBoxInfo .right form input[type="submit"] {
    text-indent: 0;
    padding: 10px 50px;
    background: #5B5B5B;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    height: 50px;
    cursor: pointer;
}
.formBoxInfo .right form span.wpcf7-spinner {
    position: absolute;
    right: 24px;
    margin-top: 21px;
}
.formBoxInfo .right form .wpcf7-response-output {
    color: #fff;
    margin: 0;
    padding: 10px;
}



/***===============================
 STYE SHOPPAGE / HERE
=================================***/
body.archive.post-type-archive.post-type-archive-product .headerNavigation {
  display: none !important;
}
div.shopRow {
    display: flex;
    gap: 30px;
    margin: 30px 0px 60px;
}
div.shopRow .shopSidebar {
    width: 24%;
}
div.shopRow .shopContent {
    width: 76%;
}
div.shopRow .shopContent .car-shop-banner {
    background-position: 50% 50% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    border-radius: 20px;
}
div.shopRow .shopContent .car-shop-banner .overLay {
    height: 150px;
    background-color: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: 20px;
}
div.shopRow .shopContent .car-shop-banner .overLay h2 {
    font-size: 35px;
    color: #fff;
    font-weight: 700;
    width: 300px;
}
div.shopRow .shopContent ul.products{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
div.shopRow .shopContent ul.products .car-card {
    width: calc(33% - 40px);
    margin: 0;
}
p.woocommerce-result-count {
    margin: 30px 0px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}
form.woocommerce-ordering {
    display: none !important;
}
div.shopRow .shopContent ul.products::before {
    display: none;
}
div.shopRow .shopContent ul.products::after {
    display: none;
}

/***filter***/
.filter-sidebar {
    width: 280px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: unset;
    border: 1px solid #000;
}

/* Filter sections */
.filter-section {
    border-bottom: 1px solid #f1f1f1;
    padding: 15px;
}

/* Filter headers */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

.filter-header .icon {
    transition: transform 0.3s ease;
}

.filter-header.active .icon {
    transform: rotate(180deg);
}

/* Filter content (accordion) */
.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.filter-content.active {
    max-height: 500px; /* Arbitrary large value */
}

/* Price range section */
.price-range {
    padding-top: 15px;
    padding-bottom: 20px;
}

.price-range-header {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.price-slider {
    width: 100%;
    margin: 20px 0;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

/* Custom range slider */
.range-slider {
    width: calc(100% - 22px);
    position: relative;
    margin: 15px 0;
}

.range-slider .track {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    position: absolute;
    top: 8px;
}

.range-slider .track-fill {
    position: absolute;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
    top: 8px;
}

.range-slider .thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 0;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Checkbox filters */
.checkbox-list {
    margin-top: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

/* Search input */
.search-input {
    width: calc(100% - 25px);
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 14px;
    outline: none;
}

/* Year checkboxes */
.year-list .checkbox-item {
    margin-bottom: 5px;
}

/* Brands section */
.brands-list .checkbox-item {
    margin-bottom: 5px;
}

/* Custom checkbox styling */
.custom-checkbox {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    user-select: none;
    color: #333;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #f9f9f9;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #000;
    border: 1px solid #000;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/***=================================
    HERE IS PRODUCT DETAIL PAGE
=================================***/
div.productDetailPage .breadcrumb {
    display: flex;
    list-style: none;
    margin: 30px 0px;
}
div.productDetailPage .breadcrumb li {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}
div.productDetailPage .breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #555;
}
div.productDetailPage .breadcrumb a {
    text-decoration: none;
    color: #5B5B5B;
}
div.productDetailPage .breadcrumb a:hover {
    color: #000;
}
/* Product details section */
div.productDetailPage .product-detail {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}
/* Left side - Image slider */
div.productDetailPage .product-left {
    flex: 1;
    width: 50%;
}
div.productDetailPage .product-images {
    margin-bottom: 30px;
}
div.productDetailPage .main-image-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
div.productDetailPage .thumbnail-slider {
    margin-top: 20px;
}
div.productDetailPage .thumbnail-slider .slick-slide {
    padding: 5px;
}
div.productDetailPage .thumbnail-slider img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}
div.productDetailPage .thumbnail-slider .slick-current img {
    opacity: 1;
    border: 0px solid #000;
}
div.productDetailPage .product-right {
    width: 50%;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}
div.productDetailPage .product-info {
    background-color: #F2F2F2;
    padding: 40px;
    border-radius: 8px;
    box-shadow: unset;
    margin-bottom: 20px;
}
div.productDetailPage .product-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}
div.productDetailPage .product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 16px;
    color: #5B5B5B;
    font-weight: 500;
}
div.productDetailPage .spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
div.productDetailPage .divider {
    height: 15px;
    width: 2px;
    background-color: #5B5B5B;
}
div.productDetailPage .home-test-drive, div.productDetailPage .location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #5B5B5B;
}
div.productDetailPage .icon {
    font-size: 16px;
    color: #333;
}
div.productDetailPage .quality-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 25px 0;
    border: 1px solid #666666;
    border-radius: 90px;
    max-width: 90px;
    transition: 0.3s ease-in-out;
}
div.productDetailPage .quality-badge-text {
    font-size: 14px;
    font-weight: 500;
    display: none;
}
div.productDetailPage .info-icon {
    color: #666;
    cursor: pointer;
    font-size: 24px;
    display: none;
}
div.productDetailPage .assured-tag {
    background-color: #666;
    color: white;
    padding: 9px 25px 9px 11px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    border-radius: 90px;
    cursor: pointer;
}
div.productDetailPage .price-section {
    margin: 35px 0;
    padding-bottom: 25px;
}
div.productDetailPage .price {
    font-size: 28px;
    font-weight: bold;
}
div.productDetailPage .lakh {
    font-size: 16px;
    color: #555;
    margin-left: 10px;
}
div.productDetailPage .action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
div.productDetailPage .btn {
    flex: 1;
    padding: 14px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-align: center;
}
div.productDetailPage .btn-primary {
    background-color: #000;
    color: #fff;
}
div.productDetailPage .btn-secondary {
    background-color: #000;
    color: #fff;
    max-width: 200px;
    text-decoration: none;
}
div.productDetailPage .btn:hover {
    opacity: 0.9;
}
div.productDetailPage .overview-section {
    box-shadow: unset;
    margin: 50px 0px;
}
div.productDetailPage .section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
div.productDetailPage .spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #F8F7F7;
    padding: 20px;
    border-radius: 12px;
}
div.productDetailPage .spec-card {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
}
div.productDetailPage .spec-label {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}
div.productDetailPage .spec-value {
    font-size: 14px;
    font-weight: 500;
}
div.productDetailPage .seller-info {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
}
div.inspection-container .inspection-header {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}
div.inspection-container .inspection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}
div.inspection-container .inspection-item {
    display: flex;
    align-items: center;
    padding: 12px;
}
div.inspection-container .icon-container {
    background-color: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
}
div.inspection-container .item-text {
    font-weight: 500;
}
div.inspection-container .status-icon {
    margin-left: auto;
    color: #4CAF50;
    font-size: 20px;
}
div.productDetailPage .product-images .slick-dots li {
    margin: 0;
}
div.productDetailPage .product-images:hover button.slick-prev.pull-left.slick-arrow{
    visibility: 1 !important;
    opacity: 1 !important;
}
div.productDetailPage .product-images:hover button.slick-next.pull-right.slick-arrow {
    visibility: 1 !important;
    opacity: 1 !important;
}
section.similarProductHere {
    background: #F8F7F7;
    padding: 70px 0px;
}
section.similarProductHere .siteH {
    background: #f8f7f7;
}


/***=================================
    HERE LOGIN PAGE
=================================***/
div.accountWrapper {
    margin: 70px 0px;
}
div.accountRow {
    display: flex;
    box-shadow: 0px 0px 4px #ccc;
    border-radius: 20px;
    align-items: center;
}
div.accountRow .left-panel {
    width: 50%;
}
div.accountRow .right-panel {
    width: calc(50% - 80px);
    padding: 40px;
}
div.accountRow .left-panel .car-bg {
    width: 100%;
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
div.accountRow .left-panel .car-bg .overlay {
    height: 550px;
    background-color: rgba(0,0,0,0.1);
    padding: 50px;
}
div.accountRow .right-panel h2 {
    text-align: center;
    font-size: 60px;
    font-weight: 700;
}
div.accountRow .right-panel form {
    border: 0;
    position: relative;
}
div.accountRow .right-panel form input[type="text"] {
    height: 50px !important;
    display: inline-block !important;
    outline: none;
    border-radius: 0;
    text-indent: 15px;
}
div.accountRow .right-panel form input[type="password"] {
    height: 50px !important;
    display: inline-block !important;
    outline: none;
    border-radius: 0;
    text-indent: 15px;
}
div.accountRow .right-panel form input[type="email"] {
    height: 50px !important;
    display: inline-block !important;
    outline: none;
    border-radius: 0;
    text-indent: 15px;
}
div.accountRow .right-panel form button[type="submit"] {
    background: #000;
    color: #fff;
    padding: 10px 40px 13px;
    font-weight: 500;
    cursor: pointer;
}
p.woocommerce-LostPassword.lost_password {
    position: absolute;
    right: 24px;
    margin-top: -40px;
}
p.woocommerce-LostPassword.lost_password a {
    color: #000;
    font-weight: 500;
}
div.accountRow .right-panel .divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #666;
}
div.accountRow .right-panel form label {
    font-weight: 500;
}
div.accountRow .right-panel .divider::before, 
div.accountRow .right-panel .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #333;
}
div.accountRow .right-panel .divider span {
    padding: 0 10px;
    font-size: 14px;
}
div.accountRow .right-panel .social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
div.accountRow .right-panel .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    gap: 10px;
    border: none;
    font-weight: 600;
}
div.accountRow .right-panel .google-btn {
    background-color: #000;
    color: #fff;
}
div.accountRow .right-panel .facebook-btn {
    background-color: #1877F2;
    color: white;
}
div.accountRow .right-panel .register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #969696;
}
div.accountRow .right-panel .register-link a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}
/***=================================
    HERE REGISTER PAGE
=================================***/
div.accountRow .left-panel .car-bg .overlay.reg  {
    height: 880px;
}
div.accountRow .right-panel form.register {
    margin-top: 40px;
}
div.accountRow .right-panel form.register .form-group {
    margin-bottom: 20px;
}
div.accountRow .right-panel form.register .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}
div.accountRow .right-panel form.register .form-group input {
    width: 100%;
    border: 1px solid #000;
}
div.accountRow .right-panel form.register .form-row {
    display: flex;
    gap: 15px;
}
div.accountRow .right-panel form.register .form-row .form-group {
    flex: 1;
}
div.accountRow .right-panel form.register .terms {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #969696;
}
div.accountRow .right-panel form.register .terms input {
    width: 16px;
    height: 16px;
}
div.accountRow .right-panel form.register .terms a {
    color: #000;
    text-decoration: none;
}
div.accountRow .right-panel form.register .register-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 15px 40px 17px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s;
    font-weight: 600;
}
div.mayRoleItem {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}
div.mayRoleItem .registration-option {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
div.mayRoleItem .registration-option:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
div.mayRoleItem .registration-option .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
div.mayRoleItem .registration-option .icon-candidate {
    background-color: #2196F3;
    color: white;
}
div.mayRoleItem .registration-option .icon-employer {
    background-color: #4CAF50;
    color: white;
}
div.mayRoleItem .registration-option .content {
    flex-grow: 1;
    width: calc(100% - 50px);
}
div.mayRoleItem .registration-option h2 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #333;
    text-align: left;
}
div.mayRoleItem .registration-option p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
div.mayRoleItem .registration-option.active {
    background: #000;
}
div.mayRoleItem .registration-option.active h2, 
div.mayRoleItem .registration-option.active p{
    color: #fff;
}


/***here is lost password***/
div.accountRow .right-panel .mainFormHereLost h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}
div.mainFormHereLost .lostPassText {
    text-align: center;
    line-height: 1.3em;
    font-size: 16px;
    margin-bottom: 30px;
}
div.mainFormHereLost p.lostPassInput {
    width: 100%;
}

/***This is dealers dashboard***/
div.dashboardWrapper {
    width: 100%;
    display: inline-block;
    margin: 80px 0px;
}
div.leftsidebar ul li a {
    text-decoration: none;
    padding: 20px 20px;
    color: #fff;
    font-weight: 600;
    width: calc(100% - 40px);
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 7px;
}
div.leftsidebar ul li a:hover {
    background: #000;
}
div.leftsidebar ul li.active a {
    background: #000;
}
div.leftsidebar ul li {
    border-bottom: 1px solid #ccc;
    position: relative;
}
div.leftsidebar ul li:last-of-type {
    border-bottom: 0px; 
}
div.dealersDashboard {
    display: flex;
    gap:30px;
}
div.dealersDashboard .leftsidebar {
    width: 300px;
    background: #5b5b5b;
}
div.dealersDashboard .rightsidebar {
    width: calc(100% - 300px);
}
div.boxDashboard {
    background: #5b5b5b;
    padding: 40px;
    border-radius: 20px;
    height: 200px;
    display: flex;
    gap:30px;
}
div.boxDashboard .box {
    width: 50%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:5px;
    flex-flow: column;
    gap: 20px;
}
div.boxDashboard .box h1 {
    font-size: 60px;
    font-weight: 600;
}

/***==================================
    DEALER DASHBOARD PAGE PROFILE
===================================***/
form#accountForm .form-group {
    margin-bottom: 20px;
}
form#accountForm label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
form#accountForm .required::after {
    content: " *";
    color: red;
}
form#accountForm input {
    width: 100% !important;
    max-width: 100%;
    padding: 0 !important;
    height: 50px;
    text-indent: 15px;
    border-radius: 0 !important;
    border: 1px solid #000 !important;
    outline: none;
}
form#accountForm .help-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}
form#accountForm .password-section {
    margin-top: 30px;
}
form#accountForm .password-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
}
form#accountForm .form-row {
    display: flex;
    gap: 20px;
}
form#accountForm .form-column {
    flex: 1;
}
form#accountForm .password-field {
    position: relative;
}
form#accountForm .toggle-password {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
form#accountForm button {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
}
form#accountForm button:hover {
    background-color: #555;
}
div.leftsidebar ul li a i {
    font-size: 18px;
    position: relative;
    top: 1px;
    margin-right: 2px;
}
form#accountFormChange .form-group {
    margin-bottom: 20px;
}
form#accountFormChange label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
form#accountFormChange .required::after {
    content: " *";
    color: red;
}
form#accountFormChange input {
    width: 100% !important;
    max-width: 100%;
    padding: 0 !important;
    height: 50px;
    text-indent: 15px;
    border-radius: 0 !important;
    border: 1px solid #000 !important;
    outline: none;
}
form#accountFormChange .help-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}
form#accountFormChange .password-section {
    margin-top: 30px;
}
form#accountFormChange .password-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
}
form#accountFormChange .form-row {
    display: flex;
    gap: 20px;
}
form#accountFormChange .form-column {
    flex: 1;
}
form#accountFormChange .password-field {
    position: relative;
}
form#accountFormChange .toggle-password {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
form#accountFormChange button {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
}
form#accountFormChange button:hover {
    background-color: #555;
}


/***==================================
    DEALER DASHBOARD PAGE CARS
===================================***/

form#myCarsListing .image-section {
    margin-bottom: 30px;
}
form#myCarsListing .dropzone-container {
    border: 2px dashed #ccc;
    border-radius: 5px;
    background: #f9f9f9;
    min-height: 185px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
form#myCarsListing .dropzone-container:hover {
    border-color: #666;
    background: #f1f1f1;
}
form#myCarsListing .dropzone-container .dz-message {
    margin: 2em 0;
}
form#myCarsListing .upload-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}
form#myCarsListing .dropzone-container h3 {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 500;
}
form#myCarsListing .dropzone-container .note {
    color: #777;
    font-size: 14px;
}
form#myCarsListing .gallery-preview {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 10px;
}
form#myCarsListing .gallery-item {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
}
form#myCarsListing .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
form#myCarsListing .gallery-item .remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    cursor: pointer;
}
form#myCarsListing .dropzone .dz-preview .dz-image {
    border-radius: 4px !important;
}
form#myCarsListing .fancybox-button {
    background: rgba(30,30,30,0.6);
}
form#myCarsListing .fancybox-button:hover {
    background: rgba(0,0,0,0.8);
}
form#myCarsListing .required {
    color: #e32;
    margin-left: 4px;
}
form#myCarsListing .formGroup label {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
}
form#myCarsListing .formGroup input {
    margin: 0;
    padding: 0;
    border-radius: 0;
    outline: none;
    border: 1px solid #000;
    height: 44px;
    text-indent: 20px;
    width: 100%;
    font-size: 18px;
    color: #000;
}
form#myCarsListing .formGroup select {
    margin: 0;
    padding: 0;
    border-radius: 0;
    outline: none;
    border: 1px solid #000;
    height: 44px;
    width: 100%;
    font-size: 18px;
    color: #000;
    padding-left: 10px;
    background: #fff;
}
form#myCarsListing .formGroup label.car_list_description {
    max-width: 200px;
    display: inline-block;
    margin: 0;
    position: relative;
    top: 24px;
}
form#myCarsListing h2.carImageItem {
    margin: 20px 0px 10px;
    font-size: 16px;
    font-weight: 600;
}
form#myCarsListing .form-section {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
form#myCarsListing .form-section .image-section.feature {
    width: 30%;
}
form#myCarsListing .form-section .image-section.gallery {
    width: 70%;
    min-height: 244px;
}
form#myCarsListing .image-section label {
    color: #000;
    font-weight: 500;
    padding-bottom: 10px !important;
    display: inline-block;
}
form#myCarsListing .formGroup label span {
    color: red;
}
form#myCarsListing .rightside.column-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 25px;
}
form#myCarsListing .rightside.column-3 .formGroup {
    width: calc(33% - 4px);
}
form#myCarsListing .overviews.column-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 25px;
}
form#myCarsListing .overviews.column-3 .formGroup {
    width: calc(33% - 4px);
}
form#myCarsListing .submitButtons {
    display: flex;
    justify-content: end;
    gap: 20px;
}
form#myCarsListing .submitButtons button.submit_car_list {
    width: 150px;
    height: 50px;
    border: 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
form#myCarsListing .submitButtons button.submit_car_list:hover {
    box-shadow: 0px 0px 5px #000;
}
form#myCarsListing .submitButtons button.submit_car_list[data-status="draft"] {
    background: #000;
    color: #fff;
}
form#myCarsListing .submitButtons button.submit_car_list[data-status="publish"] {
    background: green;
    color: #fff;
}

/****=============================
        main style css
==============================****/
.car-listings-table-container h2 {
    margin-bottom: 21px;
    font-size: 40px;
    font-weight: 700;
}
.car-listings-table-container {
    padding: 0;
    width: 100%;
    overflow-x: auto;
}
.car-listings-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.car-listings-table thead {
    background-color: #5b5b5b;
    color: #fff;
}
.car-listings-table th,
.car-listings-table td {
    padding: 12px 15px;
    text-align: left;
    vertical-align: middle;
}
.car-listings-table tbody tr:hover {
    background-color: #f5f5f5;
}
.car-listings-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.car-listings-table td.car-image {
    width: 80px;
}
.car-listings-table td.car-image img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #ddd;
}
.car-listings-table td.car-title {
    font-weight: 500;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.car-listings-table td.car-price {
    font-weight: bold;
    color: #333;
}
.car-listings-table td.car-brand,
.car-listings-table td.car-fuel,
.car-listings-table td.car-transmission {
    text-transform: capitalize;
}
.car-listings-table td.car-actions {
    white-space: nowrap;
    width: 120px;
}
.car-listings-table .edit-btn,
.car-listings-table .delete-btn {
    display: inline-block;
    padding: 6px 12px;
    margin-right: 5px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}
.car-listings-table .edit-btn {
    background-color: #4CAF50;
    color: white;
}
.car-listings-table .edit-btn:hover {
    background-color: #3e8e41;
}
.car-listings-table .delete-btn {
    background-color: #f44336;
    color: white;
}
.car-listings-table .delete-btn:hover {
    background-color: #d32f2f;
}
.car-listings-table .status-publish {
    background-color: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
}
.car-listings-table .status-draft,
.car-listings-table .status-pending {
    background-color: #FF9800;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
}
.car-listings-pagination {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.car-listings-pagination .pagination-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.car-listings-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px 5px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
}
.car-listings-pagination .page-numbers.current {
    background-color: #333;
    color: #fff;
    border-color: #333;
}
.car-listings-pagination .page-numbers:hover:not(.current) {
    background-color: #f5f5f5;
}
.car-listings-pagination .prev,
.car-listings-pagination .next {
    font-weight: bold;
}
.car-listings-pagination .pagination-info {
    color: #666;
    font-size: 14px;
}
div.accountRow .right-panel form label span {
    color: #000;
    position: relative;
    left: 3px;
    top: 2px;
}
div.accountRow .right-panel form input#rememberme {
    position: relative;
    top: 2px;
}
@media screen and (max-width: 992px) {
    .car-listings-table th:nth-child(5),
    .car-listings-table td:nth-child(5),
    .car-listings-table th:nth-child(6),
    .car-listings-table td:nth-child(6) {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .car-listings-table {
        font-size: 14px;
    }
    .car-listings-table th,
    .car-listings-table td {
        padding: 8px 10px;
    }
    .car-listings-table th:nth-child(4),
    .car-listings-table td:nth-child(4),
    .car-listings-table th:nth-child(7),
    .car-listings-table td:nth-child(7) {
        display: none;
    }
    .car-listings-pagination {
        flex-direction: column;
        gap: 10px;
    }
    .car-listings-pagination .pagination-links {
      justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .car-listings-table th:nth-child(8),
    .car-listings-table td:nth-child(8) {
        display: none;
    }
    .car-listings-table td.car-title {
        max-width: 120px;
    }
}
div#tacDealersLogin p.woocommerce-LostPassword.lost_password {
    display: none !important;
}
form.checkout.woocommerce-checkout ul.woocommerce-error li a {
    color: #fff;
}
div.carOwnerShip .carOwner {
    max-width: 600px;
    margin: 0 auto;
}
div.carOwnerShip .carOwner ul li {
    padding: 10px;
    background: #f1f1f1;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
}


div#step_3, div#step_4, div#step_5, div#step_6, div#step_7, div#step_8, div#step_9, div#step_10, div#step_11, div#step_12 {
    display: none;
}
div.publishedOrDraft {
    text-align: center;
}
div.publishedOrDraft p {
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}
div.publishedOrDraft .mainItemButtons {
    display: flex;
    justify-content: center;
    gap:15px;
}
div.publishedOrDraft .mainItemButtons button.button {
    width: 180px;
    margin-top: 30px;
    height: 50px;
    border:0;
    font-size: 17px;
    font-weight: 600;
    background:#000;
    color: #fff;
    cursor: pointer;
    border-radius:5px;
    text-decoration: none;
    line-height: 50px;
}
div.dashboard_buy_sell .brand-title {
    margin-top: 20px;
    color: #fff !important;
}
div#buyCar {
    display: none;
}
div.dashboard_buy_sell .brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
div.selectBrand ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
div.selectBrand ul li.brand-logo a {
    text-decoration:none;
    color: #000;
}
div.bannerTextAbc {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* Popup Form CSS */
  div#car-inquiry-popup.car-inquiry-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    justify-content: center;
    align-items: center;
  }
  
  div#car-inquiry-popup  .car-inquiry-popup {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  
  div#car-inquiry-popup .popup-header {
    background-color: #5B5B5B;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  div#car-inquiry-popup .popup-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
  }
  
  div#car-inquiry-popup .close-popup {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  div#car-inquiry-popup .popup-content {
    padding: 20px;
  }
  
  div#car-inquiry-popup .form-group {
    margin-bottom: 15px;
  }
  
  div#car-inquiry-popup label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
  }
  
  div#car-inquiry-popup .required {
    color: #ff0000;
    margin-left: 3px;
  }
  
  div#car-inquiry-popup input{
    width: 100%;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    height: 40px;
    text-indent: 15px;
  }
  div#car-inquiry-popup select {
    width: 100%;
    padding:0;
    border:1px solid #ddd;
    border-radius:4px;
    font-size: 15px;
    height: 40px;
    text-indent: 5px;
    background-color: #fff;
  }
  div#car-inquiry-popup textarea {
    width: 100%;
    padding: 10px 0px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    height: 150px;
    text-indent: 15px;

  }
  
  div#car-inquiry-popup input:focus, 
  div#car-inquiry-popup textarea:focus {
    border-color: #000;
    outline: none;
  }
  
  div#car-inquiry-popup button[type="submit"] {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  div#car-inquiry-popup button[type="submit"]:hover {
    background-color: #333;
  }
  
  div#car-inquiry-popup .form-message {
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    display: none;
  }
  
  div#car-inquiry-popup .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
  }
  
  div#car-inquiry-popup .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
  }
  
  div#car-inquiry-popup .submit-group {
    display: flex;
    flex-direction: column;
  }
  

/* Popup Form CSS */
div#single-inquiry-popup.car-inquiry-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1234;
    justify-content: center;
    align-items: center;
  }
  
  div#single-inquiry-popup  .car-inquiry-popup {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  
  div#single-inquiry-popup .popup-header {
    background-color: #5B5B5B;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  div#single-inquiry-popup .popup-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
  }
  
  div#single-inquiry-popup .close-popup {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  div#single-inquiry-popup .popup-content {
    padding: 20px;
  }
  
  div#single-inquiry-popup .form-group {
    margin-bottom: 15px;
  }
  
  div#single-inquiry-popup label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
  }
  
  div#single-inquiry-popup .required {
    color: #ff0000;
    margin-left: 3px;
  }
  
  div#single-inquiry-popup input{
    width: 100%;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    height: 40px;
    text-indent: 15px;
  }
  div#single-inquiry-popup textarea {
    width: 100%;
    padding: 10px 0px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    height: 80px;
    text-indent: 15px;

  }
  
  div#single-inquiry-popup input:focus, 
  div#single-inquiry-popup textarea:focus {
    border-color: #000;
    outline: none;
  }
  
  div#single-inquiry-popup button[type="submit"] {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  div#single-inquiry-popup button[type="submit"]:hover {
    background-color: #333;
  }
  
  div#single-inquiry-popup .form-message {
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    display: none;
  }
  
  div#single-inquiry-popup .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
  }
  
  div#single-inquiry-popup .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
  }
  
  div#single-inquiry-popup .submit-group {
    display: flex;
    flex-direction: column;
  }
  div.dashboardItems_sh.buyDashboard {
    display: none;
  }
  div.dashboardItems_sh.buyDashboard.active{
      display: block;
      margin-bottom: 90px;
  }
  div.dashboardItems_sh.sellDashboard {
    display: none;
  }
  div.dashboardItems_sh.sellDashboard.active {
      display: block;
  }
  div.dashboardItems_sh.buyDashboard ul {
    max-width: 400px;
    margin: 15px auto;
    display: flex;
    gap: 15px;
  }
  div.dashboardItems_sh.buyDashboard ul li {
    background: #fff;
    width: 50%;
    text-align: center;
    height: 50px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 3px;
    line-height: 50px;
  }
  div.dashboardItems_sh.buyDashboard ul li a {
        text-decoration: none;
        color: #000;
        width: 100%;
        height: 100%;
        display: inline-block;
  }
  
  /***DASHBOARD =========/***/
  div.buySellerNavigation {
    background: #333;
    padding: 15px 0px;
  }
  div.buySellerNavigation ul {
    display: flex;
    gap: 50px;
  }
  div.buySellerNavigation ul li a {
    color: #fff;
    text-decoration: none;
    padding: 12px 35px;
    display: inline-block;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
  }
  div.buySellerNavigation ul li a:hover {
    background: #fff;
    color: #000;
  }
  div.buySellerNavigation ul li.active a {
    background: #fff;
    color: #000;
  }
  
  
/***=====================================
    BUY CAR ITEM
=====================================***/  
div.buyCarItem .explore-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}
div.buyCarItem .explore-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}
div.buyCarItem .explore-section p {
    font-size: 16px;
    color: #333;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
div.buyCarItem .secondary-text {
    font-size: 18px;
    margin-bottom: 30px;
}
div.buyCarItem .explore-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 16px 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}
div.buyCarItem .explore-button:hover {
    background-color: #333;
}
div.sellCarItem {
    margin: 80px 0px;
}
div.sellCarItem .empty-orders {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 120px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
div.sellCarItem .empty-orders h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}    
div.sellCarItem .sell-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 45px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 600;
    border: 1px solid #333;
}   
div.sellCarItem .sell-button:hover {
    background-color: #333;
}
div.sellCarItem .orders-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}  
div.sellCarItem .orders-count {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}
div.sellCarItem .order-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
}
div.sellCarItem .order-card .car-details {
    width: calc(100% - 200px);
}
div.sellCarItem .car-details h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
div.sellCarItem .car-specs {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
div.sellCarItem .car-specs span:not(:last-child)::after {
    content: " | ";
    margin: 0 5px;
}
div.sellCarItem .received-date {
    font-size: 13px;
    color: #777;
    display: flex;
    flex-flow: column;
    margin-bottom: 15px;
}
div.sellCarItem .received-date-value {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    margin-top: 5px;
}
div.sellCarItem .estimated-price {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
    display: flex;
    flex-flow: column;
}
div.sellCarItem .price-value {
    font-weight: bold;
    color: #000;
    font-size: 15px;
    margin-top: 8px;
}
div.sellCarItem .notification {
    background-color: #f5f5f5;
    padding: 12px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-size: 14px;
}
div.sellCarItem .notification-icon {
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
    font-weight: bold;
} 
div.sellCarItem .brand-logo {
    max-width: 80px;
    margin-left: 30px;
}
div.sellCarItem .notification strong {
    font-weight: 600;
    margin-right: 2px;
}
div.sellCarItem .order-card .image {
    width: 200px;
    text-align: center;
}

section.recent-orders-buysell {
    margin: 80px 0px;
}
section.recent-orders-buysell h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
section.recent-orders-buysell .order-card {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section.recent-orders-buysell .car-info {
    flex: 1;
}
section.recent-orders-buysell .car-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
section.recent-orders-buysell .order-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 10px;
    max-width: 550px;
}
section.recent-orders-buysell .detail-group {
    margin-bottom: 15px;
}
section.recent-orders-buysell .detail-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 6px;
}
section.recent-orders-buysell .detail-value {
    font-size: 16px;
    font-weight: 600;
}
section.recent-orders-buysell .status-active {
    color: #16a34a;
}
section.recent-orders-buysell .status-rejected {
    color: #dc2626;
}
section.recent-orders-buysell .status-pending {
    color: #f59e0b;
}
section.recent-orders-buysell .car-image {
    max-width: 150px;
    margin-left: 20px;
}
section.recent-orders-buysell hr {
    border: none;
    border-top: 1px solid #e6e6e6;
    margin: 10px 0;
}




section.favorite-cars-buysell {
    margin: 80px 0px;
}
section.favorite-cars-buysell h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 7px;
    margin-left: 10px;
}
section.favorite-cars-buysell .favorite-count {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    margin-left: 10px;
}
section.favorite-cars-buysell .car-card {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
section.favorite-cars-buysell .car-info {
    flex: 1;
}
section.favorite-cars-buysell .car-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 45px;
}
section.favorite-cars-buysell .price-label {
    font-size: 16px;
    color: #777;
    margin-bottom: 6px;
}
section.favorite-cars-buysell .price-value {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}
section.favorite-cars-buysell .view-details-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 14px 0;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    width: 250px;
    transition: background-color 0.3s;
}
section.favorite-cars-buysell .view-details-btn:hover {
    background-color: #333;
}
section.favorite-cars-buysell .car-image {
    max-width: 160px;
    max-height: 100px;
    margin-left: 20px;
    transition: 0.3s ease-in-out;
}
div#couldYouFind #car-inquiry-form .form-group {
    width: 100%;
}
div#car-inquiry-popup #couldYouFind {
    max-width: 1000px;
}
div#couldYouFind #car-inquiry-form .form-group {
    width: calc(50% - 10px);
}
div#couldYouFind form .mainFlexRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
div#couldYouFind form button#submit-inquiry {
    width: 200px;
}
.price-range-slider {
    width: 100%;
    float: left;
    padding: 10px 0px;
    margin-bottom: 25px;
}
div#car-inquiry-popup input#amount {
    margin-top: 0;
    height: auto;
    padding:0;
    text-indent: 0;
    border:0;
}
.price-range-slider .range-value {
    margin: 0;
}
.price-range-slider .range-value input {
    width: 100%;
    background: none;
    color: #000;
    font-size: 16px;
    font-weight: initial;
    box-shadow: none;
    border: none;
    margin: 20px 0;
}
.price-range-slider .range-bar {
    border: none;
    background: #000;
    height: 3px;
    width: calc(100% - 10px);
    margin-left: 8px;
}
.price-range-slider .range-bar .ui-slider-range {
    background: #06b9c0;
}
.price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: #06b9c0;
    border: 2px solid #06b9c0;
    height: 17px;
    width: 17px;
    top: -0.52em;
    cursor: pointer;
}
.price-range-slider .range-bar .ui-slider-handle + span {
    background: #06b9c0;
}
li.mainFilter {
    color: red;
    font-weight: 600;
    width: 100%;
    text-align: center;
}
div#brands-content {
    display: flex;
    align-items: end;
    gap:10px;
    position: relative;
    flex-flow: column;
}
div#brands-content button {
    height: 35px;
    width: 35px;
    background:#000;
    border:0;
    color: #fff;
    border-radius:3px;
    cursor: pointer;
}
div#brands-content .filter-items {}
div.search-container {
    width: 100%;
}
div#brands-content .filter-items {
    width: 100%;
}
div.filter-category-title {
    font-weight: 600;
    margin: 5px 0px;
}
div.filter-items.ajaxFilter {
    max-height: 150px;
    overflow-y: auto;
    scrollbar-width: thin;
}
div#buyCar .selectBrand ul li {
    padding: 0;
}
div#buyCar .selectBrand ul li a {
    width: 100%;
    text-align: center;
    padding: 15px;
}
div.productDetailPage .quality-badge .txtItem {
    display: flex;
    align-items: center;
    gap: 8px;
}
div.productDetailPage .quality-badge.green.active .assured-tag {
    background: green;
}
div.productDetailPage .quality-badge.green {
    flex-flow: row-reverse;
    border: 1px solid green;
}
div.productDetailPage .quality-badge.green .assured-tag {
    background-color: green;
}
div.productDetailPage .quality-badge.green .info-icon.hide {
    font-size: 16px;
}
div.productDetailPage .quality-badge.green .txtItem {
    gap: 2px;
}
div.productDetailPage .quality-badge.green.active {
    border: 1px solid green;
}
li.filerLoading {
    text-align: center;
    width: 100%;
    color: green;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
}
button.myItemView {
    width: 100px;
    height: 37px;
    cursor: pointer;
    background: #000;
    border: 0;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
}
div.car-listings-table-container.myItemCus {
    overflow: inherit;
}
div.pagination.custom a {
    text-decoration: none;
    background: #ccc;
    color: #000;
    border: 1px solid #000;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
div.pagination.custom {
    text-align: right;
}







div#testDriveModal.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
div#testDriveModal .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    width: 80%;
    max-width: 600px;
    animation: modalopen 0.3s;
}
@keyframes modalopen {
    from {opacity: 0; transform: translateY(-60px);}
    to {opacity: 1; transform: translateY(0);}
}
div#testDriveModal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    top: -6px;
}    
div#testDriveModal .close:hover,
div#testDriveModal .close:focus {
    color: black;
    text-decoration: none;
}
div#testDriveModal .modal-header {
    padding: 8px 16px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    margin: -20px -20px 15px;
    border-radius: 5px 5px 0 0;
}
div#testDriveModal .modal-header h2 {
    margin:0;
    color: #333;
    font-size: 20px;
    font-weight: 700;
}
div#testDriveModal .modal-body {
    padding: 10px 0;
}
div#testDriveModal .info-row {
    margin-bottom: 12px;
    display: flex;
}
div#testDriveModal .info-label {
    font-weight: bold;
    width: 140px;
    flex-shrink: 0;
}
div#testDriveModal .info-value {
    flex-grow: 1;
}
div#testDriveModal .modal-footer {
    padding-top: 15px;
    border-top: 1px solid #ddd;
    text-align: right;
}
div#testDriveModal .btn {
    padding: 8px 16px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
} 
div#testDriveModal .btn-close {
    background-color: #f44336;
    color: white;
}
div#testDriveModal .btn-action {
    background-color: #2196F3;
    color: white;
}
div#testDriveModal .btn:hover {
    opacity: 0.9;
}
button.myItemViewCar {
    width: 100px;
    height: 37px;
    cursor: pointer;
    background:#000;
    border:0;
    color: #fff;
    font-weight: 600;
    border-radius:5px;
}
div.car-slider-grid {
    display: flex;
    flex-wrap: wrap;
    gap:10px;
}
div.car-slider-grid .car-card {
  margin: 0;
  width: calc(25% - 40px);
}
section#couldYouFind {
  background-position: 50% 50%;
  background-size: cover !important;
  background-repeat: no-repeat;
}
section#couldYouFind .overlayItem {
    height: 300px;
    background-color: rgba(0,0,0,0.5);
    margin-bottom: 80px;
}
section#couldYouFind .overlayItem .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
section#couldYouFind .overlayItem .manText {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
section#couldYouFind .overlayItem .manText h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}
section#couldYouFind.nextItemHere {
    margin-top: 80px;
}
div.header-utility__item {
    margin-right: 15px;
}
div#step_2 .muteText {
    position: relative;
    top: 33px;
    color: #ccc;
    font-weight: 600;
}
div#step_2 .muteText a {
  color: #fff;
  text-decoration: none;
}
div#xs-social-login-container {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
  display: none;
}
body.woocommerce-lost-password .accountWrapper .container {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
body.woocommerce-lost-password .accountWrapper {
    margin: 0;
}
body.woocommerce-lost-password .woocommerce {
    margin: 70px 0px;
}
.woocommerce-message {
    border-top-color: #000 !important;
}
.woocommerce-message::before {
    color: #000 !important;
}
table.car-listings-table tr td.myStatus {
    display: flex;
    align-items: center;
    gap: 10px;
}
button.updatStatusTest {
    border: 0;
    cursor: pointer;
}
div.statusUpdateForm {
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 123456;
}
div.statusUpdateForm .myBoxItem {
    background: #fff;
    padding: 40px;
    width: 600px;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    flex-flow: column;
}
div.statusUpdateForm .myBoxItem .formGroup {
    display: flex;
    flex-flow: column;
    width: 100%;
    gap: 15px;
}
div.statusUpdateForm .myBoxItem .formGroup .updateStatus {
    font-weight: 600;
    font-size: 22px;
}
div.statusUpdateForm .myBoxItem .formGroup select {
    height: 50px;
    border-radius: 0px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    font-size: 20px;
    padding-left: 12px;
}
span#clsStatus {
    position: absolute;
    background: #000;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 90px;
    cursor: pointer;
    top: -10px;
    right: -10px;
    font-size: 22px;
    text-align: center;
    line-height: 17px;
    border: 1px solid #fff;
}
p.statusMessageHere {
    margin-top: 10px;
    color: green;
}
table.car-listings-table tr td.myStatus span {
    width: 60px;
    font-size: 13px;
    font-weight: 600;
}
table.car-listings-table tr td.myStatus.Complete span {
  color: #000;
}
table.car-listings-table tr td.myStatus.Progress span {
  color: #000;
}
table.car-listings-table tr td.myStatus.Pending span {
  color: #000;
}
div.publishedOrDraft .ClassProTitle {
  display: flex;
  flex-flow: column;
  max-width: 600px;
  margin:0 auto;
  text-align: left;
}
div.publishedOrDraft .ClassProTitle .formGroup {
  display: flex;
  flex-flow: column;
  margin-bottom: 10px;
}
div.publishedOrDraft .ClassProTitle .formGroup label {
    color: #fff;
}
div.publishedOrDraft .ClassProTitle .formGroup input {
    height: 40px;
    margin-top: 5px;
    border: 0;
    text-indent: 15px;
    outline: none;
}
div.publishedOrDraft .ClassProTitle .formGroup textarea {
  margin-top: 6px;
  height: 200px;
  border: 0;
  outline: none;
  padding: 10px;
}
div.formSection {
    max-width: 600px;
    margin: 0 auto;
}
div.formSection .form-group {
    display: flex;
    flex-flow: column;
    margin-bottom: 11px;
}
div.formSection .form-group label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}
div.formSection .form-group .form-text.text-muted {
    color: #b4a9a9;
    font-size: 13px;
}
div.formSection .form-group input {
    height: 35px;
    border:0;
    text-indent: 15px;
    outline: none;
}
div.formSection .form-group select {
    height: 40px;
    padding: 0px 15px;
    background: #fff;
    border: 0;
    cursor: pointer;
}
textarea#productDesc {
    border: 0;
    padding: 10px;
}
input#featuredImage {
    text-indent: 0;
}
div.mainItemButtons {
  max-width: 600px;
  margin: 0 auto;
}
div.mainItemButtons button.button {
  padding: 10px 30px;
  background: #000;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.car-listings-table td.car-actions a.mynewbtn {
  text-decoration: none;
  padding: 4px 8px;
  background: #000;
  color: #fff;
  font-size: 10px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}
div.leftsidebar ul li .innerListHere {
  color: #fff;
  width: 25px;
  height: 25px;
  display: inline-block;
  text-align: center;
  line-height: 25px;
  position: absolute;
  right: 15px;
  top: 20px;
  z-index: 1234;
  cursor: pointer;
}
div.mainNextBtn {
    text-align: right;
}
div.mainNextBtn button {
    background: #000;
    border: 0;
    color: #fff;
    padding: 10px 30px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
}
div.leftsidebar ul li ul {
  border-top: 1px solid #fff;
  display: none;
}
div.leftsidebar ul li ul li a {
  text-indent: 22px;
}
div.leftsidebar ul li a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}