.banner {
    background-image: url('/frontend/images/catalog/page-thumb.jpg');
}

.catalog {
    display: flex;
}

.catalog .wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: calc(100% - 160px);
}

.sidebar {
    max-width: 357px;
    min-width: 315px;
    margin-right: 50px;
    position: relative;
}

.catalog__content {
    flex-grow: 1;
    padding-top: 11px;
    margin-bottom: 50px;
}

.filter-selected {
    border-bottom: 1px solid #000000;
}

.filter-selected__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 13px;
}

.filter-selected__item {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    color: #969696;
    margin-bottom: 8px;
    width: calc(50% - 32px - 1px - 4px);
    border: 1px solid rgb(187, 187, 187);
    border-radius: 5px;
}

.filter-selected__item:hover .filter-selected__title {
    color: var(--main-color);
}

.filter-selected__remove {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-selected__remove:hover .svg-icon-close {
    height: 10px;
    transition: height .1s ease-in;
}

.filter-selected__remove .svg-icon-close {
    height: 7px;
    width: auto;
    transition: height .1s ease-in;
}



.filter__items {
    margin-top: 11px;
}

.filter__group {
    border-radius: 5px;
    margin-bottom: 11px;
}

.filter__group_border {
    border: 1px solid rgb(187, 187, 187);
    padding: 14px 17px;
}

.filter__head {
    padding: 10px 17px;
    display: flex;
    align-items: center;
    height: 26px;
}

.filter__error{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(49 52 46);
    color: rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility 0s ease .4s;
}

.filter__error.show{
    visibility: visible;
    opacity: 1;
    transition: visibility 0s ease 0s,  opacity .4s;
}

.filter__head_margin-bottom-s {
    margin-bottom: 11px;
}

.filter__group_border .filter__head {
    padding: 10px 0;
}

.filter__head_clickable {
    border: 1px solid rgb(187, 187, 187);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}


.filter__icon {
    margin-right: 15px;
    width: 45px;
    text-align: center;
}

.filter__head .svg-dropdown-angle {
    width: auto;
    height: 8px;
    margin: 0 0 0 auto;
    transform: rotate(0);
    transition: transform .3s ease;
}

.filter__head .svg-dropdown-angle path {
    fill: rgb(43, 42, 40);

}

.filter__head.active .svg-dropdown-angle {
    transform: rotate(-180deg);
}

.filter__fields {
    max-height: 0px;
    overflow: hidden;
    padding-left: 8px;
    margin-top: 0px;
    transition: max-height .4s ease, margin-top .6s ease;
}

.filter__fields.active {
    margin-top: 26px;
    max-height: 1000px;
    transition: max-height .6s ease, margin-top .4s ease;
}

.filter__field {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
}

.filter__field .filter__input-checkbox {
    margin-right: 20px;
    position: relative;
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter__field .filter__input-checkbox:before {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 4px;
    border: 1px solid #969696;
}

.filter__field .filter__input-checkbox:checked:before {
    background-image: url('../images/icons/checked.png');
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(150, 150, 150, 0.36);
}


.filter__field span, .filter__field label {
    color: #969696;
}

.filter__field label{
    cursor: pointer;
}

.filter__input {
    padding: 16px 24px;
    border: 1px solid rgb(187, 187, 187);
    border-radius: 5px;
    color: #000000;
}

.filter__input_medium {
    max-width: 105px;
}

.filter__input_small {
    max-width: 77px;
}

.filter__fields_space-between {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.filter__fields-colors {
    padding: 0 32px;
}

.filter__fields-colors .filter__field{
    width: 20%;
}


.filter__input_color {
    position: absolute;
    width: 1px;
    height: 1px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}



.filter__input_color~label {
    border-radius: 50%;
    background-color: red;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border: 2px solid rgb(150, 150, 150);
    transform: scale(1);
    transition: transform .4s ease;
}

.filter__input_color:checked~label {
    border-color: var(--main-color);
    transform: scale(1.2);
}

.filter__field_slider-range {
    width: 100%;
}

.filter__input_range {
    width: calc(100% - 17px - 17px);
    margin: 0 auto;
    height: 8px;
}

.filter__input_range .noUi-connect {
    background: var(--main-color);
}

.filter__input_range .noUi-target {
    background: #383838;
    border-radius: 3px;
    border: none;
}

.filter__input_range .noUi-handle {
    border: 2px solid var(--main-color);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    right: -7px;
    top: -5px;
}

.filter__input_range .noUi-handle:focus {
    outline: none;
}


.filter__input_range .noUi-handle:after,
.filter__input_range .noUi-handle:before {
    display: none;
}

.filter__button-submit {
    border: 2px solid rgb(43, 42, 40);
    border-radius: 3px;
    padding: 16px 34px;
    background-color: rgb(255 255 255);
    cursor: pointer;
    display: block;
    margin: 29px auto;
    font-size: 20px;
}

.filter__button-submit:hover {
    background-color: var(--main-color);
    color: #ffffff;
}

.filter__button-submit_floated{
    position: absolute;
    left: calc(var(--filters-width) + 45px);
    top: 0px;
    z-index: 5;
    margin: 0px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility 0s ease .4s;
}

.filter__button-submit_floated.show{
    visibility: visible;
    opacity: 1;
    transition: visibility 0s ease 0s,  opacity .4s, top .4s;
}

.form_filters__disable-panel{
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.filter__items.disabled .form_filters__disable-panel{
    display: block;
}

.filter__items.disabled .form_filters__disable-panel{
    display: block;
}

.filter__items.disabled{
    filter: grayscale(100);
    transition: filter .4s;
}

.filter__items {
    position: relative;
    filter: grayscale(0);
    transition: filter .4s;
}

.catalog__head {
    border: 1px solid #FFB038;
    border-bottom: 1px solid #3D3D3D;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.catalog__tabs{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-grow: 1;
}

.catalog__tab{
    text-align: center;
    flex-grow: 1;
    padding: 11px 0;
}

.catalog__tab.current{
    background-color: #FFB038;
}

.catalog__sort-by {
    border-left: 1px solid rgb(222, 234, 234);
    margin: 0 0 0 auto;
    max-width: 31.39%;
}

.sort-by,
.toggle-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 50%;
}

.catalog__toggle-filters {
    display: none;
}

.sort-by .svg-dropdown-angle,
.toggle-filters .svg-dropdown-angle {
    display: flex;
    align-items: center;
    width: 14px;
    height: auto;
    transform: rotate(0);
    transition: transform .4s ease;
}

.sort-by.active .svg-dropdown-angle,
.toggle-filters.active .svg-dropdown-angle {
    transform: rotate(180deg);
}



.sort-by .svg-dropdown-angle path,
.toggle-filters .svg-dropdown-angle path {
    fill: #31342e;
}

.sort-by__title,
.toggle-filters__title {
    margin-right: 16px;
    cursor: pointer;
    padding: 11px 0;
}

.catalog__sort-items {
    position: absolute;
    background-color: #ffffff;
    padding: 0px 10px;
    margin: 0;
    list-style-type: none;
    top: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%, 0);
    max-height: 0px;
    overflow: hidden;
    transition: max-height .6s ease, padding 1s ease;
    box-shadow: 0px 1px 4.3px 0.7px transparent;
    z-index: 9;
}

.sort-by.active .catalog__sort-items {
    box-shadow: 0px 1px 4.3px 0.7px rgba(24, 24, 24, 0.22);
    padding: 10px;
    max-height: 300px;
    transition: max-height 1s ease, padding .1s ease;
}

.catalog__sort-item {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog__sort-item:hover,
.catalog__sort-item.active {
    color: var(--main-color);
    cursor: pointer;
}

.catalog__sort-item.active svg {
    fill: var(--main-color);
}

.catalog__sort-items .catalog__sort-item:last-child {
    margin: unset;
}

.catalog__sort-item_reverse .svg-large-up-arrow {
    transform: rotate(180deg);
}

.catalog__sort-item .svg-large-up-arrow {
    margin-left: 16px;
    width: 12px;
    height: auto;
    fill: #31342e;
}

.car {
    font-family: "GothamPro", sans-serif;
}

.catalog__items{
    min-height: 100vh;
}

.catalog__item {
    margin-bottom: 30px;
    padding: 3.34% 4.086%;
    box-shadow: 0px 0px 16px rgba(226, 31, 37, 0.25);
}

.car__head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.car__title {
    font-size: 30px;
    text-transform: uppercase;
    max-width: 60%;
    color: #3D3D3D;
}

.car__location {
    font-size: 26px;
    display: flex;
    align-items: center;
    font-family: "Ubuntu", sans-serif;

}

.car__location_port {
    color: var(--color-green);
}

.car__location_way{
    color: #FFB038;
}

.car__location_in-stock {
    color: #0AB407;
}

.car__location img, .car__location svg{
    margin-right: 16px;
}

.car__location_sold{
    color: var(--main-color);
}

.car__location_sold svg{
    fill: var(--main-color);
}

.car__body {
    display: flex;
}

.car__image {
    max-width: 616px;
    max-height: 433px;
    position: relative;
    width: 45.7%;
    min-width: 45.7%;
    overflow: hidden;
    border-radius: 5px;
}

.car__image a{
    display: flex;
    align-items: center;
    height: 100%;
}


.car__image img {
    transform: scale(1);
    transition: transform .4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car__image:hover img {
    transform: scale(1.1);
    transition: transform .6s ease;
}

.car__image_no-image {
    background-color: rgb(233 233 233);
    min-height: 200px;
}

.car__image_no-image a > svg {
    width: 30%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: rgb(43 42 40);
}

.car__show-more {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    display: none;
}

.car__show-more a {
    display: block;
    position: relative;
    background: rgba(233, 233, 233, 0.88);
    padding: 15px 40px;
    font-size: 20px;
    color: rgb(0 0 0);
    border: 2px solid rgb(255, 176, 56);
    border-radius: 5px;
    transition: color .6s ease;
    font-weight: 700;
    transition: background .2s;
}

.car__show-more a:hover{
    background: rgb(255, 176, 56);
    transition: background .4s;
}

.car__status {
    padding: 9px 15px;
    position: absolute;
    left: 14px;
    top: 0px;
    border-radius: 0 0 7px 7px;
    box-shadow: 0px 4px 6.3px 0.7px rgba(0, 0, 0, 0.22);
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-repeat: no-repeat; */
    /* background-size: 25%; */
    /* background-position: -10px 50%; */
    z-index: 1;
}

.car__status svg{
    fill: #ffffff;
    height: 29px;
    width: auto;
    margin-right: 7px;
}



.car__status_sold {
    /* background-image: url(../images/icons/sold.png); */
    background-color: var(--main-color);
}


.car__status_deposit {
    /* background-image: url(../images/icons/money.png); */
    background-color: #E77206;

    /* background-size: 30%; */
}

.car__status_reservation {
    /* background-image: url(../images/icons/sad.png); */
    background-color: var(--color-blue);
    /* background-position: -12px -65%; */
    /* padding: 10px 42px; */
}

.car__status_sold-grey {
    /* background-image: url(../images/icons/sad.png); */
    background-color: #959595;
    /* background-position: -12px -150%; */
    /* padding: 10px 42px; */
}

.car__status_discount {
    /* background-image: url(../images/icons/discount.png); */
    background-color: var(--color-green);
    /* background-position: 0px 30%; */
}

.car__sticker{
    padding: 9px 15px;
    position: absolute;
    border-radius: 0 0 7px 7px;
    box-shadow: 0px 4px 6.3px 0.7px rgb(0 0 0 / 22%);
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
} 

.car__sticker_official{
    background-color: #035DE5;
    left: unset;
    right: 14px;
    top: 0px;
}
.car__sticker_official svg{
    fill: none;
}

@media (max-width: 480px) {
    .car__sticker_official{
        top: 75%;
    }
}

.specifications {
    width: auto;
    flex-grow: 1;
    padding: 0 0 0 19px;    
}

.specifications__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.specifications__title {
    font-family: 'Helvetica-Light' ,sans-serif;
    font-size: 18px;
    font-weight: 300;
}

.specifications__price {
    font-family: "Ubuntu", sans-serif;
    font-size: 32px;
    font-weight: bold;
    text-align: right;
    width: 100%;
    margin-top: 10px;
}

.specifications__price_discount{
    color: var(--main-color);
}

.specifications__price-uah{
    color: rgb(134 134 134);
    font-size: 14px;
}

.specifications__price-uah span{
    font-weight: 700;
    font-size: 18px;
}

.specifications__price_color-black {
    color: inherit;
}

.specifications__price_sold{
    color: #868686;
}

.specifications__price_auction{
    width: auto;
}

.specifications__arrive {
    width: 100%;
    margin: 10px 0 0 0;
    font-family: "Ubuntu", sans-serif;
    text-align: end;
    color: rgb(117, 117, 117);
}

.specifications__arrive span {
    color: var(--main-color);
}

.specifications__body {
    border-top: 1px solid rgb(222, 234, 234);
    padding-top: 10px;
    margin-top: 10px;
}

.specifications__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0 0 0 4.93%;
}

.specifications__item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.specifications__item_image{
    height: 55px;
}


.specifications__item svg {
    height: 32px;
    width: auto;
}

.specifications__name {
    margin: 14px 0;
    color: rgb(83, 83, 83);
}

.specifications__value {
    font-weight: 700;
    color: rgb(0 0 0);
}

.car__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-left: 22px;
}

.car__buttons_sold{
    justify-content: center;
}

.car__image_buttons {
    display: none;
}

.car__button {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    width: calc(50% - 9px);
}

.car__button:hover {
    background-color: #ffffff;
    color: var(--main-color);
}

.car__button_green {
    background-color: var(--color-green);
    border-color: var(--color-green);
}

.car__button_green:hover {
    color: var(--color-green);
}


.pagination {
    list-style-type: none;
    font-family: 'GothamPro';
    color: rgb(40, 41, 35);
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-item {
    margin: 10px 5px;
}

.pagination .page-item a,
.pagination .page-item span {
    padding: 10px;
    border-radius: 4px;
}

.page-item.active span,
.page-item.active a {
    background-color: rgb(40, 41, 35);
    color: #ffffff;
}

.page-item a:hover {
    background-color: var(--main-color);
    color: #ffffff;
}



#model .filter__field,
#komplektaciya .filter__field {
    display: none;
}

#model .filter__field.show,
#komplektaciya .filter__field.show {
    display: flex;
}

@media (min-height: 720px) and (min-width: 1366px){

    .site-content{
        overflow: unset;
    }
    .sidebar {
        max-width: 357px;
        min-width: 315px;
        margin-right: 50px;
        position: sticky;
        top: 5px;
    }
}




@media (max-width: 1720px) {

    .filter__button-submit_floated {
        left: calc(var(--filters-width) + 15px);
    }

    .car__button{
        font-size: 18px;
        padding: 11px;
    }

    .filter__input {
        padding: 12px;
    }

    .sidebar{
        min-width: 270px;
    }

    .catalog .wrapper{
        max-width: calc(100% - 80px);
    }

    .specifications__items{
        padding: 0;
    }

    .specifications__item_image{
        max-width: 74px;
        height: 40px;
    }

    .specifications__item_image img{
        max-height: 100%;
        width: auto;
    }

}


@media (max-width: 1440px) {

    .catalog__item {
        padding: 16px;
    }

    .car__head {
        margin-bottom: 16px;
    }

    .specifications__price-uah{
        font-size: 12px;
    }

    .specifications__price-uah span {
        font-size: 16px;
    }


    .specifications__title {
        font-size: 16px;
    }

    .car__location {
        font-size: 22px;
    }

    .car__title {
        font-size: 26px;
    }

    .specifications__price {
        font-size: 26px;
    }

    .specifications__items {
        margin-top: 30px;
    }

    .specifications__item {
        margin-bottom: 30px;
    }


    .specifications__name {
        margin: 12px 0;
        font-size: 14px;
    }

    .specifications__value {
        font-size: 16px;
    }


    .car__status {
        font-size: 14px;
    }

    .car__status svg{
        height: 22px;
    }

    .car__buttons {
        padding: 0;
    }

    .car__button {
        font-size: 16px;
    }

    .filter {
        font-size: 14px;
    }

    .filter__button-submit {
        padding: 13px 26px;
        font-size: 16px;
    }

    .sidebar {
        margin-right: 30px;
    }

}


@media(max-width: 1300px) {
    .catalog__head {
        font-size: 14px;
    }

    .car__title {
        font-size: 22px;
    }

    .car__location {
        font-size: 18px;
    }

    .specifications__price {
        font-size: 22px;
    }

    .specifications__title {
        font-size: 14px;
    }

    .specifications__arrive {
        font-size: 12px;
    }

    .car__image {
        width: 50%;
        min-width: 50%;
    }

    .specifications {
        padding: 0 0 0 12px;
        width: calc(50% - 24px);
    }

    .specifications__items,
    .specifications__head,
    .car__buttons {
        padding: unset;
    }

    .specifications__item_image{
        height: 35px;
    }

    .car__location img{
        max-height: 28px;
        max-width: 60px;
    }

    .specifications__price-uah span {
        font-size: 14px;
    }

    .specifications__name {
        margin: 10px 0;
        font-size: 12px;
        text-align: center;
    }

    .specifications__value {
        font-size: 14px;
    }

    .car__button {
        font-size: 14px;
    }

    .car__status {
        font-size: 12px;
    }

    .catalog__tabs{
        font-size: inherit;
    }


}


@media(max-width: 1170px) {

    .specifications__items {
        margin-top: 10px;
    }

    .car__show-more a {
        display: none;
    }

    .filter-selected__item {
        width: calc(100% - 24px - 2px);
        padding: 10px 12px;
    }

    .filter__input {
        padding: 9px 12px;
        font-size: 12px;
    }

    .filter__field_year {
        width: calc(50% - 10px);
    }

    .filter__field_year .filter__input {
        width: 100%;
    }

    .filter__fields-colors {
        padding: 0;
    }

    .filter__fields-colors {
        justify-content: center;
    }

    .filter__fields-colors .filter__field {
        width: auto;
        justify-content: center;
        margin-right: 10px;
    }

    .filter__field_price,
    .filter__field_price input {
        width: 100%;
        max-width: 100%;
    }

    .specifications__item {
        width: 50%;
        margin-bottom: 15px;
    }

    .specifications__items .specifications__item:nth-last-child(-n+2) {
        margin-bottom: unset;
    }

    .car__buttons {
        display: none;
        max-width: 100%;
        justify-content: space-around;
        width: 100%;
    }

    .car__image_buttons {
        display: flex;
        padding-top: 10px;
    }

    .car__image {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .specifications {
        width: calc(45% - 12px);
    }

    .car__image {
        width: 55%;
    }

    .car__title{
        width: 100%;
        max-width: 100%;
    }

    .wrapper {
        max-width: calc(100% - 40px);
    }

    .specifications__title {
        font-size: 12px;
    }

    .sidebar {
        min-width: 200px;
    }

    .filter__icon {
        margin-right: 10px;
        width: 30px;
    }

    .filter {
        font-size: 12px;
    }

    .filter__input_medium{
        max-width: unset;
    }

    .catalog__content {
        padding-top: 46px;
    }

    .car__location {
        font-size: 16px;
    }

    .car__location img {
        max-height: 20px;
    }

}

@media (max-width: 900px) {

    .car__status {
        font-size: 12px;
        padding: 8px 24px;
        background-size: 20%;
        background-position: left;
    }

    .catalog__toggle-filters {
        display: flex;
    }

    .catalog__content {
        padding-top: 20px;
    }

    .catalog {
        position: relative;
    }

    .sidebar {
        position: absolute;
        padding: 0px 20px;
        left: 40px;
        background-color: #ffffff;
        z-index: 9;
        top: 98px;
        margin: unset;
        max-width: unset;
        width: calc(50% - 80px);
        box-shadow: 0px 0px 2px 2px transparent;
        max-height: 0px;
        overflow: hidden;
        transition: max-height .6s ease;

    }

    .sidebar.active {
        max-height: 1500px;
        box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.08);
        transition: max-height 1s ease;
    }

    .catalog__content {
        width: 100%;
        flex-grow: unset;
    }

    .catalog__head{
        flex-wrap: wrap;
    }

    .catalog__tabs{
        width: 100%;
        border-bottom: 1px solid rgb(255 176 56);
    }

    .sort-by, .toggle-filters{
        padding: 11px 0;
    }

    .catalog__sort-by{
        max-width: unset;
        width: calc(50% - 1px);
    }

    .specifications__item_image {
        height: 25px;
    }
}


@media(max-width: 720px) {

    .specifications__item_image {
        height: 30px;
    }

    .car__body {
        flex-wrap: wrap;
    }

    .car__image {
        width: 100%;
    }

    .specifications {
        width: 100%;
        padding: unset;
    }

    .car__buttons {
        display: flex;
    }

    .car__image_buttons {
        display: none;
    }

    .specifications__head,
    .specifications__body,
    .specifications__items {
        width: 100%;
    }

    .specifications,
    .specifications__body {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .specifications__body {
        padding: unset;
        border: none;
    }

    .specifications__items {
        margin: unset;
        border-bottom: 1px solid rgb(222, 234, 234);
    }

    .specifications__item {
        width: 25%;
    }

    .specifications__item img,
    .specifications__item svg {
        height: 30px;
    }


    .specifications__items .specifications__item:nth-last-child(-n+2) {
        margin-bottom: 15px;
    }

    .specifications__head {
        order: 2;
        margin: 10px 0px;
        max-width: 320px;
        margin: 10px auto;
    }

    .specifications__item {
        width: 50%;
    }

    .specifications__head {
        max-width: 280px;
    }

    .car__buttons {
        order: 3;
        margin: unset;
    }

    .car__head {
        width: 100%;
        margin: 16px 0;
    }

    .car__location {
        margin: 0 0 0 auto;
        min-width: 115px;
        justify-content: flex-end;
    }

    .car__location img, .car__location_sold svg {
        margin-right: 5px;
    }

    .filter__fields-colors .filter__field {
        width: auto;
    }

    .sidebar{
        left: 20px;
        width: calc(50% - 60px);
        top: 121px;
    }

    .catalog .wrapper {
        max-width: calc(100% - 40px);
    }

    .filter__button-submit_floated.show{
        display: none;
    }
}


@media(max-width: 480px) {
    .sidebar {
        width: calc(100% - 80px);
    }

    .car__buttons{
        flex-wrap: wrap;
    }

    .car__button{
        width: 100%;
    }

    .car__button+.car__button{
        margin-top: 10px;
    }

    
}

@media(max-width: 380px) {
    

    .catalog__head {
        font-size: 12px;
    }

    .pagination__item a {
        padding: 5px;
    }
}
