

/* Start:/local/templates/rais/css/catalog.css?177874779026162*/
.catalog {
  overflow-x: hidden;
}
/* Фильтры, категории, изменение вида */
.toolbar {
    position: sticky;
    top: 0;
    display: grid;
    align-items: end;
    grid-template-columns: 1fr 50% 1fr;
    background: #FFFEF9;
    border-bottom: 1px solid rgba(181, 169, 157, 0.8);
    padding: 30px 20px 0;
    z-index: 11;
}
.filters {
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.filters__btn {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.filters__label--mobile {
    display: none;
}
/* Окошко с фильтрами */
.filters-drawer {
    width: 730px;
    position: absolute;
    top: 38px;
    display: flex;
    flex-direction: column;
    background: #FFFFFE;
    padding: 35px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.15);
    z-index: 2;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    box-sizing: border-box;
    transition: all .4s ease;
    overflow: hidden;
}
.filters-drawer--active {
    opacity: 1;
    transform: translate(0) !important;
    pointer-events: all;
}
.filters-drawer__header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}
.filters-drawer__title {
    font-size: 16px;
    font-weight: 400;
}
.filters-drawer__close {
    cursor: pointer;
}
.filters-drawer__properties {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
}
.filters-drawer__footer {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    min-width: 0;
    width: 100%;
}
.filters-drawer__buttons {
    width: 100%;
    display: flex;
    gap: 10px;
    box-sizing: border-box;
}
.filters-drawer__buttons--mobile {
    display: none;
}
.filters-drawer__button {
        display: block;
    flex: 1;
    max-width: 200px;
    height: 40px;
    position: relative;
    color: #FFFFFE;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    background: #281D18;
    border: 1px solid #281D18;
    cursor: pointer;
}
.filters-drawer__button > a{
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.filters-drawer__button--reset {
    color: #281D18;
    background: #FFFFFE;
}
.filters-drawer__button:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFFFE;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}
.filters-drawer__button--reset:after {
    background: #281D18;
}
.filters-drawer__button span {
    position: relative;
    z-index: 1;
    transition: all .4s ease;
}
.filters-drawer__button:hover:after {
    transform: scaleX(1);
}
.filters-drawer__button:hover span {
    color: #281D18;
}
.filters-drawer__button--reset:hover span {
    color: #FFFFFE;
}
/* В окошке с фильтрами стили для категорий */
.property {
    width: 100%;
    min-width: 235px;
    box-sizing: border-box;
}
.property--categories {
    display: none;
}
.property__label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.property__label svg {
    display: none;
}
.property__options {
    max-height: 150px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px 60px;
    text-transform: none;
    padding-top: 0;
}
.property__option {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.property__option input {
    display: none;
}
.property__option input:checked ~ .property__custom-checkbox:after {
    opacity: 1;
}
.property__option input:checked ~ .property__custom-checkbox {
    background: #281D18 !important;
}
.property__option:hover .property__custom-checkbox {
    /* background: #E9E9E9; */
}
.property__custom-checkbox {
    width: 20px;
    height: 20px;
    position: relative;
    color: #FFFFFE;
    border: 1px solid #AAAAAA;
    transition: all .4s ease;
}
.bx-active > .property__custom-checkbox{
    background: black;
}
.bx-active > .property__custom-checkbox:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    color: #FFFEF9;
    font-size: 14px;
    /* opacity: 0; */
    line-height: 1;
    transition: all .4s ease;
}
.property__option-title--sale {
    color: #AD0101;
    text-transform: uppercase;
}
/* В окошке с фильтрами стили для цены */
.price {
    max-width: 235px;
}
.price__title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.price__range {
    display: flex;
    align-items: center;
    gap: 8px;
}
.price__input {
    width: 100%;
    height: 40px;
    border: 1px solid #AAAAAA;
    border-radius: 6px;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}
.price__input::placeholder {
    color: #AAAAAA;
}
/* Категории (слайдер) */
.categories {
	position: relative;
    visibility: hidden;
    transition: opacity 0.15s ease;
    opacity: 0;
}

.categories.is-visible {
    visibility: visible;
    opacity: 1;
}
.categories__slider  {
    padding-bottom: 20px;
}
.categories__prev, .categories__next {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .4s ease;
}
.toolbar--stuck .categories__prev,
.toolbar--stuck .categories__next {
  top: auto;
  bottom: 15px;
  transform: none;
}
.categories__prev.swiper-button-disabled, .categories__next.swiper-button-disabled {
    opacity: 0.5;
}
.categories__prev {
    left: -30px;
}
.categories__next {
    right: -30px;
}
.categories__item {
    position: relative;
}
.categories__item:after {
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -20px;
    background-color: #281D18;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}
.categories__item--active:after, .categories__item:hover:after {
    transform: scaleX(1);
}
.category {
    display: block;
    color: #281D18;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}
.category:hover .category__photo img {
    transform: scale(1.1);
}
.category__photo {
    max-width: 220px;
    aspect-ratio: 0.75;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F3EFE4;
    border-radius: 8px;
    margin: 0 auto 15px;
    overflow: hidden;
}
.category__photo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all .4s ease;
}
.category__photo--all img {
    max-width: 70%;
}
/* Правая часть в шапке с сортировкой и вариантами отображения */
.toolbar__sort-and-views {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 30px;
    padding-bottom: 20px;
}
/* Сортировка */
.sort {
    position: relative;
}
.sort__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
/* Выпадающее окошко с сортировкой */
.sort-drawer {
    width: max-content;
    position: absolute;
    top: 38px;
    background: #FFFFFE;
    padding: 35px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all .4s ease;
}
.sort-drawer--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.sort-drawer-mobile {
    display: none;
    text-transform: none;
    padding: 20px;
    padding-top: 0;
}
.sort-drawer__label {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
}
.sort-drawer__options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.sort-drawer__option {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    cursor: pointer;
}
.sort-drawer__option:hover .sort-drawer__custom-radio {
    background: rgba(40,29,24,0.1);
}
.sort-drawer__option input {
    display: none;
}
.sort-drawer__option input:checked ~ .sort-drawer__custom-radio {
    background: #281D18;
}
.sort-drawer__option input:checked ~ .sort-drawer__custom-radio svg {
    opacity: 1;
}
.sort-drawer__custom-radio {
    width: 18px;
    height: 18px;
    position: relative;
    border: 1px solid #AAAAAA;
    border-radius: 50%;
    transition: all .4s ease;
}
.sort-drawer__custom-radio svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.sort-drawer__submit {
    width: 100%;
    height: 40px;
    position: relative;
    color: #281D18;
    font-size: 14px;
    text-transform: uppercase;
    background: #FFFFFF;
    border: 1px solid #281D18;
    cursor: pointer;
}
.sort-drawer__submit:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #281D18;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}
.sort-drawer__submit span {
    position: relative;
    z-index: 1;
    transition: all .4s ease;
}
.sort-drawer__submit:hover:after {
    transform: scaleX(1);
}
.sort-drawer__submit:hover span {
    color: #FFFFFF;
}
/* Варианты отображения */
.views {
    justify-self: flex-end;
    display: flex;
    gap: 25px;
}
.views__option {
    cursor: pointer;
}
.views__option rect {
    fill: transparent;
    transition: all .4s ease;
}
.views__option--active rect {
    fill: #281D18;
}
/* Карточки с товарами */
.products {
    background: #FFFEF9;
    padding: 40px 0 80px 0;
}
.products__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin: 0 20px 40px;
}
.products__title {
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}
.products__desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(40, 29, 24, 0.7);
    max-width: 520px;
    margin: 0;
}
.products__cards {
    display: grid;
    gap: 30px 20px;
    margin-bottom: 40px;
    overflow: hidden;
}
.products__cards [data-entity="items-row"] {
    display: contents;
}
.products__cards--grid {
  grid-template-columns: repeat(10, 1fr);
}
.products__cards--grid .card {
    grid-column: span 2;
}
/*.products__cards--grid [data-entity="items-row"]:nth-child(12n + 6) .card {
    grid-column: 2 / 6;
    grid-row: span 2;
}
.products__cards--grid [data-entity="items-row"]:nth-child(12n + 7) .card {
    grid-column: 6 / 10;
    grid-row: span 2;
}*/
.products__cards--list {
  grid-template-columns: repeat(2, 1fr);
}
.products__cards--tiles {
  grid-template-columns: repeat(4, 1fr);
}
.products__add-more {
    width: 295px;
    height: 45px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    background: none;
    border: 1px solid #281D18;
    margin: 0 auto;
    cursor: pointer;
}
.products__add-more:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #281D18;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}
.products__add-more span {
    position: relative;
    color: #281D18;
    z-index: 1;
    transition: all .4s ease;
}
.products__add-more:hover:after {
    transform: scaleX(1);
}
.products__add-more:hover span {
    color: #FFFEF9;
}
/* Карточка товара (миниатюра) */
.card {
    flex: 1;
    color: #281D18;
    text-decoration: none;
}
.card:hover .card__photo img {
    transform: scale(1.1);
}
.card__photo {
    position: relative;
    aspect-ratio: 0.65;
    background: #F3EFE4;
    overflow: hidden;
    transition: all .4s ease;
}
.card__photo a {
    display: block;
    width: 100%;
    height: 100%;
}
.card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}
.card__tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card__tag {
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background: #DCCDB0;
    border-radius: 3px;
    padding: 9px 20px;
    box-sizing: border-box;
}
.card__badge {
    height: 35px;
    position: absolute;
    left: 15px;
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F3EFE4;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(40,29,24,0.3);
    border-radius: 3px;
    padding: 9px 15px;
    box-sizing: border-box;
}
.card__favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
}
.card__favorite path {
    fill: transparent;
    transition: all .4s ease;
}
.card__favorite:hover path{
    fill: #281D18;
}
.card__add-to-cart {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all .4s ease;
}
.card__add-to-cart:hover {
    transform: scale(1.1);
}
.card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
}
.card__title {
    font-weight: 600;
    text-transform: uppercase;
}
.card__colors {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card__color {
    width: 24px;
    height: 24px;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
}
.card__color:after {
    content: '';
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    border-radius: 50%;
}
.card__color--active:after {
    border: 1px solid #D9D9D9;
}
.card__colors-more {
    font-size: 14px;
    font-weight: 500;
    margin-left: 2px;
}
@media (max-width: 1440px) {
	.category__photo img {
		max-height: 140px;
	}
}
@media (max-width: 1260px) {
    /* Фильтры, категории, изменение вида */
    .toolbar {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 45px;
        gap: 25px 0;
    }
    .categories {
        grid-column: span 2;
        grid-row: 1;
    }
    .categories__prev, .categories__next {
        display: none;
    }
}
@media (max-width: 1024px) {
    .toolbar {
        padding: 75px 0 25px;
    }
    .category__photo {
        display: none;
    }
    /* Карточки с товарами */
    .products__cards--grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products__cards--grid .card {
        grid-column: span 1;
    }
    .products__cards--grid [data-entity="items-row"]:nth-child(12n + 6) .card {
        grid-column: span 1;
        grid-row: span 1;
    }
    .products__cards--grid [data-entity="items-row"]:nth-child(12n + 7) .card {
        grid-column: span 1;
        grid-row: span 1;
    }
    .products__cards--grid [data-entity="items-row"]:nth-child(6n + 3) .card{
        grid-column:  span 2;
        grid-row: span 1;
		display: flex;
		justify-content: center;
    }
    .products__cards--grid [data-entity="items-row"]:nth-child(6n + 4) .card{
        grid-column:  span 2;
        grid-row: span 1;
		display: flex;
		justify-content: center;
    }
    .products__cards--list {
        grid-template-columns: repeat(1, 1fr);
    }
    .products__cards--tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Фильтры, категории, изменение вида */
    .toolbar {
        padding: 35px 0 25px;
        font-size: 12px;
    }
    .filters {
        position: static;
        font-size: 12px;
        padding-bottom: 0;
        padding-left: 15px;
    }
    .filters__btn {
        gap: 5px;
    }
    .filters svg {
        width: 21px;
        height: auto;
    }
    .filters__label--desktop {
        display: none;
    }
    .filters__label--mobile {
        display: block;
    }
    /* Окошко с фильтрами */
    .filters-drawer {
        width: 100%;
        height: calc(100vh - 100px);
        top: 0;
        left: 0;
        padding: 0;
        padding-top: 20px;
        overflow-y: auto;
        scrollbar-width: thin;
    }
    .filters-drawer__header {
        display: flex;
    }
    .filters-drawer__properties {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
    }
    .filters-drawer__footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .filters-drawer__buttons {
        width: 100%;
        position: sticky;
        bottom: 0;
        justify-content: center;
        gap: 10px;
        background: #FFFFFF;
        box-shadow: 0 -4px 30px 0 rgba(0, 0, 0, 0.1);
        padding: 20px 15px;
        margin-top: 30px;
    }
    .filters-drawer__buttons--desktop {
        display: none;
    }
    .filters-drawer__buttons--mobile {
        display: flex;
    }
    .filters-drawer__button {
        height: 45px;
        font-size: 12px;
    }
    /* В окошке с фильтрами стили для категорий */
    .property {
        min-width: 0;
        border-top: 1px solid rgba(40,29,24,0.1);
        padding: 15px 20px;
    }
    .property--active .property__label svg {
        transform: rotate(-90deg);
    }
    .property--categories {
        display: block;
    }
    .property__label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        cursor: pointer;
    }
    .property__label svg {
        display: block;
        width: 15px;
        height: auto;
        transition: all .4s ease;
    }
    .property__options {
        max-height: 0;
        flex-wrap: nowrap;
        gap: 15px;
        overflow: hidden;
        transition: all .4s ease;
    }
    /* В окошке с фильтрами стили для цены */
    .price {
        max-width: 100%;
        padding: 0 20px;
    }
    .price__title {
        margin-bottom: 15px;
    }
    .price__range {
        gap: 12px;
    }
    .price__input {
        padding: 15px;
    }
    /* Категории (слайдер) */
    .categories__slider  {
        padding: 0 15px 10px;
    }
    .categories__item {
        width: max-content;
    }
    .categories__item:after {
        bottom: -10px;
    }
    .category {
        width: max-content;
        white-space: nowrap;
    }
    /* Правая часть в шапке с сортировкой и вариантами отображения */
    .toolbar__sort-and-views {
        padding-bottom: 0;
    }
    /* Сортировка */
    .sort {
        display: none;
    }
    /* Выпадающее окошко с сортировкой (оно уже не выпадающее, а идет в комплекте с фильтрами) */
    .sort-drawer-mobile {
        display: block;
    }
    .sort-drawer__options {
        margin-bottom: 20px;
    }
    .sort-drawer__custom-radio svg {
        width: 10px;
        height: auto;
    }
    /* Варианты отображения */
    .views {
        padding-right: 15px;
    }
    .views svg {
        width: 18px;
        height: auto;
    }
    .views__option:nth-child(2) {
        transform: rotate(90deg);
    }
    /* Карточки с товарами */
    .products {
        padding: 35px 15px 60px;
    }
	.products__header {
        gap: 12px;
        margin: 0 0 30px;
    }
    .products__desc {
        font-size: 13px;
        max-width: 100%;
    }
    .products__title {
        font-size: 16px;
        margin-left: 0;
        margin-bottom: 5px;
    }
    .products__cards {
        gap: 20px 10px;
        margin-bottom: 35px;
    }
    .products__add-more {
        width: 210px;
        height: 40px;
        font-size: 12px;
    }
    .card {
        flex: 1;
        color: #281D18;
        text-decoration: none;
    }
    .card:hover .card__photo img {
        transform: scale(1.1);
    }
    .card__photo {
        position: relative;
        aspect-ratio: 0.65;
        background: #F3EFE4;
        transition: all .4s ease;
    }
    .card__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .4s ease;
    }
    .card__tag {
        height: 20px;
        top: 10px;
        left: 10px;
        font-size: 10px;
        border-radius: 1.7px;
        padding: 4px 10px;
    }
    .card__badge {
        height: 20px;
        left: 10px;
        bottom: 10px;
        font-size: 10px;
        border-radius: 1.7px;
        padding: 4px 10px;
    }
    .card__favorite {
        top: 10px;
        right: 10px;
    }
    .card__favorite svg {
        width: 22px;
        height: auto;
    }
    .card__add-to-cart {
        right: 10px;
        bottom: 10px;
    }
    .card__add-to-cart svg {
        width: 35px;
        height: auto;
    }
    .card__content {
        gap: 2px;
        font-size: 12px;
        padding: 8px 5px;
    }
    .card__colors {
        gap: 10px;
        margin-top: 6px;
    }
    .card__color {
        width: 24px;
        height: 24px;
    }
    .card__color:after {
        width: 27px;
        height: 27px;
    }
    .card__colors-more {
        font-size: 10px;
        font-weight: 400;
        margin-left: -5px;
    }
}
.product-item-scu-item-color-container.notallowed .card__color:after{
	position: absolute;
	background: rgba(255, 255, 255, 0.8) url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4gIDxwYXRoIGZpbGw9IiNBOUFEQjQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE0LjM5MjEyNjgsMTMuMjMyMzAyOSBMMjUuOTkyLDEuNDE4IEwyNC42LDAgTDEyLjk5OTk5NTYsMTEuODE0NDM2NCBMMS40LDAgTDAuMDA5LDEuNDE5IEwxMS42MDc4Njg3LDEzLjIzMjI5NzUgTDAuNDczLDI0LjU3MyBMMS44NjUsMjUuOTkxIEwxMi45OTk5OTkzLDE0LjY1MDE2NDUgTDI0LjEzNCwyNS45OSBMMjUuNTI2LDI0LjU3MiBMMTQuMzkyMTI2OCwxMy4yMzIzMDI5IFoiLz48L3N2Zz4=) no-repeat center;
	background-size: 60% 60%;
	content: "";
} 
.product-item-scu-item-text-block{
    position: relative;
}
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block:after, .product-item-scu-item-text-container.notallowed .product__sizes-option:after {
	position: absolute;
	     top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
	background: rgba(255, 255, 255, 0.8) ;
	background-size: 60% 60%;
	content: "";
}


/* Кнопка предзаказа в карточке */
.card__preorder-btn {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    color: #FFFEF9;
    background: #281D18;
    border: 1px solid #281D18;
    cursor: pointer;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}
.card__preorder-btn:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFEF9;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}
.card__preorder-btn span {
    position: relative;
    z-index: 1;
    transition: all .4s ease;
}
.card__preorder-btn:hover:after {
    transform: scaleX(1);
}
.card__preorder-btn:hover span {
    color: #281D18;
}

/* Попап предзаказа в каталоге */
.preorder-popup[id^="preorder-card-"] {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.preorder-popup[id^="preorder-card-"].preorder-popup--active {
    display: flex;
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 29, 24, 0.5);
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__inner {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #FFFEF9;
    padding: 50px 40px 40px;
    box-sizing: border-box;
    z-index: 1;
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.7;
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__input {
    width: 100%;
    height: 45px;
    border: 1px solid #AAAAAA;
    outline: none;
    padding: 0 15px;
    font-size: 14px;
    box-sizing: border-box;
    background: #FFFEF9;
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__input::placeholder { color: #AAAAAA; }
.preorder-popup[id^="preorder-card-"] .preorder-popup__error {
    color: #AD0101;
    font-size: 13px;
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__submit {
    width: 100%;
    height: 45px;
    background: #281D18;
    color: #FFFEF9;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}
.preorder-popup[id^="preorder-card-"] .preorder-popup__success {
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
}
@media (max-width: 768px) {
    .preorder-popup[id^="preorder-card-"] .preorder-popup__inner {
        max-width: 100%;
        margin: 0 15px;
        padding: 40px 25px 30px;
    }
}

/* End */


/* Start:/local/templates/rais/components/bitrix/catalog.smart.filter/main/style.min.css?176397364314273*/
.bx-filter{width:100%;min-width:220px;font-family:var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-regular,400);margin-bottom:20px}.bx-filter .bx-filter-section{position:relative;padding-top:26px}.bx-filter .bx-filter-section>.row{padding:0 5px}.bx-filter .bx-filter-title{font-size:18px;margin-bottom:10px;color:#000}.bx-filter .bx-filter-parameters-box{position:relative}.bx-filter .bx-filter-parameters-box-title{font-size:13px;padding-bottom:7px}@media(min-width:992px){.bx-filter .bx-filter-section .col-md-4:nth-child(3n+1){clear:both}}@media(min-width:768px) and (max-width:991px){.bx-filter .bx-filter-section .col-md-4:nth-child(2n+1){clear:both}}.bx-filter .bx-filter-parameters-box-title span{color:#039be5;border-bottom:1px solid transparent;cursor:pointer}.bx-filter .bx-filter-parameters-box-title span:hover{border-color:#039be5}.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-parameters-box-title span:hover{border-color:transparent}.bx-filter .bx-filter-block{display:none;-webkit-transition:padding .3s ease;-moz-transition:padding .3s ease;-ms-transition:padding .3s ease;-o-transition:padding .3s ease;transition:padding .3s ease;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.bx-filter .bx-filter-button-box .bx-filter-block,.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block{display:block}.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block i.bx-ft-sub{font-size:14px;font-style:normal;display:block;padding-bottom:5px}.bx-filter-parameters-box-container{padding-bottom:20px}.bx-filter-parameters-box-container .checkbox:first-child{margin-top:0}.bx-filter .bx-filter-parameters-box-container-block{font-size:11px;color:#3f3f3f}.bx-filter .bx-filter-input-container input{display:block;width:100%;font-size:18px;height:38px;margin:0;padding:0 4px;border:1px solid #ccd5db;border-radius:2px;background:#fff;outline:0}.bx-retina .bx-filter .bx-filter-input-container input{border-style:solid;border-width:1px;-webkit-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat;-moz-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat;-o-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat;border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat}.bx-ios .bx-filter .bx-filter-input-container input{background-image:-webkit-linear-gradient(#fff 0,#fff 100%);background-image:linear-gradient(#fff 0,#fff 100%)}.bx-filter .bx-filter-button-box{clear:both}.bx-filter .bx-ui-slider-track-container{padding-top:35px;padding-bottom:25px}.bx-filter .bx-ui-slider-track{position:relative;height:7px}.bx-filter .bx-ui-slider-part{position:absolute;top:-6px;width:1px;height:17px;background:#a2bfc7}.bx-filter .bx-ui-slider-part.p1{left:-1px}.bx-filter .bx-ui-slider-part.p2{left:25%}.bx-filter .bx-ui-slider-part.p3{left:50%}.bx-filter .bx-ui-slider-part.p4{left:75%}.bx-filter .bx-ui-slider-part.p5{right:-1px}.bx-filter .bx-ui-slider-part span{font-size:11px;position:absolute;top:-16px;left:50%;display:block;width:100px;margin-left:-50px;text-align:center;color:#000}.bx-filter .bx-ui-slider-part.p2 span,.bx-filter .bx-ui-slider-part.p3 span,.bx-filter .bx-ui-slider-part.p4 span{color:#6b8086}.bx-filter .bx-ui-slider-range,.bx-filter .bx-ui-slider-pricebar,.bx-filter .bx-ui-slider-pricebar-vd,.bx-filter .bx-ui-slider-pricebar-vn,.bx-filter .bx-ui-slider-pricebar-v{position:absolute;top:0;bottom:0}.bx-filter .bx-ui-slider-range{z-index:50}.bx-filter .bx-ui-slider-pricebar{z-index:100}.bx-filter .bx-ui-slider-pricebar-vd{z-index:60}.bx-filter .bx-ui-slider-pricebar-vn{z-index:70}.bx-filter .bx-ui-slider-pricebar-v{z-index:80}.bx-filter .bx-ui-slider-handle{position:absolute;top:100%;width:22px;height:22px;border-bottom:0}.bx-filter .bx-ui-slider-handle:hover{-webkit-cursor:grab;-ms-cursor:grab;-o-cursor:grab;cursor:grab}.bx-filter .bx-ui-slider-handle:active{-webkit-cursor:grabbing;-ms-cursor:grabbing;-o-cursor:grabbing;cursor:grabbing}.bx-filter .bx-ui-slider-handle.left{left:0;margin-left:-21px;	/* COLOR */
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAArUlEQVQ4y6WSQQ6FMAhEXbjyXwzOpBdx5bXKbYRWLFSJ2m8ysVHfzGA7DH9cuKVfNwwM40ZzZzJlmE3WTjjNfF9Fn2EwMH5pUGYWOJ3w6wZ4wDKz6rUBumQPPxrUmT0IxuxpqxYLQ7MOG5TaHtbk1iza5+VauW5dfdcYSDKcMLkP7wxdA5sMQWV/BkwDTY7mtAfHjpJ/Ihj4DoIgXZ9J+siaimi6rimLgSw87qod+1BRTwMJRYoAAAAASUVORK5CIIA=) no-repeat right top;*/}.bx-filter .bx-ui-slider-handle.right{right:0;margin-right:-21px;	/* COLOR */
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAq0lEQVQ4y6WSQRKDIAxFXXSlF0vOZC+SlddKblMUUhKCraIzX9Ahj58PE268TE8e3GSFJ5BUTDskaRl1QFk8BsHs4BCMQMruVEe+l4kWglFu5yLEZKDFXyeXIFoEpg3z738mJTzXhncj75+QtqjnJENO2sG4I1VXDtR3ogv7O1dHxV10gi75EGILiE78RRKy33AOq07i+Us4kRamkOPGptesQjeXIjZjO+fXB+hjUU/S3Z+WAAAAAElFTkSuQmCC) no-repeat left top;*/}.bx-filter .bx-filter-select-container{display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;height:35px;border-radius:3px;border:1px solid #ccd5db}.bx-retina .bx-filter .bx-filter-select-container{border-style:solid;border-width:1px;-webkit-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat;-moz-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat;-o-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat;border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat}.bx-filter .bx-filter-select-block{position:relative;display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;height:33px;margin:0;padding:0 33px 0 10px;border:0;border-radius:2px;background:#fff}.bx-filter .bx-filter-select-text{font-size:15px;line-height:33px;overflow:hidden;max-width:100%;height:33px;cursor:pointer;vertical-align:middle;white-space:nowrap;text-overflow:ellipsis;-ms-text-overflow:ellipsis}.bx-filter .bx-filter-select-text.fix{min-width:120px}.bx-filter .bx-filter-select-text label{cursor:pointer}.bx-filter .bx-filter-select-arrow{position:absolute;top:0;right:0;width:34px;height:33px;cursor:pointer;	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAYAAABCxiV9AAAAG0lEQVQY02OYOXPmf1yYAQRwSsAATglkBch8ADy7LKHqFrgoAAAAAElFTkSuQmCC') no-repeat center;}.bx-filter-select-popup{background:#fff;padding:0;min-width:173px}.bx-filter-select-popup ul{margin:0;padding:0;list-style:none}.bx-filter-select-popup ul li{display:block;text-align:left;vertical-align:middle}.bx-filter-select-popup ul li:first-child{border-bottom:1px solid #e5e5e5;padding-bottom:5px;margin-bottom:5px}.bx-filter-select-popup ul li label{font-size:14px;line-height:26px;display:block;text-align:left !important;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;height:26px;padding:0 5px;cursor:pointer;vertical-align:middle;white-space:nowrap;text-overflow:ellipsis;-ms-text-overflow:ellipsis;color:#575757}.bx-filter-select-popup ul li label.selected,.bx-filter-select-popup ul li label:hover{color:#000;background:#f3f8fa}.bx-filter-select-popup ul li label.disabled{color:#b8b8b8;background:transparent}.bx-filter-select-popup ul li .bx-filter-param-text{line-height:34px !important}.bx-filter .bx-filter-tag{padding:18px}.bx-filter .bx-tag-link{font-size:12px;text-decoration:none;text-shadow:none}.bx-filter .bx-tag-link.bx-active,.bx-filter .bx-tag-link:hover{color:#1d3d46}.bx-filter .bx-filter-param-label{min-height:20px;font-weight:normal;cursor:pointer}.bx-filter .bx-filter-param-btn-inline .bx-filter-param-label{float:left;display:block;margin-right:5px}.bx-filter .bx-filter-param-btn-block .bx-filter-param-label{display:block}.bx-filter .bx-filter-param-label.dib{display:inline-block}.bx-filter .bx-filter-param-text{font-weight:normal}.bx-filter .bx-filter-param-label.disabled .bx-filter-param-text{color:#6c6c6c}.bx-filter-select-popup .bx-filter-param-label.bx-active{background:#f3f8fa}.bx-filter .bx-filter-input-checkbox .bx-filter-param-text{display:block;text-align:left}.bx-filter .bx-filter-param-btn{font-weight:normal;display:inline-block;width:38px;height:38px;padding:6px;text-align:center;text-decoration:none;color:#000;vertical-align:middle;border:1px solid #ccd5db;border-radius:2px;background:#fff;position:relative;-webkit-transition:border .3s ease,box-shadow .1s ease,color .3s ease;-moz-transition:border .3s ease,box-shadow .1s ease,color .3s ease;-ms-transition:border .3s ease,box-shadow .1s ease,color .3s ease;-o-transition:border .3s ease,box-shadow .1s ease,color .3s ease;transition:border .3s ease,box-shadow .1s ease,color .3s ease;cursor:pointer}.bx-retina .bx-filter .bx-filter-param-btn{border-style:solid;border-width:1px;-webkit-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat;-moz-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat;-o-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat;border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/border_default.png) 2 repeat}.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl{background:transparent;box-shadow:none}.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl{position:relative}.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl:before{position:absolute;bottom:0;right:0;top:0;left:0;content:' ';display:block;z-index:100;	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAA/UlEQVQ4y5WSQQ6CQAxFOSBuwAtoAitc4R6MkKgYJULUi8Ax4DgKm9o/45BxBBNJmkB/33T6qUVEHkfDUXHY1sQD7V2DWg+JJox3lOZ3enYdf5IzAjnQkvxGa64Fg2S9PV3JXa4ozoovWEGbY0nOIqDkfIVeQ5hBAOQsAy5guO8FbEJxVqqDZ+rUuQ6rziJ3VLkBcs05BBxlF1nIADrJESYgE0YhAER0KH5DphEKFDNPuG1AhTAi4jnRWV17FNYhcT3NHLzLzuUnjI0YHP203EWY8ENqNsAq5Y3Qf4NuhIT7wTBsDxgIbRjvCfCUe6ozoFCuXIukj5c/lhy1/gvSDM3b8PrjegAAAABJRU5ErkJggg==") no-repeat center; opacity:.7}.bx-filter .bx-filter-param-btn .bx-filter-param-text{line-height:26px}.bx-filter .bx-filter-param-btn.bx-spm{width:23px;min-width:23px;height:23px;line-height:23px;font-weight:normal;padding:0;font-size:17px;color:#767b7e;vertical-align:top;border-radius:50%;background-color:transparent;}
.bx-filter .bx-filter-param-btn.bx-spm.bx-plus {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAANUlEQVQoz2NgwAQsQMzJQCSwAeKGQa7YFKoAhmOgim3QsAxIcSFUkhC2GaqhgQ4UgNgFmwQAij8OUFmBFssAAAAASUVORK5CIIA=") no-repeat center; }
.bx-filter .bx-filter-param-btn.bx-spm.bx-minus {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAAG0lEQVQYV2NgYGDgBuI4AlgGiBn4gLicAFYGAAFkBwE95V42AAAAAElFTkSuQmCC") no-repeat center;}.bx-filter .bx-filter-param-btn.bx-spm:active{outline:none !important;box-shadow:inset 0 2px 3px rgba(0,0,0,.12)}.bx-filter span.bx-spm{font-size:18px;line-height:23px;display:inline-block;height:23px;margin:0 10px;vertical-align:middle;color:#000}.bx-filter-select-popup .bx-filter-select-text-icon,.bx-filter .bx-filter-select-text-icon{line-height:33px;position:relative;display:inline-block;width:23px;height:23px;margin-top:-4px;margin-right:2px;vertical-align:middle;border-radius:2px}.bx-filter-select-popup .bx-filter-btn-color-icon,.bx-filter .bx-filter-btn-color-icon{line-height:24px;border-radius:2px;display:inline-block;width:24px;height:24px;vertical-align:middle;box-shadow:inset 0 0 0 1px rgba(0,0,0,.05);-webkit-background-size:cover;background-size:cover}.bx-filter-select-popup .bx-filter-btn-color-icon{width:20px;height:20px;margin:2px 0;top:0 !important}.bx-filter .bx-filter-select-block .bx-filter-btn-color-icon{top:-1px !important}.bx-filter-btn-color-icon.all{position:relative;border:0;box-shadow:none}.bx-filter-btn-color-icon.all:after,.bx-filter-btn-color-icon.all:before{position:absolute;width:60%;height:60%;background:#fff;content:" ";box-shadow:inset 0 0 0 1px rgba(0,0,0,.2)}.bx-filter-btn-color-icon.all:after{right:0;bottom:0}.bx-filter-btn-color-icon.all:before{top:0;left:0}.bx-filter .bx-filter-param-label.disabled .bx-filter-btn-color-icon{opacity:.2}.bx-filter .bx-filter-parameter-biz{font-size:14px;line-height:15px;display:inline-block;margin-right:10px;text-decoration:none;color:#1485ce;border-bottom:1px dashed}.bx-filter .bx-filter-parameter-biz:hover{text-decoration:none;border-bottom:1px solid}.bx-filter .bx-filter-parameter-biz.bx-active{position:relative;color:#000;border-color:transparent}.btn-themes{color:#FFF}.btn-themes.bx-active,.btn-themes.focus,.btn-themes:active,.btn-themes:focus,.btn-themes:hover{color:#FFF}.bx-filter .bx-filter-popup-result{font-size:13px;font-weight:normal;position:absolute;z-index:915;display:none;line-height:normal;margin-top:-7px;margin-left:10px;padding:0 10px;white-space:nowrap;color:#3f3f3f;min-height:37px;line-height:18px;border-style:solid;border:1px solid #c6dce7}.bx-filter .bx-filter-popup-result.left{border-width:2px 10px 2px 2px;-webkit-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/result_popup_left.png) 4 20 4 4 repeat;-moz-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/result_popup_left.png) 4 20 4 4 repeat;-o-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/result_popup_left.png) 4 20 4 4 repeat;border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/result_popup_left.png) 4 20 4 4 fill repeat}.bx-filter .bx-filter-popup-result.right{border-width:2px 2px 2px 10px;-webkit-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/result_popup_right.png) 4 4 4 20 repeat;-moz-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/result_popup_right.png) 4 4 4 20 repeat;-o-border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/result_popup_right.png) 4 4 4 20 repeat;border-image:url(/local/templates/rais/components/bitrix/catalog.smart.filter/main/images/result_popup_right.png) 4 4 4 20 fill repeat}.bx-filter .bx-filter-popup-result.right{left:97%}.bx-filter .bx-filter-popup-result.left{right:97%}.bx-filter-horizontal .bx-filter-popup-result{display:inline-block;position:relative;left:auto;right:auto;bottom:-7px}.bx-filter .bx-filter-popup-result a{color:#0073a3;line-height:10px}.bx-filter .bx-filter-popup-result a:hover{text-decoration:none}.bx-filter .bx-filter-popup-result-close{display:none}@media(max-width:767px){.bx-touch .bx-filter .bx-filter-popup-result{font-size:12px;line-height:14px;position:fixed !important;z-index:1001;top:auto !important;right:0 !important;bottom:0 !important;left:0 !important;margin-top:0;margin-left:0;width:auto;height:auto;padding:10px;border-radius:2px;border:1px solid #c6dae7;background:rgba(255,255,255,.9)}.bx-touch .bx-filter .bx-filter-popup-result br{display:none}.bx-filter .bx-filter-popup-result .arrow{display:none}}
/* End */


/* Start:/local/templates/rais/components/bitrix/catalog.item/main/style.css?17737384703979*/
.modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
}
.modal__overlay--active {
    opacity: 1;
    visibility: visible;
}
.modal {
    width: 480px;
    background: #FFFEF9;
    position: relative;
    padding: 50px 25px 30px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(.95);
    transition: all .4s cubic-bezier(0.4,0,0.2,1);
}
.modal__overlay--active .modal {
    opacity: 1;
    transform: scale(1);
}
.modal__close {
    position: absolute;
    top: 20px; 
    right: 20px;
    background: none; 
    border: none;
    cursor: pointer;
}
.modal__title {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #281D18;
    margin-bottom: 30px;
}
.modal__options {
    display: flex;
    gap: 10px;
    margin-bottom: 37px;
}
.size-option {
    flex: 1; 
    height: 45px;
    border: 1px solid rgba(40,29,24,0.2);
    background: #FFFEF9; 
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s ease;
}
.size-option:hover,
.size-option--active {
    border: 1px solid #281D18;
}
.modal__add,
.modal__go {
    width: 100%; 
    height: 55px;
    display: flex; 
    justify-content: center; 
    align-items: center;
    border: 1px solid #281D18;
    background: #281D18;
    color: #FFFEF9;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .3s ease;
}
.modal__add:disabled {
    opacity: .5; 
    cursor: not-allowed;
}
.modal__go {
    text-decoration: none;
}
.modal__add:hover:not(:disabled),
.modal__go:hover {
    opacity: .8;
}
.modal__text {
    color: #281D18;
    font-size: 14px;
    margin-bottom: 60px;
    font-weight: 400;
}
.modal__step {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
}
.modal__step--active {
    opacity: 1;
    visibility: visible;
    position: relative;
}
@media (max-width:768px) {
    .modal__options {
        margin-bottom: 47px;
    }
    .modal {
        width: 100%;
        margin: 0 25px;
        padding: 40px 15px 20px;
    }
    .modal__title {
        font-size: 14px;
        margin-bottom: 35px;
    }
    .modal__text {
        margin-bottom: 40px;
    }
    .size-option {
        height: 40px;
        font-size: 12px;
    }
    .modal__add, .modal__go {
        height: 40px;
        font-size: 12px;
    }
    .modal__close {
        top: 15px; 
        right: 15px;
    }
}
@media (max-width:390px) {
    .modal__title {
        font-size: 12px;
    }
    .size-option {
        height: 35px;
        font-size: 10px;
    }
    .modal__add, .modal__go {
        height: 40px;
        font-size: 10px;
    }
    .modal__step {
        padding: 0;
    }
}
.product-item-scu-item-color-container {
    border-radius: 50%;
    padding: 3px;
    list-style-type: none;
	border: 1px solid transparent;
	transition: all .4s ease;
}
.product-item-scu-item-color-container.selected{
    border: 1px solid #D9D9D9;
}
.product-item-scu-item-list.card__colors{
    font-size: 0;
}
.button_sku{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
/* .button_sku li{
    padding: 5px;
    border: 1px solid white;
}
.button_sku li.selected{
border: 1px solid #D9D9D9;
} */
.product-item-info-container {
    margin-bottom: 5px;
    margin-top: 5px;
}
.product-item-scu-item-text-container{
    min-width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
      border: 1px solid rgba(40, 29, 24, 0.2);
        transition: all .4s ease;
    /* border: 1px solid transparent; */
    padding: 5px;
    cursor: pointer;
}
li.notallowed{
    display: none;
}
.product-item-scu-item-text-container.selected {
    border: 1px solid #020202;
}
.product-item-scu-list{
}
/* End */
/* /local/templates/rais/css/catalog.css?177874779026162 */
/* /local/templates/rais/components/bitrix/catalog.smart.filter/main/style.min.css?176397364314273 */
/* /local/templates/rais/components/bitrix/catalog.item/main/style.css?17737384703979 */
