.filter-tab-area {
    position: relative;
    z-index: 3;
    margin-top: -56px;
    .car-filter-menu {
        display: flex;
        button {
            height: 56px;
            line-height: 56px;
            font-size: 14px;
            font-weight: 600;
            background: $body-color;
            border: 0;
            width: 33.33%;
            color: $white-color;
            padding: 0;
            border-radius: 0;
            &.active {
                background: $theme-color;
                color: $title-color;
            }
            &:nth-child(2) {
                background: $title-color;
                &.active {
                    background: $theme-color;
                }
            }
        }
    }
}
.car-filter-form {
    background: $white-color;
    box-shadow: 0px 10px 40px rgba(1, 19, 60, 0.06);
    padding: 30px;
    .form-group {
        margin-bottom: 0;
    }
}
.trend-list-nav {
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    margin-top: 30px;
    .nav-link {
        background: rgba(255, 192, 0, 0.1);
        border: 1px solid $theme-color;
        border-radius: 5px;
        font-weight: 400;
        font-size: 14px;
        color: $body-color;
        min-width: 130px;
        padding: 0.5rem 0;
        &::first-line {
            font-weight: 600;
            font-size: 20px;
            color: $title-color;
            margin-bottom: 4px;
        }
        &.active,
        &:hover {
            background: $theme-color;
            border-color: $theme-color;
            color: $title-color;
        }
    }
}
@include md {
    .trend-list-nav .nav-link {
        min-width: 120px;
    }
}
@include xs {
    .trend-list-nav {
        gap: 15px;
    }
}
@include vxs {
    .car-filter-form {
        padding: 20px;
    }
}