.rel {
    position: relative;
}  /* to be removed */
.vehicle-carousel-title {
    text-align: center;
    font-weight: 600;
    font-size: 65px;
}
.vehicle-carousel-outer-wrapper {
    max-width: 100% !important;
}
.vehicle-cell {
    display: grid;
}
/* Carousel dots -- Start */
.owl-nav {display: none;}
.owl-dots {
    margin: 20px 0;
    display: flex;
    width: 100%;
    gap: 10px;
    width: 100%;
    justify-content: center;
}
.vehicles-carousel-holder .owl-dots .owl-dot.active,
.vehicles-carousel-holder .owl-dots .owl-dot.active:hover {
    background: #fff;
}
.vehicles-carousel-holder .owl-dots .owl-dot:hover {
    background: #45d1a9;
}
/* Carousel dots -- End */
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: auto;
}
.owl-item .vehicle-cell-image img{ width: 90%; transition: all 0.4s cubic-bezier(0.61, 1, 0.88, 1);}
.vehicle-cell-image { display: flex; justify-content: center;}
.owl-item.active.center .vehicle-cell-image img, .owl-item.cloned.active.center .vehicle-cell-image img { width: 120%; transition: all 0.4s cubic-bezier(0.61, 1, 0.88, 1); }
.vehicles-carousel-holder .owl-dots .owl-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: #1b8365;
    border-radius: 50%;
    border: 1px solid #1b8365;
    transition: all 0.4s cubic-bezier(0.61, 1, 0.88, 1);
}
/* Carousel Info Section -- Start */
.vehicle-cell-info {
    display: flex;
    justify-content: space-between;
    padding: 60px 0 10px;
}
.owl-item .vehicle-cell-info {
    opacity: 0;
    transition: all 0.5s ease-out;
}
.owl-item.owl-item.active.center .vehicle-cell-info {
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.61, 1, 0.88, 1);;
    transition-delay: 0.3s;
}
.owl-carousel .owl-item .vehicle-cell-info img {
    width: 50%;
    margin: 0 auto;
}
.vehicle-cell-info p {
    font-weight: 600;
    font-size: 22px;
    text-align: center;
}
/* Carousel Info Section -- End */

/* Carousel Price Section -- Start */
.vehicle-cell-price {
    justify-self: center;
    width: 140%;
    display: grid;
    grid-template-columns: 10% 46% 20% 20%;
    gap: 10px;
    background: white;
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-out;
}
.owl-item.owl-item.active.center .vehicle-cell-price{
    opacity: 1;
    pointer-events: all;
    transition: all 0.4s cubic-bezier(0.61, 1, 0.88, 1);;
    transition-delay: 0.5s;
}
.owl-carousel .owl-item .vehicle-cell-price img { width: 60px; height: 60px; }
.vehicle-cell-price p {
    font-size: 25px;
    font-weight: 600;
    margin: 0;
    padding-left: 40px;
    line-height: 1;
    border-left: 1px solid black;
}
.yellow {
    color: #F8B635;
}
.price{
    font-size: 60px;
}
.vehicle-cell-price a.button {
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vehicle-cell-price a.button.details {
    color: white;
    background: black;
}
.vehicle-cell-price a.button.rent {
    color: black;
    background: #F8B635;
}
/* Carousel Price Section -- End */

@media only screen and (max-width: 1440px) {
    .vehicle-cell-price { width: 200%; }
    .vehicle-cell-info { width: 150%; transform: translateX(-14%);}
}
@media only screen and (max-width: 1024px) {
    .owl-item .vehicle-cell-image img { width: 80%; }
    .vehicle-cell-price { width: 200%; }
    .vehicle-cell-info { width: 150%; transform: translateX(-14%);}
    .vehicle-cell-info p { font-size: 20px; }
    .vehicle-cell-price p { font-size: 20px; padding-left: 30px; }
    .price { font-size: 50px; }
    .owl-carousel .owl-item .vehicle-cell-price img { width: 40px; height: 40px; }
    .vehicle-cell-price a.button { font-size: 14px; }
}
@media only screen and (max-width: 768px) {
    .vehicle-cell-info {
        width: 100%;
        transform: none;
        padding: 60px 50px 10px 50px;
    }
    .vehicle-cell-price { width: 95%; grid-template-columns: repeat(4, 1fr); gap: 20px 15px;}
    .owl-carousel .owl-item .vehicle-cell-price img { margin: 0 auto; }
    .owl-carousel .owl-item .vehicle-cell-info img { width: 25%; }
    .vehicle-cell-info { display: grid; grid-template-columns: repeat(2, 1fr); }
    .vehicle-cell-price a.button { padding: 15px; }
    .vehicle-cell-price p { grid-column: -1 / 2; }
    .vehicle-cell-price a.button.details { grid-column-start: 1; grid-column-end: 3; }
    .vehicle-cell-price a.button.rent { grid-column-start: 3; grid-column-end: 5; }
}