.cars-list-layout-2 .car .car-thumb{
    overflow: hidden;
    height: 190px;
}
.cars-list-layout-2 .car .car-thumb img{
    transition: .3s;
}
.cars-list-layout-2 .car .car-thumb .tag{
    top: 10px;
    left: 10px;
}
.cars-list-layout-2 .car:hover .car-thumb img{
    transform: scale(1.1) rotate(2deg);
}
.cars-list-layout-2 .price{
    display: flex;
    align-items: center;
}
.cars-list-layout-2 .price span + span{
    margin-left: 10px;
}
.cars-list-layout-2 .price.price-weekly span{
    font-size: 14px;
}
.cars-list-layout-2 .car.has-daily-discount .price.price-daily span:first-child,
.cars-list-layout-2 .car.has-weekly-discount .price.price-weekly span:first-child,
.cars-list-layout-2 .car.has-monthly-discount .price.price-monthly span:first-child{
    font-size: 12px;
    color: #ff5e5e;
    text-decoration: line-through;
    opacity: .7;
}