.catalog {
    padding: 40px 0 100px;
}

.catalog-header {
    margin-bottom: 32px;
}

.catalog-brcr {
    margin-bottom: 12px;
}

.catalog-header h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 105%;
    color: #262626;
}

@media screen and (max-width: 1279px) {
    .catalog {
        padding: 32px 0 60px;
    }

    .catalog-header h1 {
        font-size: 42px;
    }
}

@media screen and (max-width: 1023px) {
    .catalog {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .catalog {
        padding-top: 24px;
    }

    .catalog-header {
        margin-bottom: 20px;
    }

    .catalog-header h1 {
        font-size: 30px;
    }
}

.catalog-colums {
    display: flex;
    gap: 24px;
}

@media screen and (max-width: 1023px) {
    .catalog-colums {
        display: block;
        gap: 0;
    }
}

.catalog-filter {
    width: 176px;
    padding-top: 14px;
    flex: none;
}

.filter-group:not(:last-child) {
    margin-bottom: 24px;
}

.filter-group-title {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    margin-bottom: 16px;
    color: #262626;
}

.filter-fraction-noty {
    position: relative;
    display: inline-flex;
    margin-left: 8px;
}

.filter-fraction-noty-icon {
    display: inline-flex;
}

.filter-fraction-noty-icon svg {
    width: 14px;
    height: auto;
}

.filter-fraction-noty-content {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    bottom: calc(100% + 12px);
    left: -12px;
    transition: opacity 300ms;
    z-index: 2;
}

.filter-fraction-noty:hover .filter-fraction-noty-content {
    opacity: 1;
    visibility: visible;
}

.filter-fraction-noty-wrapper {
    display: block;
    padding: 16px;
    background-color: #F5F7F7;
    background-color: rgb(245 247 247 / 90%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    font-size: 14px;
    line-height: 135%;
    width: 288px;
    color: #262626;
}

.filter-fraction-noty-wrapper:after {
    content: '';
    position: absolute;
    left: 10px;
    top: calc(100% - 2px);
    border: 10px solid transparent;
    border-top: 10px solid #F5F7F7;
    z-index: -1;
}

.filter-group-value:not(:last-child) {
    margin-bottom: 12px;
}

.filter-group-value label {
    display: inline-flex;
}

.filter-group-checkbox {
    margin-right: 8px;
    flex: none;
}

.filter-group-checkbox input {
    display: none;
}

.filter-group-checkbox span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #CFCFCF;
    border-radius: 4px;
    transition: background 300ms, border 300ms;
}

.filter-group-value label:hover .filter-group-checkbox span {
    border-color: #262626;
}

.filter-group-checkbox input:checked+span {
    background-color: #262626;
    border-color: #262626;
}

.filter-group-value label:hover .filter-group-checkbox input:checked+span {
    background-color: rgb(38 38 38 / 70%);
    border-color: transparent;
}

.filter-group-name {
    font-size: 14px;
    line-height: 135%;
    color: #262626;
}

.filter-group-toggles {
    transition: max-height 300ms;
    max-height: 0;
    overflow: hidden;
}

.filter-group-toggles-wrapper {
    padding-top: 12px;
}

.filter-group-toggle-btn {
    margin-top: 16px;
}

.filter-group-toggle-btn span {
    font-size: 14px;
    text-decoration: underline;
    transition: color 300ms;
    cursor: pointer;
}

.filter-group-toggle-btn span:hover {
    color: #262626;
}

.catalog-filter-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.catalog-filter-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 120%;
    color: #262626;
}

.catalog-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: auto;
    flex: none;
    transition: opacity 300ms;
    cursor: pointer;
}

.catalog-filter-close:hover {
    opacity: 0.7;
}

.catalog-filter-panel {
    display: flex;
    position: sticky;
    bottom: 0;
    gap: 10px;
    background: linear-gradient(5.2deg, #fff 49.57%, rgba(255, 255, 255, 0) 111.98%);
    z-index: 1;
}

.catalog-filter-panel button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #262626;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    height: 44px;
    padding: 0 24px;
    color: #fff;
    flex: 1;
    cursor: pointer;
    transition: background 300ms;
}

.catalog-filter-panel button:hover {
    background-color: #515151;
}

.catalog-filter-panel span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CFCFCF;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    height: 44px;
    padding: 0 24px;
    color: #262626;
    flex: 1;
    cursor: pointer;
    transition: border 300ms;
}

.catalog-filter-panel span:hover {
    border-color: #262626;
}

@media screen and (min-width: 1024px) {
    .catalog-filter-header {
        display: none;
    }

    .catalog-filter-panel {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .catalog-filter {
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        position: fixed;
        inset: 0;
        width: 100%;
        max-width: 768px;
        padding: 40px;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        -webkit-overflow-scrolling: touch;
        background-color: #fff;
        scrollbar-width: none;
        transition: opacity 300ms;
        z-index: 11;
    }

    .catalog-filter:after {
        content: '';
        display: block;
        position: fixed;
        inset: auto 0 0 0;
        height: 108px;
        width: 100%;
        max-width: 768px;
        background: linear-gradient(0deg, #fff 81.57%, rgba(255, 255, 255, 0) 122.98%);
        pointer-events: none;
    }

    .catalog-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-open {
        overflow: hidden;
    }

    .filter-open .catalog-filter {
        opacity: 1;
        visibility: visible;
    }

    .filter-open .header-back {
        opacity: 1;
        visibility: visible;
        z-index: 11;
    }

    .filter-fraction-noty-content {
        z-index: 0;
    }

    .catalog-filter {
        display: flex;
        flex-direction: column;
    }

    .catalog-filter .filter {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .catalog-filter-panel {
        margin-top: auto;
    }
}

@media screen and (max-width: 428px) {
    .catalog-filter {
        padding: 20px 16px;
    }

    .catalog-filter-panel button,
    .catalog-filter-panel span {
        height: 40px;
        font-size: 14px;
    }

    .catalog-filter:after {
        height: 82px;
        background: linear-gradient(0deg, #fff 60.57%, rgba(255, 255, 255, 0) 128.98%);
    }

    .filter-group-title {
        position: relative;
    }

    .filter-fraction-noty {
        position: unset;
    }

    .filter-fraction-noty-content {
        left: 0;
    }

    .filter-fraction-noty-wrapper {
        width: 100%;
        max-width: 288px;
    }

    .filter-fraction-noty-wrapper:after {
        left: 76px;
    }
}

.catalog-body {
    width: calc(100% - 200px);
}

@media screen and (max-width: 1023px) {
    .catalog-body {
        width: 100%;
    }
}

.catalog-sections {
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid#e6e6e6;
    margin-bottom: 20px;
}

.catalog-sections::-webkit-scrollbar {
    display: none;
}

.catalog-sections a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    height: 62px;
    /*padding: 0 24px;*/
    padding: 0 21px;
}

.catalog-sections .active {
    color: #262626;
    box-shadow: inset 0 -2px 0 #262626;
}

@media screen and (max-width: 1279px) {
    .catalog-sections {
        margin-right: -40px;
        margin-bottom: 24px;
        padding-right: 40px;
    }

    .catalog-sections a {
        font-size: 14px;
        height: 50px;
        padding: 0 16px;
    }
}

@media screen and (max-width: 767px) {
    .catalog-sections {
        margin-right: -16px;
        margin-bottom: 16px;
        padding-right: 16px;
    }
}

.catalog-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 12px;
}

.catalog-item {
    width: calc(25% - 9px);
}

.catalog-item-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.catalog-item-hover .catalog-item-wrapper {
    box-shadow: 0 8px 45px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: background 300ms, box-shadow 300ms;
}

.catalog-item-hover {
    position: relative;
    z-index: 1;
}

.catalog-item-photo {
    position: relative;
    height: 0;
    padding-top: 100%;
    margin-bottom: 16px;
    background-color: #f5f5f5;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    transition: border-radius 300ms;
}

.catalog-item-hover .catalog-item-photo {
    border-radius: 0;
}

.catalog-item-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.catalog-item-photo a {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.catalog-item-content {
    padding: 0 12px 16px;
}

.catalog-item-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    color: #262626;
}

.catalog-item-text {
    font-size: 14px;
    line-height: 135%;
    color: #515151;
    margin-top: 4px;
}

.catalog-item-prices {
    margin-top: 12px;
}

.catalog-item-price {
    font-weight: 500;
    font-size: 18px;
    line-height: 115%;
    color: #262626;
}

.catalog-price-desc {
    font-size: 14px;
    line-height: 135%;
    margin-top: 2px;
    color: #515151;
}

.catalog-item-footer {
    display: none;
    max-height: 0;
    overflow: hidden;
}

.catalog-item-hover .catalog-item-footer {
    transition: max-height 300ms;
}

.catalog-item-footer-content {
    padding: 0 12px 16px;
}

.catalog-item-link {
    margin-top: 4px;
}

.catalog-item-link a {
    font-size: 14px;
    text-decoration: underline;
    transition: color 300ms;
}

.catalog-item-link a:hover {
    text-decoration: none;
    color: #262626;
}

.catalog-item-btn {
    margin-top: 16px;
}

.catalog-item-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 24px;
    width: 100%;
    border: 1px solid #CFCFCF;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    color: #262626;
    transition: border 300ms;
}

.catalog-item-btn a:hover {
    border-color: #262626;
}

.element-price-text {
    display: block;
    font-size: 14px;
    line-height: 100%;
    margin-top: 4px;
    color: #515151;
}

.catalog-item-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 22px;
    cursor: pointer;
}

.catalog-item-favorite svg {
    width: 22px;
    height: 20px;
    display: inline-block;
}

.catalog-item-favorite svg:last-child {
    position: absolute;
    left: 0;
    opacity: 0;
}

.catalog-item-favorite.active svg:first-child {
    opacity: 0;
}

.catalog-item-favorite.active svg:last-child {
    opacity: 1;
}

@media screen and (min-width: 650px) {
    .catalog-item-favorite:hover svg:first-child {
        opacity: 0;
    }

    .catalog-item-favorite:hover svg:last-child {
        opacity: 1;
    }
}

.element-button-favorite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 52px;
    gap: 10px;
    white-space: nowrap;
    cursor: pointer;
}

.element-button-favorite-icon {
    position: relative;
    flex: none;
    width: 22px;
}

.element-button-favorite-icon svg {
    width: 22px;
    height: 20px;
    display: inline-block;
}

.element-button-favorite-icon svg:last-child {
    position: absolute;
    left: 0;
    opacity: 0;
}

.element-button-favorite.active .element-button-favorite-icon svg:first-child {
    opacity: 0;
}

.element-button-favorite.active .element-button-favorite-icon svg:last-child {
    opacity: 1;
}

@media screen and (min-width: 650px) {

    .element-button-favorite:hover .element-button-favorite-icon svg:first-child {
        opacity: 0;
    }

    .element-button-favorite:hover .element-button-favorite-icon svg:last-child {
        opacity: 1;
    }
}

.element-button-favorite-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    color: #262626;
}

.element-button-favorite-text span:last-child {
    display: none;
}

.element-button-favorite.active .element-button-favorite-text span:first-child {
    display: none;
}

.element-button-favorite.active .element-button-favorite-text span:last-child {
    display: inline-block;
}

@media screen and (max-width: 1279px) {
    .catalog-item {
        width: calc(33.33333% - 8px);
    }

    .catalog-item-photo {
        margin-bottom: 8px;
        border-radius: 0 0 8px 8px;
    }

    .catalog-item-wrapper {
        border-radius: 8px 8px 0 0;
    }

    .catalog-item-content {
        padding: 0;
    }

    .catalog-item-name {
        font-size: 14px;
    }

    .catalog-item-text {
        font-size: 12px;
    }

    .catalog-item-prices {
        margin-top: 8px;
    }

    .catalog-item-price {
        font-weight: 500;
        font-size: 16px;
    }

    .catalog-price-desc {
        font-size: 12px;
    }

    .catalog-item-footer {
        max-height: none;
    }

    .catalog-item-footer-content {
        padding: 0;
    }

    .catalog-item-link {
        display: none;
    }

    .catalog-item-link a {
        font-size: 12px;
    }

    .catalog-item-btn {
        display: none;
    }

    .element-price-text {
        font-size: 12px;
    }

    .element-button-favorite-text {
        font-size: 14px;
    }

    .element-button-favorite {
        height: 45px;
        padding: 0 12px;
    }
}

@media screen and (max-width: 650px) {
    .catalog-item {
        width: calc(50% - 6px);
    }
}

@media screen and (max-width: 428px) {
    .catalog-items {
        gap: 20px 8px;
    }

    .catalog-item {
        width: calc(50% - 4px);
    }

    .catalog-item-price {
        font-size: 14px;
    }

    .catalog-item-favorite {
        top: 10px;
        right: 10px;
    }
}

.catalog-empty {
    width: 100%;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 70px 24px;
    text-align: center;
}

.catalog-empty-icon img {
    width: 90px;
    height: auto;
}

.catalog-empty-text {
    font-size: 18px;
    line-height: 150%;
    margin-top: 18px;
}

.catalog-loader {
    width: 100%;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 70px 24px;
    text-align: center;
}

.catalog-loader-text {
    font-size: 18px;
    line-height: 150%;
    margin-top: 18px;
}

@media screen and (max-width: 1279px) {
    .catalog-empty {
        padding: 40px 24px;
    }

    .catalog-empty-text {
        font-size: 16px;
    }

    .catalog-loader {
        padding: 40px 24px;
    }

    .catalog-loader-text {
        font-size: 16px;
    }
}

.catalog-filter-btn-filter {
    display: inline-flex;
    align-items: center;
}

.catalog-filter-btn-sort {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.catalog-filter-btn-sort svg {
    width: 16px;
    height: auto;
}

.catalog-filter-btn-sort span {
    font-size: 14px;
    line-height: 115%;
}

.catalog-filter-btn {
    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    background: #fff;
    border-top: 1px solid #E6E6E6;
    margin-top: 60px;
    padding: 0 40px;
    box-shadow: 0px 8px 45px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.catalog-filter-btn-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex: none;
}

.catalog-filter-btn-icon span {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: #EC1F1C;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 500;
    border-radius: 16px;
    left: 12px;
    top: -8px;
}

.catalog-filter-btn-icon span:empty {
    display: none;
}

.catalog-filter-btn-text {
    font-size: 14px;
    color: #262626;
    font-weight: 500;
}

.element {
    padding: 40px 0 100px;
}

@media screen and (max-width: 1279px) {
    .element {
        padding: 32px 0 60px;
    }
}

@media screen and (min-width: 1024px) {
    .catalog-filter-btn {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .catalog-filter-btn {
        margin-top: 36px;
    }
}

@media screen and (max-width: 767px) {
    .element {
        padding: 24px 0 56px;
    }
}

.element-brcr {
    margin-bottom: 32px;
}

.element-colums {
    display: flex;
    gap: 32px;
}

.element-photos-hidden {
    display: none;
}

.element-photos {
    display: flex;
    max-width: 684px;
    width: 100%;
    gap: 12px;
    flex: none;
}

.element-photos-slider {
    position: relative;
    width: 76px;
    height: 100%;
    margin: 0 -2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: none;
}

.element-photos-slider-container {
    touch-action: pan-x;
    height: 516px;
    overflow: hidden;
}

.element-photos-slider-wrapper {
    flex-direction: column;
}

.element-photos-slider-nav span {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #262626;
    transition: color 300ms;
    cursor: pointer;
}

.element-photos-slider-nav span:hover {
    color: #939393;
}

.element-photos-slider-nav span svg {
    width: 16px;
    height: auto;
}

.element-photos-slider-nav span.slider-nav-disabled {
    color: #CFCFCF;
}

.element-photos-slider-nav span:first-child {
    inset: 0 auto auto 50%;
    transform: translatex(-50%);
}

.element-photos-slider-nav span:last-child {
    inset: auto auto 0 50%;
    transform: translatex(-50%);
}

.element-photos-slide:not(:last-child) {
    margin-bottom: 12px;
}

.element-photos-slide span {
    position: relative;
    display: block;
    width: 72px;
    height: 72px;
    margin: 2px;
    background-color: #f5f5f5;
    border-radius: 9px;
    overflow: hidden;
    transition: box-shadow 300ms;
}

.element-photos-slide-active span {
    box-shadow: 0 0 0 2px #939393
}

.element-photos-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.element-photos-container {
    width: 100%;
}

.element-photos-wrapper {
    position: relative;
    padding-top: 100%;
    height: 0;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.element-photos-wrapper a {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.element-photos-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.element-article {
    margin-bottom: 8px;
}

.element-article span {
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    height: 27px;
    font-size: 14px;
    color: #515151;
    background: #F5F7F7;
    border-radius: 8px;
}

.element-body {
    width: calc(100% - 716px);
}

.element-title h1 {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    color: #262626;
}

.element-props {
    margin-top: 12px;
}

.element-prop {
    font-size: 16px;
    line-height: 140%;
    color: #262626;
}

.element-prop:not(:last-child) {
    margin-bottom: 2px;
}

.element-prop span {
    color: #6c6c6c;
}

.element-text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 140%;
}

.element-fractions {
    margin-top: 24px;
}

.element-fractions-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    white-space: nowrap;
}

.element-fractions-title {
    font-size: 16px;
    line-height: 140%;
    color: #262626;
}

.element-fractions-noty {
    position: relative;
    margin-left: 8px;
}

.element-fractions-noty-icon svg {
    width: 16px;
    height: auto;
}

.element-fractions-noty-content {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    bottom: calc(100% + 12px);
    left: -12px;
    transition: opacity 300ms;
    z-index: 2;
}

.element-fractions-noty:hover .element-fractions-noty-content {
    opacity: 1;
    visibility: visible;
}

.element-fractions-noty-wrapper {
    display: block;
    padding: 16px;
    background-color: #F5F7F7;
    background-color: rgb(245 247 247 / 90%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    font-size: 14px;
    line-height: 135%;
    width: 288px;
    color: #262626;
    white-space: normal;
}

.element-fractions-noty-wrapper:after {
    content: '';
    position: absolute;
    left: 10px;
    top: calc(100% - 2px);
    border: 10px solid transparent;
    border-top: 10px solid #F5F7F7;
    z-index: -1;
}

.element-fractions-list,.element-fractions-list-st {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.element-fractions-list a,.element-fractions-list-st a {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    height: 44px;
    font-size: 16px;
    color: #262626;
    border: 1px solid #CFCFCF;
    border-radius: 12px;
    transition: border 300ms;
}

.element-fractions-list a.active,.element-fractions-list-st a.active {
    border-color: #262626;
}

.element-panel {
    display: flex;
    align-items: flex-end;
    margin-top: 16px;
}

.element-count {
    display: inline-block;
}

.element-count-title {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 140%;
    color: #262626;
    margin-bottom: 8px;
}

.element-count-title span {
    color: #515151;
}

.element-count-input {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #CFCFCF;
    border-radius: 12px;
    overflow: hidden;
    transition: border 300ms;
}

.element-count-input:hover,
.element-count-input.focus {
    border-color: #262626;
}

.element-count-input label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    padding: 0 36px;
    cursor: text;
}

.element-count-input label span {
    font-size: 16px;
    color: #262626;
    margin-left: 5px;
}

.element-count-input input {
    border: none;
    color: #262626;
    width: 0;
    height: 100%;
    text-align: center;
}

.element-count-input-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: none;
    color: #262626;
    transition: color 300ms;
    cursor: pointer;
    z-index: 1;
}

.element-count-input-button svg {
    width: 12px;
    height: auto;
}

.element-count-input-disabled {
    color: #CACDCD;
}

.element-count-input-delimeter {
    width: 0;
    height: 0;
    overflow: hidden;
}

.element-count-input-delimeter-size {
    font-size: 16px;
    font-family: '~';
}

.element-stock {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    white-space: nowrap;
    font-size: 16px;
    line-height: 140%;
    padding-bottom: 14px;
    color: #0F1011;
}

.element-stock span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ED2D2D;
    margin-right: 9px;
    border-radius: 50%;
    vertical-align: middle;
}

.element-stock-in span {
    background-color: #73C661;
}

.element-prices {
    margin-top: 24px;
}

.element-prices-dealers {
    display: flex;
    align-items: center;
}

.element-price {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    color: #262626;
}

.element-link {
    margin-top: 16px;
    width: 208px;
    text-align: center;
}

.element-link a {
    font-size: 14px;
    text-decoration: underline;
    color: #515151;
}

.element-link a:hover {
    text-decoration: none;
}

.element-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.element-button-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 52px;
    width: 208px;
    background: #262626;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    transition: background 300ms;
    cursor: pointer;
}

.element-button-add:not(.added):hover {
    background-color: #515151;
}

.element-button-add.added>span:first-child {
    display: none;
}

.element-button-add:not(.added)>span:last-child {
    display: none;
}

.element-button-add>span>span:last-child {
    display: none;
}

.element-price-dealer {
    display: inline-flex;
    flex-direction: column;
}

.element-price-dealer-total {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    color: #262626;
}

.element-price-dealer-value {
    font-size: 14px;
    line-height: 100%;
    margin-top: 4px;
    color: #515151;
}

.element-price-dealer-old {
    display: inline-flex;
    justify-content: flex-end;
    flex-direction: column;
    height: 48px;
    border-left: 1px solid #E6E6E6;
    margin-left: 20px;
    padding-left: 20px;
}

.element-price-dealer-total-old {
    font-size: 18px;
    line-height: 115%;
    color: #939393;
    text-decoration: line-through;
}

.element-price-dealer-value-old {
    font-size: 14px;
    line-height: 100%;
    margin-top: 6px;
    color: #939393;
}

@media screen and (max-width: 1279px) {
    .element-brcr {
        margin-bottom: 24px;
    }

    .element-photos-slider-container {
        height: 428px;
    }

    .element-body {
        width: calc(100% - 632px);
    }

    .element-photos {
        max-width: 600px;
    }

    .element-article span {
        height: 24px;
        font-size: 12px;
    }

    .element-title h1 {
        font-size: 22px;
    }

    .element-props {
        margin-top: 16px;
    }

    .element-prop {
        font-size: 14px;
        line-height: 130%;
    }

    .element-text {
        margin-top: 12px;
        font-size: 14px;
        line-height: 130%;
    }

    .element-fractions {
        margin-top: 20px;
    }

    .element-fractions-title {
        font-size: 14px;
        line-height: 130%;
    }

    .element-count-title {
        margin-bottom: 12px;
    }

    .element-fractions-list a {
        height: 40px;
        font-size: 14px;
    }

    .element-count-title {
        font-size: 14px;
        line-height: 130%;
    }

    .element-count-input {
        height: 40px;
    }

    .element-stock {
        margin-left: 18px;
        font-size: 14px;
        padding-bottom: 12px;
    }

    .element-price {
        font-size: 22px;
        line-height: 105%;
    }

    .element-link a {
        font-size: 12px;
    }

    .element-buttons {
        margin-top: 20px;
    }

    .element-button-add {
        height: 45px;
        width: 187px;
        font-size: 14px;
    }

    .element-link {
        width: 187px;
    }

    .element-price-dealer-total {
        font-size: 22px;
    }

    .element-price-dealer-value {
        font-size: 12px;
    }

    .element-price-dealer-total-old {
        font-size: 16px;
    }

    .element-price-dealer-value-old {
        font-size: 12px;
    }

    .element-price-dealer-old {
        height: 44px;
    }
}

@media screen and (min-width: 1024px) {
    .element-photos-slider-disabled .element-photos-slider-nav {
        display: none;
    }

    .element-photos-slider-disabled .element-photos-slider-container {
        height: 100%;
    }
}

@media screen and (max-width: 1023px) {
    .element-colums {
        flex-direction: column;
        gap: 20px;
    }

    .element-body {
        width: 100%;
    }

    .element-photos {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .element-photos-slider {
        order: 1;
    }

    .element-photos-slider {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: flex-start;
    }

    .element-photos-slider-container {
        height: auto;
    }

    .element-photos-slider-container {
        touch-action: pan-y;
    }

    .element-photos-slider-wrapper {
        flex-direction: row;
    }

    .element-photos-slide span {
        border-radius: 14px;
        width: 100px;
        height: 100px;
    }

    .element-photos-slide:not(:last-child) {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .element-photos-slider-nav {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .element-photos {
        max-width: none;
    }

    .element-photos-slide span {
        width: 72px;
        height: 72px;
        border-radius: 9px;
    }

    .element-photos-slide:not(:last-child) {
        margin-right: 11px;
    }
}

@media screen and (max-width: 767px) {
    .element-brcr {
        margin-bottom: 20px;
    }

    .element-photos-slider-container {
        margin: 0 -16px;
        padding: 0 16px;
    }

    .element-photos {
        gap: 12px;
    }
}

@media screen and (max-width: 428px) {
    .element-photos-wrapper {
        border-radius: 0;
        margin: 0 -16px;
    }

    .element-count {
        width: 100%;
    }

    .element-count-input {
        width: 100%;
    }

    .element-panel {
        position: relative;
    }

    .element-fractions-header {
        position: relative;
    }

    .element-fractions-noty {
        position: unset;
    }

    .element-fractions-noty-content {
        left: 0;
    }

    .element-fractions-noty-wrapper {
        width: 100%;
        max-width: 288px;
    }

    .element-fractions-noty-wrapper:after {
        left: 68px;
    }

    .element-stock {
        position: absolute;
        right: 0;
        top: 0;
        margin: 0;
        padding: 0;
    }

    .element-link {
        width: 100%;
    }

    .element-buttons {
        gap: 10px;
    }
}

@media screen and (max-width: 374px) {
    .element-button-add>span>span:last-child {
        display: inline;
    }

    .element-button-add>span>span:first-child {
        display: none;
    }

    .element-button-add {
        width: auto;
        flex: 1;
    }

    .element-button-favorite {
        flex: none;
        padding-right: 0;
    }
}

.element-tabs {
    margin-top: 32px;
}

.element-tabs-panel {
    margin-bottom: 24px;
}

@media screen and (max-width: 1279px) {
    .element-tabs {
        margin-top: 20px;
    }

    .element-gallery-tabs {
        margin-right: 0;
        padding-right: 0;
    }
}

.element-description {
    font-size: 16px;
    line-height: 140%;
    max-width: 760px;
}

.element-description p:not(:last-child) {
    margin-bottom: 20px;
}

@media screen and (max-width: 1279px) {
    .element-description {
        font-size: 14px;
        line-height: 130%;
        max-width: 688px;
    }

    .element-description p:not(:last-child) {
        margin-bottom: 16px;
    }
}

.element-gallery {
    margin-top: 80px;
}

.element-gallery-header {
    margin-bottom: 24px;
}

.element-gallery-title {
    font-weight: 500;
    font-size: 42px;
    line-height: 105%;
    color: #262626;
}

.element-gallery-tabs {
    margin-bottom: 20px;
}

.element-gallery-slider-container {
    overflow: hidden;
}

.element-gallery-slide {
    width: calc(33.33333% - 8px);
}

.element-gallery-slide:not(:last-child) {
    margin-right: 12px;
}

.element-gallery-photo {
    position: relative;
    height: 0;
    padding-top: 100%;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    transition: border-radius 300ms;
    z-index: 1;
}

.element-gallery-slide a:hover .element-gallery-photo {
    border-radius: 40px;
}

.element-gallery-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.element-gallery-photo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    opacity: 0;
    background-color: rgb(0 0 0 / 50%);
    transition: opacity 300ms;
}

.element-gallery-slide a:hover .element-gallery-photo-arrow {
    opacity: 1;
}

.element-gallery-photo-arrow svg {
    width: 26px;
    height: auto;
}

.element-gallery-content {
    padding-right: 24px;
}

.element-gallery-label {
    font-size: 14px;
    line-height: 140%;
    text-transform: uppercase;
    color: #767676;
    margin-bottom: 4px;
}

.element-gallery-name {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #262626;
}

.element-gallery-description {
    display: -webkit-box;
    font-size: 16px;
    line-height: 140%;
    margin-top: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.element-gallery-button {
    margin-top: 24px;
    text-align: center;
}

.element-gallery-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 44px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #262626;
    transition: color 300ms;
}

.element-gallery-button a:hover {
    color: #939393;
}

.element-gallery-button svg {
    flex: none;
    width: 12px;
    margin-left: 12px;
}

@media screen and (max-width: 1279px) {
    .element-gallery-header {
        margin-bottom: 24px;
    }

    .element-gallery-title {
        font-size: 36px;
    }

    .element-gallery-slide {
        min-width: 338px;
    }

    .element-gallery-slider-container {
        margin: 0 -40px;
        padding: 0 40px;
    }

    .element-gallery-label {
        font-size: 12px;
    }

    .element-gallery-name {
        font-size: 20px;
    }

    .element-gallery-description {
        font-size: 14px;
        line-height: 130%;
    }

    .element-gallery-button a {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .element-gallery-title {
        font-size: 26px;
    }

    .element-gallery-tabs {
        margin-bottom: 16px;
    }

    .element-gallery-slider-container {
        margin: 0 -16px;
        padding: 0 16px;
    }

    .element-gallery-slide {
        min-width: 288px;
    }

    .element-gallery-name {
        font-size: 18px;
    }

    .main-gallery-description {
        margin-top: 8px;
    }

    .element-gallery-button {
        margin-top: 16px;
    }

    .element-gallery-button a {
        width: 100%;
    }
}

.catalog-banner {
    position: relative;
    background-color: #515151;
    border-radius: 20px;
    margin-bottom: 24px;
    padding: 32px;
    width: 100%;
    min-height: 235px;
    overflow: hidden;
    z-index: 1;
}

.catalog-banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.catalog-banner-title {
    font-weight: 500;
    font-size: 42px;
    line-height: 105%;
    margin-bottom: 38px;
    color: #fff;
}

.catalog-banner-text {
    font-size: 16px;
    line-height: 140%;
    max-width: 835px;
    color: #ffffff;
}

.catalog-banner-content {
    position: relative;
}

@media screen and (max-width: 1279px) {
    .catalog-banner {
        min-height: 217px;
    }

    .catalog-banner-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .catalog-banner-text {
        font-size: 14px;
        line-height: 130%;
        max-width: 512px;
    }
}

@media screen and (max-width: 767px) {
    .catalog-banner {
        padding: 16px;
        margin-bottom: 20px;
        min-height: 293px;
    }

    .catalog-banner-title {
        font-size: 26px;
        line-height: 110%;
    }
}

.lk-modal {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    white-space: nowrap;
    background-color: rgb(0 0 0 / 50%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    z-index: 10;
}

.lk-modal:before {
    content: '';
    display: inline-block;
    overflow: hidden;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.lk-modal-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    text-align: left;
    max-width: 100%;
    width: 100%;
    max-width: 388px;
    width: 100%;
}

.lk-modal-content {
    padding: 32px;
    border-radius: 20px;
    background-color: #fff;
}

.lk-modal-close {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    inset: 12px 12px auto auto;
    transition: opacity 300ms;
    cursor: pointer;
}

.lk-modal-close:hover {
    opacity: 0.7;
}

.lk-modal-content {
    text-align: center;
}

.lk-modal-check {
    margin-bottom: 12px;
}

.lk-modal-check span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #F5F7F7;
    border: 1px solid #E6E6E6;
    border-radius: 50%;

}

.lk-modal-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #262626;
}

.lk-modal-text {
    font-size: 18px;
    line-height: 150%;
    margin-top: 16px;
    color: #515151;
}

.lk-modal-button {
    margin-top: 24px;
}

.lk-modal-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 52px;
    width: 100%;
    background-color: #262626;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    transition: background 300ms;
    cursor: pointer;
}

.lk-modal-button span:hover {
    background-color: #515151;
}

@media screen and (max-width: 767px) {
    .lk-modal-content {
        padding: 16px;
        border-radius: 12px;
    }

    .lk-modal-button {
        margin-top: 16px;
    }

    .lk-modal-button span {
        height: 44px;
        font-size: 14px;
    }

    .lk-modal-text {
        font-size: 16px;
        line-height: 140%;
        margin-top: 12px;
    }

    .lk-modal-title {
        font-size: 19px;
        line-height: 110%;
    }

    .lk-modal-check span {
        height: 48px;
        width: 48px;
    }
}

.catalog-sort {
    width: 100%;
    margin-bottom: -4px;
}

.catalog-sort-block {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.catalog-sort-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #515151;
}

.catalog-sort-value {
    position: relative;
}

.catalog-sort-value-block {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #262626;
    transition: color 300ms;
}

.catalog-sort-value:not(.open) .catalog-sort-value-block:hover {
    color: #939393;
}

.catalog-sort-value-text {
    font-size: 14px;
    line-height: 135%;
}

.catalog-sort-value-arrow {
    flex: none;
    width: 16px;
    height: auto;
}

.catalog-sort-value-dropdown {
    background-color: #FFFFFF;
    box-shadow: 0px 8px 45px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 8px;
    display: block;
    position: absolute;
    opacity: 0;
    top: calc(100% + 8px);
    left: -20px;
    transform: translatey(-10px);
    visibility: hidden;
    transition: opacity 300ms, visibility 300ms, transform 300ms;
    z-index: 2;
}

.catalog-sort-value.open .catalog-sort-value-dropdown {
    transform: translatey(0);
    opacity: 1;
    visibility: visible;
}

.catalog-sort-value-item {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 12px;
    gap: 12px;
    white-space: nowrap;
    cursor: pointer;
    transition: background 300ms;
}

.catalog-sort-value-item:hover {
    background-color: #F5F7F7;
}

.catalog-sort-value-item span {
    font-size: 14px;
    line-height: 135%;
    color: #262626;
}

.catalog-sort-value-item svg {
    flex: none;
    width: 12px;
    height: auto;
    margin-left: auto;
    opacity: 0;
}

.catalog-sort-value-item.active svg {
    opacity: 1;
}

.sort-modal {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    white-space: nowrap;
    background-color: rgb(0 0 0 / 50%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    z-index: 100000;
}

.sort-modal:not(.open) {
    display: none;
}

.sort-modal:before {
    content: '';
    display: inline-block;
    overflow: hidden;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.sort-modal-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    text-align: left;
    max-width: 100%;
    width: 100%;
    max-width: 440px;
    width: 100%;
}

.sort-modal-content {
    background-color: #FFFFFF;
    padding: 8px;
    box-shadow: 0px 8px 45px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.sort-modal-title {
    margin: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    color: #262626;
}

.sort-modal-item {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 12px;
    gap: 12px;
    white-space: nowrap;
    cursor: pointer;
    transition: background 300ms;
}

.sort-modal-item:hover {
    background-color: #F5F7F7;
}

.sort-modal-item span {
    font-size: 14px;
    line-height: 135%;
    color: #262626;
}

.sort-modal-item svg {
    flex: none;
    width: 12px;
    height: auto;
    margin-left: auto;
    opacity: 0;
}

.sort-modal-item.active svg {
    opacity: 1;
}

@media screen and (max-width: 1023px) {
    .catalog-sort {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .catalog-filter-btn {
        padding: 0 16px;
    }

    .sort-modal {
        padding-bottom: 16px;
    }

    .sort-modal-wrapper {
        vertical-align: bottom;
    }
}

.min-modal {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    white-space: nowrap;
    background-color: rgb(0 0 0 / 50%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    z-index: 10;
}

.min-modal:before {
    content: '';
    display: inline-block;
    overflow: hidden;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.min-modal-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    text-align: left;
    max-width: 100%;
    width: 100%;
    max-width: 388px;
    width: 100%;
}

.min-modal-content {
    padding: 32px;
    border-radius: 20px;
    background-color: #fff;
}

.min-modal-close {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    inset: 12px 12px auto auto;
    transition: opacity 300ms;
    cursor: pointer;
}

.min-modal-close:hover {
    opacity: 0.7;
}

.min-modal-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 16px;
    color: #0F1011;
}

.min-modal-text {
    font-size: 17px;
    line-height: 150%;
    color: #515151;
}

.min-modal-button {
    margin-top: 24px;
}

.min-modal-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 52px;
    width: 100%;
    background: #262626;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    transition: background 300ms;
    cursor: pointer;
}

.min-modal-button span:hover {
    background-color: #515151;
}

.element-prices-noty {
    margin-top: 12px;
}

.element-prices-noty span {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background-color: #F5F7F7;
    height: 27px;
    color: #515151;
    padding: 0 8px;
    font-size: 14px;
}

@media screen and (max-width: 1279px) {
    .min-modal-title {
        font-size: 18px;
    }

    .min-modal-text {
        font-size: 16px;
    }

    .min-modal-button span {
        height: 44px;
        font-size: 14px;
    }

    .element-prices-noty span {
        height: 24px;
        font-size: 12px;
    }
}

@media screen and (max-width: 650px) {
    .min-modal-content {
        padding: 16px;
    }

    .min-modal-title {
        margin-bottom: 12px;
    }

    .min-modal-button {
        margin-top: 16px;
    }
}




.filter-props__item,.filter-props__remove{
    display:inline-block;
    font-size:14px;
    margin-bottom:10px;
    margin-right:10px;
    cursor:pointer;
}

.filter-props__remove svg{
    display:inline-block;
    height:12px;
    width:14px;
    margin:0 3px;
}

.filter-reset{
    text-decoration: underline;
}
