.trucks_cards {
    display: grid;
    gap: 0px;
}
.truck_card, .grid-sizer {
    width: 100%;
    padding: 0 1.875vw 48px;
    display: flex;
    flex-direction: column;
}
.truck_card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.truck_card h3 {
    font-size: 28px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: 'Man';
    font-weight: 700;
    color: var(--e-global-color-primary);
}
.card_features_wrapper {
    margin-bottom: auto;
}
.truck_card_btn {
    cursor: pointer;
    padding: 16px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.1429;
    color: var(--e-global-color-primary);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .0775rem;
    background-color: #ffffff;
    border: 1px solid var(--e-global-color-primary);
    transition: background-color .3s ease;
    width: 100%;
    margin-top: 48px;
    display: block;
}
.trucks_filters {
    display: grid;
    grid-template-columns: repeat(3, 33%);
}
.truck_filter {
    padding: 0 1.875vw;
    margin-bottom: 24px;
    position: relative;
}
button.reset-button__button {
    display: flex;
    background-color: transparent;
    border: none;
    color: var(--e-global-color-primary);
    font-size: 14px;
    line-height: 1.1429;
    transition: background .3s ease;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 16px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    gap: 10px;
    align-items: center;
    padding: 0 1.875vw;
    margin-bottom: 24px;
}
button.reset-button__button svg {
    width: 20px;
    height: 20px;
    fill: var(--e-global-color-accent);
    stroke-width: 2px;
    stroke: var(--e-global-color-accent);
}
.truck_filter select {
    cursor: pointer;
    appearance: none;
    box-shadow: none;
    font-size: 1.125rem;
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: 0 1.875rem .125rem 0;
    font-family: 'Man', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #303c49;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid #ced4da;
    border-bottom: 1px solid;
    border-radius: 0;
    position: relative;
}
.truck_filter:after {
    pointer-events: none;
    content: "";
    position: absolute;
    right: calc(1.875vw + 8px);
    color: var(--e-global-color-primary);
    width: 12px;
    height: 10px;
    border: 5px solid #fff;
    z-index: 3;
    display: block;
    top: 44px;
    border-top: 5px solid #000;
}
.truck_filter label {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--e-global-color-primary);
    font-family: 'Man';
    font-weight: 300;
}

@media(min-width: 1025px) {
    .trucks_cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 768px) and (max-width: 1024px) {
    .trucks_cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .truck_filter:after {
        top: 38px;
    }
}

@media(max-width: 767px) {
    .trucks_cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .truck_filter:after {
        top: 38px;
    }
    .trucks_filters {
        grid-template-columns: 1fr;
    }
}