.catalogue {
  display: flex;
  justify-content: space-between;
}
span .yellow-square{
	padding: 0px 5px;
    background-color: var(--color-sub);
    border-radius: 4px;
    margin-right: 5px;
}
.catalogue-header__schemes{
    height: fit-content;
}
.catalogue-header__schemes a{
    border-radius: 4px;
    padding: 5px 10px;
    text-decoration: none;
}

.catalogue-header__schemes a:hover{
    background-color: var(--color-sub);
    color: #09192b;
}
.catalogue-shop {
    width: 100%;
    margin-top: 10px;
}
.catalogue-categories{
    display: flex;
    flex-direction: column;
}
.catalogue-categories i{
    display: none;
}
.catalogue-categories__item {
    text-decoration: none;
    font-weight: 400;
    background-color: var(--color-gray);
    margin-bottom: 5px;
    padding: 5px;
    transition: var(--transition-ease);
}

.catalogue-categories__item:hover, .catalogue-categories__item.selected {
    background-color: var(--color-sub);
    color: white;
}

.catalogue-categories__item[disabled="disabled"]{
    background-color: #e0dfdf;
    opacity: 0.6;
    cursor: not-allowed;
}
.catalogue-categories__item[disabled="disabled"]:hover{
    color: black;
}
.catalogue .catalogue-items{
    width: 910px;
   
}
.catalogue-items__table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
    background-color: #fff;
    font-size: 12px;
}
.catalogue-items__table th {
    padding: 10px 10px;
    border: 1px solid var(--color-gray);
    border-top: none;
    text-align: center;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--color-dark);
    color: white;
}
.catalogue-items__table td {
    padding: 4px 10px;
    border: 1px solid var(--color-gray);
    vertical-align: middle;
    text-align: left;
    font-weight: 400;
}

.catalogue-items__table th:nth-child(1) { width: 65px } /* фото */
.catalogue-items__table td:nth-child(1) { vertical-align: middle } /* фото */

.catalogue-items__table th:nth-child(2) { width: 100px} /* наименование */

.catalogue-items__table th:nth-child(3) { width: auto } /* код */

.catalogue-items__table th:nth-child(4) { width: 150px } /* трансмиссия */
.catalogue-items__table td:nth-child(4) { line-height: 1.3em } /* трансмиссия */

.catalogue-items__table th:nth-child(5) { width: 100px } /* производитель */
.catalogue-items__table th:nth-child(6) { width: 75px } /* описание */

.catalogue-items__table th:nth-child(7) { width: 110px } /* наличие */
.catalogue-items__table td:nth-child(7) { line-height: 1.2em } /* наличие */

.catalogue-items__table th:nth-child(8) { width: 65px } /* цена */
.catalogue-items__table th:nth-child(9) { width: 100px } /* в корзину*/
.catalogue-items__table td:nth-child(9) { vertical-align: middle } /* в корзину*/

.catalogue-item__picture {
    background-repeat: no-repeat;
    background-size: contain;
    width: 70px;
    height: 70px;
    display: block;
    
    cursor: pointer;
}
.catalogue-pagination:after {
    content: ' ';
    display: block;
    clear: both;
}
.color-green {
    color: #0d9006;
    font-weight: bold;
}
.color-yellow{
    color: #a69d18;
    font-weight: bold;
}
.color-red{
    /*color: #d60000;*/
    color: #01192b;
/*    font-weight: bold;*/
}
.catalogue-item__link{
    text-decoration: none;
}
.catalogue-item__link:hover{
    color: var(--color-sub);
    transition: var(--transition-ease);
}
.catalogue-item__buy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.catalogue-item__buy-input {
    border: none;
    outline: none;
    text-align: center;
    font-size: 10px;
    position: relative;
    width: 20px;
}
.catalogue-item__buy-del{
    cursor: pointer;
    background-color: var(--color-gray);
    padding: 5px 10px;
    text-align: center;
}
.catalogue-item__buy-del:hover{
    background-color: var(--color-dark);
    color: white;
    transition: var(--transition-ease);
}
.catalogue-item__stock{
    margin-bottom: 5px;
    display: block;
}
.catalogue-items__blocks .catalogue-item__buy-input {
    width: 30px;
    background-color: transparent;
}
.catalogue-item__count-btn{
    background-color: var(--color-darkest);
    font-weight: bold;
    outline: none;
    border: none;
    cursor: pointer;
    color: white;
    width: 35px;
    height: 35px;
    font-size: 15px;
    transition: var(--transition-ease);
    border-radius: 50%;
}
.catalogue-item__count-btn:hover{
    background-color: var(--color-gray);
    color: black;
}
.catalogue-item__buy-btn{
    color: black;
    background: none;
    font-weight: bold;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition-ease);
}
.catalogue-item__buy-btn:hover{
    background-color: var(--color-darkest);
    color: white;
}
.catalogue-item__buy-wrapper{
    display: flex;
    justify-content: space-between;
}
.catalogue-item__buy-count{
    display: flex;
    justify-content: space-between;
}
.catalogue-block__buy-button {
   font-size: 12px;
    color: #fff;
    cursor: pointer;
    background-color: #4caf50;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    transition: var(--transition-ease);
}
.catalogue-block__buy-button:hover{
    background-color: var(--color-sub);
}
.catalogue-item__buy-button{
   font-size: 12px;
    color: #fff;
    cursor: pointer;
    background-color: #4caf50;
    text-align: center;
    padding: 5px 10px;
    font-weight: 600;
    transition: var(--transition-ease);
}
.catalogue-item__buy-button:hover{
    background-color: var(--color-sub);
}
.catalogue-items__table .catalogue-item__buy-button{
    width: 40px;
}
.catalogue-block__price-item .btn-disabled{
    background-color: slategray;
    cursor: not-allowed;
}

.catalogue-item__buy-button[disabled="true"] {
    opacity: 0.4;
    position: relative;
    cursor: default !important;
}

.catalogue-item__buy-button[disabled="true"]:before {
    height: 1px;
    width: 112px;
    display: block;
    content: ' ';
    background-color: red;
    -webkit-transform:
            translateY(17px)
            translateX(-2px)
            rotate(-16deg);
    position: absolute;
    display: none;
}

.catalogue-item__buy-button[disabled="true"]:hover {
    opacity: 0.4 !important;
}
.catalogue-filter {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 0;
}

.catalogue-header__akpp {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 68%;
}
.catalogue-header__akpp-analogs{
    background-color: #eaeaea;
    border-radius: 4px;
    padding: 0px 5px;
}
.catalogue-header__akpp-menu .bx-filter-parameters-box-title {
    display: none;
}
.catalogue-header__akpp-menu .btn{
    border: none;
    background-color: var(--color-sub);
    font-size: 14px;
    font-weight: 600;
}
.catalogue-header__akpp-menu .btn:hover{
    background-color: var(--color-sub);
    color: #09192b;
    font-weight: 600;
}
.catalogue-header__akpp .bx_filter_param_label {
    display: block;
    width: 95%;
    margin: auto;
    color: #000;
}
.catalogue-header__akpp .bx_filter_param_label input[type="checkbox"]{
    float: right;
}

.catalogue-header__akpp .filter_text {
    width: 90% !important;
    font-size: 14px;
}

.catalogue-header__akpp .bx_filter_param_label .filter_value_cross i {
    color: #000;
}
.catalogue-header__akpp .bx_filter_param_label .filter_value_cross {
    font-size: 10px;
    color: #000;
}
.catalogue-header__akpp-menu {
    padding: 30px;
    border-radius: 4px;
    background-color: white;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    min-width: 350px;
    max-width: 500px;
    transform: translate(-50%, -50%);
}
.catalogue-header__akpp-menu .bx-filter-parameters-box-container {
    max-height: 300px;
    height: auto;
    overflow: hidden;
    overflow-y: scroll;
    width: 100%;
    font-size: 12px;
}
.catalogue-header__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.catalogue-header__title{
    font-weight: bold;
    font-size: 16px;
}
.catalogue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.catalogue-header__column{
    display: flex;
    align-items: center;
}
.catalogue-scheme{
    position: relative;
    padding: 30px;
    margin-bottom: 20px;
    background-image: url('/img/scheme.png');
    color: var(--color-darkest);
    text-decoration: none;
    font-weight: 800;
    transition: background 0.3s ease-in-out;
    background-position: 0px -220px;
    background-size: 110%;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid white;
}
.catalogue-scheme:before{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: white;
    top: 0;
    left: 0;
    opacity: 80%;
}
.catalogue-scheme__text{
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    z-index: 10;
}
.catalogue-scheme:hover{
    border: 1px solid var(--color-sub);
    color: var(--color-sub);
    background-size: 120%;
}
.catalogue-scheme:hover .catalogue-scheme:before{
    opacity: 100%;
}
.catalogue-akpp__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.48px;
    margin-right: 20px;
}
.catalogue-header__analogs{
    display: flex;
    background-color: white;
    padding: 5px 10px;
}
.catalogue-header__analogs-title{
    margin-right: 5px;
    color: gray;
}
.catalogue-header-item{
    margin-left: 6px;
    color: #8e8e8e;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.28px;
}

.catalogue-header .akpp-add:before {
    display: inline-block;
    position: relative;
    top: 3px;
    left: -6px;
    content: ' ';
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('/images/catalogue/show_akpp_ico.png');
}

.catalogue-header .akpp-del:before {
    margin-left: 10px;
    display: inline-block;
    position: relative;
    top: 3px;
    left: -6px;
    content: ' ';
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('/images/catalogue/del_akpp_ico.png');
}

.catalogue-header .brand-car:before {
    margin-left: 10px;
    display: inline-block;
    position: relative;
    top: 3px;
    left: -6px;
    content: ' ';
    width: 18px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(/img/car-brand.png);
}

.catalogue-header .scheme:before {
    margin-left: 10px;
    display: inline-block;
    position: relative;
    top: 3px;
    left: -6px;
    content: ' ';
    width: 18px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(/img/schemes.png);
}
.catalogue-sort-view{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.catalogue-filter__filter {
    display: flex;
}
.catalogue-filter__tip{
    margin-right: 15px;
    background-color: var(--color-sub);
    padding: 0 10px;
    border-radius: 4px;
}
.catalogue-filter__item{
    cursor: pointer;
    text-decoration: none;
    font-weight: 400;
    background-color: var(--color-gray);
    padding: 5px;
    transition: var(--transition-ease);
}
.catalogue-sort__title{
    background-color: #eaeaea;
    border-radius: 4px;
    padding: 0 10px;
}
.catalogue-filter__item-link{
    text-decoration: none;
    margin-right: 5px;
}
.catalogue-filter__item:hover{
    background-color: var(--color-sub);
    color: white;
}
.catalogue-filter__item-ico{
    font-size: 12px;
    cursor: pointer;
    display: none;
}
.filter_text{
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 5px;
    width: -webkit-fill-available;
    color: #09192b;
    background-color: white;
}
.catalogue-filter__view-link {
    padding: 0 4px;
}
.blocks-view:before {
    margin-left: 10px;
    display: inline-block;
    position: relative;
    top: 2px;
    left: -5px;
    content: ' ';
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(/img/blocks-view.png);
}
.lines-view:before {
    margin-left: 10px;
    display: inline-block;
    position: relative;
    top: 2px;
    left: -5px;
    content: ' ';
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(/img/lines-view.png);
}
.catalogue-filter__view-link.active {
    text-decoration: none;
}
.catalogue-items__blocks {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.catalogue-block__item {
    display: inline-block;
    min-height: 400px;
    width: 285px;
    vertical-align: top;
    box-sizing: border-box;
    background-color: #fff;
}
.catalogue-block__item:nth-child(4n) {
    margin-right: 0;
}

.catalogue-block__picture-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 249px;
}
.catalogue-block__img{
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.catalogue-block__picture {
    width: 100%;
    overflow: hidden;
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 10px;
    position: relative;
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.catalogue-block__description{
    padding: 20px;
}
.catalogue-block__discount {
    display: block;
    position: absolute;
    top: 10px;
    bottom: auto;
    left: 10px;
    right: auto;
    padding: 5px;
    background: var(--color-sub);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #09192b;
    border-radius: 4px;
    z-index: 7;
}
.catalogue-block__options{
    margin-bottom: 15px;
}
.catalogue-block__options-item {
    font-size: 12px;
    height: 20px;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}
.catalogue-block__options-item i{
    font-size: 5px;
    margin-right: 5px;
}
.catalogue-block__options-title {
    color: gray;
    font-size: 12px;
    font-weight: 500;
    margin-right: 5px;
}

.catalogue-block__title {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}
.catalogue-block__title-recovery {
    color: #818181;
    font-size: 12px;
    font-weight: 500;
}
.catalogue-block__price {
    display: flex;
    flex-direction: column;
}
.catalogue-block__options-value{
    font-weight: 600;
}
.catalogue-block__options-show-all{
    border-radius: 4px;
    background-color: #e5e5e5;
    padding: 2px 3px;
    font-size: 9px;
    cursor: pointer;
    margin-left: 5px;
    opacity: 0.7;
    transition: opacity 1ms;
    display: none;
}
.catalogue-block__options-show-all:hover {
    opacity: 1;
}
.catalogue-block__options-transmission{
    font-size: 12px;
    font-weight: 600;
}
.catalogue-block__options-all-transmission {
    background-color: rgba(0,0,0,0.7);
    position: absolute;
    z-index: 8;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: none;
}
.catalogue-block__options-all-transmission .catalogue-block__options-all-transmission__wrapper {
    padding: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    height: 75%;
    overflow: hidden;
    overflow-y: auto;

    scrollbar-arrow-color: #fff; /* Цвет стрелок */
    scrollbar-base-color: blue; /* Цвет полосы прокрутки */
}

.catalogue-block__options-all-transmission .catalogue-block__options-all-transmission__wrapper strong {
    font-weight: 700;
}
.catalogue-block__options-all-transmission button {
    float: right;
    margin-right: 10px;
    margin-top: 15px;
}
.catalogue-block__options-all-transmission button:after {
    content: '';
    display: block;
    clear: both;
}
.catalogue-block__price-item.-price-value {
   font-weight: 600;
   font-size: 24px;
}
.catalogue-block__price-item.-price-quantity .catalogue-item__buy {
    margin-bottom: 0 !important;
}
.catalogue-block__price-item.-price-button .catalogue-item__buy-button[disabled="true"]:before {
    width: 82px !important;
}
.catalogue-block__price-old{
    display: block;
    font-size: 14px;
    position: absolute;
    top: 20px;
}
.js-tip-filter .bx-filter-parameters-box-container {
    height: 160px;
}
.catalogue-block__price-old:after {
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    background: no-repeat center url('data:image/svg+xml;charset=US-ASCII,%0A<svg%20width%3D"491px"%20height%3D"125px"%20viewBox%3D"0%200%20100%25%20100%25"%20version%3D"1.1"%20xmlns%3D"http%3A//www.w3.org/2000/svg"%20xmlns%3Axlink%3D"http%3A//www.w3.org/1999/xlink">%0A%20%20%20%20<g%20fill%3D"none"%20fill-rule%3D"evenodd">%0A%20%20%20%20%20%20%20%20<path%20d%3D"M1.23046875%2C121.410156%20C122.764455%2C80.3998661%20212.227997%2C52.9779911%20269.621094%2C39.1445312%20C327.014191%2C25.3110714%20400.420441%2C13.476436%20489.839844%2C3.640625"%20stroke%3D"%23B80909"%20stroke-width%3D"16"%20/>%0A%20%20%20%20</g>%0A</svg>');
    background-size: 100% 100%;
    content: '';
}

.catalogue-header .catalogue-header__item.-car-brands {
    background-image: url('/img/car-brand.png');
}
.catalogue-filter__category{
    margin-bottom: 5px;
}
.catalogue-filter__category-reset {
    /* Style for "Сбросить" */
    color: #09192b;
    font-size: 10px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: underline;
    letter-spacing: 0.2px;
}
.catalogue-filter__category-filters-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    height: 16px;
    letter-spacing: 0.28px;
    padding: 2px 8px;
    background-color: var(--color-sub);
    color: white;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: var(--transition-ease);
}
.catalogue-filter__category-filters-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.catalogue-filter__category-filters-wrapper:last-child{
    margin-bottom: 0;
}
.catalogue-filter__category-filters-title{
    width: 115px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    display: none;
    margin-right: 5px;
    margin-bottom: 8px;
    background-color: gray;
}
.catalogue-filter__category-filters-item:hover {
    background-color: var(--color-dark);
}
.catalogue-item__diski-header {
    background-color: #f8f8f8;
}
.catalogue-item__diski-header:hover, .catalogue-item__diski-header.selected {
    background-color: var(--color-sub);
}
.catalogue-item__diski-header:hover a, .catalogue-item__diski-header.selected a{
    filter: invert(100%);
}
.catalogue-item__diski-header.selected a{
    background-image: url('/images/catalogue/table_arrow_up.png');
    filter: none !important;
    color: #fff !important;
}
.catalogue-item__diski-header a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.24px;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 5px 10px;
    background-repeat: no-repeat;
    background-image: url('/images/catalogue/table_arrow_down.png');
    background-position: 380px center;
}
.catalogue-items__table tr.selected {
    display: table-row !important;
}

.bx_filter_param_text {
    display: inline-block;
    line-height: 16px;
    padding: 5px 0;
    font-size: 14px;
    cursor: pointer;
}
.bx_filter_input_checkbox{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-avt{
    text-decoration: none;
}

.Click-here {
  cursor: pointer;
}

.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}
.custom-model-main:before {
  content: "";
  display: inline-block;
  height: auto;
  vertical-align: middle;
  margin-right: -0px;
  height: 100%;
}
.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 400px;
  margin: 30px auto;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}
.item-article{
    background-color: #e6e6e6; 
    padding: 0px 5px; 
    border-radius: 4px; 
    font-size: 10px; 
    display: inline-block; 
    margin-top: 5px;
}

.catalogue-analogs{
    background-color: #e6e6e6;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    display: block;
    width: fit-content;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    outline: transparent solid 1px;
    color: #09192b;
    padding: 2px 5px;
    margin-top: 5px;
    text-align: center;
}
.price-link{
    display: inline;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
    font-size: 14px;
}

.price-link .active{
    border-color: #09192b;
}

.price-link__item a{
    border: none;
    padding: 0;
}

.price-link__item{
    display: inline;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
}

.price-block__item{
    display: none;
}

.service-item-tip{
    display: block;
    color: #818181;
    font-size: 12px;
}

.price-block__item-price{
    font-size: 20px;
    font-weight: bold;
}

.catalogue-block__link{
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition-ease);
}
.catalogue-block__link:hover{
    color: var(--color-sub);
}
.table-desc{
    padding: 30px;
    border-radius: 4px;
    background-color: white;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    min-width: 450px;
    transform: translate(-50%, -50%);
}
.table-desc .fas, .catalogue-header__wrapper .fas{
    font-size: 20px;
    cursor: pointer;
    color: #09192b;
    transition: 0.8s;
}
.table-desc .fas:hover, .catalogue-header__wrapper .fas:hover{
    color: var(--color-sub);
}

.js-overflow{
    background-color: rgba(0,0,0,0.3);
}
.table-desc__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.table-desc__header-title{
    color: #09192b;
    font-size: 16px;
    font-weight: bold;

}
.table-desc__text{
    font-size: 14px;
}
.table-desc__link{
    display: block;
    font-size: 12px;
    text-decoration: none;
    background-color: #e6e6e6;
    padding: 2px 5px;
    margin-top: 5px;
    width: fit-content;
    border-radius: 4px;
}
.catalogue-block__options-item .table-desc__link{
    display: inline;
    font-size: 9px;
    margin: 0;
    padding: 2px 3px;
    opacity: 0.7;
}
.bx-button-row{
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.bx-filter-close{
    border-radius: 4px;
    background-color: #f0f1f2;
    padding: 5px 10px;
    color: #09192b;
    cursor: pointer;
    line-height: 14px;
    text-decoration: none;
    font-size: 14px;
}
.bx-filter-close:hover{
    font-weight: 600;
}
.catalogue-items__plates{
    width: auto;
}
.catalogue-items__plates-row{
    width: 1170px;
}
.catalogue-items__plates th:nth-child(7) {
    width: 104px;
}
.catalogue-items__top{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.catalogue-items__top-title{
    font-weight: bold;
    font-size: 14px;
    border-bottom: 3px solid var(--color-sub);
    width: max-content;
    margin-right: 15px;
}
.catalogue-items__top-text{
    color: gray;
    font-size: 12px;
    background-color: #eaeaea;
    padding: 5px 10px;
    border-radius: 4px;
    line-height: 10px;
    height: 10px;
}
.catalogue-sort{
    display: flex;
    font-size: 14px;
    margin-bottom: 10px;
}
.catalogue-sort__title{
    margin-right: 15px;
}
.catalogue-sort__item{
    font-size: 14px;
    margin-right: 15px;
    padding: 0 5px;
    border-radius: 4px;
    text-decoration: none;
}
.catalogue-sort__item:hover{
    background-color: var(--color-sub);
}
.catalogue-sort .-selected{
    background-color: var(--color-sub);
}
.catalogue-sort__item-ico{
    background-image: url(/img/sort-asc.svg);
    width: 13px;
    height: 10px;
    display: inline-block;
}
.catalogue-sort .-desc{
    background-image: url(/img/sort-desc.svg);
}
.modal-popup {
  background-color: rgba(0,0,0,.65);
  display: none;
  overflow: auto;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.transmission_categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.transmission_categories li {
    margin-right: 5px;
}
.transmission_categories li a:hover, 
.transmission_categories li a.selected {
    background: var(--color-sub);
}
.transmission_categories li a{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 400;
    color: #09192b;
    padding: 2px 20px;
    background-color: #eaeaea;
    line-height: 18px;
    margin: 3px 0;
    position: relative;
    z-index: 7;
    width: 190px;
    height: 39px;
    border-radius: 4px;
    transition: 0.8s;
}
.transmission_categories li:nth-child(5n){
    margin-right: 0;
}
.transmission-categories__all{
    width: 1170px !important;
    height: 19px !important;
    padding: 2px 0 !important;
}
.transmission_categories .selected a{
    background-color: var(--color-sub);
}
.form-analogs input, .form-analogs input:focus{
    font-size: 12px;
}
#sticky-wrapper.is-sticky .js-sticky {
    padding-top: 10px;
    background-color: #fff;
    width: 100%;
    padding-bottom: 1px;
    z-index: 994 !important; 
}
.catalogue-filter__category-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.catalogue-filter__category-title{
    display: block;
    text-transform: uppercase;
    color: gray;
    font-weight: 600;
}
.sale .catalogue-view{
    display: none;
}
.catalogue-items__hiddens{
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}
.catalogue-items__hiddens-text{
    color: gray;
    margin-bottom: 5px;
}
.catalogue-items__hiddens-button{
    padding: 2px 10px;
    background-color: #09192b;
    border-radius: 4px;
    color: #fff;
    width: fit-content;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.8s;
}
.catalogue-items__hiddens-button:hover{
    background-color: #2e4966;
}
.catalogue-items__hiddens-button i{
    margin-right: 5px;
}
.catalogue-table__pictures{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 75px;
    height: 75px;
}
.catalogue-table__pictures-sticker{
    width: 85px;
    height: 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    background-color: var(--color-sub);
    color: white;
    z-index: 12;
    top: 25px;
    opacity: 0.9;
}
.catalogue-table__pictures-label, .catalogue-block__picture-label{
    font-weight: 600;
    color: white;
}
.catalogue-block__picture-sticker{
    width: 140px;
    height: 24px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: var(--color-sub);
    z-index: 100;
    padding: 0 15px;
    bottom: 25px;
    left: 0;
}
.catalogue-block__picture-sticker i{
    margin-right: 15px;
}
.catalogue-filters{
    width: 270px;
    background-color: white;
    font-size: 12px;
    height: fit-content;
}
.catalogue-filters__header{
    padding: 10px;
    background-color: var(--color-dark);
    color: white;
    font-size: 12px;
    font-weight: 600;
}
.catalogue-filters__body{
    padding: 10px;
}
.catalogue-filters__item{
    margin-bottom: 10px;
}
.catalogue-filters__item-title{
    display: block;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}
.catalogue-item__analogs, .catalogue-items__table .notify-gray {
    display: block;
    text-decoration: none;
    font-size: 12px;
    background-color: var(--color-gray);
    padding: 5px 10px;
    width: fit-content;
    margin-top: 5px;
    cursor: pointer;
    transition: var(--transition-ease);
}
.catalogue-item__analogs:hover, .catalogue-items__table .notify-gray:hover{
    background-color: var(--color-sub);
    color: white;
}
.catalogue-item__price{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.catalogue-login{
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    background-color: var(--color-sub);
    font-weight: 600;
    color: white;
    width: fit-content;
    transition: var(--transition-ease);
    margin-top: 15px;
    font-size: 12px;
}
.catalogue-login.-table{
    padding: 5px 10px;
    margin: 0;
    width: auto;
    text-align: center;
}
.catalogue-login.-big{
    height: 40px;
    width: 300px;
    font-weight: 600;
    font-size: 16px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}
.catalogue-login:hover{
    background-color: var(--color-green);
}
.trans-info a{
    display: block;
    text-decoration: none;
    font-size: 12px;
    background-color: var(--color-gray);
    padding: 5px 10px;
    width: fit-content;
    margin-top: 5px;
    cursor: pointer;
    transition: var(--transition-ease);
}
.trans-info a:hover{
    color: white;
    background-color: var(--color-sub);
}
.catalogue-dropdown__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    border: 1px solid #eaeaea;
    border-bottom: none;
    padding: 5px 15px;
    cursor: pointer;
}
.catalogue-dropdown__header:hover{
    background-color: var(--color-dark);
    color: white;
}
.catalogue-dropdown__header.-active{
    background-color: var(--color-sub);
    color: white;
    border: none;
}
.catalogue-tiles{
    display: flex;
    margin-bottom: 20px;
}
.catalogue-tile{
    background-color: #fff;
    width: 120px;
    height: 100px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
}
.catalogue-tile:last-child{
    margin-right: 0;
}
.catalogue-tile:hover, .catalogue-tile.-active{
/*    transform: scale(0.99);*/
    border: 1px solid var(--color-sub);
}
.catalogue-items-empty{
    background-color: white;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
}
.catalogue-items-empty__window{
    max-width: 300px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    
}
.catalogue-items-empty__window-text{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.catalogue-items-empty__window-link{
    display: block;
    font-size: 12px;
}
.catalogue-car{
    padding: 20px;
    margin-bottom: 20px;
    background-color: white;
    display: flex;
    align-items: center;
}
.cataligue-car__column{
    margin-right: 15px;
    border-right: 1px solid var(--color-gray);
    padding-right: 15px;
}
.cataligue-car__column:last-child{
    margin-right: 0;
    border: none;
    margin-left: auto;
}
.cataligue-car__column-link{
    font-size: 12px;
}
.catalogue-items .catalogue-block__item{
    width: 217px;
}
.catalogue-items .catalogue-block__img{
    width: 150px;
    height: 150px;
}
.catalogue-items .catalogue-block__picture{
    padding: 15px 0;
    margin-bottom: 0;
}
.catalogue-items .catalogue-block__description{
    padding: 15px;
}
.catalogue-items .catalogue-block__options-title{
    font-size: 10px;
}
.catalogue-items .catalogue-block__options-value {
    height: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.catalogue-items .catalogue-item__count-btn{
    width: 25px;
    height: 25px;
}
.catalogue-items .catalogue-items__blocks .catalogue-item__buy-input{
    width: 20px;
}
.catalogue-items .catalogue-block__title{
    min-height: 30px;
}
.catalogue-block__price-wrapper{
    justify-content: space-between;
}
.product-price-tip{
    font-size: 12px;
    color: gray;
    margin-bottom: 15px;
}