body {
    min-width: auto;
}

.wrapper {
    padding: 0 12px;
}

.page__head--with-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 16px;
}
.page__head--with-buttons .page__title {
    margin-bottom: 0;
    width: auto;
}
.page__head-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page__head--with-buttons .page__head-left .page__crumbs {
    margin-top: 0;
}
.page__head-right {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.page__head-icons {
    display: flex;
    gap: 17px;
    justify-content: flex-end;
}
@media (max-width: 768px) {
    .page__head-icons {
        display: none;
    }
}

.icon {
    max-width: 28px;
    max-height: 26px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .icon:hover {
        opacity: 1;
    }
}
.icon svg path {
    fill: #9A9A9A !important;
}

.compare__container {
    max-width: 1452px;
    padding: 0 50px;
    margin: 0 auto;
}
@media (max-width: 560px) {
    .compare__container {
        padding: 0 12px;
    }
}
.compare__header {
    display: none;
}
.compare__header-fixed {
    position: fixed;
    top: 72px;
    z-index: 2;
    width: 100%;
    max-width: 1452px;
    padding: 0 100px 0 0;
    transition: all 0.3s ease;
    transform: translate(0, -100%);
}
@media (max-width: 768px){
    .compare__header-fixed{
        top: 0;
    }
}

.compare__header-fixed.fixed {
    transform: translate(0, 0%);
}
@media (max-width: 560px) {
    .compare__header-fixed {
        padding: 0 24px 0 0;
    }
}
.compare__header-fixed .compare-product {
    display: none;
}
.compare__header-fixed .compare-product.active {
    display: block;
    background-color: #fff;
}
@media (max-width: 560px) {
    .compare__header-fixed .compare-product.active {
        display: flex;
    }
}
.compare__main-slider {
    margin-bottom: 80px;
    overflow: visible;
}
.compare__main-slide {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    position: relative;
}
.compare__main-slide.swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
}
.compare__checkbox-container {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #3f3f41;
    font-family: "HelveticaNeueCyr", sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.compare__checkbox-container input {
    display: none;
}
.compare__checkbox-container input:checked + label:before {
    background-color: #ed1b34;
    border: 1px solid #ed1b34;
}
.compare__checkbox-container input:checked + label svg {
    opacity: 1;
}
.compare__checkbox-container input + label {
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.compare__checkbox-container input + label span {
    padding-left: 40px;
}
@media (any-hover: hover) {
    .compare__checkbox-container input + label:hover:before {
        border: 1px solid #ed1b34;
    }
}
.compare__checkbox-container input + label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 1px solid #000;
    transition: all 0.3s ease;
}
.compare__checkbox-container input + label svg {
    position: absolute;
    top: 3px;
    left: 5px;
    width: 14px;
    height: 14px;
    fill: #fff;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 2;
}
.compare button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.compare-thumbnails {
    box-sizing: border-box;
    padding: 16px 0;
    position: relative;
    margin-bottom: 24px;
}
.compare-thumbnails:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100000%;
    transform: translate(-50%, 0);
    height: 100%;
    background-color: #f1f2f2;
}
@media (max-width: 560px) {
    .compare-thumbnails__navigation {
        display: none;
    }
}
.compare-thumbnails__slide {
    max-width: fit-content;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    cursor: pointer;
    font-family: "Jura", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.33333;
    color: #000;
    box-sizing: border-box;
    white-space: nowrap;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (any-hover: hover) {
    .compare-thumbnails__slide:hover {
        color: #ed1b34;
    }
}
.compare-thumbnails__slide.swiper-slide-thumb-active {
    color: #ed1b34;
}
.compare-thumbnails__delete {
    all: unset;
    width: 22px;
    height: 22px;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    margin-left: 8px;
    box-sizing: inherit;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .compare-thumbnails__delete:hover {
        border-color: #ed1b34;
    }
    .compare-thumbnails__delete:hover span:before, .compare-thumbnails__delete:hover span:after {
        background-color: #ed1b34;
    }
}
.compare-thumbnails__delete span {
    width: 11px;
    height: 14px;
    position: relative;
    pointer-events: none;
}
.compare-thumbnails__delete span:before, .compare-thumbnails__delete span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 14px;
    background-color: #333;
    transition: all 0.3s ease;
}
.compare-thumbnails__delete span:before {
    transform: rotate(45deg) translate(-50%, 0%);
}
.compare-thumbnails__delete span:after {
    transform: rotate(-45deg) translate(-50%, 0%);
}

.compare-product {
    margin-bottom: 24px;
    position: relative;
}
@media (max-width: 560px) {
    .compare-product {
        display: flex;
    }
}
.compare-product__slider {
    position: relative;
}
.compare-product__slider.cloned-element {
    display: none;
}
@media (max-width: 560px) {
    .compare-product__slider.cloned-element {
        display: flex;
    }
}
@media (max-width: 560px) {
    .compare-product__slider {
        flex: 1 1 50%;
        border: 1px solid #dedede;
    }
}
@media (max-width: 560px) {
    .compare-product__navigation {
        display: none;
    }
}
.compare-product__navigation--mobile {
    display: none;
}
@media (max-width: 560px) {
    .compare-product__navigation--mobile {
        display: flex;
        position: absolute;
        top: 12px;
        left: 50%;
        z-index: 10;
        transform: translate(-50%, 0);
    }
}
.compare-product-fixed .compare-product__navigation--mobile {
    top: auto;
    bottom: 8px;
}
.compare-product__navigation--mobile .compare-button-nav-prev,
.compare-product__navigation--mobile .compare-button-nav-next {
    position: static;
    background-color: transparent;
    border: none;
    opacity: 1;
    transform: rotate(0deg);
    height: 18px;
}
.compare-product-fixed .compare-product__navigation--mobile .compare-button-nav-prev,
.compare-product-fixed .compare-product__navigation--mobile .compare-button-nav-next {
    top: auto;
    bottom: 8px;
    display: flex;
}
.compare-product__pagination {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33333;
    color: #3f3f41;
    position: static;
    padding: 0 0;
    font-family: "HelveticaNeueCyr", sans-serif;
    align-self: flex-end;
}
.compare-product__wrapper {
    margin-left: -1px;
    padding-left: 1px;
}
.compare-product__slide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 13px 25px 41px 25px;
    border: 1px solid #dedede;
    font-family: "HelveticaNeueCyr", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
    height: 100%;
}
@media (max-width: 1280px) {
    .compare-product__slide {
        padding: 12px;
    }
}
.compare-product-fixed .compare-product__slide {
    flex-direction: row;
    padding: 12px 25px;
    gap: 8px;
}
@media (max-width: 1280px) {
    .compare-product-fixed .compare-product__slide {
        padding: 8px 12px;
    }
}
@media (max-width: 768px) {
    .compare-product-fixed .compare-product__slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 560px) {
    .compare-product-fixed .compare-product__slide {
        padding: 8px 12px 32px 12px;
    }
}
.compare-product__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
    word-wrap: anywhere;
}
.compare-product-fixed .compare-product__text {
    gap: 4px;
}
.compare-product__image-ibg {
    position: relative;
    padding-bottom: 55%;
    min-height: 100px;
}
.compare-product-fixed .compare-product__image-ibg {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding-bottom: 0;
}
.compare-product__image-ibg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /*object-fit: cover;*/
    aspect-ratio: 1/1;
}
.compare-product__catalog-number {
    font-size: 12px;
    line-height: 1.33333;
    font-weight: 400;
    color: #a6a6a6;
    display: none;
}
.compare-product-fixed .compare-product__catalog-number {
    display: block;
}
.compare-product__name {
    font-size: 16px;
    line-height: 1.5;
    color: #3f3f41;
}
.compare-product-fixed .compare-product__name {
    font-size: 14px;
}
@media (max-width: 560px) {
    .compare-product-fixed .compare-product__name {
        font-size: 12px;
    }
}
.compare-product__list {
    list-style: none;
    margin: 0;
    font-size: 12px;
    line-height: 1.33333;
    color: #a6a6a6;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0px 0px 0px 40px;
}
@media (max-width: 1280px) {
    .compare-product__list {
        padding: 0px 0px 0px 0px;
    }
}
.compare-product-fixed .compare-product__list {
    display: none;
}
.compare-product__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
}
@media (max-width: 1300px) {
    .compare-product__buttons {
        column-gap: 8px;
    }
}
@media (max-width: 350px) {
    .compare-product__buttons {
        flex-direction: column;
    }
}
.compare-product-fixed .compare-product__buttons {
    display: none;
}
.compare-product__btn-to {
    margin-top: 0;
    border: none;
    box-sizing: border-box;
    width: fit-content;
    flex: 1 1 auto;
}
@media (max-width: 1300px) {
    .compare-product__btn-to {
        height: 38px;
        padding: 0;
        line-height: 1;
    }
}
@media (max-width: 1300px) {
    .compare-product__btn-to .button__text {
        padding: 11px 5px;
    }
}
@media (max-width: 768px) {
    .compare-product__btn-to .button__text {
        font-size: 12px;
    }
}
.compare-product__btn-to .button__text .text-add-box, .compare-product__btn-to .button__text .text-callback, .compare-product__btn-to .button__text .text-in-box {
    display: none;
}
.compare-product__btn-to .button__text .text-add-box.active, .compare-product__btn-to .button__text .text-callback.active, .compare-product__btn-to .button__text .text-in-box.active {
    display: flex;
}
.compare-product__btn-to:hover {
    border: none;
}
.compare-product__btn-delete {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    cursor: pointer;
}
@media (max-width: 350px) {
    .compare-product__btn-delete {
        flex: 1 1 auto;
    }
}
.compare-product__btn-delete .button__text {
    display: none;
    color: #1d1d1b;
}
@media (max-width: 1300px) {
    .compare-product__btn-delete .button__text {
        padding: 11px 5px;
    }
}
@media (max-width: 768px) {
    .compare-product__btn-delete .button__text {
        font-size: 12px;
    }
}
@media (max-width: 350px) {
    .compare-product__btn-delete .button__text {
        display: flex;
    }
}
.compare-product__btn-delete svg {
    width: 24px;
    height: 24px;
}
@media (max-width: 1200px) {
    .compare-product__btn-delete svg {
        width: 18px;
        height: 20px;
    }
}
.compare-product__btn-delete svg path {
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .compare-product__btn-delete:hover svg path {
        fill: #ed1b34;
    }
}
@media (max-width: 560px) {
    .compare-characteristics {
        display: flex;
    }
}
@media (max-width: 560px) {
    .compare-characteristics__slider {
        flex: 1 1 50%;
        border: 1px solid #dedede;
    }
}
.compare-characteristics__slider.cloned-element {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    margin-left: -1px;
}
@media (max-width: 560px) {
    .compare-characteristics__slider.cloned-element {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: auto;
    }
}
.compare-characteristics__slider.cloned-element .compare-characteristics__name {
    opacity: 0;
}
.compare-characteristics__wrapper {
    margin-left: -1px;
    padding-left: 1px;
}
.compare-characteristics__slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    padding: 1px 1px 0 1px;
}
.compare-characteristics__slide.swiper-slide-active .compare-characteristics__name {
    opacity: 1;
}
.cloned-element .compare-characteristics__slide.swiper-slide-active .compare-characteristics__name {
    opacity: 0;
}
@media (max-width: 560px) {
    .compare-characteristics__slide {
        padding: 0;
    }
}
.compare-characteristics__row {
    padding: 12px 25px;
    display: flex;
    gap: 16px;
    flex-direction: column;
    word-wrap: break-word;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #3f3f41;
    font-family: "HelveticaNeueCyr", sans-serif;
    border: 1px solid #dedede;
    margin: -1px -1px 0 -1px;
}
@media (max-width: 560px) {
    .compare-characteristics__row {
        border: none;
        margin: 0;
    }
}
.compare-characteristics__row:nth-child(odd) {
    background-color: #f1f2f2;
}
@media (max-width: 1280px) {
    .compare-characteristics__row {
        padding: 8px 12px;
    }
}
.compare-characteristics__name {
    flex: 1 1 auto;
    font-family: "Jura", sans-serif;
    font-size: 18px;
    line-height: 1.33333;
    color: #333;
    opacity: 0;
    transition: all 0.3s 0.1s ease;
}
@media (max-width: 560px) {
    .compare-characteristics__name {
        opacity: 1;
    }
}
.compare-characteristics__value ul, .compare-characteristics__value ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.compare-characteristics__value p:not(:last-child) {
    margin-bottom: 10px;
}

.compare-button-nav-prev,
.compare-button-nav-next {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #3f3f41;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
    background-color: #f1f2f2;
    cursor: pointer;
    z-index: 10;
}
.compare-button-nav-prev:hover svg path,
.compare-button-nav-next:hover svg path {
    fill: #fff;
}
.swiper-slide-active .compare-button-nav-prev,
.swiper-slide-active .compare-button-nav-next {
    display: flex;
}
@media (max-width: 560px) {
    .compare-button-nav-prev,
    .compare-button-nav-next {
        display: none;
    }
}
.compare-button-nav-prev svg,
.compare-button-nav-next svg {
    width: 13px;
    height: 14px;
    margin: 0;
    top: 0;
    left: 0;
    position: static;
    z-index: 1;
    transition: all 0.3s ease;
}
.compare-button-nav-prev.swiper-button-disabled, .compare-button-nav-prev.disabled,
.compare-button-nav-next.swiper-button-disabled,
.compare-button-nav-next.disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.compare-button-nav-prev {
    left: -64px;
    transform: rotate(180deg) translate(0%, 50%);
}
@media (max-width: 1555px) {
    .compare-button-nav-prev {
        left: -45px;
    }
}

.compare-button-nav-next {
    right: -64px;
}
@media (max-width: 1555px) {
    .compare-button-nav-next {
        right: -45px;
    }
}
.compare-product .is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    @media (max-width: 1279px) {
        grid-template-columns: 1fr 1fr 1fr;
    }

    @media (max-width: 1023px) {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .is-grid__item {
        width: 100%;
    }
}