  .vehicle-data{
        color:var(--kc-green);
        font-size: 15px;
        font-weight: bold;
        background:white;
        border:1px solid grey;
        border-radius:10px;
        padding:5px;
        margin:5px 5px 5px 0;
        
        }
    .vehicle-svg{
        border-radius: 100%;
        background-color: #e9f4ec;
        padding: 5px;
    }

.vehicle-specification-title {
    position: relative;
    padding-bottom: 10px;
}

.vehicle-specification-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: #145A43;
    border-radius: 3px;
}
.vehicle-gallery {
    width: 100%;
}

/* Main image */
.vehicle-main-slider {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.vehicle-main-slider .swiper-slide {
    height: 100%;
}

.vehicle-main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Navigation buttons */
.vehicle-main-slider .swiper-button-next,
.vehicle-main-slider .swiper-button-prev {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
}

.vehicle-main-slider .swiper-button-next:after,
.vehicle-main-slider .swiper-button-prev:after {
    font-size: 18px;
    color: #fff;
}


/* Pagination */
.vehicle-main-slider .swiper-pagination {
    left: auto;
    right: 15px;
    bottom: 15px;
    width: auto;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}


/* Thumbnails */
.vehicle-thumb-slider {
    margin-top: 15px;
    width: 100%;
}

.vehicle-thumb-slider .swiper-slide {
    width: 110px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

.vehicle-thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #1268d9;
}

.vehicle-thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Mobile */

@media (min-width: 991px) {

 .vehicle-sidebar-section{
    padding: 15px;
}

}
@media (max-width: 991px) {

 .vehicle-sidebar-section{
    padding: 0;
}

}
@media (max-width: 767px) {

    .vehicle-main-slider {
        height: 300px;
    }

    .vehicle-thumb-slider .swiper-slide {
        width: 85px;
        height: 60px;
    }

}