.button-clr {
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    background: #0000;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #0000;
    border-radius: 8px;
    box-sizing: border-box;
    color: #000000de;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 15px;
    margin: 0;
    max-width: 100%;
    outline: 0;
    padding: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}
/*-----------start-color--------*/
.button-clr.button-clr_color_blue {
    background-color: #0c78ed;
    color: #fff;
}
.button-clr.button-clr_color_blue:focus, .button-clr.button-clr_color_blue:hover {
    background-color: #2284ef;
}
/*-----------end-color--------*/
/*-----------start-size--------*/
.button-clr_size_m {
    height: 36px;
    line-height: 34px;
}
/*-----------end-size--------*/
.button-clr_width_full {
    width: 100%;
}
.button__content {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
}
.button-with-loader__content_invisible {
    visibility: hidden;
}
.button-with-loader__content.button-with-loader__content_invisible ~ .button-with-loader__loader {
    display: block;
}
.button-with-loader__loader {
    margin: 0!important;
    position: absolute;
    display: none;
}
.loader_type_dots {
    align-items: center;
    display: flex;
    height: auto;
    justify-content: center;
    line-height: 1;
    margin: 15px 0;
    text-align: center;
    width: auto;
}
.loader_size_s.loader_type_dots .loader__dot {
    height: 8px;
    width: 8px;
}
.loader_type_dots.loader_color_white .loader__dot {
    background-color: #fff;
}
.loader_type_dots .loader__dot {
    animation: preloader_type_dots .8s linear infinite;
    border-radius: 50%;
    display: inline-block;
    height: 7px;
    margin-right: 4px;
    width: 7px;
}
.loader_type_dots .loader__dot:nth-child(2) {
    animation-delay: .2s;
}
.loader_type_dots .loader__dot:nth-child(3) {
    animation-delay: .4s;
}
/*-------------start animate--------------------*/
@keyframes preloader_type_dots {
    1% {
        opacity:1;
    }
    80% {
        opacity:0;
    }
    100% {
        opacity:0;
    }
}
/*-------------end animate--------------------*/
/*----------------------start__advertising-----------------------*/
.advertising {
    /*border: 1px solid #e0e0e0;*/
    /*box-shadow: 0 3px 14px #0000001f;
    border-radius: 8px;
    padding: 10px;*/
    height: auto;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    vertical-align: middle;
    width: 370px;
}
.color-page__right-sidebar {
    position: sticky;
    top: 100px;
}
/*----------------------end__advertising-----------------------*/
.color-actual-offers-main__title {
    font-size: 31px;
    font-weight: 700;
    height: 30px;
    line-height: 1.3;
    margin-bottom: 40px;
}
/*----------------------start__main__filters-----------------------*/
.color-actual-offers-main__filters {
    background-color: #fff;
    border-radius: 8px;
    /*box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);*/
    box-shadow: 0 3px 14px #0000001f;
    /*height: 235px;*/
    padding: 20px 20px 0;
    margin-bottom: 24px;
}
.listing-cars-filters__main-form {
    position: relative;
}
.listing-cars-filters__container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
}
.listing-cars-filters__container.listing-cars-filters__invisible::after {
    visibility: visible;
    opacity: 1;
}
.listing-cars-filters__row {
    display: flex;
    flex-direction: row;
    margin: 12px 0;
}
.listing-cars-filters__row:first-child {
    margin-top: 0;
}
.listing-cars-filters__column:first-child {
    margin-left: 0;
}
.listing-cars-filters__column {
    align-items: center;
    display: flex;
    flex: 1;
    flex-shrink: 1;
    flex-shrink: 0;
    margin-left: 20px;
    min-width: 0;
}
.listing-cars-item {
    width: 100%;
    position: relative;
}
.listing-cars-item input, .listing-cars-control-half input {
    border: 1px solid #0000;
    border-radius: 8px;
    background-color: #fff;
    border-color: #0000001f;
    line-height: 34px;
    padding: 0 8px;
    color: #000000d9;
    width: 100%;
    text-transform: uppercase;
}
.listing-cars-item input::placeholder, .listing-cars-control-half input::placeholder {
    text-transform: none;
}
.listing-cars-item input:hover, .listing-cars-control-half input:hover {
    border-color: #0c78ed;
}
.listing-cars-item input:focus-visible, .listing-cars-control-half input:focus-visible {
    outline: none;
}
.listing-cars-control-half:not(:last-child) input {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.listing-cars-control-half:not(:first-child) input {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -1px;
}
.listing-cars-control-half input {
    width: 100%;
}
.listing-cars-control-half:first-child {
    margin-left: 0;
}
.listing-cars-control-half {
    align-items: center;
    display: flex;
    flex: 1;
    flex-shrink: 1;
    flex-shrink: 0;
    min-width: 0;
    /*max-width: 135px;*/
}
.listing-cars-filters__actions {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    margin: auto -20px 0;
    padding: 20px;
}
/*----------------------end__main__filters-----------------------*/
.color-actual-offers-main__popular {
    padding: 9px 16px 9px;
}
.listing-popular__items {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    overflow: hidden;
    max-height: 100px;
}
.listing-popular__items.collapsed {
    max-height: 100%;
}
.listing-popular__column {
    display: flex;
    flex-direction: column;
}
.listing-popular__item {
    display: flex;
    font-size: 15px;
    justify-content: space-between;
    line-height: 18px;
    margin: 0 12px 15px 0;
    position: relative;
    white-space: nowrap;
    width: 260px;
}
.ListingPopularMMM .Link {
    font-size: 15px;
}
.listing-popular__item-name {
    flex-shrink: 0;
    max-width: 84%;
    overflow: hidden;
    padding-right: 8px;
    position: relative;
    text-overflow: ellipsis;
    z-index: 2;
}
.Link {
    color: #0c78ed;
}
.Link:not(.Link_disabled):hover {
    color: #f54b42;
}
.Link {
    -webkit-tap-highlight-color: rgba(0,0,0,.1);
    cursor: pointer;
    outline: none;
    text-decoration: none;
    touch-action: manipulation;
    transition: color .3s ease;
}
.listing-popular__item-count::before {
    /*border-bottom: 1px solid #0000001a;*/
    border-bottom: 1px dotted #0000005e;
    content: "";
    margin-bottom: 4px;
    margin-right: 8px;
    width: 100%;
}
.listing-popular__item-count {
    color: #00000080;
    display: flex;
    margin-left: auto;
    position: relative;
    width: 100%;
    z-index: 2;
}
.listing-popular__expand-link {
    text-align: right;
    padding-right: 25px;
}
.manufacturer_chosen, .from_chosen, .to_chosen, .type_chosen, .area_chosen, .group_chosen {
    display: none;
}
/*-------------chosen----------------------*/
.choices {
    margin-bottom: 0;
}
.choices[data-type*="select-one"] {
    width: 100%;
}
.choices[data-type*="select-one"] .choices__input {
    display: block;
    width: 100%;
    background-color: #fff;
    margin: 0;
    border: none;
    font-size: 16px;
}
.is-open .choices__inner {
    border-radius: unset;
}
.choices__inner {
    border: none;
    border-radius: unset;
    background-color: #fff;
    border-color: #0000001f;
    line-height: 34px;
    padding: 0;
    /*color: #000000d9;*/
    width: 100%;
    min-height: 36px;
    font-size: 16px;
}
.choices__list--single .choices__item {
    border: 1px solid #0000;
    border-color: #0000001f;
    border-radius: 8px;
    position: relative;
}
.choices__list--dropdown .choices__placeholder {
    margin-top: 6px;
}
.choices__input + .choices__list .choices__placeholder {
    margin-top: 0;
}


/*---------------старт заглушек---------------------*/
.listing-cars-item .fake_select {
    border: 1px solid #0000001f;
    border-radius: 8px;
    position: relative;
    width: 100%;
    background-color: #fff;
    padding-left: 8px;
    color: #959595;
    min-height: 36px;
    line-height: 34px;
}
.listing-cars-item .fake_select::after, .listing-cars-control-half .fake_select::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 10.5px;
    top: 1px;
    color: #747474;
    font-size: 14px;
}
.listing-cars-control-half .fake_select {
    border: 1px solid #0000001f;
    border-radius: 8px;
    position: relative;
    width: 100%;
    background-color: #fff;
    padding-left: 8px;
    color: #959595;
    min-height: 36px;
    line-height: 34px;
}
.listing-cars-control-half:not(:last-child) .fake_select {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.listing-cars-control-half:not(:first-child) .fake_select {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -1px;
}
.listing-cars-item .fake_select.fake_select__selected, .listing-cars-control-half .fake_select.fake_select__selected  {
    background-color: #0c78ed1f;
    border-color: #157ee180;
    color: #000;
}
.listing-cars-control-half:not(:last-child) .fake_select.fake_select__selected {
    z-index: 1;
}
.fake_select .item__color {
    top: 7px;
}
.fake_select.color__selectable {
    padding-left: 30px;
}
/*---------------конец заглушек---------------------*/



.choices__list--single .choices__item:hover {
    border-color: #0c78ed !important;
    z-index: 1;
}
.is-focused .choices__inner, .is-open .choices__item {
    border-color: #0000001f;
}
.listing-cars-control-half:not(:last-child) .choices__item {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.listing-cars-control-half:not(:first-child) .choices__item {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.listing-cars-control-half:not(:first-child) .choices {
    margin-left: -1px;
}
.choices.is-focused.is-open .choices__item {
    border-color: #0c78ed;
    z-index: 1;
}
.choices__list--single {
    padding: 0;
}
.choices__list--single .choices__item:not(.choices__placeholder), .listing-cars-item input:not(:placeholder-shown), .listing-cars-control-half input:not(:placeholder-shown){
    padding-left: 8px;
    background-color: #0c78ed1f;
    border-color: #157ee180;
    z-index: 1;
    display: flex;
}
.listing-cars-item input::placeholder, .listing-cars-control-half input::placeholder {
    text-transform: none;
}
.item__color {
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 20px;
    justify-content: center;
    position: absolute;
    width: 20px;
    left: 5px;
    top: 12px;
    box-shadow: 0.5px 2px 2px rgba(0, 0, 0, .1);
}
.choices__list--single .item__color {
    top: 7px;
}
.choices__item--selectable.color__selectable {
    padding-left: 30px !important;
}
.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 0;
}
.choices__list--dropdown, .choices__list[aria-expanded] {
    z-index: 999;
    border: none;
    box-shadow: 0 10px 30px 0 #0000001a;
    border-radius: 8px;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    margin-top: 2px;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted, .choices__item--selectable.is-highlighted.choices__placeholder::before {
    background-color: #0c78ed;
    color: #fff;
}
.choices__list--single .choices__placeholder {
    color: #959595;
    padding-left: 8px;
}
.choices__placeholder {
    opacity: 1;
    font-size: 16px;
}
.choices__list--dropdown .choices__placeholder::before, .remove-choice::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    /*margin-right: 10px;*/
    margin-right: 5px;
    color: #747474;
}
.remove-choice::before {
    margin-right: 10px;
}
.choices__item {
    color: #000;
    position: relative;
    white-space: nowrap;
}
.choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 0;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
    font-size: 16px;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item:not(.choices__placeholder) {
    padding-left: 30px;
}
.choices[data-type*="select-one"]::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    height: unset;
    width: unset;
    border-style: none;
    border-color: #333 transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 11.5px;
    top: 26%;
    margin-top: 0;
    pointer-events: none;
    color: #747474;
    font-size: 14px;
    transition-duration: .2s;
    transition-property: all;
    z-index: 1;
}
.choices[data-type*="select-one"].is-open::after {
    margin-top: 0;
    transform: rotate(180deg);
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
    animation-name: Popup_visible_opacity-only,Popup_visible_bottom;
}
.filters-link__reset {
    align-items: center;
    /*display: flex;*/
    justify-content: center;
    line-height: 24px;
    display: none;
}
.filters-link__reset::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f00d";
    font-weight: 300;
    margin-left: 7px;
    margin-top: 5px;
}
.filters-link__reset.filters-link-reset_active {
    display: flex;
}
.color-card__last-update {
    color: #00000080;
    font-size: 13px;
    padding-bottom: 10px;
    margin-top: -25px;
}
/*-------------start animate--------------------*/
@keyframes Popup_opacity-only {
    from {
        opacity:1;
        transform:translate(0);
        visibility:visible;
    }
    99% {
        transform:translate(0);
    }
    to {
        opacity:0;
        transform:translate(-9999px,-9999px);
        visibility:hidden;
    }
}
@keyframes Popup_visible_opacity-only {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@keyframes Popup_bottom {
    from {
        transform:translateY(0);
    }
    99% {
        transform:translateY(10px);
    }
}
@keyframes Popup_visible_bottom {
    from {
        transform:translateY(10px);
    }
    to {
        transform:translateY(0);
    }
}
@keyframes Popup_top {
    from {
        transform:translateY(0);
    }
    99% {
        transform:translateY(-10px);
    }
}
@keyframes Popup_visible_top {
    from {
        transform:translateY(-10px);
    }
    to {
        transform:translateY(0);
    }
}
@keyframes Popup_right {
    from {
        transform:translateX(0);
    }
    99% {
        transform:translateX(10px);
    }
}
@keyframes Popup_visible_right {
    from {
        transform:translateX(10px);
    }
    to {
        transform:translateX(0);
    }
}
@keyframes Popup_left {
    from {
        transform:translateX(0);
    }
    99% {
        transform:translateX(-10px);
    }
}
@keyframes Popup_visible_left {
    from {
        transform:translateX(-10px);
    }
    to {
        transform:translateX(0);
    }
}
/*-------------end animate--------------------*/
/*====================cars-panel========================*/
.listing-cars-panel .choices__item {
    display: block;
    transition: unset;
}
    /*====================sort-panel========================*/
.listing-filter-panel__sort {
    /*max-width: 148px;*/
   /* width: 120px;*/

}
.listing-filter-panel .listing-cars-filters__column .listing-cars-item:last-child {
    margin-left: 12px;
}
.listing-filter-panel .choices__list--single .choices__item {
    padding-right: 30px;
}
.listing-filter-panel .choices__list--dropdown {
    width: auto;
}
.listing-filter-panel .choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item:not(.choices__placeholder) {
    padding-right: 30px;
    display: flex;
}
.listing-filter-panel .choices__list--dropdown .choices__item:first-child:before {
    content: "\f00d";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    position: absolute;
    left: 10px;
    color: #747474;
}
.listing-filter-panel .choices__list--dropdown .choices__item.link-filter__selected:not(:first-child):before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    position: absolute;
    left: 10px;
    color: #747474;
}
/*.listing-filter-panel */.choices__list--dropdown .choices__item:hover {
    background-color: #0c78ed;
    color: #fff;
}
.listing-filter-panel .choices__list--dropdown .choices__item:hover:before, .listing-filter-panel .choices__list--dropdown .choices__item:hover.link-filter__selected:before {
    color: #fff;
}
.listing-filter-panel a {
    transition-duration: unset;
    color: #000;
}

/*====================filter-panel========================*/
.listing-filter-panel {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    padding: 0 16px 24px;
}
.listing-filter-panel__left, .listing-filter-panel__right {
    display: flex;
    flex-direction: row;
}
.listing-filter-panel__left {
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
}
.listing-filter-panel__controls {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    height: 36px;
}
.button_group {
    align-items: center;
    box-sizing: border-box;
    display: flex;
}
.button_group label {
    margin-bottom: 0;
}
.radio_type_button {
    white-space: nowrap;
}
.button_type_button {
    display: inline-block;
    background: #0000;
    border: 1px solid #e0e0e0;;
    border-radius: 8px;
    vertical-align: middle;
    white-space: nowrap;
    height: 36px;
    width: 36px;
    color: #00000080;
    position: relative;
    z-index: 0;
    /*line-height: 34px;*/
}
.button_type_button.button__checked {
    background-color: #0c78ed1f;
    border-color: #157ee180;
    color: #000;
    z-index: 1;
}
.button_type_button:not(.button__checked, .button__disabled):hover {
    color: #fff;
    background-color: #0c78ed;
    border-color: #0c78ed;
}
.button_group .radio_type_button:first-child .button_type_button {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.button_group .radio_type_button:last-child .button_type_button {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -1px;
}
.button__grid::after, .button__list::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}
.button__grid::after {
    content: "\f58d";
}
.button__list::after {
    content: "\f7a4";
}
/*====================color_items========================*/
/*.listing-colors_list {
    position: relative;
}*/
.listing-colors_list .yandex_rtb {
    grid-row: 5 / span 1;
    grid-column: 1 / -1;
    max-height: 120px;
    margin: 0 15px;
}
.listing-colors_list.view-simple {
    display: grid;
    grid-template-columns: 1fr;
}
.listing-colors_list.view-tile {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill,minmax(350px,1fr));
}
.listing-item {
    background: #fff;
    padding: 15px 16px;
    position: relative;
}
.listing-item:hover {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px 0 #0000001a;
    z-index: 1;
}
.view-simple .listing-item:hover+.listing-item.listing-item::before {
    border-top: none;
}
.view-simple .listing-item:not(.listing-item:hover)::before {
    border-top: 1px solid #0000001a;
    content: " ";
    display: block;
    height: 1px;
    left: 16px;
    position: absolute;
    right: 16px;
    top: 0;
}
.listing-item__main {
    display: flex;
}
.listing-item__thumb {
    flex-shrink: 0;
    width: 205px;
    height: 154px;
    position: relative;
}
.offer-thumb {
    border-radius: 8px;
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.3) 0.5px 2px 1px;
}
.offer-thumb__color-carousel {
    bottom: auto;
    height: 100%;
    position: relative;
    z-index: 1;
}
.color-carousel {
    bottom: 0;
    display: flex;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.color-carousel__page {
    align-items: flex-end;
    display: flex;
    flex: 1;
    height: 100%;
    position: static;
}
.color-image {
    bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    right: 0;
    top: 0;
    z-index: -2;
}
.color-image__wrapper, .color-image {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    justify-content: center;
    display: flex;
}
.color-image__wrapper img {
    max-height: 100%;
    max-width: 100%;
}
.color-image img.img-example {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.color-carousel__page:not(:first-child) .color-image img, .color-carousel__page:not(:first-child) .color-image {
    opacity: 0;
    display: block;
    transition: opacity 0s;
}
.color-carousel__page:hover .color-image img, .color-carousel__page:hover .color-image, .color-carousel__page.show_page .color-image, .color-carousel__page.show_page .color-image img {
    opacity: 1;
    z-index: -1;
}
.color-image__more {
    background-color: #0000004d;
    bottom: 0;
    color: #fff;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
}
.color-image-more__wrapper {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
}
.color-picker-block {
    width: 100%;
    height: 100%;
}
.color-more__icon {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='54' height='46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M51.195 42.884C50.535 43.624 49.46 44 48 44H6c-1.46 0-2.535-.376-3.196-1.116C1.817 41.778 2 40.011 2 40v-2l-.003-23.078c-.002-.017-.113-1.719.934-2.844C3.596 11.363 4.63 11 6.001 11h7l.1-.006c.105-.01 2.585-.288 3.781-2.523.927-1.733 2.932-4.888 2.93-4.888C19.86 3.518 20.99 2 23 2h8c2.01 0 3.14 1.518 3.188 1.583-.002 0 2.003 3.155 2.93 4.888 1.196 2.235 3.675 2.513 3.78 2.523L41 11h7c1.371 0 2.403.363 3.07 1.078 1.045 1.125.934 2.827.933 2.844L52 38v2c.001.011.183 1.778-.805 2.884m1.355-32.149C51.491 9.585 49.96 9 48 9h-6.936c-.242-.037-1.549-.288-2.182-1.472-.966-1.804-2.955-4.933-3.039-5.065C35.746 2.323 34.065 0 31 0h-8c-3.066 0-4.746 2.323-4.844 2.463-.084.132-2.073 3.261-3.038 5.065-.633 1.184-1.94 1.435-2.183 1.472H6c-1.96 0-3.492.584-4.55 1.735C-.19 12.516.026 14.702 0 15v24.95c.041.62-.154 2.605 1.295 4.246C2.351 45.393 3.935 46 6 46h42c2.065 0 3.648-.607 4.704-1.804 1.45-1.64 1.254-3.626 1.296-4.247V15c-.028-.298.19-2.484-1.45-4.265'/%3E%3Cpath d='M27 16c-5.514 0-10 4.486-10 10s4.486 10 10 10 10-4.486 10-10-4.486-10-10-10m0 22c-6.617 0-12-5.383-12-12s5.383-12 12-12 12 5.383 12 12-5.383 12-12 12'/%3E%3C/g%3E%3C/svg%3E");
    height: 46px;
    margin: 0 auto;
    width: 54px;
}
.color-more__text {
    color: #fff;
    font-size: 13px;
    line-height: 17px;
    margin-top: 13px;
}
.color__button::after {
    background: #d9d9d9;
    bottom: 2px;
    content: "";
    height: 3px;
    left: 1px;
    position: absolute;
    right: 1px;
    top: 1px;
    transition: background-color .2s;
}
.listing-item:not(:hover) .color__button {
    opacity: 0;
}
.color__button {
    flex: 1;
    min-height: 7px;
    opacity: 1;
    position: relative;
    transition: opacity .2s;
}
.color-carousel:not(:hover):not(.slide_manual) .color-carousel__page:first-child .color__button::after, .color-carousel__page:hover .color__button::after, .color-carousel__page.show_page .color__button::after {
    background-color: #f54b42;
}
.listing-item__description {
    display: grid;
    grid-template-areas: "listing-item__summary";
    margin: 0 0 0 15px;
    min-height: 154px;
}
.listing-colors_list.view-tile .listing-item__description {
    grid-template-columns: 130px;
}
.listing-item__summary {
    grid-area: listing-item__summary;
}
.view-tile .listing-item__title,
.view-tile .listing-item__group,
.view-tile .listing-item__year,
.view-tile .listing-item__alias,
.view-tile .listing-item__codes {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.listing-item__title {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}
.listing-item__link {
    color: #000;
}
.listing-item__year, .listing-item__alias, .listing-item__codes {
    font-size: 13px;
}
.listing-item__year {
    color: #00000080;
}
.listing-item__manufacturer {
    position: absolute;
    left: 20px;
    top: 16px;
    z-index: 1;
}
.listing-item__manufacturer .label-manufacturer {
    /*background-color: #36b555;*/
    background-color: #0c78ed;
    /*background-color: #77b2bf;*/
    line-height: 2;
    opacity: 0.8;
}
.catalog-preloader_active .loader {
    top: 0;
    padding-top: 0;
    overflow: unset;
}
.listing-colors_list .color__picture {
    cursor: pointer;
}
/*====================viewed colors========================*/
.viewed-color-wrapper .row {
    border-top: 1px solid #f7f2f2;
    margin-top: 10px;
}
.viewed-color-wrapper .viewed-colors-slider__content {
    box-shadow: none;
}
.viewed-color-wrapper .color-card__offer {
    margin: 0;
}
/*====================media-viewer-image========================*/
.media-viewer-image__main {
    display: none;
    margin-left: auto;
}
.media-viewer-image__control {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    font-size: 20px;
    font-weight: 100;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.media-viewer-image__control:hover {
    background: #0c78ed;
    color: #ffffff;
}
/*.media-viewer-image__icon {
    font-weight: 600;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #0c78ed;
}
.media-viewer-image__icon::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f85b";
}*/
.media-viewer-image__control_next:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f106";
}
.media-viewer-image__control_prev:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
}
.advertisingAds {
    scroll-margin-top: 70px;
}
.advertisingAds div {
    max-height: 200px;
    width: 100%;
}