.cars .cars-filter {
    margin-bottom: 15px;
}

.cars .filter {
    margin-bottom: 15px;
}

.cars .cars-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
}

.cars .cars-list .car {
    width: 100%;
    margin: 0 0 20px 0;
    background-color: gray;
    color: #fff;
    display: flex;
    flex-flow: column nowrap;
    text-decoration: none;
}

.cars .cars-list .car__image-wrap {
    width: 100%;
    position: relative;
}

.cars .cars-list .car__image {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.cars .cars-list .car__sold {
    background-color: royalblue;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.cars .cars-list .car__new {
    background-color: royalblue;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.cars .cars-list .car__info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

.cars .cars-list .car__info-specs-title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.cars .cars-list .car__info-specs-list {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    padding: 0;
}

.cars .cars-list .car__info-specs-list-item {
    width: 50%;
    list-style: none;
}

.cars .cars-list .car__info-specs-list-label {
    display: block;
    font-weight: 700;
    font-size: 12px;
}

.cars .cars-list .car__info-buttons {
    width: 100%;
}

.cars .cars-list .car__info-buttons-price {
    text-align: center;
    margin: 20px 0;
}

.cars .cars-list .car__info-buttons-price-button {
    background-color: royalblue;
    color: white;
    padding: 7px 20px;
    letter-spacing: 2px;
}

.cars .cars-list .car__info-buttons-price-type-button {
    text-align: center;
    background-color: #2c2c2c;
    font-size: 12px;
    font-style: italic;
    color: white;
    text-transform: uppercase;
}

.cars .cars-list .car__info-buttons-more {
    background-color: royalblue;
    color: white;
    width: 100%;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 7px 60px;
    text-align: center;
}

.select2-selection--multiple:before {
    content: "";
    position: absolute;
    right: 7px;
    top: 42%;
    border-top: 5px solid #888;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.cars .hide {
    display: none !important;
}

@media screen and (min-width: 768px) {
    .cars .cars-list .car {
        width: 49%;
    }
}

@media screen and (min-width: 1200px) {
    .cars .cars-list .car {
        width: 32%;
    }
}