.marketplace {
}

.marketplace-item {
    margin-bottom: 30px;
    width: 300px;
}

.marketplace-item__link {
    display: block;
}

.marketplace-item__img {
    display: block;
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.banner-slider__bg img {
    background-color: white;
}

.main-banner__header,
.main-banner__nav {
    display: none !important;
}

.main-banner__slider {
    position: relative;
}

.main-banner__controls {
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 11;
}

.main-banner__control {
    align-items: center;
    background: hsla(0, 0%, 0%, .25);
    border: 1px solid hsla(0, 0%, 100%, .35);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    padding: 0;
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .3s ease, border-color .3s ease, opacity .3s ease;
    width: 48px;
}

.main-banner__control--prev {
    left: clamp(16px, 4vw, 48px);
}

.main-banner__control--next {
    right: clamp(16px, 4vw, 48px);
}

.main-banner__control-icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 24px;
    opacity: 1;
    width: 24px;
}

.main-banner__control--prev .main-banner__control-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='48' height='48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 38 14 24 30 10M14 24h28' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.main-banner__control--next .main-banner__control-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='48' height='48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10l16 14-16 14M34 24H6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.main-banner__control:hover,
.main-banner__control:focus-visible {
    background: hsla(0, 0%, 0%, .45);
    border-color: #fff;
}

.main-banner__content {
    bottom: 0;
    color: #fff;
    left: 0;
    padding-bottom: 20px;
    position: absolute;
    right: 0;
    z-index: 10;
}

.main-banner__content-wrapper {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}

.main-banner__info {
    flex: 1 1 auto;
    min-width: 0;
    order: 2;
}

.main-banner__info-group {
    display: none;
}

.main-banner__info-group.active {
    animation: main-banner-content-fade 0.5s linear forwards;
    display: block;
}

.main-banner__title {
    color: #fff;
    display: block;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 12px;
    text-decoration: none;
}

.main-banner__title:hover {
    opacity: .8;
}

.main-banner__desc {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.35;
    max-width: 560px;
}

.main-banner__preview {
    background: transparent;
    border: 1px solid hsla(0, 0%, 100%, .5);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    flex: 0 0 250px;
    height: 180px;
    order: 1;
    overflow: hidden;
    padding: 0;
    position: relative;
    transition: border-color .3s ease, opacity .3s ease;
    width: 250px;
}

.main-banner__preview:hover {
    border-color: #fff;
    opacity: .9;
}

.main-banner__preview-item {
    align-items: center;
    display: none;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%;
}

.main-banner__preview-item.active {
    display: flex;
}

.main-banner__preview-image {
    border-radius: 10px;
    height: 100%;
    inset: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.main-banner__preview-image img {
    display: block;
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.main-banner__preview-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    padding: 12px;
    position: relative;
    z-index: 1;
}

.main-banner__preview-num {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1;
}

.main-banner__preview-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    text-align: center;
}

.main-banner__preview-arrow {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 7.5 10.52 3M15 7.5 10.52 12M15 7.5H1' stroke='%23fff'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    display: block;
    flex-shrink: 0;
    height: 16px;
    width: 16px;
}

@keyframes main-banner-content-fade {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 760px) {
    .main-banner__btn {
        display: none;
    }

    .main-banner__control {
        height: 40px;
        width: 40px;
    }

    .main-banner__control-icon {
        height: 20px;
        width: 20px;
    }

    .main-banner__content-wrapper {
        align-items: stretch;
        flex-direction: column;
    }

    .main-banner__title {
        font-size: 27px;
        line-height: 1.07;
    }

    .main-banner__desc {
        font-size: 14px;
        max-width: 100%;
    }

    .main-banner__preview {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .main-banner__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 1360px) {
    .main-banner__title {
        font-size: 20px;
    }
}

.copyText {
    position: fixed;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 9999;
}

/* смена цвета иконок */
.catalog-card__compare,
.catalog-card__fav,
.compare-card__fav,
.compare-card__del {
    filter: invert(1);
}

/* смена цвета иконок */
.product-card__fav,
.product-card__compare {
    filter: invert(1);
}

.product-slider__item {
    display: flex;
    height: auto;
}

.product-slider__item .catalog__item {
    display: flex;
    height: 100%;
    width: 100%;
}

.product-slider__item .catalog-card {
    width: 100%;
}

/* артикул в каталоге у которых нет цветов */
.catalog-card:not(.catalog-card--tile) .catalog-card__article {
    position: relative;
    pointer-events: all;
    cursor: pointer;
    margin-bottom: 5px;
    display: none;
    opacity: 0;
    visibility: hidden;
}

.catalog-card:not(.catalog-card--tile) .catalog-card__article span {
    background: #404042;
    color: #fff;
    font-size: 12px;
    line-height: 12px;
    padding: 5px;
}

.catalog-card:not(.catalog-card--tile):hover .catalog-card__article {
    display: block;
    opacity: 1;
    visibility: visible;
}

.wrapper-no-padding {
    padding-bottom: 0px !important;
}

.seo-text h2 {
    font-size: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.seo-text {
    margin-top: -100px;
    margin-bottom: 60px;
    font-size: 12px;
}

.seo-pages.wrapper {
    display: inline-block !important;
}

.footer__main {
    justify-content: space-between;
    display: flex;
    /*grid-column: 4/8;*/
}

.catalog__item--bg .catalog-card__label {
    left: 12%;
}

.catalog__item--bg .catalog-card__compare {
    right: 19%;
}

.catalog__item--bg .catalog-card__fav {
    right: 12%;
}

.catalog__item--bg .catalog-card__colors {
    padding-left: 10%;
}
.catalog-card__colors-item {
    width: 20px;
    height: 20px;
}
.catalog__item--bg .catalog-card__desc {
    padding-left: 10%;
}

.headquarters .contacts__right {
    -ms-grid-column-span: 8;
    -ms-grid-column: 5;
    grid-column: 5/13;
}

.headquarters .contacts__map {
    margin-top: 20px;
}

.headquarters .order-form__cont {
    grid-template-columns: unset;
}

.headquarters .contacts__item-name {
    padding-bottom: 14px;
}

.headquarters .contacts__select {
    margin: 5px 0 0 0;
}

.headquarters .contacts__hint {
    margin: 5px 0 20px 0;
    font-size: 11px;
}

.headquarters .contacts__select .select-selected {
    border-bottom: 1px solid #000;
    color: #000;
    font-weight: bold;
}

.headquarters .contacts__select .select-selected::after {
    opacity: 1;
}

.header__catalog-nav > .wrapper::before {
    top: 0;
    pointer-events: none;
}

.header__menu-link {
    /* z-index: 21; */
}

.image-upload__input {
    display: none;
}

.image-upload__button {
    width: 100%;
}

.image-upload__img {
    margin: 10px 0;
    width: 100%;
}

.detail-awards__item-icon {
    width: 150px;
    margin-bottom: 15px;
}

.detail-awards__item {
    width: unset;
    cursor: pointer;
}

.detail-awards__item-year {
    margin-bottom: 10px;
}

.detail-awards__show-all {
    color: #b9b9b9;
    margin-top: 30px;
    cursor: pointer;
}

.detail-awards__list.all {
    transform: unset !important;
    flex-wrap: wrap;
}

.detail-awards__list.all .swiper-slide:nth-child(5n) {
    margin-right: 0 !important;
}
.awards + .product-about {
    margin-top: 20px;
}

@media screen and (max-width: 760px) {
    .footer__contacts {
        grid-column: 1;
    }

    .footer__main {
        grid-column: 2;
    }

    .footer__phone {
        grid-column: 1;
    }

    .footer__top {
        margin-bottom: 40px;
        /*font-size: 14px;*/
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__about {
        grid-column: span 1;
    }

    .footer__phone--mob {
        display: none;
    }

    .footer__phone--desc {
        display: block;
    }

    .footer-menu {
        margin-left: 5px;
    }

    .headquarters .contacts__right {
        grid-column: auto;
        max-width: 100%;
    }

    .footer-second-colum {
        grid-column-start: 1 !important;
        grid-column: auto !important;
    }
}

.subcategory-menu .active h1 {
    font-size: 16px;
    font-weight: 400;
    display: block;
}

/*.swiper-button-prev
{
    display:none;
    padding-bottom:20px!important;
}
.carousel__button .is-prev
{
    display:none!important;
}
.swiper-button-next
{
    display:none;
    padding-bottom:20px!important;
}
.carousel__button .is-next
{
    display:none!important;
}*/
.footer-second-colum {
    grid-column: 6/8;
}
.additional-height {
    min-height: 320px;
}
.btn-cookie-success {
    width: 45% !important;
    text-align: center;
    display: inline;
    margin-right: 10px;
}
.btn-cookie-decline {
    width: 45% !important;
    text-align: center;
    display: inline;
}

.footer__brands-item {
    margin: 0 10px;
}
.footer__brands-item img {
    height: unset;
    min-height: unset;
}
@media screen and (max-width: 760px) {
    .footer__brands-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media screen and (max-width: 1720px) {
    .search-input__input {
        font-size: 24px;
        letter-spacing: -0.03em;
    }
}
.category-menu__item .category-submenu {
    height: auto;
    padding-bottom: 10px;
    background-color: #fff;
    z-index: 10;
}
.base-currency {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
    .base-currency {
        margin: 0;
    }
}
.base-currency__item {
    font-family: Inter, sans-serif;
    position: absolute;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding-left: 16px;
    gap: 4px;
    position: absolute;
    padding-left: 0;
    transform: translateX(1.6rem);
    transition: padding-left 0.1s ease-in-out, transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    order: 1;
    z-index: 0;
    opacity: 0;
}
.base-currency__item::before {
    position: absolute;
    left: 4px;
    top: 3px;
    content: "";
    width: 8px;
    height: 8px;
    transform: scale(0.2);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    background-color: #000;
    border-radius: 50%;
}
.base-currency__item:hover {
    opacity: 0.7;
    padding-left: 16px;
}
.base-currency__item:hover::before {
    width: 8px;
    height: 8px;
    transform: scale(1);
    opacity: 1;
}
.base-currency__item--active {
    position: relative;
    background-color: #fff;
    z-index: 4;
    opacity: 1;
    transform: translateX(0);
    padding-left: 16px;
    order: 0;
}
.base-currency__item--active:hover {
    opacity: 1;
}
.base-currency__item--active::before {
    width: 8px;
    height: 8px;
    transform: scale(1);
    opacity: 1;
}
.base-currency__list {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.base-currency__list--active .base-currency__item {
    position: relative;
    z-index: 1;
    opacity: 1;
    left: auto;
    transform: translateX(0);
}

.header__logo {
    display: block;
    flex: none;
    margin-right: 20px;
}

.header__logo img {
    display: block;
    width: 272px;
    height: 57px;
    min-width: 272px;
    min-height: 57px;
    filter: none;
}

.footer__logo .logo {
    height: 44px;
    width: auto;
}

.mobile-menu__logo .logo img {
    height: 44px;
    width: auto;
}

.loader__logo img {
    display: block;
    height: auto;
    width: 210px;
}

@media screen and (max-width: 960px) {
    .header__logo img {
        width: 105px;
        height: 22px;
        min-width: 105px;
        min-height: 22px;
    }

    .header__cart-favorite {
        left: 0;
        top: 2px;
    }

    .header-cart__counter {
        position: relative;
    }
}
