:root {
    --black: #151414;
    --white: #FFF;
    --grey: #7c7c7c;
    --grey-light: #b6b5b5;
    --grey-light2: #dedede;
    --grey-light3: #d9d9d9;
    --grey-light4: #ebeaea;
    --grey-extra-light: #f0eeee;
    --red: #e31837;
    --green: #00a046;
    --turquoise: #2ca8b7;
    --orange: #ff9d00;
    --violet: #764bff;
    --pr-green: #02bb00;
    --pr-grey: #a2a2a2;
    --pr-grey2: #999;
    --pr-red: #fe0000;
    --pr-red2: #ed3228;
    --pr-violet: #5a019e;
    --pr-violet2: #9e4d92;
    --pr-orange: #ffb902;
    --pr-pink: #fa00ff;
    --font-family: "Montserrat", sans-serif
}

html {
    font-size: 1rem
}

* {
    padding: 0;
    margin: 0;
    line-height: inherit;
    border: 0
}

*, *::before, *::after {
    box-sizing: border-box
}

body {
    font-family: var(--font-family), sans-serif;
    font-size: .875rem;
    line-height: 1;
    font-weight: 400;
    color: var(--black)
}

a {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    transition: all .2s ease-in-out
}

input {
    width: 100%
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=range] {
    --thumb-color: var(--main-orange-primary);
    --track-color: var(--main-gray);
    width: 100%;
    height: 2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--main-gray);
    border-radius: 5px
}

ul, ol, li {
    list-style: none;
    margin: 0;
    padding: 0
}

b {
    font-weight: 600
}

p {
    line-height: 1.5;
    margin: 0 0 1rem
}

p:last-child {
    margin: 0
}

img {
    max-width: 100%;
    border-radius: .125rem;
    height: auto
}

.pull-right {
    display: flex;
    justify-content: flex-end;
    gap: 1rem
}

.pull-center {
    display: flex;
    justify-content: center;
    gap: 1rem
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-left {
    text-align: left
}

.grey-filter {
    filter: grayscale(1)
}

.color.green {
    background: var(--pr-green)
}

.color.grey {
    background: var(--pr-grey)
}

.color.red {
    background: var(--pr-red)
}

.color.violet {
    background: var(--pr-violet)
}

.color.orange {
    background: var(--pr-orange)
}

.color.pink {
    background: var(--pr-pink)
}

.black-red {
    background: linear-gradient(to bottom, var(--black) 0% 50%, var(--red) 50% 100%)
}

.black-grey {
    background: linear-gradient(to bottom, var(--black) 0% 50%, #999999 50% 100%)
}

.black-violet {
    background: linear-gradient(to bottom, var(--black) 0% 50%, var(--pr-violet2) 50% 100%)
}

.color.active {
    outline: .5px solid var(--black);
    margin: 0 .25rem
}

.image {
    line-height: 0
}

.color-grey {
    color: var(--grey)
}

.color-red {
    color: var(--red)
}

.color-green {
    color: var(--green)
}

.color-violet {
    color: var(--violet)
}

.color-orange {
    color: var(--orange)
}

.color-white {
    color: var(--white)
}

.color-black {
    color: var(--black)
}

.black-bg {
    background: var(--black)
}

.grey-bg {
    background: var(--grey-light)
}

.green-bg {
    background: var(--green)
}

.red-bg {
    background: var(--red)
}

.orange-bg {
    background: var(--orange)
}

.turquoise-bg {
    background: var(--turquoise)
}

.limited-block-js {
    position: relative;
    overflow: hidden;
    transition: .2s ease-in-out
}

.show-more-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 10
}

.show-more-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgb(255, 255, 255) 100%)
}

.show-more-wrapper.disabled {
    display: none
}

.show-more-btn-js {
    position: absolute
}

.icon-dollar {
    font-size: 1.5rem;
    color: var(--orange)
}

.quantity {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 7.5rem;
    height: -moz-fit-content;
    height: fit-content;
    background: var(--grey-light4);
    padding: .5rem .375rem
}

.quantity label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    line-height: 1.2;
    width: 100%;
    min-width: 2.25rem
}

.quantity input {
    font-size: inherit;
    text-align: center;
    background: inherit
}

.quantity .quan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    cursor: pointer
}

.quantity .quan-btn-plus {
    order: 2
}

.quantity .icon {
    font-size: .75rem
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 19;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out
}

.overlay.active {
    opacity: 1;
    visibility: visible
}

.social-list {
    display: flex;
    align-items: center;
    gap: 1rem
}

.social-list .icon {
    font-size: 1.5rem
}

.social-list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem
}

.social-list a:hover {
    color: var(--orange)
}

.link {
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.2;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

.link:hover {
    color: var(--green)
}

.link-count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    font-weight: 500;
    line-height: 0;
    font-size: .625rem;
    color: var(--white);
    background: var(--green)
}

.logo {
    transition: none
}

.heading-h1 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.title-default {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem
}

.content-title {
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 1rem
}

.content-title.with-border {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey-light4)
}

.margin-0 {
    margin: 0 !important
}

.section {
    padding: 1rem 0
}

.section-bottom {
    padding: 1rem 0 2rem 0
}

.mobile-hidden, .hidden {
    display: none
}

.overflow-hidden {
    overflow: hidden
}

.icon-vector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    font-size: .5rem;
    transition: all .2s ease-in-out
}

.dropdown-button.active .icon-vector, .dropdown-btn.active .icon-vector {
    transform: rotate(180deg)
}

.dropdown-absolute {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
    padding: .5rem;
    border: 1px solid var(--grey-light);
    background: var(--white)
}

.dropdown-absolute.open {
    max-height: 10000px;
    opacity: 1;
    visibility: visible
}

.dropdown-block {
    height: 0;
    overflow: hidden;
    transition: all .3s ease-in-out
}

.dropdown-block.open {
    height: auto
}

.product-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: .5rem;
    padding: .75rem 0;
    border-top: 1px solid var(--grey-light4);
    position: relative
}

.product-item .image-name {
    display: flex;
    align-items: center;
    gap: 1rem
}

.product-item .image {
    width: 5rem;
    min-width: 5rem;
    height: 5rem
}

.product-item .name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: .625rem;
    margin-bottom: .375rem;
    line-height: 1.2
}

.product-item .descr {
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.product-item .descr-row {
    font-weight: 500;
    font-size: .625rem;
    line-height: 1.3
}

.product-item .article {
    text-transform: uppercase
}

.product-item .quantity {
    padding: .375rem
}

.product-item .quantity label {
    font-size: .75rem
}

.product-item .quantity input {
    width: 1rem
}

.product-item .quantity .icon {
    font-size: .625rem
}

.product-item .price-wrap, .product-item .quantity-wrap, .product-item .buttons {
    width: 50%
}

.product-item .price-wrap .text {
    font-size: .625rem;
    margin-bottom: .375rem
}

.product-item .price {
    font-size: .875rem
}

.product-item .quantity-wrap {
    display: flex;
    justify-content: flex-end
}

.product-item .buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem
}

.product-item .icon-btn {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0
}

.product-item .icon-btn svg {
    width: 1rem;
    height: 1rem
}

.product-item .icon-btn.color-green {
    color: var(--green);
    border: 1px solid var(--green)
}

.product-item .icon-btn.color-green:hover {
    color: var(--red);
    border: 1px solid var(--red)
}

.product-item .icon-btn.wish:hover, .product-item .icon-btn.wish.in_wishlist {
    border: 1px solid var(--red)
}

.product-item .icon-btn.wish:hover svg path, .product-item .icon-btn.wish.in_wishlist svg path {
    fill: var(--red);
    stroke: var(--red)
}

.wish svg path {
    fill: rgba(0, 0, 0, 0);
    stroke: var(--grey);
    transition: all .2s ease-in-out
}

.wish.in_wishlist svg path, .wish:hover svg path {
    fill: var(--red);
    stroke: var(--red)
}

.price-wrap {
    display: flex;
    flex-direction: column
}

.price-wrap.for-one {
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    line-height: 19px
}

.price-wrap.for-one .text {
    margin-bottom: 0
}

.price-wrap.for-one .price {
    font-size: .75rem
}

.new-price {
    font-weight: 600;
    color: var(--red);
    line-height: 1.25;
    white-space: nowrap
}

.old-price {
    text-decoration: line-through;
    font-weight: 500;
    line-height: 1.2;
    font-size: .75rem;
    color: var(--grey);
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content
}

.price {
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap
}

.rating-wrap {
    display: flex;
    align-items: center;
    gap: .375rem
}

.rating-wrap .icon-message {
    color: var(--grey);
    font-size: .75rem
}

.rating-wrap .mess-counter {
    font-weight: 500;
    font-size: .625rem;
    color: var(--grey)
}

.rating {
    display: flex;
    align-items: center
}

.rating .icon-star {
    font-size: .5rem;
    color: var(--orange)
}

.rating .icon-star + .icon-star {
    margin-left: 1px
}

.rating span {
    display: inline-block;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: .75rem;
    color: var(--beige-dark);
    margin-left: 6px
}

.status {
    display: block;
    line-height: 1.25;
    font-weight: 600;
    font-size: .75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.status i {
    vertical-align: -1px
}

.custom-dropdown {
    width: -moz-fit-content;
    width: fit-content
}

.custom-dropdown .dropdown-toggle::after {
    content: "";
    font-family: "icomoon";
    border: none;
    font-size: .5rem;
    transition: all .2s ease-in-out
}

.custom-dropdown .dropdown-toggle.show::after {
    transform: rotate(180deg)
}

.custom-dropdown .dropdown-menu {
    inset: 0 !important;
    height: -moz-fit-content;
    height: fit-content;
    min-width: auto
}

.custom-dropdown .dropdown-item {
    white-space: wrap
}

::-webkit-scrollbar {
    width: .25rem;
    height: .25rem
}

::-webkit-scrollbar-track {
    background: var(--grey);
    border-radius: 0px
}

::-webkit-scrollbar-thumb {
    background: var(--black);
    border-radius: 0px
}

.copytext {
    position: relative;
    cursor: pointer
}

.article {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .75rem;
    color: var(--grey);
    line-height: 1.25
}

.article .text {
    color: var(--black)
}

.copied-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

.copied-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    border: 6px solid rgba(0, 0, 0, 0);
    border-top-color: #222
}

.copied-tooltip.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.custom-border-block {
    border: 1px solid var(--grey-light4);
    border-radius: .125rem;
    padding: 1rem;
    margin-bottom: 1rem
}

.product-reviews .green-border-btn {
    margin-bottom: 1rem;
    font-size: .875rem;
    padding: .625rem 2.5rem
}

.product-reviews .modal-body .green-border-btn {
    margin-bottom: 0
}

.product-reviews .custom-border-block {
    margin: 0
}

.product-reviews .review-block {
    margin-bottom: 1.5rem
}

.product-reviews .name-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem
}

.product-reviews .name {
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.5
}

.product-reviews .date {
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.5
}

.product-reviews .rating {
    gap: .25rem;
    margin-bottom: .5rem
}

.product-reviews .rating .icon-star {
    font-size: .75rem
}

.faq {
    margin-top: 1rem
}

@media screen and (min-width: 768px) {
    .product-item .name {
        font-size: .75rem
    }

    .product-item .image-name {
        width: 100%
    }

    .product-item .price-wrap, .product-item .quantity-wrap, .product-item .buttons {
        width: 25%
    }

    .product-item .for-one {
        order: 1;
        flex-direction: column;
        gap: 0;
        align-items: flex-start
    }

    .product-item .for-all {
        order: 2
    }

    .product-item .quantity-wrap {
        order: 3
    }

    .product-item .buttons {
        order: 4
    }
}

@media screen and (min-width: 992px) {
    .section {
        padding: 2rem 0
    }

    .section-bottom {
        padding: 2rem 0 4rem 0
    }

    .content-title {
        margin-bottom: 2rem
    }

    .content-title.type2 {
        margin-bottom: 1rem
    }

    .heading-h1 {
        font-size: 1.5rem;
        line-height: 1;
        margin-bottom: 2rem
    }

    .mobile-hidden {
        display: block
    }

    .desc-hidden {
        display: none
    }

    .rating {
        gap: .25rem
    }

    .rating .icon-star {
        font-size: .625rem
    }

    .old-price {
        font-size: .875rem
    }

    .new-price, .price {
        font-size: 1.25rem
    }

    .product-item {
        align-items: center;
        justify-content: space-between
    }

    .product-item .image-name {
        max-width: 15.25rem
    }

    .product-item .price-wrap {
        align-items: center
    }

    .product-item .price-wrap, .product-item .quantity-wrap, .product-item .buttons {
        width: 93px
    }

    .product-item .old-price {
        font-size: .75rem
    }

    .product-item .new-price {
        font-size: .875rem
    }

    .product-item .quantity-wrap {
        order: 2
    }

    .product-item .for-all {
        order: 3
    }

    .product-item .buttons {
        order: 4
    }
}

@media screen and (min-width: 1200px) {
    .faq {
        margin-top: 0
    }

    .title-default {
        font-size: 1.5rem;
        margin-bottom: 2rem
    }

    .custom-border-block {
        padding: 1rem;
        margin-bottom: 1.5rem
    }

    .product-item {
        padding: 1rem 1.5rem 1rem 0
    }

    .product-reviews .green-border-btn {
        margin-bottom: 2rem
    }

    .product-reviews .modal-body .green-border-btn {
        margin-bottom: 0
    }
}

[class^=icon-], [class*=" icon-"] {
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-black-round:before {
    content: ""
}

.icon-edit:before {
    content: ""
}

.icon-map-point:before {
    content: ""
}

.icon-exit:before {
    content: ""
}

.icon-selected-bold:before {
    content: ""
}

.icon-basket:before {
    content: ""
}

.icon-dollar:before {
    content: ""
}

.icon-info:before {
    content: "";
    color: #7c7c7c
}

.icon-plus:before {
    content: ""
}

.icon-minus:before {
    content: ""
}

.icon-credit:before {
    content: ""
}

.icon-track:before {
    content: ""
}

.icon-columns:before {
    content: ""
}

.icon-filter:before {
    content: ""
}

.icon-sort:before {
    content: ""
}

.icon-close:before {
    content: ""
}

.icon-rows:before {
    content: ""
}

.icon-massage:before {
    content: ""
}

.icon-crossfit:before {
    content: ""
}

.icon-bandages:before {
    content: ""
}

.icon-weights:before {
    content: ""
}

.icon-expanders:before {
    content: ""
}

.icon-fitness:before {
    content: ""
}

.icon-grips:before {
    content: ""
}

.icon-harnesses:before {
    content: ""
}

.icon-boxing:before {
    content: ""
}

.icon-loops:before {
    content: ""
}

.icon-tactical:before {
    content: ""
}

.icon-viber:before {
    content: ""
}

.icon-balance:before {
    content: ""
}

.icon-instagram:before {
    content: ""
}

.icon-home:before {
    content: ""
}

.icon-burger:before {
    content: ""
}

.icon-catalog:before {
    content: ""
}

.icon-vector:before {
    content: ""
}

.icon-search:before {
    content: ""
}

.icon-user:before {
    content: ""
}

.icon-telephone:before {
    content: ""
}

.icon-wish:before {
    content: ""
}

.icon-cart:before {
    content: ""
}

.icon-copy:before {
    content: ""
}

.icon-selected:before {
    content: ""
}

.icon-message:before {
    content: ""
}

.icon-star:before {
    content: ""
}

.icon-arrow-left:before {
    content: ""
}

.icon-arrow-right:before {
    content: ""
}

.icon-facebook:before {
    content: ""
}

.icon-telegram:before {
    content: ""
}

.icon-interest:before {
    content: ""
}

.alert {
    font-size: 13px;
    line-height: 1
}

.text-danger {
    color: red
}

.alert-danger {
    color: red
}

.alert-success {
    color: green
}

.second-form-field {
    position: relative
}

.second-form-field .alert {
    position: absolute;
    left: 0;
    bottom: -14px
}

.second-form-field[class*=col-] .alert {
    left: 1rem
}

.product-reviews .second-form-field .alert {
    text-align: center
}

.product-reviews .second-form-field .text-danger {
    position: static;
    padding: 0
}

.text-alert {
    font-size: .75rem;
    line-height: 1;
    position: absolute;
    left: 0;
    bottom: -14px
}

.text-alert.position-static {
    position: static
}

.alert-dismissible {
    width: auto;
    max-width: 350px;
    min-width: 300px;
    background-color: #00a046;
    color: #fff;
    font-size: .75rem;
    line-height: 1.2;
    box-sizing: border-box;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999999;
    text-align: center;
    padding: 1rem 2rem 1rem 1rem;
    box-shadow: 0 0 4px 0 rgba(56, 38, 91, .35);
    margin-left: 20px
}

.alert-dismissible .btn {
    margin-top: 20px
}

.alert-dismissible a {
    font-size: inherit;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    padding: .75rem 1.5rem;
    border: 1px solid #fff
}

.alert-dismissible a:hover {
    border: 1px solid #fff;
    color: #151414;
    background: #fff
}

.alert .close, .alert .btn-close {
    position: absolute;
    padding: 0;
    top: .5rem;
    right: .5rem;
    color: #fff;
    width: 1rem;
    height: 1rem;
    background-color: rgba(0, 0, 0, 0);
    font-size: .75rem
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
    font-family: inherit;
    transition: all .2s ease-in-out
}

button:focus-visible, button:focus, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: none !important;
    box-shadow: none !important
}

.btn, .black-btn, .green-border-btn, .green-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    gap: .625rem;
    border: 1px solid var(--black);
    padding: .5rem;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 600;
    white-space: nowrap;
    font-size: .75rem;
    border-radius: .125rem;
    cursor: pointer
}

.btn:hover, .black-btn:hover, .green-border-btn:hover, .green-btn:hover {
    color: var(--white);
    background: var(--black)
}

.btn .icon-cart, .black-btn .icon-cart, .green-border-btn .icon-cart, .green-btn .icon-cart {
    font-size: 1.25rem
}

.black-btn {
    background: var(--black);
    color: var(--white)
}

.black-btn:hover {
    background: var(--white);
    color: var(--black)
}

.white-btn {
    color: var(--white);
    border: 1px solid var(--white)
}

.white-btn-inverse {
    border: 1px solid var(--black);
    color: var(--black);
    background-color: var(--white)
}

.white-btn-inverse:hover {
    background-color: var(--black);
    color: var(--white)
}

.green-btn {
    background: var(--green);
    color: var(--white);
    padding: .625rem;
    font-size: .875rem;
    border: 1px solid var(--green)
}

.green-btn:hover {
    background: var(--pr-green);
    border: 1px solid var(--pr-green)
}

.green-border-btn {
    color: var(--green);
    border: 1px solid var(--green);
    padding: .625rem;
    font-size: .875rem
}

.green-border-btn.in-cart, .green-border-btn:hover {
    background: var(--pr-green);
    color: var(--white)
}

.green-border-btn .icon {
    font-size: 1.25rem
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    border-radius: .125rem;
    color: var(--grey);
    border: 1px solid var(--grey-light);
    padding: .375rem;
    transition: all .2s ease-in-out
}

.icon-btn:hover {
    color: var(--green);
    border: 1px solid var(--green)
}

.icon-btn .icon-balance {
    font-size: 1.375rem
}

.icon-btn .icon-wish {
    font-size: 1.25rem;
    vertical-align: middle
}

.transparent-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .375rem
}

.transparent-btn:hover {
    color: var(--green)
}

.btn-wrapper {
    margin-bottom: 1rem
}

.close-btn {
    display: flex;
    justify-content: center;
    align-items: center
}

.show-more-btn-js {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 2rem;
    background: var(--black);
    border-radius: .125rem;
    color: var(--white)
}

.show-more-btn-js .icon-vector {
    font-size: .75rem;
    width: auto;
    height: auto
}

.delete-all span {
    transition: all .2s ease-in-out
}

.delete-all:hover {
    color: var(--red)
}

.delete-all:hover span {
    color: var(--red)
}

@media only screen and (min-width: 992px) {
    .btn, .black-btn, .green-btn {
        padding: .625rem 1rem;
        font-size: .875rem
    }

    .green-btn {
        padding: .625rem
    }
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 1rem
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    background-color: #fff;
    border-collapse: collapse
}

.table th, .table td {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    line-height: 1.3
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6
}

.table table-bordered {
    border: 1px solid #dee2e6
}

.table table-bordered th, .table table-bordered td {
    border: 1px solid #dee2e6
}

.table table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, .075)
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

@media (max-width: 768px) {
    .table-responsive {
        -webkit-overflow-scrolling: touch
    }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px
    }
}

:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x))
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-25 {
    flex: 0 0 auto;
    width: 20%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-25 {
        flex: 0 0 auto;
        width: 20%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-25 {
        flex: 0 0 auto;
        width: 20%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-25 {
        flex: 0 0 auto;
        width: 20%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .offset-lg-25 {
        margin-left: 20%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333333%
    }

    .offset-lg-5 {
        margin-left: 41.66666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333333%
    }

    .offset-lg-8 {
        margin-left: 66.66666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333333%
    }

    .offset-lg-11 {
        margin-left: 91.66666667%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-25 {
        flex: 0 0 auto;
        width: 20%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333333%
    }

    .offset-xl-5 {
        margin-left: 41.66666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333333%
    }

    .offset-xl-8 {
        margin-left: 66.66666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333333%
    }

    .offset-xl-11 {
        margin-left: 91.66666667%
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-25 {
        flex: 0 0 auto;
        width: 20%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%
    }
}

.m-0 {
    margin: 0 !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-medium {
    font-weight: 500 !important
}

.fw-semibold {
    font-weight: 600 !important
}

.fw-bold {
    font-weight: 700 !important
}

.fw-bolder {
    font-weight: bolder !important
}

.lh-1 {
    line-height: 1 !important
}

.lh-sm {
    line-height: 1.25 !important
}

.lh-base {
    line-height: 1.5 !important
}

.lh-lg {
    line-height: 2 !important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
    font-size: 1.25rem !important
}

.fs-6 {
    font-size: 1rem !important
}

.text-white {
    color: #fff !important
}

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: var(--bs-body-color);
    --bs-dropdown-bg: var(--bs-body-bg);
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: var(--bs-border-radius);
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: var(--bs-box-shadow);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: .5rem .25rem .25rem;
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--grey-light4);
    border-radius: .25rem
}

.dropdown-menu.show {
    display: block
}

.dropdown-item {
    display: block;
    width: 100%;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    margin-bottom: .25rem;
    padding: .25rem .5rem
}

.tooltip {
    font-size: .75rem;
    line-height: 1.2
}

.container {
    padding-left: 1rem;
    padding-right: 1rem
}

.row {
    margin-left: -0.625rem;
    margin-right: -0.625rem
}

.row > * {
    padding-left: .625rem;
    padding-right: .625rem
}

.dropdown-item {
    font-family: var(--font-family);
    font-size: .875rem
}

.dropdown-item:hover {
    color: var(--green)
}

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1360px;
        padding: 0
    }
}

.row-product {
    row-gap: 1rem;
    margin-left: -5px;
    margin-right: -5px
}

.row-product > [class^=col-] {
    padding-left: 5px;
    padding-right: 5px
}

.accordion {
    --bs-accordion-color: #151414;
    --bs-accordion-bg: #fff;
    --bs-accordion-border-color: #dee2e6;
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: #151414;
    --bs-accordion-btn-bg: #fff;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23151414' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform .2s ease-in-out;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    margin-bottom: 1rem
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    margin-bottom: 1rem
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius)
}

.accordion-item:last-of-type {
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius)
}

.accordion-header {
    margin-bottom: 0
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: .875rem;
    font-weight: 500;
    color: var(--bs-accordion-btn-color);
    text-align: left;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
    gap: 1rem;
    line-height: 1.3
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-btn-color);
    background-color: var(--bs-accordion-bg)
}

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition)
}

.accordion-button:not(.collapsed)::after {
    transform: var(--bs-accordion-btn-icon-transform)
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none
}

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
    line-height: 1.5
}

.accordion-body ul, .accordion-body ol {
    margin-bottom: 1rem
}

.accordion-body ul li:not(:last-child), .accordion-body ol li:not(:last-child) {
    margin-bottom: 1rem
}

.collapse {
    height: 0;
    overflow: hidden;
    transition: height .25s ease
}

.collapse.show {
    height: auto
}

@media screen and (min-width: 1200px) {
    .accordion {
        margin-bottom: 2rem
    }

    .accordion-button {
        font-size: 1rem
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    max-width: 730px;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transform: translate(0, -50px);
    transition: transform .3s ease-out
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #151414;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: 1rem 0 1rem;
    border-bottom: 1px solid #ebeaea;
    margin-left: 1.5rem;
    margin-right: 1.5rem
}

.modal-header .btn-close {
    padding: 1rem;
    margin: -0.5rem -0.5rem -0.5rem auto
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, .125);
    border-bottom-right-radius: -1px;
    border-bottom-left-radius: -1px
}

.modal-footer > * {
    margin: .25rem
}

.modal-log-in .modal-dialog {
    max-width: 500px
}

.modal-log-in .modal-dialog .btn {
    width: 100%
}

.modal-log-in .modal-dialog .loginaccount, .modal-log-in .modal-dialog .createaccount {
    margin-bottom: 1rem
}

@media only screen and (min-width: 576px) {
    .modal-dialog {
        margin: .5rem auto
    }

    .modal-body {
        padding: 1.5rem
    }
}

.sticky-container {
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff
}

.header-bottom-container {
    z-index: 999
}

.header-bottom-container.fixed-block {
    box-shadow: 0px 4px 4px 0 rgba(56, 38, 91, .1)
}

.header-top {
    padding: .25rem 0;
    text-align: center
}

.header-top p {
    font-size: .625rem;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase
}

.header-top p span {
    font-size: .875rem
}

.header-top p b {
    font-weight: 800
}

.header-menu {
    display: none
}

.mainmenu-list {
    display: flex;
    align-items: center;
    gap: 1rem
}

.mainmenu-list .icon-interest {
    font-size: 1.25rem
}

.mainmenu-link {
    display: flex;
    align-items: center;
    gap: .25rem;
    line-height: 1.5;
    text-decoration: none
}

.mainmenu-link .icon-vector {
    font-size: .5rem
}

.switcher-contacts-list {
    display: flex;
    align-items: center;
    gap: 2rem
}

.switcher-contacts-list .contacts-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--grey-light);
    border-radius: .125rem;
    padding: .375rem
}

.switcher-contacts-list .contacts-wrap .icon-telephone {
    font-size: .875rem;
    margin-right: .375rem
}

.switcher-contacts-list .contacts-wrap a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1.5;
    padding: 0
}

.switcher-contacts-list .contacts-wrap a:hover {
    color: var(--green)
}

.switcher-contacts-list .contacts-wrap .dropdown-button {
    margin-left: .25rem
}

.switcher-contacts-list .contacts-wrap .icon-vector {
    width: .875rem;
    height: .875rem;
    font-size: .5rem
}

.contacts-wrap .contacts-dropdown .dropdown-menu {
    margin-bottom: -27px !important;
    left: -7px !important;
    right: 4px !important;
    border-radius: 2px;
    border-color: #b6b5b5;
    padding: 5px 6px;
    box-shadow: 0 0 .5rem 0 rgba(56, 38, 91, .35)
}

.contacts-wrap .contacts-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    margin-bottom: .25rem
}

.language-switcher {
    display: flex;
    align-items: center
}

.language-switcher .language-switcher-item {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1.5;
    color: var(--grey);
    text-transform: uppercase
}

.language-switcher .language-switcher-item + .language-switcher-item {
    margin-left: .75rem
}

.language-switcher .language-switcher-item + .language-switcher-item::before {
    content: "";
    display: block;
    position: absolute;
    left: -0.375rem;
    width: 1px;
    height: .875rem;
    background: var(--grey)
}

.language-switcher .language-switcher-item.active {
    color: var(--black)
}

.language-switcher img {
    min-width: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: .25rem;
    border-radius: 50%
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .625rem;
    padding: 1rem 0 .5rem 0
}

.header-bottom .logo {
    min-width: 2.5rem;
    width: 2.5rem;
    height: 1.875rem
}

.header-bottom .black-btn {
    display: none
}

.burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem
}

.burger-btn .icon-burger {
    font-size: 1.5rem
}

.header-user-menu .user-menu-item-icon {
    position: relative
}

.header-user-menu .icon-cart, .header-user-menu .icon-balance {
    font-size: 1.25rem
}

.header-user-menu .icon-wish {
    font-size: 1.125rem
}

.user-menu-item {
    position: relative
}

.user-menu-item .link-count {
    position: absolute;
    top: -0.5rem;
    right: -1.125rem
}

.user-menu-item .text {
    font-weight: 500;
    font-size: .625rem;
    line-height: 1.5
}

.user-menu-item.cart-item {
    min-width: 35px;
    text-align: left
}

@media only screen and (min-width: 768px) {
    .header-bottom .logo {
        min-width: 11.75rem;
        width: 11.75rem
    }

    .header-bottom .logo img {
        width: 100%;
        height: 100%;
        min-height: 33px
    }
}

@media only screen and (min-width: 992px) {
    .header-bottom-container {
        box-shadow: 0px 4px 4px 0 rgba(56, 38, 91, .1)
    }

    .catalog-menu-container.fixed-block {
        top: 60px
    }

    .contacts-wrap .contacts-dropdown .dropdown-menu {
        margin-top: -27px !important;
        margin-bottom: 0 !important
    }

    .header-menu-wrapper {
        border-bottom: 1px solid var(--grey-extra-light)
    }

    .header-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .5rem 0
    }

    .header-user-menu {
        display: flex;
        align-items: flex-end;
        gap: 1rem;
        padding: 0 .5rem
    }

    .header-user-menu > li:has(.icon-user) {
        margin-right: -0.9375rem;
        padding-bottom: 0.0625rem
    }

    .header-user-menu .user-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 2.5rem;
        gap: .375rem
    }

    .header-user-menu .user-menu-item .icon-user {
        font-size: 1.125rem;
    }

    .header-user-menu .user-menu-item:hover {
        color: var(--green)
    }

    .header-bottom {
        padding: .75rem 0
    }

    .header-bottom .burger-btn {
        display: none
    }

    .header-bottom .black-btn {
        display: flex;
        justify-content: space-between;
        min-width: 13.125rem;
        font-size: .75rem
    }

    .header-bottom .black-btn .icon-catalog {
        font-size: 1rem
    }

    .header-bottom .black-btn .icon-vector {
        width: 1.25rem;
        height: 1.25rem;
        font-size: .75rem
    }

    .header-bottom .logo {
        height: 42px
    }

    .header-bottom .logo img {
        min-height: 42px
    }
}

@media only screen and (min-width: 1200px) {
    .mainmenu-list {
        gap: 2rem
    }

    .header-bottom {
        gap: 1.25rem
    }

    .header-bottom .logo img {
        min-height: 44px
    }

    /*.header-user-menu {
        gap: 2rem
    }*/
}

@media only screen and (min-width: 1400px) {
    .switcher-contacts-list {
        gap: 5.25rem
    }

    .header-bottom .logo {
        margin-right: 1.375rem
    }

    /*.header-user-menu {
        gap: 2.5rem
    }*/
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 1.5rem 0 4.875rem
}

.footer .dropdown-block {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    opacity: 1
}

.footer .dropdown-block li {
    font-weight: 500;
    font-size: .75rem;
    line-height: 1.3
}

.footer .dropdown-block p {
    margin-bottom: 0.5rem
}

.footer .dropdown-block li:hover a {
    color: var(--grey-light)
}

.footer .dropdown-block.open {
    height: auto;
    margin-bottom: 1.5rem
}

.footer .dropdown-block.gap-mod {
    gap: .75rem
}

.footer .dropdown-block.open.gap-mod {
    padding-bottom: 1rem;
    border-bottom: 1px solid #3d3d3d
}

.footer .dropdown-block.open.gap-mod a {
    font-weight: 400
}

.footer .dropdown-block.open.gap-mod a .icon-telephone {
    display: none
}

.footer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: .875rem;
    text-transform: uppercase;
    border-bottom: 1px solid #3d3d3d;
    padding-bottom: 1rem;
    margin-bottom: 1rem
}

.footer-title .dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem
}

.footer-title .icon {
    color: var(--grey-light);
    font-size: .75rem;
    transition: all .2s ease-in-out
}

.footer-bottom .text {
    font-weight: 500;
    font-size: .875rem;
    margin-bottom: 1rem
}

.footer-bottom .payments-list {
    display: flex;
    gap: .375rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.footer-bottom-box {
    margin-bottom: 1.5rem
}

.footer-bottom-link {
    display: block;
    font-weight: 500;
    font-size: .625rem;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: .5rem
}

.footer-bottom-link:hover {
    color: var(--grey-light)
}

.copyright {
    font-size: .625rem;
    line-height: 1.5
}

@media screen and (min-width: 768px) {
    .footer .dropdown-btn {
        pointer-events: none
    }

    .footer .icon-vector {
        display: none
    }

    .footer .dropdown-block {
        align-items: center;
        padding: 0;
        height: auto;
        margin-bottom: 2rem;
        overflow: initial
    }

    .footer .dropdown-block.gap-mod {
        padding: 0 !important;
        border: none !important
    }

    .footer-title {
        justify-content: center;
        padding: 0;
        margin-bottom: 1.5rem;
        border: none
    }

    .footer-bottom {
        padding-top: 2rem;
        text-align: center;
        border-top: 1px solid #3d3d3d
    }

    .footer-bottom .payments-list {
        justify-content: center
    }
}

@media screen and (min-width: 992px) {
    .footer {
        padding-bottom: 1.5rem
    }

    .footer .dropdown-block {
        align-items: flex-start;
        margin-bottom: 1.5rem
    }

    .footer-title {
        justify-content: flex-start
    }

    .footer-bottom {
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .footer-bottom .text, .footer-bottom .payments-list, .footer-bottom .footer-bottom-link {
        margin: 0 .5rem 0 0
    }

    .footer-bottom .payments-list {
        justify-content: flex-start
    }

    .footer-bottom-box {
        margin: 0;
        display: flex;
        align-items: center
    }
}

@media screen and (min-width: 1200px) {
    .footer .dropdown-block {
        gap: .75rem
    }

    .footer .dropdown-block li {
        font-size: .875rem
    }

    .footer-title {
        font-size: 1rem
    }

    .footer-bottom .text {
        font-size: 1rem;
        margin-right: 1rem
    }

    .footer-bottom .payments-list {
        margin-right: 2.125rem
    }

    .footer-bottom .footer-bottom-link {
        margin-right: 1.875rem
    }

    .footer-bottom .copyright {
        margin-right: 2rem
    }

    .footer .dropdown-block p {
        margin-bottom: 0.75rem
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
    row-gap: .25rem;
    flex-wrap: wrap;
    max-height: 2.125rem;
    padding: 0 !important;
    overflow: hidden;
    margin-top: 1rem;
    margin-bottom: 1rem
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--grey)
}

.breadcrumb li:first-child::before {
    display: none
}

.breadcrumb li:hover {
    color: var(--black)
}

.breadcrumb a, .breadcrumb span {
    font-weight: 500;
    font-size: .625rem;
    line-height: 1.5
}

.breadcrumb li + li::before {
    content: "" !important;
    position: static !important;
    font-family: "icomoon";
    font-size: .375rem !important;
    transform: rotate(-90deg)
}

.breadcrumb li span {
    color: var(--black);
    font-weight: 600;
    cursor: default
}

.search-wrapper {
    display: flex;
    width: 100%;
    position: relative
}

.search-wrapper .form-control {
    padding: .5rem 1rem;
    border-radius: 2px 0 0 2px;
    font-size: .625rem
}

.search-wrapper .form-control::-moz-placeholder {
    font-weight: 500;
    font-size: .625rem !important;
    color: var(--grey)
}

.search-wrapper .form-control::placeholder {
    font-weight: 500;
    font-size: .625rem !important;
    color: var(--grey)
}

.search-wrapper .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 2px 2px 0;
    width: 2rem;
    height: 2rem;
    background: var(--black)
}

.search-wrapper .icon-search {
    color: var(--white);
    font-size: .875rem
}

@media only screen and (min-width: 1200px) {
    .search-wrapper .form-control {
        padding: .75rem 1rem
    }

    .search-wrapper .form-control::-moz-placeholder {
        font-size: .75rem !important
    }

    .search-wrapper .form-control::placeholder {
        font-size: .75rem !important
    }

    .search-wrapper .search-btn {
        width: 2.5rem;
        height: 2.5rem
    }

    .search-wrapper .icon-search {
        font-size: 1rem
    }
}

.content-style {
    font-size: .875rem;
    line-height: 1.5
}

.content-style h2, .content-style h3, .content-style h4, .content-style h5, .content-style h6, .content-style p, .content-style b, .content-style span, .content-style ul, .content-style li, .content-style div, .content-style table {
    font-family: inherit !important
}

.content-style h2 p, .content-style h3 p, .content-style h4 p, .content-style h5 p, .content-style h6 p, .content-style p p, .content-style b p, .content-style span p, .content-style ul p, .content-style li p, .content-style div p, .content-style table p {
    font-weight: normal !important
}

.content-style b {
    display: block;
    margin-bottom: 1rem
}

.content-style a {
    font-weight: 600;
    color: #00a046;
    text-decoration: underline
}

.content-style img {
    max-width: 100%;
    border-radius: 0;
    height: auto !important;
    display: block;
    margin: 0 auto
}

.content-style ul {
    font-size: .875rem;
    line-height: 1.5;
    padding-left: 1.25rem;
    margin-bottom: 1rem
}

.content-style ul li {
    position: relative;
    list-style: disc;
    margin-bottom: .5rem
}

.content-style h2 {
    font-size: 1.5rem
}

.content-style h2, .content-style h3, .content-style h4, .content-style h5, .content-style h6 {
    font-weight: 600;
    line-height: 1.5;
    text-transform: none;
    margin-bottom: 1rem;
    margin: 0 0 1rem
}

.content-style h2 span, .content-style h2 b, .content-style h2 strong, .content-style h2 p, .content-style h3 span, .content-style h3 b, .content-style h3 strong, .content-style h3 p, .content-style h4 span, .content-style h4 b, .content-style h4 strong, .content-style h4 p, .content-style h5 span, .content-style h5 b, .content-style h5 strong, .content-style h5 p, .content-style h6 span, .content-style h6 b, .content-style h6 strong, .content-style h6 p {
    font-size: inherit;
    font-weight: inherit
}

.content-style table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border: 1px solid #ebeaea;
    font-family: Arial, Helvetica, sans-serif;
    font-size: inherit
}

.content-style table td {
    border: 1px solid #ebeaea;
    padding: .75rem;
    vertical-align: top;
    width: auto !important
}

.content-style table td ul {
    margin: 0;
    padding-left: 1.5rem
}

.content-style table td ul li {
    margin-bottom: .25rem
}

@media screen and (min-width: 1200px) {
    .content-style h2, .content-style h3, .content-style h4, .content-style h5, .content-style h6 {
        margin-bottom: 1.5rem
    }

    .content-style ul {
        margin-bottom: 1.5rem
    }

    p {
        margin-bottom: 1.5rem
    }
}

.form-group {
    margin-bottom: 1rem;
    position: relative
}

.form-block {
    border: 1px solid var(--grey-light3);
    padding: 1rem
}

.form-control {
    width: 100%;
    border: 1px solid var(--grey-light3);
    padding: 1rem 1.25rem;
    font-size: .875rem;
    line-height: 1;
    border-radius: .125rem;
    font-family: var(--font-family);
    background: var(--white)
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--grey-light3)
}

.control-label {
    display: block;
    font-family: var(--font-family);
    line-height: 1.3;
    font-size: .875rem;
    margin-bottom: .375rem
}

.required .control-label:after {
    content: " *";
    color: var(--red);
    font-weight: bold
}

input::-moz-placeholder, textarea::-moz-placeholder {
    font-family: var(--font-family);
    font-size: .875rem !important;
    color: var(--grey) !important
}

input::placeholder, textarea::placeholder {
    font-family: var(--font-family);
    font-size: .875rem !important;
    color: var(--grey) !important
}

textarea {
    min-height: 5.875rem !important;
    resize: none
}

.new-customer-info {
    margin-bottom: 1rem
}

@media screen and (min-width: 576px) {
    .new-customer-info {
        margin-bottom: 0
    }
}

@media screen and (min-width: 768px) {
    .form-block {
        padding: 1.5rem
    }
}

input[type=radio] {
    -webkit-appearance: none;
    position: absolute;
    left: 0;
    border: 1px solid var(--black);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer
}

input[type=radio]:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: .75rem;
    height: .75rem;
    border-radius: 50%
}

input[type=radio]:checked {
    border: 1px solid var(--black)
}

input[type=radio]:checked:before {
    background: var(--black)
}

.radio {
    margin-bottom: 1rem
}

.radio:last-child {
    margin: 0
}

.radio-label {
    display: inline-block;
    position: relative;
    line-height: 1.5;
    padding-left: 2rem;
    cursor: pointer
}

.filter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.input-checkbox:focus {
    outline: none
}

input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: .125rem;
    border: 1px solid var(--grey-light2);
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    transition: all .2s ease-in-out
}

input[type=checkbox]::before {
    content: "";
    font-family: "icomoon";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: .75rem;
    color: var(--white);
    opacity: 0;
    transition: all .2s ease-in-out
}

input[type=checkbox]:checked {
    background: var(--green);
    border: 1px solid var(--green)
}

input[type=checkbox]:checked::before {
    opacity: 1
}

.checkbox, .checkbox-2 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 1.5rem
}

.checkbox .value, .checkbox-2 .value {
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.2;
    transition: all .2s ease-in-out
}

.checkbox .value span, .checkbox-2 .value span {
    font-size: .625rem;
    text-transform: uppercase
}

.checkbox .count, .checkbox-2 .count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: .875rem;
    height: .875rem;
    background: var(--grey-extra-light);
    font-size: .625rem;
    border-radius: .125rem;
    text-transform: uppercase;
    color: var(--grey);
    margin-left: .25rem
}

.checkbox-2 input[type=checkbox] {
    border-radius: .25rem;
    background: var(--white)
}

.checkbox-2 input[type=checkbox]::before {
    content: "";
    font-size: .5rem;
    color: var(--green)
}

.checkbox-2 input[type=checkbox]:checked:hover {
    border: 1px solid var(--green)
}

.checkbox-2 input[type=checkbox]:checked {
    background: var(--white)
}

.checkbox-2 .checkbox-label:hover .input-checkbox {
    border: 1px solid var(--grey-light2)
}

.checkbox-2 .checkbox-label:hover .value {
    color: var(--black)
}

.checkbox-label {
    display: flex;
    align-items: center;
    min-height: 1.25rem;
    padding-left: 1.875rem;
    cursor: pointer;
    transition: all .2s ease-in-out
}

.checkbox-label:hover .input-checkbox {
    border: 1px solid var(--green)
}

.checkbox-label:hover .value {
    color: var(--green)
}

.page-section {
    padding-bottom: 2rem
}

#column-left .section {
    padding: 0;
    margin-bottom: 1rem
}

#column-left .slider-header {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 5rem;
    margin-bottom: 1.75rem
}

#column-left .slider-header .link {
    font-size: .75rem
}

#column-left .title-default {
    font-size: 1rem;
    line-height: 1.2
}

#column-left .advert-discount-section {
    padding-bottom: 0
}

@media only screen and (min-width: 992px) {
    #column-left .section {
        margin-bottom: 2rem
    }
}

@media only screen and (min-width: 1200px) {
    .page-section {
        padding-bottom: 4rem
    }
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer
}

.select-wrapper {
    position: relative
}

.select-wrapper::after {
    content: "";
    width: .875rem;
    height: .875rem;
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    background: url(../image/icons-svg/select-arrow.svg) no-repeat
}

.select-wrapper select {
    background: var(--white);
    font-family: var(--font-family);
    font-size: .875rem
}

.select-wrapper .icon-select-arrow {
    position: absolute;
    color: var(--beige-dark);
    font-size: .875rem;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%)
}

.ss-wrapper {
    position: relative
}

.ss-wrapper .icon-vector {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .875rem;
    width: .875rem;
    height: .875rem;
    z-index: 1
}

.ss-main {
    padding: 1.25rem;
    border: 1px solid var(--grey-light);
    border-radius: .125rem;
    font-weight: 300;
    font-size: .875rem
}

.ss-main:focus {
    box-shadow: none
}

.ss-main .ss-arrow {
    opacity: 0;
    width: 1.5rem;
    height: 1rem;
    right: 1.5rem;
    margin: 0;
    z-index: 2
}

.ss-main .ss-values .ss-single {
    margin: 0;
    align-items: center
}

.ss-main.ss-open-below + .icon-vector {
    transform: translateY(-50%) rotate(-180deg)
}

.overflow-lock {
    overflow: hidden !important
}

.header-catalog-btn:hover {
    background: var(--black);
    color: var(--white)
}

.menu-open {
    overflow: hidden
}

.asp-menu-wrapper {
    position: relative;
    overflow: hidden
}

.asp-menu {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%
}

.asp-menu ul {
    width: 100%
}

.asp-menu li {
    padding: .5rem 1rem;
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center
}

.asp-menu > li.catalog-all {
    padding: 0;
    border-bottom: 0
}

.asp-menu .caret {
    font-size: .5rem;
    transform: rotate(-90deg);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-light4);
    margin-left: auto
}

.asp-menu a {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: 0;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.3;
    flex: 1
}

.asp-menu a:hover {
    color: var(--green)
}

.asp-menu .catalog-list a {
    gap: 1rem
}

.asp-menu .sublist--back {
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: 500;
    gap: 0;
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
    box-shadow: 0px 0px 4px #ebeaea
}

.asp-menu .sublist--back .caret {
    transform: rotate(90deg);
    align-items: flex-end;
    background: rgba(0, 0, 0, 0);
    margin-left: 0
}

.asp-menu .icon-vector {
    font-size: .75rem
}

.asp-menu .icon-interest {
    font-size: 1.25rem
}

.catalog-all .catalog-title span {
    display: none
}

.sublist {
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    transition: left .3s ease-in-out;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden
}

.sublist img {
    display: none
}

.active > .sublist {
    left: 0;
    transition: left .3s ease-in-out
}

.open-menu-mobile {
    font-size: .75rem;
    padding: 1.125rem;
    line-height: 0;
    background: var(--blue-light, #40aae6);
    cursor: pointer;
    color: var(--white)
}

.main-menu {
    position: fixed;
    left: -100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 50px;
    background-color: var(--white);
    padding: 0 0 10px;
    z-index: 1001;
    transition: left .3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.main-menu.mainmenu-active {
    left: 0;
    transition: left .3s ease-in-out
}

.main-menu-header {
    display: flex;
    align-items: center;
    background-color: var(--grey-light4);
    padding: .875rem 1rem
}

.main-menu-header > span {
    font-weight: 600
}

.main-menu-header .btn-close {
    position: static;
    margin-left: auto;
    width: 24px;
    height: 24px
}

.category-page-content .content-block {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    max-width: 100%;
    margin: 0 auto 20px auto
}

.category-page-content .image-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: linear-gradient(to bottom, #FCFCFC, #E8E8E8)
}

.category-page-content .text-content p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto
}

@media screen and (min-width: 992px) {
    .header-bottom .container {
        position: relative
    }

    .asp-menu-wrapper {
        overflow: initial;
        position: initial
    }

    .main-menu {
        background-color: rgba(0, 0, 0, 0);
        padding: 0;
        overflow: initial;
        position: static
    }

    .main-menu-footer, .main-menu-header {
        display: none
    }

    .asp-menu {
        align-items: center;
        flex-direction: row;
        overflow: initial;
        height: initial;
        gap: 1rem;
        width: auto
    }

    .asp-menu ul {
        width: auto
    }

    .asp-menu li {
        border: 0;
        padding: 0;
        width: auto;
        gap: 0;
        align-items: initial
    }

    .asp-menu li .caret {
        display: none
    }

    .asp-menu li a {
        font-size: .75rem;
        white-space: nowrap;
        padding: 0
    }

    .asp-menu > li > .caret {
        display: flex;
        font-size: .25rem;
        transform: rotate(0);
        transition: .2s ease-in-out;
        width: auto;
        height: auto;
        gap: 0;
        background: rgba(0, 0, 0, 0)
    }

    .asp-menu .icon-vector {
        font-size: .5rem;
        width: auto;
        height: auto;
        margin-left: .25rem
    }

    .asp-menu .catalog-all {
        display: none
    }

    .asp-menu .catalog-list {
        display: none;
        position: absolute;
        width: 250px;
        z-index: 99;
        background: var(--light-bg, #ebebeb);
        left: 0;
        top: 100%;
        flex-direction: column
    }

    .asp-menu .catalog-list > li {
        display: block
    }

    .asp-menu .catalog-list li > a {
        color: #222;
        padding: .75rem 1rem;
        font-weight: 500
    }

    .asp-menu .catalog-list li:first-child > a {
        padding-top: 1rem
    }

    .asp-menu .catalog-list li:last-child > a {
        padding-bottom: 1rem
    }

    .asp-menu .catalog-list li:hover > a {
        background-color: #fff
    }

    .asp-menu .sublist--back {
        display: none
    }

    .asp-menu .sublist {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        bottom: 0;
        background-color: var(--white, #fff);
        padding: 1rem;
        flex-wrap: wrap;
        width: 762px;
        overflow: auto;
        gap: 0;
        justify-content: flex-start;
        align-items: flex-start;
        transition: all .2s ease-in-out
    }

    .asp-menu .sublist li {
        flex: 0 0 20%;
        padding: .5rem
    }

    .asp-menu .sublist li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        white-space: normal;
        text-align: center;
        font-size: .75rem;
        padding: 0
    }

    .asp-menu .sublist li a:hover {
        color: #40aae6
    }

    .asp-menu .sublist img {
        margin-bottom: .5rem;
        display: block;
        max-width: 50px
    }

    .asp-menu .has-sublist:hover > .sublist-level-1 {
        display: flex
    }

    .asp-menu .has-sublist.asp-menu-info {
        position: relative;
        padding: .75rem 0
    }

    .asp-menu .has-sublist.asp-menu-info:hover {
        color: var(--green)
    }

    .asp-menu .has-sublist.asp-menu-info .sublist {
        width: auto;
        bottom: auto;
        top: 100%;
        left: 0;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15);
        border-radius: 8px;
        visibility: visible;
        opacity: 1
    }

    .asp-menu .has-sublist.asp-menu-info .sublist li {
        padding: 0;
        margin-bottom: 1rem
    }

    .asp-menu .has-sublist.asp-menu-info .sublist li:last-child {
        margin: 0
    }

    .asp-menu .has-sublist.asp-menu-info .sublist li a {
        color: #222;
        font-size: .75rem;
        text-align: left;
        white-space: nowrap;
        align-items: flex-start
    }

    .asp-menu .has-sublist.asp-menu-info .sublist li a:hover {
        color: var(--green)
    }

    .asp-menu .has-sublist.asp-menu-info:hover .sublist {
        display: block;
        animation: .3s fadeEffect
    }

    .asp-menu .switcher-contacts-li {
        margin-left: auto
    }

    .asp-menu-caret {
        pointer-events: none
    }

    .catalog-all:hover .catalog-list {
        display: block;
        animation: .3s fadeEffect
    }

    .catalog-all .catalog-title {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 1rem;
        min-width: 250px;
        width: 250px;
        color: var(--white);
        background: var(--blue-light, #40aae6);
        cursor: pointer
    }

    .catalog-all .catalog-title span {
        display: block;
        font-weight: 700;
        font-size: .75rem;
        line-height: 1;
        text-transform: uppercase;
        white-space: nowrap
    }

    .catalog-all .catalog-title .icon-triangle {
        display: block;
        font-size: .325rem
    }
}

@media screen and (min-width: 1200px) {
    .asp-menu .sublist {
        width: 880px
    }

    .asp-menu li a {
        font-size: .875rem
    }

    .asp-menu .catalog-list li > a {
        font-size: .75rem
    }
}

@media screen and (min-width: 1400px) {
    .catalog-all .catalog-title {
        min-width: 250px
    }

    .catalog-all .catalog-title span {
        font-size: .875rem
    }

    .asp-menu {
        gap: 1.5rem
    }

    .asp-menu .sublist {
        width: 1100px
    }

    .asp-menu .sublist img {
        max-width: 70px
    }

    .asp-menu-info-item > a {
        font-size: .875rem
    }
}

@media screen and (min-width: 1500px) {
    .asp-menu .sublist {
        width: 1190px
    }

    .asp-menu .sublist li {
        flex: 0 0 12.5%
    }
}

.catalog-wrapper {
    position: relative
}

.catalog-list-desc {
    display: none;
    border-top: 1px solid var(--grey-light2);
    border-bottom: 1px solid var(--grey-light2);
    border-left: 1px solid var(--grey-light2);
    background: var(--white)
}

.catalog-list-desc > li {
    border-bottom: 1px solid var(--grey-light2);
    border-right: 1px solid var(--grey-light2);
    background: var(--white)
}

.catalog-list-desc > li:last-child {
    border: none;
    border-right: 1px solid var(--grey-light2)
}

.catalog-list-desc > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem .25rem .75rem .5rem;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.5
}

.catalog-list-desc > li > a:hover {
    color: var(--green);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15)
}

.catalog-list-desc > li > a:hover .icon-vector {
    color: var(--black)
}

.catalog-list-desc > li > a span {
    margin-right: auto
}

.catalog-list-desc .icon {
    font-size: 1.5rem
}

.catalog-list-desc .icon-vector {
    width: 1rem;
    height: 1rem;
    font-size: .75rem;
    color: var(--grey-light);
    transform: rotate(-90deg)
}

.header-catalog-btn {
    cursor: pointer
}

@media only screen and (min-width: 992px) {
    .header {
        background-color: #fff;
        z-index: 9999;
        position: relative
    }

    .header.catalog-open {
        position: relative;
        z-index: 101
    }

    .home-static-menu .catalog-wrapper:hover + .desktop-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: rgba(0, 0, 0, .5);
        z-index: 21;
        opacity: 1;
        visibility: visible
    }

    .desktop-menu-backdrop {
        position: fixed;
        z-index: -1;
        visibility: hidden;
        opacity: 1;
        transition: visibility .2s ease-in-out, opacity .2s ease-in-out
    }

    .desktop-menu-backdrop.active {
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: rgba(0, 0, 0, .5);
        z-index: 21;
        opacity: 1;
        visibility: visible
    }

    .catalog-list-desc > li.has-subcat:hover {
        border-right: 1px solid var(--white)
    }

    .catalog-list-desc > li.has-subcat:hover .categories-list {
        opacity: 1;
        visibility: visible
    }

    .catalog-list-desc > li.has-subcat > a {
        position: relative
    }

    .catalog-list-desc > li.has-subcat > a::after {
        content: "";
        position: absolute;
        right: -3px;
        top: 0;
        opacity: 0;
        width: 5px;
        height: 100%;
        background: var(--white)
    }

    .catalog-list-desc > li.has-subcat > a:hover::after {
        opacity: 1
    }

    .home-page .catalog-list-desc {
        display: block;
        position: relative;
        height: auto;
        opacity: 1;
        visibility: visible;
        z-index: 22;
        top: 0;
        margin-top: 0
    }

    .header-bottom {
        position: relative
    }

    .catalog-list-desc {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        height: 0;
        z-index: 100;
        transition: all .2s ease-in-out;
        max-width: 296px;
        margin-top: 1.25rem
    }

    .catalog-list-desc::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 100%;
        height: .75rem;
        width: 100%
    }

    .categories-list {
        width: 603px
    }

    .header-catalog-btn.active {
        background: var(--white);
        color: var(--black)
    }

    .catalog-list-desc.active {
        opacity: 1;
        visibility: visible;
        height: auto
    }

    .catalog-li-mob {
        display: none !important
    }

    .menu-caret {
        background: rgba(0, 0, 0, 0);
        pointer-events: none
    }

    .menu-caret .icon-vector {
        transform: rotate(0)
    }

    .categories-list {
        position: absolute;
        left: 100%;
        top: -1px;
        right: -1px;
        bottom: -1px;
        z-index: 99;
        width: 632px;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        transition: all .2s ease-in-out;
        background: var(--white);
        padding: 1.5rem;
        display: grid;
        grid-template-columns:repeat(4, 1fr);
        grid-auto-rows: max-content;
        gap: 1rem;
        border-bottom: 1px solid var(--grey-light2);
        border-right: 1px solid var(--grey-light2);
        border-top: 1px solid var(--grey-light2)
    }

    .categories-list li {
        padding: .5rem
    }

    .categories-list img {
        max-width: 4.375rem;
        border: 1px solid var(--grey-light4);
        border-radius: .25rem;
        transition: all .2s ease-in-out
    }

    .categories-list a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .5rem
    }

    .categories-list a:hover {
        color: var(--green)
    }

    .categories-list a:hover img {
        border: 1px solid var(--green)
    }

    .categories-list .name {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
        font-weight: 500;
        line-height: 1.2;
        font-size: .875rem
    }
}

@media only screen and (min-width: 1200px) {
    .header .categories-list {
        width: 784px
    }

    .categories-list {
        width: 846px;
        grid-template-columns:repeat(5, 1fr)
    }

    .catalog-list-desc {
        max-width: 262px
    }
}

@media only screen and (min-width: 1400px) {
    .header .categories-list {
        width: 1036px
    }

    .categories-list {
        width: 1030px;
        grid-template-columns:repeat(6, 1fr)
    }

    .catalog-list-desc {
        max-width: 325px
    }
}

.ef-container {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: normal;
    vertical-align: middle;
    margin: 0;
    font-weight: 200
}

@media (min-width: 768px) {
    .ef-container {
        margin: 20px auto;
        max-width: 900px
    }

    .category-page-content .content-block {
        align-items: center;
        gap: 20px;
        padding: 0
    }

    .category-page-content .row-normal {
        flex-direction: row
    }

    .category-page-content .row-reverse {
        flex-direction: row-reverse
    }

    .category-page-content .text-content {
        flex: 60
    }

    .category-page-content .image-content {
        flex: 40
    }
}

.ef-heading-title {
    padding: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    font-variant: small-caps
}

@media (min-width: 768px) {
    .ef-heading-title {
        font-size: 26px;
        padding: 24px 40px
    }
}

.ef_block {
    border-radius: 18px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, .2)
}

.ef_block + .ef_block {
    margin-top: 12px
}

.ef_block--images {
    background: linear-gradient(90deg, rgba(149, 149, 149, 0.1) 0%, rgba(217, 217, 217, 0.1) 100%);
    display: flex;
    justify-content: center;
    gap: 25px
}

.ef_block--images img {
    max-width: 100%;
    flex: 0 auto
}

.ef_block--content {
    padding: 18px 40px;
    background: linear-gradient(180deg, rgba(149, 149, 149, 0.1) 0%, rgba(217, 217, 217, 0.1) 100%)
}

.ef_block--content ul {
    padding: 0 !important
}

.ef_block--content p[style*="opacity: 0"] {
    height: 0;
    margin: 0
}

.ef_block--mt {
    margin-top: 10px
}

.ef_block-title {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
    list-style: none
}

.ef_block-title h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0 !important
}

.ef_block-title::-webkit-details-marker {
    display: none
}

details[open] .ef_block-title {
    margin-bottom: 18px
}

.ef_block-title-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-135deg);
    transition: transform .25s ease;
    margin-left: auto;
    margin-top: 4px;
    flex-shrink: 0
}

details[open] .ef_block-title-arrow {
    transform: rotate(45deg)
}

.ef_block-content {
    display: flex;
    flex-wrap: wrap
}

.ef_block-content--tall {
    min-height: 400px
}

@media (min-width: 876px) {
    .ef_block-content-text {
        max-width: 520px
    }
}

.ef_block-content-text--middle {
    vertical-align: middle
}

.ef_block-content-text--auto {
    margin: auto 0
}

.ef_block-content-text > b {
    font-weight: 500
}

.ef_block-content-text ul {
    margin-top: 10px;
    text-align: justify
}

@media (max-width: 768px) {
    .ef_block-content-text ul {
        padding: 0;
        margin: 0
    }
}

.ef_block-content-text li {
    margin-bottom: 4px
}

.ef_block-content-text li > b {
    font-weight: 600
}

.ef_block-content-images {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-direction: column
}

@media (min-width: 992px) {
    .ef_block-content-images {
        margin-right: 0
    }
}

.ef_block-content-images_item {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .2509803922);
    border-radius: 18px;
    background: #fff;
    max-width: 260px;
    overflow: hidden
}

@media (max-width: 768px) {
    .ef_block-content-images_item:first-child {
        margin-top: 20px
    }
}

.ef_block-content-images_item img {
    flex: 0 auto;
    max-width: 100%
}

.ef_text {
    padding: 24px 40px
}

@media (max-width: 768px) {
    .ef_text {
        padding: 24px 14px
    }
}

.ef_text--justify {
    text-align: justify
}

.ef_text--uppercase {
    font-variant: small-caps
}

.ef_text--uppercase-hero {
    font-weight: bold;
    font-size: 22px
}

.ef_text a {
    color: #764bff;
    font-weight: 500
}

.ef_text-lead {
    font-weight: 500;
    font-size: 22px
}