* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    outline: none; /* Safari 3-4, iOS 1-3.2, Android 1.6- */ /* Firefox 1-3.6 */
    border-radius: 0; /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar-track {
    border-radius: 3px;
    width: 7px;
}

*::-webkit-scrollbar {
    width: 6%;
}

*::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #E2EBE5;
}

a {
    cursor: pointer;
    color: #000;
    transition: all 0.3s;
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

.scroll-disabled {
    touch-action: none;
    -ms-touch-action: none;
    overflow: hidden;
}

.title-block {
    display: block;
    padding-top: 70px;
    text-align: left;
    text-transform: uppercase;
    padding-bottom: 60px;
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
}

.show-more_link {
    color: #697B6F;
    text-align: right;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    margin: 70px 0 0;
    padding-right: 30px;
    position: relative;
    transition: all 0.3s;
}

.show-more_link::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/arrow-right.svg) no-repeat center/contain;
    width: 16px;
    height: 16px;
}

.show-more_link:hover {
    color: #877FB0;
}

.container {
    left: 0;
    right: 0;
    margin: auto;
    max-width: 1230px;
    width: 100%;
    padding: 0 15px;
    position: relative;
    box-sizing: border-box;
    text-align: center;
}

.container-big {
    left: 0;
    right: 0;
    margin: auto;
    max-width: 1555px;
    width: 100%;
    padding: 0 15px;
    position: relative;
    box-sizing: border-box;
    text-align: center;
}

picture img {
    display: block;
    width: 100%;
}

button {
    border: none;
    cursor: pointer;
    background: transparent;
    border: none;
    box-shadow: none;
}

.bottom-navigate_block {
    display: none;
}

.all_btn {
    border-radius: 50px;
    background: #877FB0;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.6px;
    border: 1px solid #877FB0;
    transition: all 0.3s;
    padding: 15px;
    width: 100%;
    max-width: 400px;
    display: block;
    text-decoration: none;
}

.all_btn:hover {
    background: transparent;
    color: #877FB0;
}

footer .all_btn.contact_us_btn {
    display: none;
}

footer .footer-menu_column .all_btn.contact_us_btn {
    display: block;
    text-align: center;
}


footer .footer-copyright, footer .footer-address {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 14px;
    color: white;
}

footer .footer-address .footer-address-item {
    display: flex;
    justify-content: flex-start;
    gap: 7px;
    align-items: center;
}

footer .footer-address span {
    color: white;
    font-size: 14px;
}

.all_btn.contact_us_btn:hover {
    background: #fff;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mob-show, .mob-link-btn {
    display: none;
}

.row_rating {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.row_rating .icon-status {
    position: relative;
    padding-left: 33px;
}

.row_rating .icon-status::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 15px;
    height: 15px;
    background: url(../img/in-stock.svg) no-repeat center/contain;
}

.row_rating .icon-status.in-stock::before {
    background: url(../img/availability/in-stock.svg) no-repeat center/contain;
}

.row_rating .icon-status.few::before {
    background: url(../img/availability/few.svg) no-repeat center/contain;
}

.row_rating .icon-status.almost-sold-out::before {
    background: url(../img/availability/almost-sold-out.svg) no-repeat center/contain;
}

.row_rating .icon-status.out::before {
    background: url(../img/availability/out.svg) no-repeat center/contain;
}

.row_rating .text {
    color: #626262;
    font-size: 15px;
    font-weight: 400;
}

.row_rating .rating__star {
    width: 17px;
    height: 17px;
    display: inline-block;
    position: relative;
}

.row_rating .rating__star::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/star.svg) no-repeat center/contain;
}


/* HEADER */

.catalog-section-cont {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #DFDFDF;
    z-index: 2;
    max-width: 1340px;
    min-width: 67vw;
    left: 0;
    top: calc(100% + 35px);
    display: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}


.catalog-section-cont.active {
    display: block;
}

.catalog-section-cont .catalog-first-level {
    border-radius: 20px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    width: 314px;
    min-height: 600px;
    position: relative;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item a {
    padding: 14px 25px;
    display: flex;
    align-items: center;
    width: 100%;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item a img {
    display: block;
    width: 30px;
    margin-right: 25px;
    filter: grayscale(1) contrast(200);
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item a:hover {
    background: #E2EBE5;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item a span {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0;
    text-align: left;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item .catalog-second-level {
    position: absolute;
    left: 100%;
    display: none;
    top: 0;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
    -webkit-column-gap: 1vw;
    -moz-column-gap: 1vw;
    column-gap: 1vw;
    padding: 32px 60px 32px 40px;
    width: calc(67vw - 314px);
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item .catalog-second-level .catalog-second-level_item {
    max-height: 100%;
    margin-bottom: 46px;
    break-inside: avoid-column;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item .catalog-second-level .catalog-second-level_item ul {
    margin: 0;
    padding: 0;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item .catalog-second-level .catalog-second-level_item span.title {
    color: #697B6F;
    font-size: 15px;
    font-weight: 500;
    display: block;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item .catalog-second-level .catalog-second-level_item a.title {
    color: #697B6F;
    font-size: 15px;
    font-weight: 500;
    display: block;
    text-transform: uppercase;
    margin-top: 0;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item .catalog-second-level .catalog-second-level_item a {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    margin-top: 10px;
    background: transparent;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item .catalog-second-level .catalog-second-level_item a:hover {
    color: #877FB0;
}

.catalog-section-cont .catalog-first-level .catalog-first-level_item:hover .catalog-second-level {
    display: block;
}

.nav-row-items {
    display: flex;
    gap: 25px;
}

.nav-row-items .nav-row-item {
    padding: 0;
    position: relative;
    margin: 0;
}

.nav-row-items .nav-row-item:hover .sub-nav-items {
    display: block;
    max-width: 250px;
    min-width: 200px;
    padding: 23px 0;
    border-radius: 0px 0px 20px 20px;
    background: #FFF;
    transition: all 0.3s;
}

.nav-row-items .nav-row-item:hover .sub-nav-items .sub-nav-item {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 55px;
    padding: 0 23px;
    display: flex;
    align-items: center;
}

.nav-row-items .nav-row-item:hover .sub-nav-items .sub-nav-item:hover {
    background: #E2EBE5;
}

.nav-row-items .nav-row-item.active::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #877FB0;
}

.nav-row-items .nav-row-item .title-nav {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    color: #FFF;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 20px 0;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-row-items .nav-row-item .title-nav:hover {
    background-color: #877FB0;
}

.nav-row-items .nav-row-item .sub-nav-items {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
}

.partners-slider-wrapper .swiper_navigation_btn.swiper-button-next {
    right: -35px;
}

.partners-slider-wrapper .swiper_navigation_btn.swiper-button-prev {
    left: -35px;
}

.partners-slider-wrapper .swiper_navigation_btn {
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

header {
    position: sticky;
    top: -57px;
    /*position: relative;*/
    z-index: 105;
}

header .header-bottom.is-pinned {
    padding-top: 15px;
    padding-bottom: 15px;
}

header .header-bottom.is-pinned .header-bottom-l_side .logo img {
    width: 140px;
}

.header-mob {
    display: none;
}


.header-top {
    display: flex;
    justify-content: space-between;
    background: #697B6F;
    align-items: center;
    width: 100%;
    padding: 0 30px;
    color: #fff;
    z-index: 1012;
    position: relative;

}

.header-top .btn.dropdown-toggle {
    color: #FDFFFE;
    border: none;
}

.header-top .btn.dropdown-toggle::after {
    display: none;
    transition: all 0.3s;
}

.header-top .btn.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.header-top .dropdown-menu {
    width: 290px;
    padding: 0 30px 20px;
    border-radius: 0 0 20px 20px;
    background: #FFF;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
    border: none;
    margin-top: 9px !important;
}

.header-top .dropdown-menu li {
    margin-top: 20px;
}

.header-top .dropdown-menu span.name {
    font-size: 15px;
    font-weight: 400;
}

.header-top .dropdown-menu a.dropdown-item {
    padding: 0;
    text-align: left;
    color: #697B6F;
    font-size: 20px;
    font-weight: 600;
    background: transparent;
}

.header-top .dropdown-menu a.dropdown-item:hover {
    background: transparent;
    color: #877FB0;
}

.header-bottom {
    background: #E2EBE5;
    transition: 0.2s padding;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.30);
    gap: 10px;
}

.header-bottom .header-bottom-l_side {
    display: flex;
    align-items: center;
}

.header-bottom .header-bottom-l_side .logo {
    display: block;
    margin-right: 60px;
}

.header-bottom .header-bottom-l_side .logo img {
    transition: 0.3s;
}

.header-bottom .header-bottom-l_side .header-catalog_wrapper {
    position: relative;
}

.header-bottom .header-bottom-l_side .header-catalog_wrapper .catalog_btn,
.header-bottom .header-bottom-l_side .header-btn {
    border-radius: 50px;
    padding: 5px 30px;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header-bottom .header-bottom-l_side .header-catalog_wrapper .catalog_btn .catalog_btn-img {
    margin-right: 10px;
}

.header-bottom .header-bottom-l_side .header-catalog_wrapper .catalog_btn .name,
.header-bottom .header-bottom-l_side .header-btn-wrapper .header-btn .btn-title {
    color: #697B6F;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.header-bottom .header-bottom-l_side .header-btn-wrapper .header-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-bottom .header-bottom-l_side .header-btn-wrapper {
    display: flex;
    align-items: center;
}

.header-bottom .header-bottom-l_side .header-catalog_wrapper .catalog_btn:hover, .header-bottom .header-bottom-l_side .header-catalog_wrapper .catalog_btn.active,
.header-bottom .header-bottom-l_side .header-btn:hover {
    background: #FFF;
}

.header-bottom .header-bottom-r_side {
    display: flex;
    align-items: center;
    width: 50%;
}

.header-bottom .header-bottom-r_side .search_block {
    width: 100%;
    max-width: 830px;
    margin-right: 30px;
}

.search-btn-mob .search_block {
    display: none;
}

.search-btn-mob.active .search_block {
    display: block;
}

.bottom-navigate_block .search-btn-mob .search_block {
    position: fixed;
    bottom: 75px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    overflow-y: auto;
}

.header-bottom .header-bottom-r_side .search-wrap,
.bottom-navigate_block .search-btn-mob .search_block .search-wrap {
    position: relative;
    width: 100%;
    display: block;
    border: 1px solid #DFDFDF;
    border-radius: 30px;
    height: 50px;
    background: #fff;
}

.close-search-btn {
    position: absolute;
    right: 16px;
    top: 10px;
    z-index: 9999;
    display: none;
}

/*.search_block:has()*/


.header-bottom .header-bottom-r_side .search-wrap .search-wrap-btn,
.bottom-navigate_block .search-btn-mob .search_block .search-wrap .search-wrap-btn {
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
    background: url(../img/search-icon.svg) no-repeat center;
    height: 25px;
    width: 25px;
    border: none;
}

.header-bottom .header-bottom-r_side .search-wrap .form-search-inp,
.bottom-navigate_block .search-btn-mob .search_block .search-wrap .form-search-inp {
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 0 17px 0 45px;

}

.header-bottom .header-bottom-r_side .search-wrap .form-search-inp {
    z-index: 1004;
    position: relative;
}

.bottom-navigate_block .search-btn-mob .search_block .search-wrap .form-search-inp {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.header-bottom .header-bottom-r_side .icon-item {
    margin: 0 11px;
    position: relative;
}

.header-bottom .header-bottom-r_side .icon-item::before {
    content: "";
    display: block;
    position: absolute;
    left: -10px;
    top: 0;
    width: 1px;
    height: 30px;
    background-color: #D9D9D9;
}

.header-bottom .header-bottom-r_side .icon-item:first-child::before {
    display: none;
}

.header-bottom .header-bottom-r_side .icon-item .icon-item-img {
    position: relative;
}

.header-bottom .header-bottom-r_side .icon-item .icon-item-img .inner,
.header-bottom .header-bottom-r_side .icon-item .icon-item-img .icon-item-img-label {
    position: absolute;
    width: 17px;
    height: 13px;
    display: block;
    line-height: 12px;
    text-align: center;
    background-color: #E54D4D;
    color: #F3F0FF;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    top: 0;
    right: -11px;
    border-radius: 7px;
}

.header-bottom .header-bottom-r_side .icon-item.no_inner .icon-item-img .inner,
.header-bottom .header-bottom-r_side .icon-item.no_inner .icon-item-img .icon-item-img-label {
    display: none;
}

.header-bottom .basket-wrap {
    position: relative;
}

.header-bottom .basket-wrap #cart-btn {
    display: block;
    height: auto;
}

.header-bottom .basket-wrap .small-basket {
    display: none;
    position: absolute;
    z-index: 3;
    right: 0;
    top: calc(100% + 10px);
}

.header-bottom .basket-wrap .small-basket .small-basket-row {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 60px;
    margin-bottom: 12px;
}

.header-bottom .basket-wrap .small-basket .small-basket-row .small-basket-row_img {
    display: block;
    width: 100%;
    max-width: 71px;
    height: 60px;
}

.header-bottom .basket-wrap .small-basket .small-basket-row .small-basket-row_title {
    width: calc(60% - 16px);
    display: block;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-bottom .basket-wrap .small-basket .small-basket-row .price {
    width: calc(40% - 16px);
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}

.header-bottom .basket-wrap .small-basket .small-basket-row .small-basket-row_btn_remove {
    text-align: center;
    margin-left: auto;
}

.header-bottom .basket-wrap .small-basket .small-basket-row .small-basket-row_btn_remove .small-basket-row_btn_remove_img {
    width: 18px;
    height: 18px;
}

.header-bottom .basket-wrap .small-basket .small-basket-row_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    margin-bottom: 15px;
}

.header-bottom .basket-wrap .small-basket .small-basket-row_info .title {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #000;
}

.header-bottom .basket-wrap .small-basket .small-basket-row_info .total-sum {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #697B6F;
    text-align: right;
}

.header-bottom .basket-wrap .small-basket .small-basket-row_info .total-sum .sum {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #697B6F;
    text-align: right;
}

.header-bottom .basket-wrap .small-basket .order_link {
    text-align: center;
}

.header-bottom .basket-wrap.active .small-basket {
    display: block;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
    width: 426px;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
}

.header-bottom .basket-wrap.active .small-basket .small-basket_inner {
    position: relative;
}

.header-bottom .basket-wrap.active .small-basket .small-basket_inner .basket-empty-title {
    margin-bottom: 24px;
    text-align: center;
}

.header-bottom .basket-wrap.active .small-basket .small-basket_inner .small-basket-btn_close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: -24px;
    right: -50px;
    border: none;
}

.header-bottom .basket-wrap.active .small-basket .small-basket_inner .small-basket-btn_close .small-basket-btn_close_img {
    width: 20px;
    height: 20px;
}

.header-right-side {
    display: flex;
    align-items: center;
    gap: 25px;
}

header .lang-block {
    position: relative;
    width: 61px;
    height: 52px;
}

header .lang-block .lang-block-wrap {
    padding: 12px;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;


}

header .lang-block .lang-block-wrap b {
    color: white;

    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1;
}

header .lang-block.active .lang-block-wrap b {
    color: black;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.sticky-by-btn-wrapper .report_btn.all_btn, .sticky-by-btn-wrapper .subscribe__price-btn {
    padding: 9px 12px;
}

header .lang-block .drop-block {
    display: none;
}

header .lang-block .drop-block ul {
    margin: 0;
    padding: 0;
}

header .lang-block .drop-block ul li {
    margin-top: 12px;
}

header .lang-block.active .lang-block-wrap {
    background: #FFF;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
}

header .lang-block.active .lang-block-wrap .drop-block {
    display: block;
}

.swiper_slider_block {
    position: relative;
    overflow: hidden;
}

.swiper_navigation_btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #877FB0;
    border-radius: 100px;
}

.swiper_navigation_btn.swiper-button-disabled {
    opacity: 0.5;
}

.swiper-button-prev-ts.swiper_navigation_btn.swiper-button-disabled,
.swiper-button-next-ts.swiper_navigation_btn.swiper-button-disabled,
.slider-product-top-sales .swiper-button-prev.swiper_navigation_btn.swiper-button-disabled,
.slider-product-top-sales .swiper-button-next.swiper_navigation_btn.swiper-button-disabled {
    opacity: 0;
}


.swiper_navigation_btn .swiper_navigation_btn_icon {
    width: 20px;
    height: 20px;
}

.swiper_navigation_btn.swiper-button-next .swiper_navigation_btn_icon {
    transform: rotate(180deg);
}

.swiper-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 40px;
    left: 0;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background-color: #FFF;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #877FB0;
}

.main-banner .swiper-pagination {
    justify-content: center;
    right: 0;
}

.swiper-container-block-novelty-sales,
.swiper-container-block-blog-slider {
    position: relative;
}

.swiper-container-block-novelty-sales .slider-product {
    position: unset;
}

.swiper-container-block-blog-slider .blog-slider {
    position: unset;
}

.slider-product-top-sales {
    position: unset;
}

.slider-product-top-sales .swiper_navigation_btn {
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.top_sales_block {
    padding-bottom: 70px;
}

.swiper-container-block-novelty-sales .slider-product .swiper_navigation_btn,
.swiper-container-block-blog-slider .blog-slider .swiper_navigation_btn,
.top_sales-navigation-slider-wrapper .swiper_navigation_btn {
    top: 50%;
    z-index: 1;
}

.swiper-container-block-novelty-sales .slider-product .swiper-button-prev,
.swiper-container-block-blog-slider .blog-slider .swiper-button-prev,
.top_sales-navigation-slider-wrapper .swiper-button-prev-ts,
.slider-product-top-sales .swiper-button-prev {
    left: -50px;
}

.swiper-container-block-novelty-sales .slider-product .swiper-button-next,
.swiper-container-block-blog-slider .blog-slider .swiper-button-next,
.top_sales-navigation-slider-wrapper .swiper-button-next-ts,
.slider-product-top-sales .swiper-button-next {
    right: -50px;
}

@media only screen and (max-width: 1650px) {
    .header-bottom .header-bottom-l_side .logo {
        margin-right: clamp(10px, 1vw, 50px);
    }

    .header-bottom .header-bottom-l_side .header-catalog_wrapper .catalog_btn, .header-bottom .header-bottom-l_side .header-btn {
        padding: 5px clamp(5px, 0.5vw, 25px);
    }

    .header-bottom .header-bottom-r_side .search_block {
        margin-right: clamp(10px, 1vw, 30px);
    }
}

@media only screen and (max-width: 1150px) {
    .top_sales-navigation-slider-wrapper .swiper-button-next-ts, .top_sales-navigation-slider-wrapper .swiper-button-prev-ts {
        display: none;
    }

    .swiper-container-block-novelty-sales .slider-product .swiper-button-prev,
    .swiper-container-block-blog-slider .blog-slider .swiper-button-prev,
    .slider-product-top-sales .swiper-button-prev {
        left: -10px;
    }

    .swiper-container-block-novelty-sales .slider-product .swiper-button-next,
    .swiper-container-block-blog-slider .blog-slider .swiper-button-next,
    .slider-product-top-sales .swiper-button-next {
        right: -10px;
    }
}

/* MAIN BANNER */
.main-banner-section .main-banner {
    padding-top: 0;
    padding-bottom: 0;
}

.main-banner-wrapper.swiper-wrapper {
    z-index: unset;
}

.main-banner-wrapper .banner-item {
    position: relative;
}

.main-banner-wrapper .banner-item .banner-cont {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.main-banner-wrapper .banner-item .banner-cont .banner-cont-title {
    color: #877FB0;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
}

.main-banner-wrapper .banner-item .banner-cont .banner-cont-title .color-other {
    display: block;
    color: #697B6F;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.main-banner-wrapper .banner-item .banner-cont .banner-p {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
    text-align: left;
    margin-bottom: 50px;
}

/* CATEGORY ROW */
.catalog-link_row {
    background: #E2EBE5;
    padding: 40px 0;
}

.catalog-link_row .flex {
    gap: 20px;
}

.catalog-link_row .text-link {
    display: block;
    margin-top: 18px;
    color: #697B6F;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s;
}

.catalog-link_row .catalog-link_item:hover .text-link {
    color: #877FB0;
}

/* SOLUTION */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(7, 1fr);
    grid-column-gap: 13px;
    grid-row-gap: 13px;
}

.solutions-grid-item {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.solutions-grid-item .text {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    position: absolute;
    top: 16px;
    z-index: 2;
    left: 20px;
    max-width: 150px;
    transition: all 0.3s;
    text-align: left;
}

.solutions-grid-item img {
    transition: all 0.6s;
}

.solutions-grid-item:hover img {
    transform: scale(1.2);
    opacity: 0.9;
    transition: all 0.6s;
}

.solutions-grid-item:hover {
    box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
}

.solutions-grid-item:first-child {
    grid-area: 1/1/3/2;
    background: #9FBFBD;
}

.solutions-grid-item:nth-child(2) {
    grid-area: 1/2/3/3;
    background: #697B6F;
}

.solutions-grid-item:nth-child(3) {
    grid-area: 1/3/3/4;
    background: #877FB0;
}

.solutions-grid-item:nth-child(4) {
    grid-area: 1/4/4/5;
    background: #BEBEBE;
}

.solutions-grid-item:nth-child(5) {
    grid-area: 3/1/8/2;
    background: #7F9EB0;
}

.solutions-grid-item:nth-child(6) {
    grid-area: 3/2/8/4;
    background: #BFCFC4;
}

.solutions-grid-item:nth-child(7) {
    grid-area: 4/4/8/5;
    background: #C2BDAC;
}

.product-card {
    border: 1px solid #ddd;
}

/* SLIDER PRODUCTS  PRODUCT CATALOG CARD*/
.slider-block {
    padding-bottom: 70px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 20px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    padding: 20px 20px 26px;
}

.product-card .catalog-item-2-card__action-compare {
    position: absolute;
    top: 18px;
    left: 18px;
}

.product-card .catalog-item-2-card__action-compare a svg path {
    fill: #DFDFDF;
}

.product-card .catalog-item-2-card__action-compare.fav-active a svg path {
    fill: #877FB0;
}

.product-card:hover {
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.product-card .slider-product_img {
    display: block;
    margin: 0 auto 11px;
    width: 200px;
    height: 177px;
    object-fit: contain;
}

.product-card .slider-product_link {
    display: block;
    min-height: 60px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 2;*/
    /*-webkit-box-orient: vertical;*/
    margin-bottom: 18px;
    flex-grow: 1;
}

.product-card .slider-product_link:hover {
    color: #877FB0;
}

.product-card .article-row {
    color: #626262;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 15px;
}

.product-card .article-row span {
    color: #000;
}

.product-card .price {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 19px;
}

.product-card .all_btn {
    margin-top: auto;
}

.label-block {
    position: absolute;
    top: 20px;
    right: 20px;
}

.label-block .label-block-item {
    border-radius: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 5px 11px 5px 6px;
    width: max-content;
    max-width: 100%;
}

.label-block .label-block-item .label-block-item_text {
    display: block;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.label-block .label-block-item .label-block-item_img {
    display: block;
    margin-right: 8px;
    width: 23px;
    object-fit: contain;
}

.label-block .label-block-item.sale {
    background: #FFB800;
}

.label-block .label-block-item.hot {
    background: #E54D4D;
}

.label-block .label-block-item.new {
    background: #69D189;
}

/* OTHER BANNER  */
.other-banner .banner-item {
    position: relative;
}

.other-banner .banner-item .banner-cont {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: left;
}

.other-banner .banner-item .banner-cont .text {
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1.2px;
    margin-bottom: 35px;
}

.other-banner .banner-item .banner-cont .title-banner {
    color: #877FB0;
    font-size: 96px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    display: block;
    line-height: 1;
    margin-bottom: 40px;
}

.other-banner .banner-item .banner-cont .title-banner .color {
    color: #697B6F;
    font-size: 96px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.best-block.slider-block.bg-green {
    background: #E2EBE5;
}

/* DEVINO BANNER */
.devino-banner .banner-item {
    position: relative;
}

.devino-banner .banner-item .banner-cont {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: left;
}

.devino-banner .banner-item .banner-cont .subtitle {
    color: #697B6F;
    text-align: right;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 50px;
}

.devino-banner .banner-item .banner-cont .title-banner {
    color: #FFF;
    text-align: right;
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 11px 14px;
    background: #877FB0;
    margin: 0 0 33px auto;
    display: block;
    width: max-content;
    line-height: 1;
    max-width: 100%;
}

.devino-banner .banner-item .banner-cont .title-banner .color {
    color: #697B6F;
    font-size: 96px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.devino-banner .banner-item .banner-cont .all_btn {
    margin: 0 0 0 auto;
}

/* BLOG SLIDER */
.company_news_slider .blog-card .blog-card_link_img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 225px;
}

.blog-card .blog-card_link_img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 233px;
    margin-bottom: 25px;
}

.blog-card .blog-card_img {
    border-radius: 20px;
    object-fit: cover;
    display: block;
    width: 100%;
}

.blog-card .blog-card_link {
    font-family: "Lato", sans-serif;
    color: #03101A;
    font-size: 28px;
    font-weight: 600;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

.blog-card .blog-card_text {
    /*min-height: 96px;*/
    color: #626262;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 25px;
}

.blog-card .all_btn {
    max-width: 202px;
}

/* PARTNERS */
.partners {
    padding-top: 50px;
    padding-bottom: 0;
}

.partners .title {
    color: #000;
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 50px;
    text-transform: uppercase;

}

.partners .title .color {
    color: #877FB0;
    font-size: 32px;
    font-weight: 700;
}

/* FOOTER */
footer {
    background: #697B6F;
    padding: 50px 0 100px;
    margin-top: 130px;
}

@media only screen and (max-width: 550px) {
    footer {
        margin-top: 34px;
    }
}

footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 38px;
}

footer .footer-bottom .footer-menu {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer .footer-bottom .footer-menu .title-column {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 26px;
    display: block;
    text-align: left;
}

footer .footer-bottom .footer-menu .footer-menu_column {
    width: 15%;
    text-align: left;

}

footer .footer-bottom .footer-menu .footer-menu_column > .footer-menu_column {
    width: 100% !important;
}

footer .footer-bottom .footer-menu .footer-menu_column:last-child {
    width: 20%;
}

footer .footer-bottom .footer-menu .footer-menu_column:first-child {
    width: 25%;
}


footer .footer-bottom .footer-menu .menu-colums_list {
    margin: 0;
    padding: 0;
}

footer .footer-bottom .footer-menu .menu-colums_list .menu-colums_list-item {
    text-align: left;
    margin-bottom: 16px;
}

footer .footer-bottom .footer-menu .menu-colums_list .menu-colums_list-item .list-item_link {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}

footer .footer-bottom .footer-menu .menu-colums_list .menu-colums_list-item .list-item_link:hover {
    color: #000;
}

footer .footer-bottom .footer-payment {
    text-align: right;
    margin-top: 35px;
}

footer .footer-bottom .footer-payment .text {
    color: #FFF;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
}

footer .footer-bottom .footer-payment .list-img {
    display: inline-block;
    padding-left: 32px;
}

.social-block .social-list {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.social-block .social-list .social-list_item {
    display: inline-block;
}

.breadcrumbs {
    text-align: left;
    display: flex;
    padding: 20px 0;
}

.breadcrumbs a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-right: 26px;
    position: relative;
}

.breadcrumbs a:hover span {
    color: #877FB0;
}

.breadcrumbs a:before {
    content: "";
    display: block;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: #000;
}

.breadcrumbs p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #626262;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 0;
}

.category_wrapper {
    padding-bottom: 55px;
}

.category_wrapper .flex {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 45px;
}

.category_wrapper .flex .category_wrapper-item {
    width: 100%;
    max-width: 370px;
    transition: all 0.3s;
    border-radius: 20px;
    overflow: hidden;
}

.category_wrapper .flex .category_wrapper-item:hover a img {
    transform: scale(1.2);
    opacity: 0.9;
}

.category_wrapper .flex .category_wrapper-item:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.category_wrapper .flex .category_wrapper-item a {
    display: block;
    position: relative;
    width: 100%;
}

.category_wrapper .flex .category_wrapper-item a img {
    display: block;
    width: 100%;
    transition: all 0.6s;
}

.category_wrapper .flex .category_wrapper-item a span {
    position: absolute;
    top: 38px;
    left: 38px;
    z-index: 5;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    right: 38px;
    text-align: left;
}

/* .category_wrapper .flex .category_wrapper-item:nth-child(3) a span,
.category_wrapper .flex .category_wrapper-item:nth-child(6) a span {
  color: #000;
} */

.irs--round .irs-bar {
    background-color: #877FB0;
}

.irs--round .irs-handle {
    background-color: #877FB0;
    border: none;
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
    background-color: #00C2C0;
}

.irs--round .irs-handle {
    width: 16px;
    height: 16px;
    top: 29px;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    color: #626262;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    background: transparent;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before,
.irs--round .irs-min,
.irs--round .irs-max {
    display: none;
}

.range-slider .input-block {
    width: 48%;
}

.range-slider .input-block input {
    border-radius: 50px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    padding: 12px 10px;
    width: 100%;
}

.range-slider .input-block input::-webkit-outer-spin-button, .range-slider .input-block input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.range-slider .input-block span.name {
    color: #626262;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    display: block;
    margin-top: 20px;
    margin-bottom: 4px;
}

.catalog-page {
    margin-top: 50px;
    margin-bottom: 130px;
}

@media only screen and (max-width: 550px) {
    .catalog-page {
        margin-bottom: 34px;
    }
}

.catalog-page .tittle-append h1 {
    text-align: left;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.catalog-page .flex {
    align-items: flex-start;
    gap: 30px;
}

.catalog-page .container {
    max-width: 1555px;
}

.filter-block-item-checkbox label {
    font-size: 12px;
    color: #313131;
    margin-top: 10px;
    display: block;
    position: relative;
    padding-left: 45px;
    cursor: pointer;
}

.filter-block-item-checkbox label input {
    display: none;
}

.filter-block-item-checkbox label span.name-check, .filter-block-item-checkbox label a.name-check {
    display: flex;
    align-items: flex-end;
    color: #626262;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: start;
}

.filter-block-item-checkbox label span.name-check span,
.filter-block-item-checkbox label a.name-check span {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-left: auto;
}

.filter-block-item-checkbox label input + span:before, .filter-block-item-checkbox label input + a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    margin-top: 0;
    width: 24px;
    height: 24px;
    background: 0 0;
    border-radius: 5px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    box-sizing: border-box;
}

.filter-block-item-checkbox label input + span:after, .filter-block-item-checkbox label input + a:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    display: none;
    width: 14px;
    height: 14px;
    background: url(../img/check.svg) no-repeat center/100%;
}

.filter-block-item-checkbox label input:checked + span:after,
.filter-block-item-checkbox label input:checked + a:after {
    display: block;
}

.catalog-page-aside {
    width: 330px;
}

.catalog-page-aside .aside-category {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #DFDFDF;
    overflow: hidden;
    background: #FFF;
    margin-bottom: 18px;
}

.catalog-page-aside .aside-category .aside-category-head {
    padding: 22px 20px;
    border-radius: 20px;
    background: #BFCFC4;
    display: flex;
    align-items: center;
}

.catalog-page-aside .aside-category .aside-category-head span {
    display: inline-block;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
}

.catalog-page-aside .aside-category .aside-category-head .mob-icon {
    display: none;
}

.catalog-page-aside .aside-category .aside-category-items {
    padding: 10px 0 0;
}

.catalog-page-aside .aside-category .aside-category-item {
    padding: 16px 17px;
    display: flex;
    align-items: center;
}

.catalog-page-aside .aside-category .aside-category-item:hover, .catalog-page-aside .aside-category .aside-category-item.active {
    background: #E2EBE5;
}

.catalog-page-aside .aside-category .aside-category-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
    margin-right: 25px;
}

.catalog-page-aside .aside-category .aside-category-item span {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
}

.catalog-page-aside .aside-form-wrap-mob {
    display: none;
}

.catalog-page-aside .aside-form {
    border-radius: 20px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    padding: 9px 20px;
}

.catalog-page-aside .aside-form .filter-block-item {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.catalog-page-aside .aside-form .filter-block-item:last-child {
    border: none;
}

.catalog-page-aside .aside-form .filter-block-item .filter-block-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.catalog-page-aside .aside-form .filter-block-item .filter-block-item-head .title {
    color: #202020;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}

.catalog-page-aside .aside-form .filter-block-item .filter-block-item-head .title span {
    color: #626262;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    margin-left: 20px;
}

.catalog-page-aside .aside-form .filter-block-item .filter-block-item-head img {
    display: block;
    transform: rotate(90deg);
    transition: all 0.3s;
}

.catalog-page-aside .aside-form .filter-block-item .filter-block-item-head.active img {
    transform: rotate(270deg);
}

.catalog-page-aside .aside-form .filter-block-item .filter-block-item-body {
    display: none;
    padding-top: 20px;
}

.bg-overlay {
    display: none;
}

.catalog-page-all-cont {
    width: calc(100% - 330px);
}

.catalog-page-all-cont .mob-show-filter_row {
    display: none;
}

.catalog-page-all-cont .catalog-banner {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 34px;
}

.catalog-page-all-cont .sort-row {
    margin-bottom: 30px;
}

.catalog-page-all-cont .sort-row .flex {
    justify-content: flex-start;
    align-items: center;
}

.catalog-page-all-cont .sort-row .flex .sort-row-title {
    color: #202020;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    margin-right: 20px;
}

.catalog-page-all-cont .sort-row .flex .sort-row-list ul li {
    display: inline-block;
}

.catalog-page-all-cont .sort-row .flex .sort-row-list ul li a {
    color: #877FB0;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    padding: 8px 10px;
    border-radius: 30px;
}

.catalog-page-all-cont .sort-row .flex .sort-row-list ul li a:hover {
    color: #000;
}

.catalog-page-all-cont .sort-row .flex .sort-row-list ul li.active a {
    background: #BFCFC4;
    color: #fff;
    pointer-events: none;
}

.catalog-page-all-cont .catalog-page-products {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.catalog-page-all-cont .catalog-page-products .product-card {
    width: calc(25% - 9px);
}

.nav-list {
    padding: 45px 0 0;
}

.nav-list ul li {
    display: inline-block;
    width: 40px;
    padding: 8px;
    border-radius: 50%;
}

.nav-list ul li.active-nav-list {
    background: #BFCFC4;
    color: #fff;
}

.nav-list ul li a {
    display: block;
    width: 100%;
}

.nav-list ul li:hover a {
    color: #877FB0;
}

.card-page h1 {
    color: #000;
    font-size: 40px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 80px;
}

.card-main-info .flex {
    align-items: flex-start;
}

.card-main-info_slider-block {
    width: 40%;
    position: sticky;
    top: 166px;
}

.card-main-info_slider-block .slider-card-wrapper {
    position: relative;
}

.card-main-info_slider-block .slider-card-wrapper .label-block {
    z-index: 5;
}

.card-main-info_slider-block .slider-card-wrapper .label-block .label-block-item {
    margin: 0 0 5px auto;
}

.bx_item_detail_rating .bx_stars_bg {
    z-index: 5;
}

.card-main-info_slider-block .slider-card-wrapper .swiper-button-next {
    position: absolute;
    right: -15px;
    bottom: 45px;
    z-index: 1;
    transform: rotate(180deg);
}

.card-main-info_slider-block .slider-card-wrapper .swiper-button-prev {
    position: absolute;
    left: -15px;
    bottom: 45px;
    z-index: 1;
}

.card-main-info_slider-block .slider-instance-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
}

.card-main-info_slider-block .slider-instance-wrapper .js-slider--nav {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 46px auto 0;
}

.card-main-info_slider-block .slider-instance-wrapper .js-slider--nav .photo__slide {
    padding: 17px;
    border: 2px solid transparent;
    cursor: pointer;
}

.card-main-info_slider-block .slider-instance-wrapper .js-slider--nav .photo__slide.swiper-slide-active {
    border: 2px solid #BFCFC4;
}

.card-main-info_slider-block .swiper-slide img {
    width: 100%;
}

.card_gallery img {
    width: 100%;
    max-width: 456px;
    height: auto;
}

.card-main-info_content-block {
    width: 50%;
}

.card-main-info_content-block .card-banner-top {
    width: 100%;
    margin-bottom: 40px;
}

.card-main-info_content-block .card-banner-top picture {
    display: block;
}

.card-main-info_content-block .card-banner-top picture img {
    width: 100%;
    object-fit: contain;
    display: block;
    min-height: initial;
}

.card-main-info_content-block .flex {
    flex-wrap: wrap;
}

.card-main-info_content-block .specification {
    width: 42%;
}

.card-main-info_content-block .card-info-detail {
    width: 57%;
}

.card-main-info_content-block .card-info-detail .card-info-detail-info {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 10px 30px 0px rgba(105, 123, 111, 0.1), 0px 10px 30px 0px rgba(105, 123, 111, 0.1);
    padding: 30px 32px;
    margin-bottom: 46px;
}

.card-main-info_content-block .logo-brand {
    max-width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 23px;
}

.card-main-info_content-block .logo-brand img {
    width: 100%;
    max-width: 199px;
    margin: 0 auto;
}

.card-main-info_content-block .specification .specification-row {
    padding-top: 28px;
}

.card-main-info_content-block .specification span.name {
    color: #626262;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    display: block;
    text-align: left;
}

.card-main-info_content-block .specification span.specification-cont {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    display: block;
}

.card-main-info_content-block .review-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 17px;
}

.card-main-info_content-block .review-info .review-total span.old-price {
    color: #BEBEBE;
    font-size: 15px;
    font-weight: 500;
    text-decoration: line-through;
    display: block;
    text-align: left;
}

.card-main-info_content-block .review-info .review-total span.price {
    color: #000000;
    font-size: 24px;
    font-weight: 500;
    text-align: left;
    display: block;
    line-height: 1;

}

.card-main-info_content-block .review-info .row_rating {
    display: block;
}

.card-main-info_content-block .review-info .row_rating .total {
    color: #000;
    text-align: right;
    font-size: 15px;
    margin-bottom: 4px;
}

.card-main-info_content-block .tooltip {
    opacity: 1;
    padding: 0;
    z-index: 5;
    cursor: default;
    user-select: none;
}

.card-main-info_content-block .tooltip:active {
    color: initial;
    background-color: initial;
    border-color: transparent;
}

.card-main-info_content-block .tooltip img {
    display: block;
}

.card-main-info_content-block .article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.card-main-info_content-block .article .flex {
    align-items: center;
}

.card-main-info_content-block .article p {
    margin-bottom: 0;
    margin-left: 11px;
    color: #626262;
    font-size: 15px;
    line-height: 1;
}

.card-main-info_content-block .article p span {
    color: #000;
    font-size: 15px;
}

.card-main-info_content-block .article .favorite.active img {
    filter: invert(33%) sepia(89%) saturate(7488%) hue-rotate(7deg) brightness(91%) contrast(133%);
}

.card-main-info_content-block .stock {
    text-align: left;
    display: flex;
    align-items: center;
    color: #626262;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 20px;
}

.card-main-info_content-block .stock img {
    display: block;
    margin-right: 14px;
}

.card-main-info_content-block .row-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.card-main-info_content-block .row-checkbox span.title {
    color: #626262;
    font-size: 16px;
    line-height: 180%;
    display: block;
    text-align: left;
    width: 100%;
}

.card-main-info_content-block .row-checkbox span.color {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #B8B8B8;
    margin-right: 6px;
}

.card-main-info_content-block .row-checkbox .item-checkbox input {
    display: none;
}

.card-main-info_content-block .row-checkbox .item-checkbox .item-radio {
    padding: 11px;
    border-radius: 50px;
    background: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-width: 80px;
    border: 2px solid transparent;
}

.card-main-info_content-block .row-checkbox .item-checkbox input:checked + .item-radio {
    background: transparent;
    border: 2px solid #877FB0;
}

.card-main-info_content-block .bottom-row {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 21px;
}

.card-main-info_content-block .bottom-row .number {
    border-radius: 50px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    width: 72px;
    height: 50px;
    position: relative;
}

.card-main-info_content-block .bottom-row .number input {
    width: 100%;
    background: transparent;
    border: none;
    height: 100%;
    border-radius: 50px;
    padding-right: 23px;
    text-align: center;
}

.card-main-info_content-block .bottom-row .number .minus {
    position: absolute;
    right: 12px;
    bottom: 9px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 9px solid #B9B9B9;
    transform: rotate(180deg);
    cursor: pointer;
}

.card-main-info_content-block .bottom-row .number .plus {
    position: absolute;
    right: 12px;
    top: 9px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid #B9B9B9;
    transform: rotate(180deg);
    cursor: pointer;
}

.card-main-info_content-block .bottom-row .all_btn {
    width: calc(100% - 85px);
}

.card-main-info_content-block .bottom-row-form {
    display: flex;
    justify-content: space-between;
}

.card-main-info_content-block .bottom-row-form .compare-btn {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 20px;
    font-family: "Inter", san-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #626262;
}

.card-main-info_content-block .bottom-row-form .compare-btn:hover {
    color: #877FB0;
}

.card-main-info_content-block .bottom-row-form .compare-btn:hover svg path {
    fill: #877FB0;
}

.card-main-info_content-block .bottom-row-form.fav-active .compare-btn svg path {
    fill: #877FB0;
}

.card-main-info_content-block .bottom-row-form.fav-active .compare-btn {
    color: #877FB0;
}

.card-main-info_content-block .bottom-row-form .compare-btn svg path {
    fill: #626262;
}

.card-main-info_content-block .bottom-row-form .compare-btn svg {
    margin-right: 8px;

}


.card-main-info_content-block .bottom-row-form .decizie-link {
    font-family: "Inter", san-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #626262;
    text-decoration-line: underline;
}

.card-main-info_content-block .bottom-row-form .decizie-link:hover {
    color: #877FB0;
}

.card-main-info_content-block .bottom-row-form .select2-container--default .select2-selection--single {
    border: none;
}

.card-main-info_content-block .bottom-row-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    border: none;
    color: #626262;
    font-size: 15px;
    text-decoration-line: underline;
    padding: 0;
    line-height: 26px;
    padding-right: 30px;
}

.card-main-info_content-block .bottom-row-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 26px;
    height: 26px;
    border-radius: 30px;
    border: 1px solid #877FB0;
    transform: rotate(270deg);
}

.card-main-info_content-block .bottom-row-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-width: 5px 4px 0 4px;
}

.card-main-info_content-block .btn-green {
    transition: all 0.3s;
    margin-top: 12px;
    border-radius: 50px;
    background: #BFCFC4;
    display: flex;
    height: 50px;
    padding: 0 23px 1px 23px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    width: 100%;
    color: #fff;
}

.card-main-info_content-block .btn-green.light-green-btn {
    background-color: #69D189;
}

.card-main-info_content-block .btn-green:hover {
    background: #877FB0;
}

.card-main-info_content-block .card-info-detail-bottom {
    padding: 0 30px;
}

.card-main-info_content-block .card-info-detail-bottom .card-bottom-info-row {
    margin-bottom: 30px;
}

.card-main-info_content-block .card-info-detail-bottom .card-bottom-info-row .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
    right: 0;
}

.card-main-info_content-block .card-info-detail-bottom .card-bottom-info-row p {
    color: #626262;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    margin-bottom: 0;
    padding-left: 18px;
    padding-top: 14px;
}

.card-main-info_content-block .card-info-detail-bottom .card-bottom-info-row .flex {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.card-main-info_content-block .card-info-detail-bottom .card-bottom-info-row .info-row_cont-title {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-left: 18px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.card-main-info_content-block .card-info-detail-bottom .card-bottom-info-row .info-row_cont-title .tooltip {
    margin-left: 18px;
}

.card-main-info_content-block .card-info-detail-bottom .card-bottom-info-row .info-row_cont-title .select2-container--default .select2-selection--single {
    border: none;
}

.card-main-info_content-block .card-info-detail-bottom .card-bottom-info-row .info-row_cont-title .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 10px;
    color: #877FB0;
    font-size: 18px;
    font-weight: 500;
}

.card-main-info_content-block .card-info-detail-bottom .card-bottom-info-row .info-row_cont-title .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #877FB0 transparent transparent transparent;
}

.tab-section {
    margin-top: 42px;
}

.tab-section .tab-block .container {
    max-width: 757px;
    display: flex;
    justify-content: space-between;
}

.tab-section .tab-block .container .b-nav-tab {
    color: #000;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 4px solid transparent;
}

.tab-section .tab-block .container .b-nav-tab.active, .tab-section .tab-block .container .b-nav-tab:hover {
    border-bottom: 4px solid #877FB0;
}

.tab-section .tab-items {
    background: #F6F6F6;
    padding: 95px 0;
}

.tab-section .tab-items .b-tab {
    padding: 53px 0 32px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 20px 50px 0px rgba(105, 123, 111, 0.1);
    text-align: left;
}

.tab-section .tab-items .b-tab.hidden {
    display: none;
}

.tab-section .tab-items .b-tab span.title {
    display: block;
    padding-left: 40px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 10px;
}

.tab-section .tab-items .b-tab span.title span {
    color: #626262;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    padding-left: 5px;
}

.tab-section .tab-items .b-tab .b-tab-row {
    padding: 17px 40px;
    display: flex;
    gap: 15px;
}

.tab-section .tab-items .b-tab .b-tab-row:nth-child(even) {
    background: #F6F6F6;
}

.tab-section .tab-items .b-tab .b-tab-row.j-cont {
    justify-content: space-between;
    align-items: center;
}

.tab-section .tab-items .b-tab .b-tab-row .wrap-download {
    display: flex;
    align-items: center;
}

.tab-section .tab-items .b-tab .b-tab-row .wrap-download .all_btn {
    padding: 6px 23px;
}

.tab-section .tab-items .b-tab .b-tab-row .wrap-download .all_btn span {
    font-size: 14px;
    color: #fff;
    transition: all 0.3s;
}

.tab-section .tab-items .b-tab .b-tab-row .wrap-download .all_btn:hover span {
    color: #877FB0;
}

.tab-section .tab-items .b-tab .b-tab-row .wrap-download .all_btn:hover img {
    filter: invert(55%) sepia(55%) saturate(241%) hue-rotate(210deg) brightness(84%) contrast(91%);
}

.tab-section .tab-items .b-tab .b-tab-row span.name {
    color: #626262;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: block;
    width: 200px;
    min-width: 200px;
}

.tab-section .tab-items .b-tab .b-tab-row span.description {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.tab-section .tab-items .b-tab .b-tab-row span.text-download {
    display: block;
    white-space: nowrap;
    color: #626262;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-right: 30px;
}

.tab-section .tab-items .b-tab .b-tab-row span.img-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #CECECE;
    margin-right: 20px;
}

.tab-section .tab-items .b-tab .b-tab-row .flex-link {
    display: flex;
    align-items: center;
}

.tab-section .tab-items .b-tab .b-tab-row .flex-link .flex-link-item {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.tab-section .tab-items .b-tab .b-tab-row .flex-link .flex-link-item:hover {
    color: #877FB0;
}

.tab-section .tab-items .b-tab .b-tab-row .flex-link .flex-link-item .text-download.mob {
    display: none;
}

.tab-section .tab-items .b-tab ul {
    padding: 19px 40px 0;
}

.tab-section .tab-items .b-tab ul li {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    padding-left: 24px;
    position: relative;
}

.tab-section .tab-items .b-tab ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #877FB0;
}

.tab-section .tab-items .b-tab .accessories_video-youtube-wrap {
    padding: 23px 40px 0;
}

.tab-section .tab-items .b-tab .accessories_video-youtube {
    position: relative;
}

.tab-section .tab-items .b-tab .accessories_video-youtube img {
    width: 100%;
}

.tab-section .tab-items .b-tab .accessories_video-youtube .video_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 40px;
}

.tab-section .tab-items .b-tab .accessories_video-youtube .accessories_video-masc {
    display: block;
    width: 100%;
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.tab-section .tab-items .b-tab .accessories_video-youtube iframe {
    min-height: 560px;
}

.tab-section .tab-items .b-tab p {
    color: #000;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding: 20px 40px;
    margin: 0;
}

.tab-section .tab-items .b-tab .reviews-wrap {
    padding: 19px 40px 0;
}

.tab-section .tab-items .b-tab .reviews-wrap .flex {
    align-items: flex-start;
}

.tab-section .tab-items .b-tab .reviews-wrap .user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tab-section .tab-items .b-tab .reviews-wrap .user-info .full {
    filter: invert(55%) sepia(55%) saturate(241%) hue-rotate(210deg) brightness(84%) contrast(91%);
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list {
    width: 60%;
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list .reviews-list-item {
    border-radius: 20px;
    border: 1px solid #DFDFDF;
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list .empty-text {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list p {
    padding: 10px 0 0;
    text-align: left;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    opacity: 0.7;
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list .left-side {
    display: flex;
    align-items: center;
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list .left-side .name {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    margin-right: 10px;
    display: block;
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list .date {
    color: #626262;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    opacity: 0.7;
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list .stars {
    height: 20px;
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list .stars span {
    display: inline-block;
}

.tab-section .tab-items .b-tab .reviews-wrap .reviews-list .stars span img {
    display: block;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block {
    width: 35%;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 20px 50px 0px rgba(105, 123, 111, 0.1), 0px 20px 50px 0px rgba(105, 123, 111, 0.1);
    padding: 30px 32px;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block span.title {
    padding-left: 0;
    padding-bottom: 20px;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row {
    margin-bottom: 18px;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row .review-add-block-name {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 11px;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row .rating_selection {
    width: max-content;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row .rating_selection input {
    display: none;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row .rating_selection label {
    cursor: pointer;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row .rating_selection label img {
    display: block;
    width: 24px;
    height: 24px;
    filter: invert(55%) sepia(55%) saturate(241%) hue-rotate(210deg) brightness(84%) contrast(91%);
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row .rating_selection:hover label img {
    filter: invert(55%) sepia(55%) saturate(241%) hue-rotate(210deg) brightness(84%) contrast(91%);
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row .rating_selection:hover label:hover ~ label img {
    filter: none;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row .rating_selection:hover label:hover ~ label img.full {
    filter: invert(55%) sepia(55%) saturate(241%) hue-rotate(210deg) brightness(84%) contrast(91%);
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row input, .tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row textarea {
    border: 1px solid #DFDFDF;
    width: 100%;
    border-radius: 30px;
    resize: none;
    padding: 8px 15px;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row textarea {
    height: 105px;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block .review-add-block-row .all_btn {
    width: auto;
    padding: 11px 23px;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block p {
    color: #626262;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    text-align: left;
    padding: 0;
}

.tab-section .tab-items .b-tab .reviews-wrap .review-add-block p a {
    text-decoration: underline;
}

.select2-results__option--selectable {
    font-size: 12px;
}

.select2-dropdown {
    border: 1px solid #aaa !important;
}

.breadcrumbs-new-container .container-big {
    padding: 0;
}

.tittle-append h1 {
    text-align: left;
    margin-bottom: 44px;
    text-transform: uppercase;
}

.blog-page {
    padding-top: 20px;
}

.blog-page .flex {
    align-items: flex-start;
}

.blog-page .flex .catalog-page-aside {
    width: 290px;
    padding-top: 20px;
}

.blog-page .catalog-page-all-cont .catalog-page-products {
    gap: 60px;
}

.blog-page .blog-card {
    width: calc(33.333% - 40px);
}

.blog-page .blog-card .date-row {
    color: #626262;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    margin-bottom: 15px;
}

.blog-page .blog-card .bottom-block-row {
    display: flex;
    gap: 6px;
}

.blog-page .blog-card .btn-green {
    transition: all 0.3s;
    border-radius: 50px;
    background: #BFCFC4;
    display: flex;
    height: 51.5px;
    padding: 0 23px 1px 23px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.blog-page .blog-card .btn-green:hover {
    background: #877FB0;
}

.blog-page .ui-widget.ui-widget-content {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    overflow: hidden;
    padding: 24px 15px 16px;
}

.blog-page .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    background: transparent;
    border: none;
    position: relative;
}

.blog-page .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all a.ui-datepicker-prev.ui-corner-all {
    position: absolute;
    left: 16px;
    top: 4px;
}

.blog-page .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all a.ui-datepicker-next.ui-corner-all {
    position: absolute;
    right: 16px;
    top: 4px;
}

.blog-page .ui-datepicker-header .ui-state-hover {
    background: transparent !important;
    border: none !important;
}

.blog-page table.ui-datepicker-calendar {
    width: 100%;
    margin-top: 22px;
}

.blog-page table.ui-datepicker-calendar thead {
    color: #919191;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-page table.ui-datepicker-calendar thead th {
    padding-bottom: 22px;
}

.blog-page table.ui-datepicker-calendar .ui-state-default, .blog-page table.ui-datepicker-calendar .ui-widget-content .ui-state-default, .blog-page table.ui-datepicker-calendar .ui-widget-header .ui-state-default, .blog-page table.ui-datepicker-calendar .ui-button, .blog-page table.ui-datepicker-calendar html .ui-button.ui-state-disabled:hover, .blog-page table.ui-datepicker-calendar html .ui-button.ui-state-disabled:active {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
}

.blog-page table.ui-datepicker-calendar .ui-state-active, .blog-page table.ui-datepicker-calendar .ui-widget-content .ui-state-active, .blog-page table.ui-datepicker-calendar .ui-widget-header .ui-state-active, .blog-page table.ui-datepicker-calendar a.ui-button:active, .blog-page table.ui-datepicker-calendar .ui-button:active, .blog-page table.ui-datepicker-calendar .ui-button.ui-state-active:hover {
    border-radius: 29px;
    background: #E2EBE5;
}

.blog-page table.ui-datepicker-calendar .ui-datepicker-title span {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px;
}

.blog-page .ui-widget-header .ui-icon {
    background-image: url(../img/arrow-left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-size: 0;
    width: 16px;
    height: 16px;
    display: block;
}

.blog-page .ui-widget-header .ui-datepicker-next .ui-icon {
    transform: rotate(180deg);
}

.lb-data .lb-number {
    display: none !important;
}

.content-page .breadcrumbs_wrapper p {
    margin-bottom: 0;
}

.breadcrumbs_wrapper {
    overflow-x: auto;
}

.amo-button-holder {
    z-index: 9 !important;
}

.content-page .blog_two-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.content-page h1 {
    text-align: left;
    margin-bottom: 44px;
    text-transform: uppercase;
}

.catalog-page h1 {
    text-transform: uppercase;
    text-align: left;
}

.content-page h2, .content-page h4 {
    margin-bottom: 31px;
    text-align: left;
}

.content-page h3 {
    font-size: 26px;
    margin-bottom: 31px;
    text-align: left;
}

.content-page h5 {
    font-size: 22px;
    margin-bottom: 31px;
    text-align: left;
}

.content-page p {
    text-align: left;
    margin-bottom: 31px;
}

.content-page .promo-block .promo-img {
    border-radius: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.content-page .promo-block .date-mob {
    display: none;
}

.content-page .promo-block .date .flex {
    gap: 20px;
}

.content-page .promo-block .date .flex span {
    color: #626262;
    font-size: 16px;
    line-height: 150%;
    opacity: 0.7;
}

.content-page .promo-block .date .flex a {
    color: #877FB0;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    opacity: 0.7;
}

.content-page .promo-block .date .flex a:hover {
    opacity: 1;
}

.content-page .promo-block-date-row {
    padding-bottom: 30px;
    margin-bottom: 38px;
    border-bottom: 1px solid #DCE3EC;
}

.content-page .block-social .flex {
    gap: 20px;
}

.content-page .block-social .flex span {
    color: #626262;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    opacity: 0.7;
}

.content-page .block-social .flex img {
    transition: all 0.3s;
}

.content-page .block-social .flex img:hover {
    opacity: 0.7;
}

.content-page blockquote {
    padding: 32px;
    border-radius: 20px;
    background: #E2EBE5;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 38px;
}

.content-page .img-row .img-poster {
    width: 100%;
    border-radius: 20px;
}

.content-page .img-row .flex {
    gap: 32px;
    margin-bottom: 21px;
}

.content-page .img-row .flex img {
    max-width: 100%;
    border-radius: 20px;
}

.content-page .img-row .flex .block-show-img {
    flex: 1;
    position: relative;
}

.content-page .img-row .flex .block-show-img .position-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.content-page .img-row .flex .accessories_video-youtube-wrap {
    flex: 1;
    position: relative;
    align-items: flex-start;
}

.content-page .img-row .flex .accessories_video-youtube-wrap .video_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.content-page .img-row p {
    color: #626262;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
}

.content-page hr {
    margin: 38px 0;
}

.content-page ul li {
    text-align: left;
    position: relative;
    margin-bottom: 20px;
    padding-left: 37px;
}

.content-page ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #697B6F;
}

.content-page ol {
    padding: 0;
    counter-reset: num;
    margin-bottom: 38px;
}

.content-page ol li {
    text-align: left;
    position: relative;
    margin-bottom: 20px;
    padding-left: 37px;
}

.content-page ol li:before {
    content: counter(num) "";
    counter-increment: num;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    top: 5px;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #697B6F;
}

.content-page .block-bg {
    border-radius: 20px;
    background: #E2EBE5;
    padding: 32px;
    margin-bottom: 38px;
}

.content-page .block-bg .content {
    border-radius: 20px;
    background: #F6F6F6;
    padding: 30px;
}

.content-page .block-bg h5 {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    padding-left: 29px;
    position: relative;
}

.content-page .block-bg h5:before {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #697B6F;
}

.content-page .img {
    margin-bottom: 38px;
    border-radius: 20px;
    display: block;
    width: 100%;
}

.content-page .table {
    width: 100%;
    overflow: auto;
}

.content-page .table .table-cont {
    width: max-content;
}

.content-page .table-head, .content-page .table-body-row {
    display: flex;
    padding: 0;
}

.content-page .table-head p, .content-page .table-body-row p {
    margin-bottom: 0;
}

.content-page .table-head .table-item {
    width: 20%;
    text-align: left;
    padding: 6px 40px;
    min-width: 290px;
}

.content-page .table-body-row .table-item {
    width: 20%;
    text-align: left;
    padding: 17px 40px;
    min-width: 290px;
}

.content-page .table-body-row:first-child {
    background: #F6F6F6;
}

.content-page .btn-green {
    transition: all 0.3s;
    border-radius: 50px;
    background: #BFCFC4;
    display: flex;
    height: 50px;
    padding: 0 23px 1px 23px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.content-page .btn-green:hover {
    background: #877FB0;
}

.content-page .btn-green img {
    display: block;
    margin-right: 5px;
}

#scroll-to-top {
    position: fixed;
    bottom: 150px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-left: auto;
    border-radius: 100px;
    border: 1px solid #BEBEBE;
    background: rgba(255, 255, 255, 0.75);
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    cursor: pointer;
    z-index: 10;
}

#scroll-to-top span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: rgba(135, 127, 176, 0.80);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}

#scroll-to-top span img {
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
}

/* Blog detail styles */

.blog_detail_text_container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 30px;
}

.content-page blockquote img {
    width: 25px;
    height: 25px;
}

.blog_detail_text_container .img-row img {
    width: auto;
    height: auto;
}

.btn-green.forward img {
    transform: rotate(180deg);
}

.breadcrumbs_wrapper .breadcrumbs a span {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #877FB0;
    white-space: nowrap;
}

.breadcrumbs_wrapper .breadcrumbs p span {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #626262;
}

#cart-btn-mob {
    position: relative;
}

.bottom-navigate_block .comp-btn-cls {
    position: relative;
}

#cart-btn-mob .inner,
#cart-btn-mob .icon-item-img-label,
.bottom-navigate_block .comp-btn-cls .inner {
    position: absolute;
    width: 17px;
    height: 13px;
    display: block;
    line-height: 12px;
    text-align: center;
    background-color: #E54D4D;
    color: #F3F0FF;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    top: 8px;
    right: 5px;
    border-radius: 7px;
}

.bottom-navigate_block .no_inner .comp-btn-cls .inner {
    display: none;
}

.bottom-navigate_block .search-btn-mob .search_block {
    top: 56px;
    bottom: 56px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
    padding: 11px;
}

.bottom-navigate_block .search-btn-mob .search_block .search-wrap .form-search-inp {
    position: relative;
    z-index: 9999;
    box-shadow: none;
}

.bottom-navigate_block .search-btn-mob .title-search-result {
    top: 0px !important;
    width: initial !important;
    left: -1px !important;
    right: -1px !important;
}

.bottom-navigate_block .search-btn-mob .search_block .search-wrap .search-wrap-btn {
    z-index: 9999;
}

.bottom-navigate_block .search-btn-mob .title-search-result .search-suggest {
    border: 1px solid #DFDFDF;
    border-radius: 20px 20px 30px 30px;
}

.bottom-navigate_block .suggest-content .suggest-list {
    flex-direction: column;
}

.bottom-navigate_block .suggest-content ul {
    background-color: transparent;
    justify-content: flex-start;
    height: fit-content;
    flex-direction: initial;

}

.bottom-navigate_block .title-search-result .search-suggest ul .search-suggest__item {
    display: flex;
    width: 100%;
}

.bottom-navigate_block .title-search-result .search-suggest ul .search-suggest__item .suggest-goods {
    flex-direction: row;
    width: 100%;
}

.bottom-navigate_block .suggest-content ul li a {
    height: fit-content;
    padding: 0;
}

.bottom-navigate_block .to-all-results .to-all-results-btn {
    height: fit-content;
    flex-direction: row;
    width: fit-content;
}

.bottom-navigate_block .title-search-result ul li a img {
    max-height: 48px;
}

.bottom-navigate_block .title-search-result .search-suggest ul .search-suggest__item.suggest-category-item .suggest-goods {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-gap: 0 16px;
    grid-template-areas: "image info" "image title";
}

.bottom-navigate_block .title-search-result .search-suggest ul .search-suggest__item.suggest-category-item .suggest-goods.suggest-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 16px;
}

.success-goods-category-link.search-in-category {
    text-align: right;
    display: block;
}

.bottom-navigate_block .title-search-result .search-suggest ul .search-suggest__item.suggest-category-item .suggest-goods.suggest-category .category__link {
    flex-direction: row;
}

.bottom-navigate_block .title-search-result .search-suggest ul .search-suggest__item .suggest-goods__image {
    grid-area: image;
}

.bottom-navigate_block .title-search-result .search-suggest ul .search-suggest__item .suggest-goods__info {
    grid-area: info;
}

.bottom-navigate_block .title-search-result .search-suggest ul .search-suggest__item .suggest-goods__title {
    grid-area: title;
}

.blog-page.academy .blog-card .blog-card_img {
    object-fit: fill;
}

.title-search-result {
    z-index: 1003;
    width: 100% !important;
    left: 0px !important;
    top: 5px !important;
    right: 0px !important;

}

.title-search-result .search-suggest {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 100px);
    padding-top: 40px;
    width: 100%;
    border-radius: 20px;
    background-color: white;
    margin-top: 7px;
/ / border: 1 px solid #555;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(1, 50, 82, 0.04) 0px 0px 1px 0px, rgba(1, 50, 82, 0.04) 0px 2px 6px 0px, rgba(1, 50, 82, 0.04) 0px 10px 20px 0px;
}

.title-search-result .search-suggest .suggest-group {
    padding: 15px 0;
    border-bottom: 1px solid #DFDFDF;
}

.suggest-content {
    border-top: 1px solid #DFDFDF;
}

.success-goods-category-link {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    /* identical to box height */
    text-decoration-line: underline;
    color: #877FB0;
}

.suggest-content .manufacturer-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 15px;

}

.to-all-results .to-all-results-btn {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #877FB0;
}

.to-all-results .to-all-results-btn .all-title {
    color: #877FB0;
}

.suggest-content .manufacturer-list .manufacturer-link {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
}

.suggest-content .manufacturer-list .manufacturer-link:hover {
    text-decoration: underline;
}

@media screen and (min-width: 1680px) {
    .success-goods-category-link {
        white-space: nowrap;
    }
}

.suggest-group .suggest-group-header {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #697B6F;
    padding: 0 15px;
    margin-bottom: 12px;
}

.header-bottom .header-bottom-r_side .search-wrap .search-wrap-btn {
    z-index: 1005;
}

.title-search-result .search-suggest ul .search-suggest__item {
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
}

.title-search-result .search-suggest ul .search-suggest__item .suggest-goods {
    display: flex;
    transition: all 0.3s;
    padding: 3px 15px;
/ / border-bottom: 1 px solid #555;
    align-items: center;
}

.title-search-result .search-suggest ul .search-suggest__item.suggest-category-item .suggest-goods {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-gap: 0 16px;
    grid-template-areas: "image info" "image title";
}

.title-search-result .search-suggest ul .search-suggest__item.suggest-category-item .suggest-goods.suggest-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 16px;
}

.empty-search-title {
    padding: 15px;
}

.title-search-result .search-suggest ul .search-suggest__item.suggest-category-item .suggest-goods.suggest-category .category__link:hover {
    background-color: rgb(241 241 245);
}

.title-search-result .search-suggest ul .search-suggest__item.suggest-category-item .suggest-goods.suggest-category .search-in-category:hover {
    background-color: rgb(241 241 245);
}

.title-search-result .search-suggest ul .search-suggest__item.suggest-category-item .suggest-goods.suggest-category .search-in-category {
    display: flex;
    align-items: center;
    height: 100%;
}

.title-search-result .search-suggest ul .search-suggest__item .suggest-goods:not(.suggest-category):hover {
    background-color: rgb(241 241 245);
}

.title-search-result .search-suggest ul .search-suggest__item .suggest-goods__image {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-right: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.title-search-result .search-suggest ul .search-suggest__item .suggest-goods__image img {
    width: 48px;
    height: 48px;
}

.title-search-result .search-suggest ul .search-suggest__item .suggest-goods span.suggest-goods__info {
    width: 70%;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 17px;
}

.title-search-result .search-suggest ul .search-suggest__item .suggest-goods__price {
    display: inline-block;
    margin-right: 8px;
    font-size: 17px;
    color: #555;
    white-space: nowrap;
    margin-left: auto;
}

@media only screen and (max-width: 1150px) {
    header .header-right-side {
        gap: 15px;
    }

    .nav-row-items {
        gap: 7px;
    }

    .header-bottom .header-bottom-l_side .logo {
        margin-right: 5px;

    }

    .header-bottom .header-bottom-l_side .logo img {
        max-width: 130px;
    }

    .header-bottom .header-bottom-l_side .header-catalog_wrapper .catalog_btn .name, .header-bottom .header-bottom-l_side .header-btn-wrapper .header-btn .btn-title {
        font-size: 14px;
    }
}

.blog-block .blog-card .center-block-row {
    min-height: 126px;
}

.top-message.success-msg {
    text-align: center;
}

.top-message.success-msg p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.swiper {
    padding-top: 10px;
    padding-bottom: 10px;
}

.content-page .last-row-page .nav_buttons_block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
}

.content-page .last-row-page .buttons_row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.captcha__img, .captcha__input {
    margin-bottom: 18px;
}


/*TOP SALES SLIDER*/
.slide_navigation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F6F6F6;
    border-radius: 50px;
    height: 38px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.1em;
    color: #000000;
    padding: 2px 15px;
    white-space: nowrap;
    transition: 0.2s;
    cursor: pointer;

}

.slide_navigation-active .slide_navigation-wrapper {
    color: white;
    background-color: #877FB0;
}

.top_sales-navigation-slider-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 39.06%);
    z-index: 5;

}

.top_sales-navigation-slider-wrapper .swiper-button-prev-ts, .top_sales-navigation-slider-wrapper .swiper-button-next-ts {
    transform: translateY(-50%);
}

.top_sales-navigation-slider-wrapper .swiper-button-next-ts {
    img {
        transform: rotateZ(180deg);
    }
}

.top_sales-navigation-slider-wrapper {
    position: relative;
}

.slide_navigation {
    width: fit-content;
}


@media only screen and (max-width: 991px) {
    .content-page .last-row-page .flex {
        flex-direction: column;
    }

    .content-page .last-row-page .nav_buttons_block {
        justify-content: center;
        gap: 20px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .content-page .last-row-page .block-social .flex {
        flex-direction: row;
    }
}

@media only screen and (max-width: 768px) {
    .content-page .last-row-page .nav_buttons_block {
        flex-direction: column;
    }
}

@media only screen and (max-width: 550px) {
    .content-page .last-row-page .nav_buttons_block .buttons_row {
        width: 100%;
        flex-direction: column;
    }

    .content-page .last-row-page .nav_buttons_block .btn-green {
        width: 100%;
    }
}

.flex.flex-start {
    align-items: start;
}

.info-page-aside {
    margin-top: 20px;
}

/*Product page mobile sticky buy btn*/
body:has(.card-page) {
    #scroll-to-top {
        bottom: 120px !important;
    }
}

.card-main-info {
    position: relative;
}

.card-main-info .sticky-by-btn-wrapper {
    position: fixed;
    bottom: 56px;
    left: 0;
    right: 0;
    width: 100%;
    height: 58px;
    padding: 10px;
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    box-shadow: 0px -4px 7px 0px #697b6f26;
}

.card-main-info .price-side {
    display: flex;
    flex-direction: column;
}

.card-main-info .price-side .price {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #697b6f;
}

.card-main-info .price-side .old-price {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-decoration-line: line-through;
    color: #bebebe;
}

.card-main-info .btns-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.card-main-info .btns-side .btn-wrapper.fav-active .compare-btn svg path {
    fill: #877fb0;
}

.card-main-info .btns-side .favorite img {
    width: 28px;
    height: 28px;
}

.card-main-info .btns-side .compare-btn {
    color: #697b6f;
}

.card-main-info .btns-side .compare-btn svg path {
    fill: #697b6f;
}

.card-main-info .btns-side .buy_btn {
    height: 38px;
    padding: 9px 12px;
}


@media screen and (max-height: 900px) {
    .catalog-section-cont .catalog-first-level .catalog-first-level_item a {
        padding: 5px 25px;
    }

    .catalog-section-cont .catalog-first-level {
        min-height: 460px;
    }

}

.mainpage .partners .swiper-container-block {
    position: relative;
}

.mainpage .partners .partners-slider-wrapper .swiper_navigation_btn.swiper-button-prev {
    left: -50px;
}

.mainpage .partners .partners-slider-wrapper .swiper_navigation_btn.swiper-button-next {
    right: -50px;
}

.text-page-promo img {

    width: 100%;
    height: auto;
    object-fit: contain;
}

.blog-page.academy .blog-card.solution__card .blog-card_link_img img {
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .product-card .slider-product_link {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
        font-size: 15px;
    }
}

/*Cookie consent*/
#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px 15px;
    display: none;
    z-index: 10;
}

#cookieConsent .cookie__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#cookieConsent span {
    color: white;
}

@media screen and (max-width: 999px) {
    #cookieConsent {
        bottom: 55px;
    }
}


/*PRODUC PRICES*/
.price__block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price__block .price__old {
    font-weight: 400;
    text-decoration: line-through;
    color: darkgrey;
    margin-bottom: 0;
    font-size: 20px;
    position: relative;
    width: fit-content;
}

.price__block .price__old .discount__percent {
    position: absolute;
    top: 0;
    left: calc(100% + 5px);
    font-size: 14px;
    font-weight: 500;
    padding: 5px;
    border-radius: 7px;
    line-height: 1;
    white-space: nowrap;
    background-color: #877FB0;
    color: white;

}

.card-main-info_content-block .review-info .review-total span.old-price .discount {
    font-size: 14px;
    font-weight: 500;
    padding: 3px 5px;
    border-radius: 7px;
    line-height: 1;
    white-space: nowrap;
    background-color: #877FB0;
    position: absolute;
    color: white;
    margin-left: 5px;
    text-decoration: none;
}

.catalog-2-nav-list {
    padding: 40px 0 0;
}

.catalog-2-nav-list-wrap button {
    background: transparent;
    border: 1px solid #181818;
    border-radius: 40px;
    width: 250px;
    height: 45px;
    font-size: 14px;
    color: #181818;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

.modal-loader {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 9999;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    left: 50%;
    top: 50%;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bx-catalog-subscribe-button {
    cursor: pointer;
}

.bx-catalog-subscribe-button span {
    color: white;
}

.bx-catalog-subscribe-button:hover span {
    color: #877FB0;
}

.card-main-info_content-block .bottom-row .all_btn.subscribe__price-btn {
    width: 100%;
}

button[type="submit"][disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.swiper-button-next, .swiper-button-prev {
    user-select: none !important;
}

/*home page timer*/
.home__promo-timer {
    padding: 50px 0 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;

    &.promo__not-started {
        grid-template-columns: 1fr;
        .l__side {
            .promo__name {
                display: none;
            }

            .promo__timer-wrapper {
                display: flex;
                align-items: center;
                gap: 50px;
                justify-content: center;
            }
        }

        .r__side {
            display: none;
        }

    }

    .l__side {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;

        .promo__name {
            color: #877fb0;
            font-size: 32px;
            line-height: 36px;
        }

        .promo__timer-wrapper {
            .timer__title {
                margin-bottom: 15px;
            }
        }
    }

    .r__side {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;

        .img__wrapper {

            img {
                border-radius: 30px;
                overflow: hidden;
                width: 100%;
                height: auto;
                object-fit: contain;
            }
        }
    }

    span.timer-title {
        width: 31%;
        color: #333;
        font-size: 13px;
        font-weight: 500;
        display: block;
    }

    .timer .timer-counter .unit {
        margin-right: 10px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .timer .timer-counter .number {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        color: white;
        background: #877fb0;
        border-radius: 12px;

        .value {
            color: white;
        }
    }

    .timer .timer-counter span.text {
        font-weight: 500;
        font-size: 14px;
    }

    .timer .timer-counter .seconds {
        margin-right: 0px;
    }
}

@media screen and (max-width: 768px) {
    .home__promo-timer {
        grid-template-columns: 1fr;

        .l__side {
            .promo__name {
                font-size: 28px;
                line-height: 32px;
            }
        }
        &.promo__not-started {
            .l__side{
                .promo__timer-wrapper{
                    flex-direction: column;
                    gap: 0;
                }
            }
        }
    }
}
.top_sales_block{
 overflow-x: hidden;
    ::-webkit-scrollbar {
        height: 6px;


    }
    ::-webkit-scrollbar-thumb{
        background-color: rgba(0,0,0,0.5);
        height: 6px;
    }
}
.top_sales-navigation-slider-wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;

}
.top_sales-navigation-slider-wrapper:before{
    display: none;
}
.adaptive-picture-wrapper{
    margin-bottom: 30px;
    img{
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    img.mob-img{
        display: none;
    }
    img.desk-img{
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .adaptive-picture-wrapper{
        margin-bottom: 15px;
        img.mob-img{
            display: block;
        }
        img.desk-img{
            display: none;
        }
    }
}

/*Catalog prices table*/
.prices_table{
    margin-top: 30px;
    border-radius: 16px;
    border: 1px solid #dce0e5;
    table{
        border-collapse: collapse;
        table-layout: fixed;
        width: 100%;
        tr{
            border-radius: 16px;
        }
        tr:first-child td{
            border-left: 0;
        }
        thead{
            tr{

                td{
                    border-top: 0;
                    font-weight: 600;
                }
            }
        }
        a{
            color: #877FB0;
            &:hover{
                text-decoration: underline;
            }
        }
        td{
            padding: 16px;
            border: 1px solid #dce0e5;
            font-size: 16px;
        }
        tr td:last-child {
            width: 25%;
        }
        tr td:last-child {
            border-right: 0;
        }
        tr:last-child td {
            border-bottom: 0;
        }
        tr td:first-child {
            border-left: 0;
            text-align: left;
        }
    }
}
@media screen and (max-width: 768px) {
    .prices_table{
        table{
            td{
                font-size: 14px;
                line-height: 20px;
            }
        }
    }

}