@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100..900&family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --myf-primary-color: #9e9b98;
    --myf-secondary-color: #45b26b
}

/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
    -webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type='submit'] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

html {
    font-family: 'Manrope', sans-serif;
}

.btn {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    border-width: 1px;
    border-radius: 5px;
    background-color: #23262f;
    background-position: center center;
    border-color: #23262f;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    padding: 12px 42px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn:hover {
    background: #ffffff;
    color: #23262f;
}

.btn_gray {
    background: #dfe0e2;
    color: #23262f;
    border-color: #dfe0e2;
}

.container {
    max-width: 1280px;
    width: 100%;
    padding: 0px 15px;
    margin: 0px auto;
}

.title {
    color: #23262f;
    font-size: 30px;
    line-height: 1.33;
    font-weight: 600;
    margin-bottom: 40px;
}

.title_s {
    margin-bottom: 30px;
}

section {
    padding: 60px 0px;
    background: #f4f5f6;
    overflow: hidden;
}

#sale {
    overflow: hidden;
    scroll-margin-top: 170px;
}

.section_white {
    background: #ffffff;
}

.catalog__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.catalog__name {
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 1;
}

.catalog__item {
    position: relative;
    transition: all 0.2s linear;
    cursor: pointer;
}

.catalog__item:hover {
    transform: translateY(-7px);
}

.catalog__img {
    height: 215px;
    border-radius: 24px;
    overflow: hidden;
}

.catalog__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__img {
    width: 100%;
}

.banner__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
}

.banner__box {
    display: grid;
    margin-top: 40px;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}

.banner__social img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    overflow: hidden;
}

.about {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.about__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about__left {
    max-width: 564px;
    min-width: 564px;
    width: 100%;
    margin-right: 40px;
}

.about__text {
    color: #23262f;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.2px;
    opacity: 0.8;
    margin-bottom: 50px;
}

.about__text p {
    margin-bottom: 20px;
}

.about__text p:last-child {
    margin-bottom: 0px;
}

.about__text b {
    color: #45b26b;
    font-weight: 600;
}

.about__text:last-child {
    margin-bottom: 0px;
}

.about__left img {
    border-radius: 24px;
}

.about-delivery .about__left {
    order: 1;
    margin-right: 0px;
    margin-left: 40px;
}

.product-slider .slick-slide {
    margin: 0px 5px;
}

.product-slider .slick-list {
    margin: 0px -5px;
}

.product__list {}

.product__item {
    background: white;
    padding: 15px;
    border-radius: 24px;
}

.product__btns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
    position: relative;
}

.product__btn .btn {
    max-width: 100%;
    padding: 10px;
    width: 100%;
    height: 43px;
    font-size: 14px;
}

.product__btn .btn svg {
    fill: #ffffff;
    transition: all 0.2s linear;
}

.product__btn .btn:hover svg {
    fill: #212121;
}

.product__btn {
    display: none;
}

.product__count {
    font-size: 16px;
    color: #000000;
    padding: 10px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    height: 43px;
    width: 100%;
    background: #f4f5f6;
    border-radius: 16px;
}

.input-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.dynamic-count {
    width: 20px;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

.product__count a {
    width: 20px;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
}

.product__count a svg {
    width: 20px;
    height: 20px;
}

.cart-element__count .product__count a svg {
    width: 16px;
    height: 16px;
}

.cart-element__count .product__count a {
    width: 16px;
    height: 16px;
    min-width: 16px;
}

.product__count input {
    width: 100%;
    width: 40px;
    text-align: center;
}

.quantity .ms2_form {
    display: flex;
    justify-content: flex-end;
}

.cart-element__count .product__count {
    height: 32px;
    padding: 8px;
    width: 78px;
    font-size: 14px;
}

.cart-element__count .product__count input {
    width: 30px;
    padding: 0px;
}

.cart-element__count {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-element__price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin-top: 10px;
}

.cart-element__weight {
    font-size: 13px;
    margin-left: 0px;
    color: #9e9b98;
}

.product__count .btn {
    display: none;
}

.product__img {
    width: 100%;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-grid__cart-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.catalog-grid__cart .product-cart__total {
    display: none;
}

.product__name {
    font-size: 16px;
    line-height: 1.2;
    color: #000000;
    margin-top: 10px;
    font-weight: 400;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-cart__total b {
    font-size: 18px;
    margin-left: 3px;
}

.product-price__new {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-right: 10px;
    line-height: 1;
}

.product-weight__size {
    font-size: 14px;
    line-height: 1;
    color: #bdbdbd;
    position: relative;
    margin-left: 10px;
}

.product-price__old {
    font-size: 18px;
    font-weight: 500;
    color: #bdbdbd;
    position: relative;
}

.product-price__old:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #bdbdbd;
}

.product-price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 12px;
}

.product__add {
    font-size: 16px;
    height: 100%;
    width: 100%;
    background: #f4f5f6;
    color: #21201f;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.ajax-more.btn {
    font-size: 14px;
    border-radius: 12px;
    padding: 12px;
    max-width: 210px;
    width: 100%;
}

.ajax-filter-count {
    grid-column: 1 / span 4;
    margin: 0px auto;
}

.preview-slider {
    position: relative;
}

.preview-slider__item {
    width: 100%;
    height: 280px;
}

.preview-slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.preview-slider .slick-slide {
    margin: 0px 15px;
}

.preview-slider .slick-list {
    margin: 0px -15px;
}

.features__list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.features__item {
    background: #f4f5f6;
    border-radius: 5px;
    overflow: hidden;
    padding: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.features__name {
    font-size: 12px;
    color: #23262f;
    font-weight: 600;
}

.features__img {
    margin-right: 30px;
}

.features__img svg {
    width: 36px;
    height: 36px;
}

.section_step {
    background: #f4f5f6;
}

.step__title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.step__list {
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(3, 1fr);
}

.step__number {
    color: #23262f;
    font-size: 30px;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.step__number span:first-child {
    border-radius: 6px;
    background-color: #45b26b;
    font-size: 12px;
    color: white;
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step__text {
    color: #23262f;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    text-align: justify;
}

.subtitle {
    color: #23262f;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.2px;
    opacity: 0.8;
}

.step__title .title {
    max-width: 515px;
    min-width: 515px;
    width: 100%;
    margin-right: 50px;
}

.step__info {
    color: #23262f;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.2px;
    opacity: 0.8;
}

.step__bottom {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 60px;
}

.step__btn {
    min-width: 370px;
    max-width: 370px;
    width: 100%;
    margin-left: 30px;
    text-align: center;
}

.reviews .slick-slide {
    margin: 0px 15px;
}

.reviews__list {
    margin: 0px -15px;
}

.reviews__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how__title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.how__list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    align-self: stretch;
}

.how__item {
    background: #f4f5f6;
    border-radius: 10px;
    padding: 30px;
    min-height: 310px;
}

.how__number {
    border-radius: 6px;
    background-color: #45b26b;
    font-size: 16px;
    color: white;
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how__name {
    font-size: 20px;
    color: #11171a;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
}

.how__text {
    font-size: 16px;
    font-weight: 400;
    color: #11171a;
}

.how__title .title {
    max-width: 515px;
    min-width: 515px;
    width: 100%;
    margin-right: 50px;
}

main {
    margin-top: 136px;
}

.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: white;
    border-bottom: 1px solid #11111114;
    z-index: 9;
}

.header__top {
    padding-top: 10px;
}

.header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header__nav a {
    color: #23262f;
    font-size: 14px;
    margin-left: 20px;
    transition: all 0.2s linear;
}

.header__nav a:hover {
    color: #45b26b;
}

.header__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__time span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-left: 10px;
}



.header__time span svg {
    width: 12px;
    height: 12px;
}

.header__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.header__icon {
    height: 46px;
    width: 54px;
    min-width: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-left: 15px;
    background: #f4f5f6;
    cursor: pointer;
}

.header__icon_cart {
    width: 100%;
    max-width: 130px;
    display: flex;
    position: relative;
}

.header__icon svg {
    width: 20px;
    height: 20px;
    fill: #9e9b98;
}

.header__search {
    background: #f4f5f6;
    border-radius: 5px;
    width: 100%;
    height: 46px;
    position: relative;
}

.header__search form {
    width: 100%;
    height: 100%;
}

.header__search form input {
    width: 100%;
    height: 100%;
    padding: 12px;
    font-size: 14px;
    color: #212121;
}

.header__search-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__search-icon svg {
    color: #8b8f94;
    width: 20px;
    height: 20px;
}

.header__search-close {
    position: absolute;
    right: 15px;
    width: 30px;
    height: 30px;
    top: 48%;
    right: 8px;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.header__search-close svg {
    color: #8b8f94;
    width: 100%;
    height: 100%;
}

.header__search-wrap.active .header__search-icon {
    display: none;
}

.header__search-wrap.active .header__search-close {
    display: block;
}

.header__search form input::placeholder {
    color: #8b8f94;
    font-size: 14px;
}

.header__search .myfieldset-searh {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header__catalog {
    min-width: 140px;
    max-width: 140px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 5px;
    background: #f4f5f6;
    margin-right: 15px;
    font-size: 14px;
    position: relative;
}

.header__catalog:hover .header-catalog {
    opacity: 1;
    transform: scale(1);
    z-index: 4;
}

.header__catalog span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__catalog svg {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    margin-left: 4px;
}

.faq__list {
    display: grid;
    column-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}

.faq__item {
    padding: 30px;
    border-top: 1px solid #eeeeee;
}

.faq__item h4 {
    font-size: 20px;
    font-weight: 500;
}

.faq__answer {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    margin-top: 25px;
    display: none;
}

.faq__name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.faq__name span {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.faq__name span:last-child {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.faq__name svg {
    width: 24px;
    height: 24px;
    transition: all 0.2s linear;
}

.faq__item.open .faq__name span:last-child svg {
    transform: rotate(45deg);
}

.contact__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #f4f5f6;
    border-radius: 10px;
    padding: 50px;
}

.contact__btns {
    margin-bottom: 30px;
    gap: 10px;
    width: 100%;
    display: flex;
}

.contact__right {
    max-width: 520px;
    width: 100%;
    height: 360px;
}

.contact__right iframe {
    width: 100%;
    height: 100%;
}

.header-mobile {
    display: none;
}

.arrow {
    position: absolute;
    top: 50%;
    left: -20px;
    width: calc(100% + 40px);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    height: 1px;
}

.arrow div {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px,
        rgba(17, 17, 26, 0.1) 0px 24px 80px;
    cursor: pointer;
}

.arrow div:hover {
    opacity: 1;
}

.arrow div svg {
    width: 28px;
    height: 28px;
    color: #23262f;
}

.product-slider__container {
    position: relative;
    z-index: 1;
}

.reviews__wrapper {
    position: relative;
}

.header__logo img {
    transition: all 0.2s linear;
    height: 56px;
    object-fit: contain;
}

.header__logo:hover img {
    transform: scale(1.1);
}

.footer {
    padding: 60px 0px;
}

.footer__wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer__logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
}

.footer__logo div:first-child {
    margin-right: 10px;
}

.footer__btn {
    margin-top: 30px;
}

.footer__wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer__box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer__box:first-child {
    max-width: 110px;
    width: 100%;
}

.footer__box:last-child {
    max-width: 640px;
    width: 100%;
    margin-left: 40px;
}

.footer__box:last-child .footer__nav a {
    width: 32%;
}

.footer__box_small {
    max-width: 110px;
}

.footer__name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer__nav a {
    color: #23262f;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 7px;
    transition: all 0.2s linear;
}

.footer__nav a:hover {
    color: #45b26b;
}

.footer__nav a:last-child {
    margin-bottom: 0px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal {
    display: none;
}

.modal__wrapper {
    padding: 30px;
}

.modal__close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__close svg {
    transition: all 0.2s linear;
}

.modal__close:hover svg {
    transform: rotate(90deg);
}

.modal__title {
    font-size: 30px;
    line-height: 1.1;
    color: #23262f;
    margin-bottom: 30px;
    font-weight: 500;
}

.modal-delivery__list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.modal-delivery__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    font-size: 16px;
    font-weight: 500;
}

.modal-delivery__item span:last-child {
    font-size: 30px;
    font-weight: 500;
}

.modal-delivery__text p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-delivery__text p:last-child {
    font-weight: 300;
}

.modal-delivery__list {
    margin-bottom: 60px;
}

.modal__btn {
    max-width: 250px;
    width: 100%;
}

.recipe__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.recipe__item {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: #ffffff;
    display: block;
}

.recipe__item:hover .recipe__img img {
    transform: scale(1.1);
}

.recipe__img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.recipe__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s linear;
}

.recipe__info {
    padding: 24px;
}

.recipe__date {
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.1;
}

.recipe__name {
    font-size: 16px;
    line-height: 1.1;
    color: #030509;
    margin: 10px 0px;
    min-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recipe__text {
    min-height: 84px;
    font-size: 14px;
    line-height: 1.5;
    color: #4f4f4f;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.recipe__more {
    font-size: 16px;
    font-weight: 700;
    color: #45b26b;
    margin-top: 10px;
    display: block;
}

.control-checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
}

.control-checkbox:last-child {
    margin-bottom: 0px;
}

.control-checkbox input {
    margin-right: 10px;
}

#parents {
    display: none;
}

.catalog-grid__title {
    margin-bottom: 20px;
}

/* для элемента input c type="checkbox" */
.control-checkbox>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .control-checkbox */
.control-checkbox>span {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* создание в label псевдоэлемента before со следующими стилями */
.control-checkbox>span::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.control-checkbox>input:not(:disabled):not(:checked)+span:hover::before {
    border-color: #23262f;
}

/* стили для активного чекбокса (при нажатии на него) */
.control-checkbox>input:not(:disabled):active+span::before {
    background-color: #ffffff;
    border-color: #23262f;
}

/* стили для чекбокса, находящегося в фокусе */
.control-checkbox>input:focus+span::before {
    border-color: #000000;
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.control-checkbox>input:focus:not(:checked)+span::before {
    border-color: #23262f;
}

/* стили для чекбокса, находящегося в состоянии checked */
.control-checkbox>input:checked+span::before {
    border-color: #23262f;
    background-color: #ffffff;
    background-image: url('../img/MaterialSymbolsCheckRounded.svg');
    background-position: center;
    background-size: contain;
}

/* стили для чекбокса, находящегося в состоянии disabled */
.control-checkbox>input:disabled+span::before {
    background-color: #e9ecef;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

.catalog-grid {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.catalog-grid__left {
    max-width: 260px;
    min-width: 260px;
    width: 100%;
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    position: sticky;
    top: 150px;
}

.catalog-grid__right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 910px;
    width: 100%;
    gap: 10px;
}

.filter-item {
    width: 100%;
}

.catalog-grid__cart {
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    max-width: 260px;
    min-width: 260px;
    width: 100%;
    position: sticky;
    top: 150px;
}

.filter__title {
    font-size: 16px;
    color: #23262f;
    font-weight: 500;
    margin-bottom: 10px;
}

.ui-slider-handle.ui-state-active {
    background: #212121 !important;
}

.ui-slider-handle.ui-state-focus {
    background: #212121 !important;
}

.ui-slider-horizontal .ui-slider-handle {
    border-radius: 50%;
    margin-left: -3px !important;
    top: -8px !important;
    width: 16px !important;
    height: 16px !important;
}

.ui-slider-horizontal .ui-slider-handle:last-child {
    margin-left: -6px !important;
}

.ui-widget.ui-widget-content {
    height: 4px;
    margin-top: 15px;
    width: 220px;
}

.price-slider__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.price-slider__box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 100px;
    width: 100%;
    border: 1px solid #adb5bd;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}

.price-slider__box label {
    margin-right: 10px;
}

.price-slider__box input {
    width: 100%;
    padding: 0px;
    background: white;
}

.price_slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#price_slider_min {
    opacity: 0;
    position: absolute;
    top: -5px;
}

#price_slider_max {
    opacity: 0;
    position: absolute;
    top: -5px;
}

.filter-btns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.filter-btns .btn {
    padding: 12px;
    font-size: 14px;
    height: 40px;
    width: 100%;
    max-width: 100%;
    background: #45b26b;
    border: none;
}

.filter-btns .btn:first-child {
    background: white;
    color: #23262f;
    border: 1px solid #23262f;
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
}

.btn-start {
    padding: 12px;
    font-size: 14px;
    border-radius: 12px;
    height: 40px;
    width: 100%;
    max-width: 100%;
    background: #45b26b;
    border: none;
}

.btn-start:hover {
    background: #21201f;
    color: #ffffff;
}

.input_block {
    margin-bottom: 20px;
}

.product-detail {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 60px;
}

.product-detail__img {
    max-width: 500px;
    min-width: 500px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.product-detail__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__left {
    margin-right: 30px;
}

.product-detail__right {
    background: white;
    padding: 30px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 362px;
    position: relative;
}
.product-detail__right form{
    margin-bottom: 10px;
}
.product-detail__descr {
    margin-top: 30px;
}

.product-detail__descr h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-detail__descr h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-detail__descr h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-detail__descr ul {
    margin-left: 30px;
}

.product-detail__descr ol {
    margin-left: 30px;
}

.product-detail__descr ol li {
    margin-bottom: 10px;
}

.product-detail__descr ul li {
    margin-bottom: 10px;
    list-style: disc;
}


.page-detail__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail .product__btns {
    max-width: 280px;
    width: 100%;
    margin-top: 0px;
}

.product-detail .product-price {
    margin-top: 0px;
    margin-bottom: 20px;
}

a.green {
    color: #45b26b;
}

.features__title span {
    color: #45b26b;
}

.contact__info h6 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact__info span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact__info span:first-child {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.contact__info span svg {
    width: 20px;
    height: 20px;
}

.contact__social a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    background: #8b8f94;
    border-radius: 50%;
    overflow: hidden;
    padding: 5px;
}

.contact__social svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.contact__social {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 60px;
}

.contact__time {
    font-size: 12px;
    color: #23262f;
    margin-top: 30px;
}

#msMiniCart {
    position: relative;
}

.ms2_total_count {
    position: absolute;
    top: -9px;
    right: -17px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #45b26b;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
}

.ms2_total_cost {
    font-size: 13px;
}

.container_shop {
    max-width: 1440px;
}

.cart-element__img {
    width: 60px;
    height: 60px;
    min-width: 80px;
    margin-right: 0px;
    border-radius: 12px;
    overflow: hidden;
}

.cart-element__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__left {
    margin-right: 10px;
}

.cart-element__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
}

.cart-element__title {
    font-size: 13px;
    line-height: 1.2;
    color: #212121;
    margin-bottom: 5px;
    height: 51px;
    width: 100%;
}

.cart-element__info {
    max-width: 100%;
    width: 100%;
}

.cart-element__price {
    font-size: 13px;
    font-weight: 600;
}

.catalog-grid__cart .btn.btn-default {
    display: none;
}

/* .empty{
	display: flex !important;
	justify-content: center;
	align-items: center;
} */
.empty span {
    display: none;
}

.modal {
    border-radius: 16px !important;
    transition: all 0.2s linear !important;
}

.iziModal {
    border-radius: 16px !important;
}

/* .not_empty{
	display: flex !important;
	justify-content: center;
	align-items: center;
} */
.not_empty div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.site-search-results {
    display: none;
    position: absolute;
    width: 100%;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: 2px 3px 9px -2px rgba(75, 75, 75, 0.1);
    background: #f4f5f6;
    padding: 15px;
    transform: translateY(-5px);
}

.search__wrapper {
    text-align: left;
    background: #f4f5f6;
    font-size: 14px;
    width: 100%;
    z-index: 2;
    max-height: 400px;
    overflow-y: auto;
    margin-right: 10px;
}

.product__more {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #11171a;
    background: rgb(255 255 255 / 87%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.2s linear;
    transform: translateY(-50%);
}

.product__link:hover .product__more {
    opacity: 1;
}

.product__more:hover {
    color: #45b26b;
}

.modal_product {
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px !important;
    width: 100% !important;
}

.modal__product {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.modal__img {
    max-width: 460px;
    width: 100%;
    height: 362px;
}

.modal__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal__right {
    padding: 20px;
    max-width: 450px;
    width: 100%;
}

.modal__text {}

.product-price__wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.modal__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.modal__price .product-weight {
    margin-bottom: 10px;
    margin-left: 0px;
}

.product-weight {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #9e9b98;
}

.product-detail .product-weight__size {
    margin-left: 0px;
}

.modal__price .product-weight__size {
    margin-left: 0px;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

.product-price__name {
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
}

.product-weight__name {
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
}

.modal__right .product__text {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 20px;
}

.product__more-detail {
    font-size: 14px;
    color: #212121;
    text-decoration: underline !important;
    margin-top: 20px;
    display: block;
    opacity: 0.8;
}

.product__more-detail:hover {
    opacity: 1;
}

.catalog-mobile__filter {
    background: #ffffff;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    max-width: 120px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.catalog-mobile__filter svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 10px;
}

.catalog-mobile__filter span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-search__link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 12px;
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.2s linear;
    cursor: pointer;
    border: 1px solid #ffffff;
}

.product-search__link:hover {
    border: 1px solid #c9c9c9;
}

.product-search__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.product-search__link .product__img {
    width: 90px;
    height: 70px;
    margin-right: 20px;
}

.product-search__link .product__name {
    margin-top: 0px;
    font-size: 16px;
    min-height: unset;
    margin-bottom: 10px;
}

.product-search__link .product-price__new {
    font-size: 16px;
}

.product-search__link .product-price__old {
    font-size: 14px;
}

.product-search__link .product-price__wrap {
    margin-bottom: 10px;
}

.product-search__info .product-weight {
    font-size: 14px;
}

/* для Chrome/Edge/Safari */
.site-search-results::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.site-search-results::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.site-search-results::-webkit-scrollbar-thumb {
    background-color: #707070;
    border-radius: 10px;
    border: 8px solid #707070;
}

.search__wrapper::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.search__wrapper .rows {
    margin-right: 15px;
}

.search__wrapper::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.search__wrapper::-webkit-scrollbar-thumb {
    background-color: #707070;
    border-radius: 10px;
    border: 8px solid #707070;
}

.modal_sidebar::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.modal_sidebar::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.modal_sidebar::-webkit-scrollbar-thumb {
    background-color: #707070;
    border-radius: 10px;
    border: 8px solid #707070;
}

.modal_sidebar::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.search__wrapper .rows {
    margin-right: 15px;
}

.modal_sidebar::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.modal_sidebar::-webkit-scrollbar-thumb {
    background-color: #707070;
    border-radius: 10px;
    border: 8px solid #707070;
}

.header-mobile__swipe {
    display: none;
}

.product-descr {
    display: none;
}

.modal .cart-element__info {
    max-width: 100%;
    width: 100%;
}

.product-cart__total {
    font-size: 14px;
    color: #11171a;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: 600;
}

.product-cart__total .cart__total {
    font-weight: 600;
    margin-left: 10px;
    font-size: 18px;
}

.order-wrapper h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

form input {
    line-height: 1;
    padding: 10px 12px;
    border-radius: 5px;
    border: none;
    color: #212121;
    max-width: 100%;
    background: #f4f5f6;
    width: 100%;
    font-size: 14px;
}

form textarea {
    line-height: 1;
    padding: 10px 12px;
    border-radius: 5px;
    border: none;
    color: #212121;
    max-width: 100%;
    background: #f4f5f6;
    width: 100%;
    font-size: 14px;
    resize: none;
}

.form__input {
    margin-bottom: 20px;
}

.form__input .placeholder {
    margin-bottom: 10px;
    font-size: 14px;
    display: block;
}

.form__input input {
    height: 50px;
}

input[name='message'] {
    display: none;
}

.form__btn {
    color: #21201f;
    transition: all 0.2s linear;
    margin-top: 10px;
}

.form__btn:hover {
    background: #21201f;
    color: #ffffff;
}

#readonly {
    opacity: 0;
    height: 0px;
    padding: 0px;
    overflow: hidden;
}

.input-parent label {
    margin-bottom: 10px;
    font-size: 14px;
    display: block;
}

.d-flex-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.form-group {
    width: 100%;
}

.input-street {
    width: 45%;
}

.input-building {
    width: 10%;
}

.input-room {
    width: 10%;
}

.input-floor {
    width: 11%;
}

.input-entrance {
    width: 16%;
}

.input-receiver {
    width: 49%;
}

.input-phone {
    width: 49%;
}

.order-form-row {
    margin-bottom: 10px;
}

textarea:focus {
    outline: none;
    border: none;
}

#comment {
    font-size: 14px;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 5px;
    color: #212121;
    max-width: 100%;
    width: 100%;
    resize: none;
    height: 60px;
    background: #f4f5f6;
    margin-bottom: 30px;
    margin-top: 0px;
}

.input-comment {
    margin-top: 10px;
}

.order-method label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 20px;
    font-size: 15px;
}

.order-method label input {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.order-method {
    margin-bottom: 20px;
}

.policy-order {
    font-size: 12px;
    margin-top: 12px;
}

.header-mobile__fixed {
    position: fixed;
    bottom: 0px;
    left: 0px;
    background: white;
    width: 100%;
    padding: 10px;
    z-index: 12;
    display: none;
}

.header-mobile__fixed-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-mobile__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #21201f;
}

.header-mobile__icon svg {
    width: 24px;
    height: 24px;
}

.catalog-grid__cart-mobile {
    display: none;
}

.alert-info {
    font-size: 20px;
}

.cart-fixed__next {
    display: none !important;
    color: #ffffff;
}

.header .cart-fixed-bottom svg {
    display: block !important;
}

.section_first {
    padding-bottom: 0px;
}

.cart-fixed-bottom {
    max-width: 300px;
    width: 100%;
    right: 0px;
    bottom: 50px;
    background-color: #45b26b;
    border-radius: 12px;
    padding: 12px;
    margin-top: 0px;
    font-weight: 600;
    cursor: pointer;
}

.modal-coupon__name.active {
    display: block;
}

.cart-fixed-bottom .ms2_total_count {
    display: none;
}

.cart-fixed-bottom .cart-fixed__next {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.header .cart-fixed-bottom .cart-fixed__next {
    display: none !important;
}

.cart-fixed-bottom .ms2_total_cost {
    color: rgb(255 255 255 / 69%);
}

.header .cart-fixed-bottom .ms2_total_cost {
    color: #21201f;
}

.header .ms2_total_count {
    top: 2px;
    right: -3px;
}

.header .cart-fixed__next-value b {
    color: #21201f;
    margin-left: 2px;
    line-height: 1;
}

.header .cart-fixed-bottom .ms2_total_count {
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-grid__cart .empty-cart .cart-fixed-bottom {
    display: none !important;
}

.cart-fixed__flex {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
}

.cart-fixed-bottom svg {
    display: none !important;
}

.product-detail .product-price__wrap {
    margin-bottom: 20px;
}

.product__item .product-weight {
    font-size: 15px;
}

.header-cart .ms2_total_count b {
    display: none;
}

.cart-fixed__next-value {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0px !important;
}

.cart-fixed__next-value b {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.69);
}

.section_breadcrumbs {
    padding: 15px 0px;
}

.breadcrumbs {
    background: #f4f5f6;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
}

.breadcrumbs ol li {
    list-style: none;
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}

.breadcrumbs ol li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -2px;
    width: 3px;
    height: 3px;
    background: #707070;
}

.breadcrumbs ol li.active::before {
    display: none;
}

.breadcrumbs ol li a {
    color: #707070;
}

.breadcrumbs ol li.active {
    color: #21201f;
}

.breadcrumbs ol {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.catalog-mobile__close {
    position: fixed;
    top: 70px;
    right: 15px;
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.header .cart-fixed-bottom {
    background: transparent;
    max-width: unset;
    width: unset;
    background: unset;
}

/* input[type='radio'] {
	accent-color: #23252f;
} */
.order-method .checkbox {
    margin-bottom: 10px;
}

.order-method .checkbox:nth-child(2n + 2) {
    margin-bottom: 0px;
}

.order-wrapper .row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.order-wrapper .order-method {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #a0a0a0;
}

.order-wrapper .order-method:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border-right: 0px;
}

.modal_sidebar {
    position: fixed;
    top: 0px;
    right: -110%;
    opacity: 0;
    width: 600px;
    height: 100%;
    background: white;
    padding: 24px;
    display: block;
    overflow-y: auto;
    border-radius: 0px !important;
    z-index: 10;
    transition: all 0.2s linear;
}

.modal_sidebar.active {
    right: 0px;
    opacity: 1;
}

.modal-sidebar-bg {
    content: '';
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.418);
    bottom: 0px;
    opacity: 0;
    z-index: 9;
    transform-origin: right;
    transition: all 0.2s linear;
    display: none;
}

.modal-sidebar-bg.active {
    opacity: 1;
    display: block;
}

.msFavoriterToggle i.fas.fa-star,
.factive {
    display: none;
}

.msFavoriterToggle._active_ i.fas.fa-star,
.factive {
    display: inline-block;
}

.msFavoriterToggle._active_ i.far.fa-star,
.fnoactive {
    display: none;
}

.product-detail__btns {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 10px;
}

.product-detail__fav .msFavoriterToggle {
    position: unset;
    width: unset;
    height: unset;
}

.product-detail__fav {
    margin-left: 10px;
}

.product-detail__fav button._active_ .in-fav {
    display: block;
}

.product-detail__fav button._active_ .not-fav {
    display: none;
}

.product-detail__fav button .not-fav {
    display: block;
}

.product-detail__fav button .in-fav {
    display: none;
}

.product-detail__fav button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 100%;
    background: #f4f5f6;
    color: #21201f;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 43px;
    width: 100%;
    padding: 12px 24px;
}

.product-detail__fav button svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.product-detail__btns .product__add span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail__btns .product__add svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.header__icon_fav {
    position: relative;
}

.favorites a {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #21201f;
}

.product__item {
    position: relative;
}

.favorites strong {
    position: absolute;
    top: 2px;
    right: 1px;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #bdbdbd;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
}

.msFavoriterToggle {
    position: absolute;
    right: 18px;
    bottom: 65px;
    width: 20px;
    height: 20px;
}

.msFavoriterToggle svg {
    fill: #9e9b98;
    transition: all 0.2s linear;
}

.msFavoriterToggle:hover svg {
    fill: #45b26b;
}

._active_ svg {
    fill: #45b26b;
}

.section_favorite .container {
    display: flex;
    justify-content: space-between;
}

.section_favorite .catalog-grid {
    justify-content: space-between;
}

.section_favorite .catalog-grid__right {
    max-width: 100%;
}

.section_favorite .catalog {
    width: 100%;
}

.section_breadcrumbs+section {
    padding-top: 40px;
}

.section_favorite .catalog-grid__cart {
    position: relative;
    top: unset;
}

/* .header .cart-fixed__flex {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
} */
.modal_sidebar .modal__wrapper {
    padding: 0px;
}

.modal-product {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.modal-product.active {
    display: block;
    opacity: 1;
    z-index: 10;
}

.modal-info-bg {
    content: '';
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.418);
    bottom: 0px;
    opacity: 0;
    z-index: 9;
    display: none;
    transform-origin: right;
    transition: all 0.2s linear;
}

.modal-info-bg.active {
    opacity: 1;
    display: block;
}

.header-catalog {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 700px;
    width: 100%;
    position: absolute;
    top: 40px;
    margin-top: 20px;
    left: 0px;
    background: #ffffff;
    z-index: 4;
    padding: 30px;
    border-radius: 16px;
    gap: 10px;
    width: 732px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s linear;
    transform-origin: top left;
    z-index: -2;
}

.header-catalog:before {
    content: '';
    width: 140px;
    background: transparent;
    height: 40px;
    position: absolute;
    left: 0px;
    top: -26px;
}

.header-catalog__item {
    width: 32%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    color: #21201f;
    font-weight: 500;
    transition: all 0.2s linear;
}

.header-catalog__item:hover {
    color: #45b26b;
}

.header-catalog__icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 10px;
}

.header-catalog__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview-slider__wrapper {
    opacity: 0;
    transition: all 0.2s linear;
}

.preview-slider__wrapper.slick-initialized {
    opacity: 1;
}

.product-slider__wrapper {
    opacity: 0;
    transition: all 0.2s linear;
}

.product-slider__wrapper.slick-initialized {
    opacity: 1;
}

.sharing-list__item svg {
    width: 40px;
    height: 40px;
}

.news-detail {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.news-detail__left {
    align-self: flex-start;
    max-width: 320px;
    min-width: 320px;
    width: 100%;
    margin-right: 60px;
    padding: 24px;
    background: #f5f5f5;
    border-radius: 12px;
    background: white;
}

.news-detail__subname {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.table-of-contents__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.table-of-contents__items a {
    color: #030509;
    margin-bottom: 5px;
}

.news-detail__share {
    margin-top: 30px;
}

.news-detail__subname {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sharing-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}

.sharing-list li {
    margin-right: 10px;
}

.sharing-list li a {
    opacity: 0.5;
    transition: all 0.2s linear;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-detail__img {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}

.news-detail__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

#jGrowl {
    top: unset !important;
    bottom: 0px !important;
    display: none !important;
}

.jGrowl-notification .jGrowl-close {
    font-size: 14px;
}

.filter-btns {
    display: none;
}

.catalog_sort_block {
    margin-bottom: 20px;
}

.catalog_sort_block ._group_values {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.catalog_sort_block ._group_values span {
    font-size: 14px;
}

.catalog_sort_block ._group_values ._value {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

.catalog_sort_block ._group_values ._value._active_ {
    font-weight: 600;
}

.catalog_sort_block ._name {
    font-size: 14px;
}

.catalog_sort_block ._group_values svg {
    width: 20px;
    height: 20px;
}

/* .catalog_sort_block ._group_values{
	margin-bottom: 20px;
} */
/* .catalog_sort_block ._value{
	display: none;
}
.catalog_sort_block ._value._active_{
	display: block;
} */
.button.ms2_link.btn {
    background: #45b26b;
    border: none;
    height: 43px;
    font-size: 14px;
}

.button.ms2_link.btn:hover {
    background: #21201f;
    color: white;
}

.modal-ajax-order {
    display: none;
}

.ml_wrapper {
    position: fixed;
    bottom: 20px;
    right: 15px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.ml_bgimg {
    background-image: url('../img/call.svg');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.2s linear;
}

.ml_btn_label {
    position: relative;
    cursor: pointer;
    z-index: 2;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 30%);
    overflow: hidden;
}

.ml_btn_input {
    display: none;
}

.ml_icon_link {
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 30%);
    opacity: 0;
    visibility: hidden;
    width: 50px;
    height: 50px;
}

.ml_btn_input:checked~.ml_icon_link {
    opacity: 1;
    visibility: visible;
}

.ml_btn_input:checked~a:nth-of-type(1) {
    transition: all 0.2s ease-in-out;
    transform: translate(0, -135%);
}

.ml_btn_input:checked~a:nth-of-type(2) {
    transition: all 0.225s ease-in-out;
    transform: translate(0, -255%);
}

.ml_btn_input:checked~a:nth-of-type(3) {
    transition: all 0.25s ease-in-out;
    transform: translate(0, -375%);
    background: white;
}

.ml_tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #fff;
    padding: 6px 9px;
    font-size: 13px;
    border-radius: 3px;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    opacity: 0;
    transition: all 0.1s linear;
}

.ml_btn_input:checked+label .ml_icon-close {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ml_btn_input:checked+label .ml_bgimg {
    background: white;
    background-image: none;
}

.ml_icon-close {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.1);
}

.ml_icon {
    transition: all 0.3s ease-in-out;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ml_btn_input:checked+label {
    background: #fff !important;
    animation: none;
}

.ml_icon_link:hover .ml_tooltip {
    opacity: 0.85;
}

.ml_tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #fff;
    padding: 6px 9px;
    font-size: 13px;
    border-radius: 3px;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    opacity: 0;
    transition: all 0.1s linear;
}

.header__burger {
    display: none;
}

.header__burger .open {
    display: block;
}

.header__burger .close {
    display: none;
}

.header__burger.active .open {
    display: none;
}

.header__burger.active .close {
    display: block;
}

.header__search-wrap {
    width: 100%;
    position: relative;
}

.complete {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    height: 50vh;
}

.complete h1 {
    font-size: 32px;
    color: #21201f;
    font-weight: 600;
    margin-bottom: 30px;
}

.complete h3 {
    font-size: 20px;
    line-height: 1.2;
}

.section_shop-cat {
    overflow: visible;
}

.copy {
    font-size: 14px;
    color: #8b8f94;
}

.copy p {
    position: relative;
    top: -88px;
    max-width: 300px;
}

.copy a {
    color: #030509;
}

#mse2_sort {
    font-size: 14px;
    margin-bottom: 12px;
}

#mse2_sort a {
    color: #21201f;
}

#mse2_ms|price .form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #e9eaec;
    background: #f7f7f8;
    color: #727376;
    text-shadow: none;
    font-size: 14px;
    line-height: 1.42857143;
    margin-bottom: 20px;
    border-radius: 5px;
}

.mse2_number_inputs .form-control {
    height: 32px;
    padding-left: 35px;
}

.filter-item-body .cols {
    display: grid;
    grid-gap: 10px;
}

.filter-item-body .cols.cols2 {
    grid-template-columns: 1fr 1fr;
}

.mse2_number_inputs label {
    font-size: 14px;
    position: absolute;
    top: 6px;
    left: 7px;
    color: #757575;
}

#mse2_filters .mse2_number_inputs label {
    display: inline-block;
}

.relative {
    position: relative;
}

.no-favorite {
    grid-column: 1 / 3;
}

.cat-selects {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.cat-select {
    font-size: 14px;
    color: #21201f;
    margin-bottom: 7px;
}

.cat-select.active {
    font-weight: 600;
}

.video__content h1 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    scroll-margin-top: 170px;
}

.video__content p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
}

.video__content h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    scroll-margin-top: 170px;
}

.video__content h3 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    scroll-margin-top: 170px;
}

.video__content h4 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    scroll-margin-top: 170px;
}

.video__content h5 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    scroll-margin-top: 170px;
}

.video__content h6 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    scroll-margin-top: 170px;
}

.video__content ol {
    margin-left: 40px;
}

.video__content ul {
    margin-left: 40px;
}

.video__content ul li {
    list-style: disc;
    font-size: 18px;
    line-height: 1.5;
}

.modal__wrap {
    padding: 30px;
}

.catalog-grid__information {
    max-width: 870px;
    width: 100%;
    margin: 0px auto;
    font-size: 16px;
    color: #8b8f94;
}

.nav-parent .link-next {
    display: none;
}

.nav-parent .link-prev {
    display: none;
}

.mspc2-form {
    margin-right: 0px !important;
    width: 100%;
    max-width: 100% !important;
    border: none !important;
}

.mspc2-discount-amount {
    font-size: 16px !important;
    font-weight: 600;
    margin-top: 10px;
}

.mspc2-message__error {
    font-size: 16px;
    font-weight: 600;
}

.mspc2-message__success {
    font-size: 16px;
    font-weight: 600;
}

.mspc2-form__button.mspc2-form__button_submit {
    width: 100%;
    color: #ffffff;
    max-width: 110px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    border-width: 1px;
    border-radius: 5px;
    background-color: #23262f;
    background-position: center center;
    border-color: #23262f;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    padding: 12px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mspc2-form__button.mspc2-form__button_submit:hover {
    background: white;
    color: #030509;
}

.mspc2-form .mspc2-form__input {
    line-height: 1;
    padding: 10px 12px;
    border-radius: 5px;
    border: none;
    color: #212121;
    max-width: 100%;
    background: #f4f5f6;
    width: 100%;
    font-size: 14px;
    margin-right: 10px;
}

.modal-coupon__name {
    font-size: 14px;
    margin: 10px 0px;
    text-decoration: underline;
    cursor: pointer;
    display: none;
}

.modal-coupon__name:hover {
    color: #45b26b;
}

.modal-coupon__input {
    display: none;
}
.modal-coupon .msb2-subtitle {
    margin-top: 0px;
}

.msb2-subtitle {
    display: none;
}
.js-coupon-item{
    margin-top: 0px;
}
.msb2-subtitle.active {
    display: block;
}

.no-active {
    cursor: not-allowed;
    position: relative;
    z-index: 10;
}

.no-active .product__count {
    pointer-events: none;
}

.no-active:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}
.msb2-logs-info__points{
    display: none;
}
.msb2-logs-info__points.active{
    display: block;
    padding: 10px 5px;
    border: 1px solid #45b26b;
}
.msb2-logs-info__points.active b{
    color: #45b26b;
} 
.modal__coupon {
    background: white;
    color: #ec1049;
    font-weight: 600;
    display: none;
    font-size: 14px;
}

.total-cost__wrap {
    display: none;
}

.modal__wrapper .ms2_total_products.hide-nice {
    height: 0px;
    opacity: 0;
}

.total-cost__wrap {
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
}

.mspc2-message__error {
    display: none;
}

.d-none-cart {
    display: none;
}

#msOrder div .error {
    border: none !important;
    background: #ffe9e9 !important;
}

.delivery__subname {
    color: #adb5bd;
    margin-left: 5px;
}

.delivery-more {
    display: none;
}

.delivery-more.active {
    display: block;
}

.delivery-more__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.delivery-more__text {
    font-size: 15px;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #292929;
}

.delivery-more__text span:last-child {
    font-weight: 600;
}

.delivery-more__text:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border: none;
}

.cart-element__price .old_price {
    display: none;
}

.preview__title {
    font-size: 30px;
    color: #707070;
    text-align: center;
    margin-top: 20px;
}

.section_cabinet {
    background: white;
}

.cabinet-modal {
    overflow: auto !important;
}

.mb-3 {
    margin-bottom: 20px;
    line-height: 1.1;
}

.mb-3 label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.mb-4 {
    margin-bottom: 20px;
}

.fs-3.title {
    margin-bottom: 20px !important;
}

.subtitle {
    font-size: 14px;
}

.subtitle a {
    color: #000000;
    text-decoration: underline;
}

small.text-muted {
    line-height: 1.1;
    color: #8b8f94;
}

.form-check {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-cabinet-auth-trigger="recovery"] {
    font-size: 16px;
    color: #8b8f94;
    text-decoration: underline;
}

.cabinet-auth-login-username {
    margin-bottom: 10px;
}

.form-check label {
    margin-bottom: 0px;
}

.cabinet-modal {
    margin: auto;
}

.invalid-feedback {
    font-size: 13px;
    color: #ec1049;
}

.alert-success {
    font-size: 14px;
    color: #45b26b;
    margin-bottom: 10px;
}

.btn.btn-sm {
    height: unset;
    padding: 0px;
    background: transparent;
    border: none;
    color: #11171a;
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    gap: 5px;
}

.header__login:before {
    content: '';
    position: absolute;
    display: block;
    right: 5px;

}

.btn.btn-sm svg {
    stroke-width: 1.5px;
    width: 20px;
    height: 20px;
}

.header__signup {
    font-size: 14px;
    max-width: 200px;
}

.header__login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cabinet {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.cabinet .card {
    max-width: 460px;
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    height: fit-content;
}

.cabinet .card:first-child .card-header {
    display: none;
}

.card-title {
    color: #23262f;
    font-size: 30px;
    line-height: 1.33;
    font-weight: 600;
    margin-bottom: 30px;
}

.card-header h4 {
    color: #23262f;
    font-size: 30px;
    line-height: 1.33;
    font-weight: 600;
    margin-bottom: 30px;
}

.dropdown {
    display: none;
}

.header__auth-account {
    display: flex;
    justify-content: center;
    align-items: center;
    height: unset;
    padding: 0px;
    background: transparent;
    border: none;
    color: #11171a;
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    gap: 5px;
    text-decoration: underline;
}

.header__auth-account svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.header__auth-account span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cabinet-main__nav .dropdown {
    display: block;
}

.container-cab {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.cabiner-main__wrapper {
    background: #f4f5f6;
    padding: 40px 0px 60px 0px;
}

.cabinet-main__nav {
    max-width: 300px;
    min-width: 300px;
    width: 100%;
    margin-right: 30px;
    position: sticky;
    top: 100px;
}

.cabinet-main__nav button.btn {
    display: none;
}

/* .cabinet-main__nav button.btn {
    color: #23262f;
    font-size: 30px;
    line-height: 1.33;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

.cabinet-main__nav button.btn svg {
    display: none;

} */

.dropdown-menu {
    width: 100%;

    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-item-text div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.dropdown-item-text div strong {
    font-weight: 400;
    color: #21201f;
}

.dropdown-menu li:first-child {
    padding: 12px 20px;
}

.dropdown-menu li {
    border-bottom: 1px solid #c9c9c9;
}

.dropdown-item {
    color: #21201f;
    padding: 12px 20px;
    height: 55px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 10px;
}

.dropdown-item:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #21201f;
    transform: scale(0);
    transform-origin: left;
    transition: all 0.2s linear;
}

.dropdown-item:hover:before {
    transform: scale(1);
}

.dropdown-menu li:last-child {
    border-bottom: 0px;
}

.cabinet-modal__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.cabinet-main__content .cabinet.mt-5 {
    display: flex;
    flex-direction: column;
}

.cabinet-main__content {
    width: 100%;
}

.order-stats__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    background: white;
}

.order-stats__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.order-stats__val {
    font-size: 14px;
    font-weight: 600;
}

.order-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    font-size: 14px;
}

.order-stats .bg-primary {
    background: rgba(13, 109, 253, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.order-stats .bg-primary svg {
    color: #0d6efd;
    width: 24px;
    height: 24px;
}

.order-stats .bg-warning {
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.order-stats .bg-warning svg {
    color: #ffc107;
    width: 24px;
    height: 24px;
}

.order-stats .bg-info {
    background: rgba(13, 202, 240, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.order-stats .bg-info svg {
    color: #0dcaf0;
    width: 24px;
    height: 24px;
}

.order-stats .bg-success {
    background: rgba(25, 135, 84, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.order-stats .bg-success svg {
    color: #198754;
    width: 24px;
    height: 24px;
}

.order-stats .bg-danger {
    background: rgba(220, 53, 70, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.order-stats .bg-danger svg {
    color: #dc3545;
    width: 24px;
    height: 24px;
}

.header__time {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-body .cabinet__profile {
    margin-top: 20px;
}

.order-filter__form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.order-filter__fields {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.order-filter__field {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
    margin-right: 20px;
}

.order-filter__field input {
    max-width: 140px;
    margin-left: 10px;
}

.order-filter__field select {
    line-height: 1;
    padding: 10px 12px;
    border-radius: 5px;
    border: none;
    color: #212121;
    max-width: 100%;
    background: #f4f5f6;
    width: 100%;
    font-size: 14px;
    max-width: 140px;
    width: 100%;
    height: 38px;
    margin-left: 10px;
    outline: none;
}

.order-filter__field select:focus {
    outline: none;
}

.order__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.order-info__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    font-size: 14px;
    border-right: 1px solid #a4a4a4;
    padding-right: 10px;
    margin-right: 10px;
}

.order__header .order-info__item {
    border-right: 1px solid #a4a4a4;
}

.order-info__item:last-child {
    border-right: 0px;
}

.cabinet .order {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.order__item-thumb {
    width: 150px;
    height: 100px;
}

.order__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order__item-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.order__item-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.order__item-footer .order-info__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

.fw-bold {
    font-weight: 600;
}

.order__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.order__item-title a {
    color: #21201f;
}

.offcanvas-start {
    display: none;
}

.order-toggles {
    display: none;
}

.order__body .order__item {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #c9c9c9
}

.order-filter__body {
    margin-bottom: 0px;
}

.alert-dismissible {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}

.cabinet .alert-warning {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.order-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.order-detail__item-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.order-detail__item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.order-detail__item-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.order-detail__item-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.order-detail__item {
    background: white;
    padding: 30px;
    border-radius: 16px;
}

.order-detail__item-label {
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
}

.order-detail__item-value {
    font-size: 14px;
}

.myfavorites-btn {

    position: absolute;
    right: 18px;
    bottom: 65px;
    width: 20px;
    height: 20px;

}

/* Комментраии */


.product-review__wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
    margin-top: 30px;
}

.product-review__text {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.msb2-total-price{
    display: none;
    font-weight: 600;
}
.product-review__text button {
    order: -1;
    max-width: 220px;
    width: 100%;
}

.product-review__rating {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 500px;
    width: 100%;
    margin-bottom: 20px;
}

.product-review__text p {
    margin-bottom: 10px;

}

.ec-d-rating {
    width: 100%;
    max-width: 100% !important;
    background: white !important;
    padding: 30px !important;
    border-radius: 16px !important;
    position: relative;
}
.ec-d-rating:before{
    content: 'New';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #45b26b;
    font-size: 12px;
    padding: 5px 10px;
    color: #ffffff;
    border-radius: 5px;
}


.ec-stars {
    margin-bottom: 15px !important;
}

.ec-message__author {
    font-size: 18px;
    margin-bottom: 10px;
}

.ec-message__date {
    font-size: 14px;
}

.ec-message {
    padding: 30px !important;
    background: white;
    background-color: #ffffff !important;
    border-radius: 16px !important;
}

.ec-message .ec-message__header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 20px;
}

.product-detail__reviews {
    position: relative;
}

.ec-message .ec-stars {
    margin: 0px !important;
}

.ec-message p {
    height: 200px;
    overflow-y: hidden;
    margin-bottom: 10px;
}

.reviews-list {
    margin: 0px -15px;
}

.reviews-list .slick-slide {
    margin: 0px 15px;
}

.fade-form-reviews {
    padding: 30px !important;
    background: white;
    background-color: #ffffff !important;
    border-radius: 16px !important;
    margin-top: 30px;
    display: none;
}

.ec-message__meta {
    display: flex;
    flex-direction: column;
    gap: 0px !important;
}

.ec-message {}

.ec-form__row.checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ec-form__row.checkbox label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin-bottom: 0px;
}

.ec-form__row.checkbox input {
    width: 16px;
    height: 16px;
}

.ec-form__row .btn {
    color: #23262f;
}

.ec-form__row label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.review form {
    padding: 30px;
    border-radius: 32px;
    background: white;
}

.ec-rating-description {
    font-size: 14px;

}

.order__action--share {
    display: none;
}

.order__share {
    display: none;
}

.ec-d-none {
    padding: 0px !important;
}

.ec-form-36-success {
    padding: 0px !important;
}


/* Css to new */

.header__auth {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-left: 30px;
}

.header__auth .dropdown {
    display: block;
    position: relative;
}

.header__auth .dropdown-menu {
    position: absolute;
    transform: scale(0);
    transform-origin: top;
    position: absolute;
    top: 20px;
    background: white;
    right: -46px;
    z-index: 2;
    max-width: 160px;
    min-width: 160px;
    transition: all 0.2s linear;
}

.dropdown:hover .dropdown-menu {
    transform: scale(1);
}

.header__auth .dropdown .dropdown-item {
    padding: 10px;
    height: unset;
    font-size: 14px;
    gap: 10px;

}

.header__auth .dropdown-menu li:first-child {
    padding: 10px;
    font-size: 14px;
}

.header__auth .dropdown-item:before {
    display: none;
}

.header__auth .dropdown .dropdown-item:hover {
    background: #ededed
}

.cabinet-main__content .card-body .d-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.profile__avatar {
    min-width: 100px;
    margin-right: 20px;
}


.btn-update-photo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-update-photo .btn {
    color: #21201f;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    border-radius: 5px;
    background-color: #f4f5f6;
    background-position: center center;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    padding: 10px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.product-review__wrap_mob {
    display: none;
}

.ec-d-rating__col-info {
    max-width: 150px;
    width: 100% !important
}

.ec-d-rating__desc {
    font-size: 12px;
}

.btn.order-filter__btn--apply {
    min-width: 140px;
    max-width: 140px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 5px;
    background: #f4f5f6;
    margin-right: 15px;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    margin: 0px;
    height: 38px;
}

.order-filter__actions {
    position: relative;
}

.order-filter__btn--reset {
    margin-top: 5px;
    width: 100%;
}

.order-info__item--count {
    gap: 5px;
}

.order-info__item--cost {
    gap: 5px;
}

.section_product-single {
    overflow: visible;
}

.product-detail__left {
    position: sticky;
    top: 150px;
}

.msb2-logs-table td {
    text-align: left;
}

.msb2-logs-table th {
    text-align: left;
}


.msb2-logs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.msb2-wrap {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
}

.msb2-wrap .msb2-title {
    color: #23262f;
    font-size: 30px;
    line-height: 1.33;
    font-weight: 600;
    margin-bottom: 30px;
}

.msb2-logs-table-wrap .msb2-logs-table {
    margin: 0px !important;
}

.msb2-logs-table-wrap {
    border-radius: 12px;
    overflow: hidden;
}

.msb2-wrap .msb2-logs-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
}

.msb2-wrap .msb2-logs-info span {
    font-weight: 700;
    margin-left: 5px;
}

.scroll-anim-mob {
    display: none;
}

.msb2 .msb2-form {
    margin-right: 0px !important;
    border: none !important;
    margin-bottom: 0px !important;
}

.msb2-form input {
    line-height: 1;
    padding: 10px 12px;
    border-radius: 5px;
    border: none;
    color: #212121;
    max-width: 100%;
    background: #f4f5f6;
    width: 100%;
    height: 40px;
    font-size: 14px;
    margin-right: 10px;
    min-width: 200px;
}

.msb2-form .msb2-form__button {
    color: #ffffff;
    font-size: 14px;
    max-width: 110px;
    width: 100%;
    line-height: 1.55;
    font-weight: 600;
    border-width: 1px;
    border-radius: 5px;
    background-color: #23262f;
    background-position: center center;
    border-color: #23262f;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    padding: 12px;
    height: 40px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.msb2-form__button_submit {
    display: flex !important;
}

.is-active .js-msb2-submit {
    display: none !important;
}

.is-active .js-msb2-cancel {
    display: flex !important;
}

.msb2-subtitle {
    font-size: 14px;
    margin: 10px 0px;
    text-decoration: underline;
    cursor: pointer;
}

.msb2-subtitle:hover {
    color: #45b26b;
}

.msb2-form {
    max-width: 100% !important;
    margin-bottom: 10px !important;
}

.msb2-discount {
    /* font-size: 14px !important; */
    font-size: 16px !important;
    font-weight: 600;
    margin-top: 10px;
}

.msb2-points {
    font-size: 14px;
    margin-top: 5px;
}

.msb2-message__success {
    font-size: 14px;
}

.msb2-message__error {
    font-size: 14px;
}

.msb2-accordion {
    display: none;
}

.msb2 {
    margin: 0px !important;
}

.free-price{
    position: absolute;
    max-width: 320px;
    min-width: 320px;
    width: 100%;
    top: 60px;
    background: #FFF;
    border-radius: 10px;
    padding: 15px;
    font-size: 14px;
    right: 0px;
    transition: all 0.32s ease-in-out;
}
.free-price{
    opacity: 0;
    z-index: -9;
}
.free-price.active{
    opacity: 1;
    z-index: 9;
}
.free-price__row{
    margin-bottom: 0px;
    display: none;
}
.free-price__row:last-child{
    margin-bottom: 0px;
}

#free-price-two{
    display: block;
}
.cart-bonus__fon{
    display: block;
    padding: 10px 15px;
    border: 1px solid #45b26b;
    position: relative;
}
.cart-bonus__fon h5{
    color: #45b26b;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    z-index: 1;
}
.cart-bonus__fon span{
    font-weight: 500;
    font-size: 13px;
    color: #adb5bd;
    z-index: 1;
}
.cart-bonus__fon a{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
#sidebar {
    position: fixed;
    right: 0;
    top: 20px;
    width: 250px;
    background: #eee;
    padding: 15px;
    border-left: 3px solid #ccc;
    font-family: Arial, sans-serif;
  }
  #progressBar {
    width: 100%;
    height: 5px;
    background: #ddd;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
  }
  #progress {
    height: 100%;
    width: 0;
    background: #f00;
    transition: width 0.3s, background-color 0.3s;
  }

  #progressBarTwo{
    width: 100%;
    height: 5px;
    background: #ddd;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
  }
  #progressTwo{
    height: 100%;
    width: 0;
    background: #f00;
    transition: width 0.3s, background-color 0.3s;
  }

.cart-bonus{
    display: none;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-41px);
}
.column-price-info span:last-child{
    color: #707070;
    font-weight: 300;
}
.cart-bonus .msb2-subtitle{
    margin: 0px;
}
.cart-bonus .msb2-logs-info{
    margin: 0px;
}

/* .msb2 .msb2-points{
    display: none;
} */

.free-price__row.active{
    display: block !important;
}
.free-price__row.hide{
    display: none !important;
}
.free-price.hide{
    display: none;
}

.msb2-logs__block{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    background: white;
}
.msb2-logs__blocks{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}
.msb2-logs__block .msb2-logs-info__points{
    display: block;
}
.msb2-logs__block div{
    font-size: 16px;
}
.msb2-logs__block div b{
    font-weight: 500;
}
.msb2-logs__block div span{
    margin-left: 5px;
    font-weight: 500;
}
.flex-price-info{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.column-price-info{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}
#ajaxLoader{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
}
#ajaxLoader:before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
      background: #b7b7b769;
}
.modal-loader{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-loader:before{
        content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
      background: #b7b7b769;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #000000;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.btn-login-green{
    font-size: 16px;
    height: 100%;
    width: 100%;
    color: #ffffff;
    background: #45b26b;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 43px;
    max-width: 280px;
    width: 100%;
}
.btn-fixed-bottom-login{
     position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #11111114;
    max-width: 700px;
    width: 100%;
    z-index: 9;
}
.btn-fixed-bottom-login .btn-login-green{
    max-width: 220px;
}

.order__header .order-info__item{
    gap: 0px;
}

.modal__content{
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.modal__content h3{
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}
.modal__content h3 span{
    font-size: 26px;
    color: #45b26b;
    font-weight: 600;
}
.modal__content a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #030509;
    font-size: 20px;
    transition: all 0.32s linear;
}
/* .modal__content a:hover{
    color: #45b26b;
} */
 .modal__content a svg{
    width: 28px;
    height: 28px;
 }
.modal__content a span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal__content .modal__text{
    font-size: 18px;
    color: #757575;
    text-align: center;
    margin-top: 20px;
}
.order-info__item-label span.green{
    color: #45b26b;
}
.order-info__item-label span.red{
    color: #dc3545
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
@keyframes scroll-anim {
    0% {
        opacity: 1;
        transform: translateX(0px);
        animation-timing-function: 0;
    }

    70% {
        opacity: 1;
        transform: translateX(-20px);
        animation-timing-function: 0;
    }

    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

@media (max-width: 1440px) {
    .catalog-grid__information {
        padding: 0px 272px;
        max-width: 100%;
        margin: unset;
    }
}

@media (max-width: 1380px) {
    .product-price__new {
        font-size: 20px;
    }

    .product-price__old {
        font-size: 16px;
    }

    .product__name {
        font-size: 14px;
    }

    .product-weight {
        font-size: 14px;
    }
}

@media (max-width: 1300px) {
    .catalog-grid__right {
        max-width: 100%;
    }

    .catalog-grid__cart-mobile {
        display: block;
        position: fixed;
        bottom: 10px;
        height: 40px;
        right: 15px;
        border-radius: 16px;
        width: 260px;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .product__count {
        width: 100%;
    }

    .contact__btns {
        display: flex;
        flex-direction: column;
    }

    .contact__left {
        margin-right: 40px;
    }

    .catalog-grid__cart {
        position: fixed;
        bottom: 60px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        max-height: 500px;
        right: -110%;
        transition: all 0.32s linear;
    }

    .catalog-grid__cart.active {
        right: 15px;
    }

    .catalog-grid {
        display: flex;
    }

    .section_favorite .catalog-grid__cart {
        display: none;
    }
}

@media (max-width: 1200px) {
    .product-detail__right form{
        margin-bottom: 0px;
    }
    .msb2-logs__block div{
        font-size: 15px;
    }
    .product-detail__btns {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .product-detail__fav .msFavoriterToggle {
        width: 100%;
    }

    .product-detail__fav {
        margin-left: 0px;
        order: -1;
        max-width: 280px;
        width: 100%;
        margin-bottom: 10px;
    }

    .product-detail__btns .product__btns {
        margin-bottom: 10px;
        order: -1;
    }
}

@media (max-width: 1080px) {
    .cabinet-main__nav {
        position: unset;
    }

    .card-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .card-header h4 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .cabinet .card {
        max-width: 600px;
    }


    .container-cab {
        display: flex;
        flex-direction: column;
    }

    .cabinet-main__nav {
        max-width: 100%;
        margin-right: 0px;
        min-width: unset;
        width: 100%;
        margin-bottom: 30px;
    }

    .subtitle {
        font-size: 14px;
    }

    .footer__wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .footer__box:last-child {
        margin-left: 30px;
    }

    .footer__box:last-child {
        max-width: 560px;
    }
}

@media (max-width: 1024px) {
    .reviews-list {
        margin: 0px
    }

    .ec-message p {
        height: unset;
    }

    .product-detail__reviews .arrow {
        display: none;
    }

    .header__auth {
        margin-left: 0px;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .header__auth .btn.btn-sm {
        font-size: 16px;
    }

    .catalog-grid__information {
        padding: 0px;
        font-size: 14px;
    }

    .copy {
        padding-bottom: 40px;
    }

    .footer {
        padding-bottom: 40px;
    }

    .copy p {
        position: unset;
    }

    .header__burger {
        display: block;
    }

    .modal_sidebar {
        height: 100%;
    }

    .header-mobile__cat {
        margin-bottom: 40px;
    }

    .header__auth .dropdown button {
        display: none;
    }

    .header__auth .dropdown .dropdown-item {
        font-size: 16px;
    }

    .header__auth .dropdown-item-text div strong {
        font-size: 16px;
    }

    .header__auth .dropdown {
        width: 100%;
    }

    .header__auth .dropdown-menu {
        display: block;
        transform: scale(1);
        position: unset;
    }

    .header__auth .dropdown-menu {
        max-width: 100%;
        width: 100%;
    }

    .header__auth .btn.btn-sm {
        text-decoration: none;
    }

    .header__auth {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .header-mobile__fixed {
        display: block;
    }

    .catalog-grid__left {
        position: fixed;
        top: 64px;
        left: 15px;
        left: -110%;
        z-index: 2;
        transition: all 0.2s linear;
        border-top-right-radius: 0px;

        padding: 0px;
    }

    .catalog-grid__left.active {
        left: 0px;
    }

    .catalog-grid__left.active .filter-bg {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.418);
    }

    .catalog-filter__wrap {
        background: white;
        height: 100%;
        position: relative;
        z-index: 2;
        height: 100%;
        overflow: auto;
        height: calc(100vh - 54px);
        padding: 15px;
    }

    .product__img {
        overflow: visible;
    }

    .product__img img {
        border-radius: 18px;
        overflow: hidden;
    }

    .product__more {
        position: absolute;
        top: 0px;
        transform: translate(0px);
        left: 0px;
        width: 100%;
        height: 100%;
        font-size: 0px;
        background: transparent;
        opacity: 1;
        z-index: 3;
        display: block;
    }

    .site-search-results {
        width: 100vw;
        position: fixed;
        left: 0px;
        top: 70px;
        border-radius: 0px;
    }

    /* .header__bottom {
		position: fixed;
		top: -200px;
		width: 100%;
		width: calc(100% + 30px);
		left: -15px;
		padding: 0px 15px;
		background: white;
		transition: all 0.32s linear;
		z-index: 8;
	}
	.header__bottom.active {
		top: 56px;
	} */
    .header__top {
        padding-top: 0px;
    }

    .header__bottom {
        padding: 0px;

        width: 100%;
    }

    .header__search {
        width: 100%;
    }

    .catalog-mobile__filter {
        display: flex;
    }

    .catalog-grid__left.active .catalog-mobile__close {
        display: flex;
        background: white;
    }

    .catalog-grid__left.active {
        z-index: 8;
    }

    .cart-fixed__next-value {
        display: none !important;
    }

    .header__icon {
        width: 46px;
        min-width: 46px;
    }

    .header__icon_cart {
        width: 46px;
        max-width: 46px;
        min-width: 46px;
    }

    .catalog-grid__cart-mobile {
        bottom: 50px;
    }

    .footer .container {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer__box:last-child {
        max-width: 100%;
        width: 100%;
        margin-left: 0px;
    }

    .footer__start {
        margin-right: 60px;
        margin-bottom: 30px;
    }

    .preview-slider__item {
        height: unset;
    }

    .step__list {
        gap: 30px;
        margin-top: 30px;
    }

    .step__title {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .step__title .title {
        max-width: 100%;
        margin-right: 0px;
        min-width: unset;
    }

    .how__title .title {
        max-width: 100%;
        margin-right: 0px;
        min-width: unset;
    }

    .how__title {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .how__list {
        margin-top: 30px;
    }

    .header-mobile__wrap {
        display: flex;
        justify-content: space-between;
    }

    .header-mobile__right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header__catalog {
        display: none;
    }

    .header {
        z-index: 9;
    }

    .header .container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .header__nav {
        display: none;
    }

    .header__right {
        display: none;
    }

    .header-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: fixed;
        top: 0px;
        background: white;
        z-index: 9;
    }

    main {
        margin-top: 56px;
    }

    .header-mobile__swipe {
        position: fixed;
        top: 56px;
        left: -110%;
        width: 100%;
        height: calc(100% - 56px);
        display: block;
        z-index: 9;
        background: white;
        padding: 30px 15px;
        transition: all 0.2s linear;
        overflow-y: auto;
    }

    .header-mobile__swipe.active {
        left: 0px;
    }

    .header-mobile__swipe .header__nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .header-mobile__swipe .header__nav a {
        font-size: 16px;
        margin-bottom: 10px;
        margin-left: 0px;
    }

    .header-mobile__swipe .header__nav a:last-child {
        margin-bottom: 0px;
    }

    .header__contact {
        margin-top: 20px;
    }

    .header-mobile__callback {
        font-size: 16px;
        color: #a4a4a4;
        display: inline-block;
        font-weight: 500;
        margin-top: 10px;
        border-bottom: 1px dashed #45b26b;
    }

    .header__social .contact__social {
        margin-top: 10px;
    }

    .header__burger {
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 32px;
    }

    .header__logo {
        margin-left: 15px;
        margin-right: 15px;
    }

    .header__logo img {
        min-width: 56px;
    }

    .header__search-wrap {
        position: relative;
        width: 100%;
    }
}

@media(max-width: 990px) {
    .offcanvas-start {
        display: block !important;
    }

    .offcanvas-header {
        display: none;
    }

    .cabinet-main__content .cabinet.mt-5 {
        gap: unset;
    }

    .order-filter {
        margin: 15px 0px;
    }
}

@media (max-width: 900px) {
    .btn-fixed-bottom-login{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 14px;
        max-width: 400px;
        width: 100%;
        line-height: 1;
    }
    .btn-fixed-bottom-login .btn-login-green{
        font-size: 14px;
        height: 32px;
        max-width: 200px;
    }
    .product-review__wrap_mob .ec-d-rating__col-info {
        max-width: 200px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .product-detail__left .ec-d-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .product-detail__left .ec-d-wrap .ec-stars {
        margin: 0px;
        margin-bottom: 5px !important;
    }

    .product-detail__left .ec-d-rating {
        padding: 12px !important;
    }

    .product-detail__left .product-review__wrap {
        margin: 0px;
        margin-top: 20px;
    }

    .product-detail__left .product-review__text {
        display: none;
    }

    .product-detail__left .product-review__rating {
        margin-bottom: 0px;
    }

    .product-detail__left .ec-d-wrap .ec-d-rating__desc {
        margin: 0px;
        font-size: 12px;
    }

    .product-detail__left .ec-d-rating__value {
        font-size: 32px;
    }

    .product-detail__left .ec-d-rating__col-lines {
        display: none;
    }

    .product-detail__left .ec-d-rating__col-info {
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        align-items: center;
        padding-top: 0px;
        justify-content: space-between;
    }

    .product-review__wrap_mob {
        display: block;
    }

    .product-review__wrap {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
    }

    .order-stats {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .product-review__text {
        margin-top: 0px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
    }

    .product-review__rating {
        max-width: 100%;
        width: 100%;
        order: -1;
        margin-bottom: 30px;
    }

    .order-stats__item {
        max-width: 100%;
        width: 100%;
    }

    .order-filter__fields {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }

    .order-filter__actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .order-filter__btn--reset {
        width: unset;
    }

    .order-filter__form {
        display: flex;
        flex-direction: column;
    }

    .order-filter__field {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .product-review__text button {
        order: 1;
    }

    .order-filter__field {
        margin-bottom: 15px;
    }

    .news-detail {
        display: flex;
        flex-direction: column;
    }

    .news-detail__left {
        max-width: 100%;
        min-width: unset;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .product-search__info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-search__info .product__name {
        width: 100%;
    }

    .product-search__link .product__img {
        min-width: 60px;
        width: 60px;
        height: 60px;
        margin-right: 10px;
        margin-bottom: 0px;
        border-radius: 5px;
    }

    .product-search__link .product-price__new {
        font-size: 14px;
    }

    .product-search__link {
        padding: 10px;
        margin-bottom: 5px;
    }

    .product-search__link .product-price__wrap {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: row;
        margin-bottom: 0px;
    }

    .site-search-results {
        padding: 15px 10px 15px 10px;
        font-size: 14px;
    }

    .product-search__info .product-weight {
        margin-left: 10px;
        margin-top: 0px;
        font-size: 14px;
        width: unset;
    }

    .product-search__link .product__name {
        font-size: 14px;
    }

    .product-detail__img {
        min-width: 350px;
        max-width: 350px;
    }

    section {
        padding: 40px 0px;
    }

    .catalog__list {
        grid-template-columns: repeat(4, 1fr);
    }

    .banner__box {
        margin-top: 30px;
        gap: 30px;
    }

    .contact__wrap {
        display: flex;
        flex-direction: column;
        padding: 30px;
    }

    .contact__left {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .faq__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .features__list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .product__img {
		height: 200px;
	} */

    .product__btn .btn {
        max-width: 140px;
        min-width: 140px;
        padding: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about {
        display: flex;
        flex-direction: column;
    }

    .about__left {
        max-width: 100%;
        margin-right: 0px;
        min-width: unset;
        margin-bottom: 30px;
    }

    .about__left img {
        width: 100%;
        height: 400px;
        border-radius: 8px;
        object-fit: cover;
    }

    .about-delivery .about__left {
        margin-left: 0px;
        margin-top: 30px;
        margin-bottom: 0px;
    }
}

@media (max-width: 768px) {
    .msb2-logs__blocks{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .product-detail__left {
        position: unset;
    }

    .order-detail {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .preview__title {
        font-size: 14px
    }

    .order-wrapper .row {
        flex-direction: column;
    }

    .order-wrapper .order-method {
        margin-right: 0px;
        padding-right: 0px;
        width: 100%;
        border: none;
    }

    .product__name {
        min-height: 34px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .product-detail {
        display: flex;
        flex-direction: column;
    }

    .product-detail__img {
        max-width: 100%;
        width: 100%;
        min-width: 100%;
    }

    .product-detail__left {
        max-width: 100%;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    /* .filter-item {
		width: calc((100% / 3) - 7px);
		margin-right: 10px;
	}
	.filter-item:nth-child(4n + 4) {
		margin-right: 10px;
	}
	.filter-item:nth-child(3n + 3) {
		margin-right: 0px;
	} */
    .ajax-filter-count {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .how__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .step__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .step__bottom {
        display: flex;
        flex-direction: column;
    }

    .step__btn {
        margin-left: 0px;
        margin-top: 20px;
    }

    .modal_sidebar {
        width: 100%;
        right: -110%;
    }

    .input-entrance {
        width: 30%;
    }

    .input-floor {
        width: 30%;
    }

    .input-room {
        width: 30%;
    }

    .input-receiver {
        width: 100%;
    }

    .input-phone {
        width: 100%;
    }

    .input-street {
        width: 88%;
    }

    .input-room {
        width: 32%;
    }

    .input-floor {
        width: 32%;
    }

    .input-entrance {
        width: 32%;
    }

    .product-detail__fav {}
}

@media (max-width: 680px) {
    .modal__content .modal__text{
        font-size: 16px;
    }
    .btn-fixed-bottom-login{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 12px;
        max-width: 400px;
        width: 100%;
        line-height: 1;
    }
    .btn-fixed-bottom-login .btn-login-green{
        font-size: 12px;
        height: 32px;
        max-width: 160px;
    }

    .btn-login-green{
        width: 100%;
        max-width: 100%;
    }
    .ec-d-rating:before{
        content: 'New';
        position: absolute;
        top: -10px;
        left: 13px;
        background: #45b26b;
        font-size: 12px;
        padding: 3px 7px;
        color: #ffffff;
        border-radius: 5px;
    }


    .free-price {
        position: fixed;
        max-width: 320px;
        min-width: 320px;
        width: 100%;
        top: -100px;
        background: #FFF;
        border-radius: 10px;
        padding: 15px;
        font-size: 14px;
        right: 50%;
        transition: all 0.32s ease-in-out;
        transform: translateX(50%);
    }
    .free-price.active{
        top: 68px;
    }
    .scroll-anim-mob {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        animation: scroll-anim 2.4s infinite linear;
    }

    .msb2-wrap {
        position: relative;
    }

    .msb2-wrap .msb2-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .msb2-wrap .msb2-logs-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }


    .msb2-logs-table-wrap {
        overflow-x: scroll;
    }

    .msb2-logs-table-wrap .msb2-logs-table td {
        min-width: 160px;
    }

    .msb2-logs-table-wrap .msb2-logs-table td:last-child {
        min-width: 220px;
    }

    .ec-d-rating {
        padding: 20px !important;
    }

    .ec-message {
        padding: 20px !important;
    }

    .order-filter__form {
        flex-direction: column;
        align-items: flex-start;
    }

    .order__header {
        flex-direction: column;
    }

    .order__actions {
        width: 100%;
    }

    .order__action--details {
        margin-top: 10px;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
    }

    .order-info {
        width: 100%;
        flex-direction: column;
    }

    .order__header .order-info__item {
        padding-right: 0px;
        margin-right: 0px;
        border: none;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #c9c9c9;
        width: 100%;
    }

    .order__header .order-info__item:last-child {
        margin-bottom: 0px;
        border-bottom: none;
        padding-bottom: 0px;

    }

    .order__body .order-info__item.d-flex {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 0px;
        padding: 0px;
        margin-bottom: 10px;
    }

    .cabinet .order {
        padding: 20px;
    }

    .order__item-content {
        margin-left: 10px;
    }

    .order__item-price {
        margin-top: 5px;
    }

    .order__item-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .order__item-footer .order-info__item {
        border: none;
        padding-right: 0px;
        margin-right: 0px;
    }

    .order__item-header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .cabinet .card {
        max-width: 100%;
        width: 100%;
    }

    .cabinet {
        flex-direction: column;
    }

    .delivery-more__info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .delivery-more__text {
        border: none;
    }

    .header__search {
        height: 40px;
    }

    .header__search form input {
        padding: 10px;
    }

    .header__icon {
        width: 40px;
        height: 40px;
        min-height: 40px;
        min-width: 40px;
        margin-left: 5px;
    }

    .header__logo {
        margin-left: 5px;
        margin-right: 5px;
    }

    .header__icon .cart-fixed-bottom {
        padding: 10px;
    }

    .header .ms2_total_count {
        top: 3px;
        right: 2px;
    }

    .section_first {
        padding-top: 30px;
        margin-bottom: -10px;
    }

    .preview-slider__item img {
        object-fit: contain;
        border-radius: 16px;
        overflow: hidden;
    }

    .msFavoriterToggle {
        position: absolute;
        right: 8px;
        bottom: 60px;
        width: 17px;
        height: 17px;
    }

    .product__item .msFavoriterToggle:before {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .catalog-grid__right {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ajax-filter-count {
        grid-column: 1 / span 2;
    }

    .product__item .product-weight {
        font-size: 12px;
        margin-top: 5px;
    }

    .product__item {
        padding: 8px;
    }

    .product__count {
        height: 40px;
    }

    .product-price__wrap {
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        justify-content: flex-start;
    }

    .product-detail__right {
        padding: 15px;
    }

    .modal__price .product-weight__name {
        font-size: 14px;
    }

    .modal__price .product-weight__size {
        font-size: 14px;
    }

    .modal__price .product-price__name {
        font-size: 14px;
    }

    .modal__price .product-price__new {
        font-size: 14px;
    }

    /* .filter-item {
		width: 100%;
		margin: 0px;
	}
	.filter-item:nth-child(3n + 3) {
		margin-right: 0px;
	}
	.filter-item:nth-child(2n + 2) {
		margin-right: 0px;
	} */
    .footer__box:last-child {
        display: none;
    }

    .footer__start {
        max-width: 100%;
        width: 100%;
        margin-right: 0px;
    }

    .modal-delivery__list {
        flex-wrap: wrap;
    }

    .title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    section {
        overflow: hidden;
    }

    .step__btn {
        min-width: unset;
        max-width: 100%;
    }

    .catalog__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .catalog__name {
        font-size: 14px;
        left: 10px;
        right: 10px;
        word-wrap: break-word;
    }

    .catalog__img {
        height: 110px;
        filter: brightness(84%);
        border-radius: 16px;
    }

    .product-slider .slick-slide {
        margin: 0px 5px;
    }

    .product-slider .slick-list {
        margin: 0px -5px;
    }

    /* .product__btns {
		display: flex;
		flex-direction: column;
	} */

    .product__btn {
        width: 100%;
    }

    .product-price {
        flex-wrap: wrap;
    }

    .product-weight {
        width: 100%;
        margin-top: 10px;
        margin-left: 0px;
    }

    .product__btn .btn {
        width: 100%;
        max-width: 100%;
    }

    .banner__box {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .features__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .faq__item {
        padding: 12px;
        padding-right: 30px;
    }

    .faq__item h4 {
        font-size: 16px;
    }

    .faq__name svg {
        width: 20px;
        height: 20px;
    }

    .faq__name span:last-child {
        right: -20px;
    }

    .contact__wrap {
        padding: 12px;
    }

    .contact__left {
        width: 100%;
    }

    .modal__product {
        display: flex;
        flex-direction: column;
        flex-direction: column;
    }

    .modal-product {
        overflow-y: auto;
        height: 400px;
        bottom: -120%;
        top: unset;
        transform: translate(0);
        left: 0px;
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
        z-index: 9;
        display: block;
        transition: all 0.32s ease-in;
    }

    .modal-product.active {
        bottom: 0px;
    }

    .modal-product .modal__close {
        position: sticky;
        top: 10px;
        right: 10px;
        left: unset;
        background: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0px 0px 0px auto;
        margin-top: -40px;
        background: white;
        border-radius: 50%;
        padding: 5px;
    }

    .modal-product .modal__close {}

    .modal-product .modal__left {
        width: 100%;
    }

    .modal-product .modal__img {
        height: 100%;
        max-width: 100%;
        width: 100%;
        margin: 0px auto;
        border-radius: 12px;
        overflow: hidden;
        padding: 0px 15px;
    }

    .modal-product .modal__title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .modal-product .product-weight {
        margin-top: 0px;
        margin-bottom: 5px;
    }

    .modal-product .modal-product {
        margin-bottom: 10px;
    }

    .modal__right .product__text {
        margin-top: 10px;
    }

    .header-mobile__icon svg {
        height: 20px;
        width: 20px;
    }

    .header-mobile__icon {
        width: 30px;
    }

    .search__wrapper .rows {
        margin-right: 0px;
    }

    .search__wrapper::-webkit-scrollbar-thumb {
        border: 3px solid #707070;
    }

    .search__wrapper::-webkit-scrollbar {
        height: 3px;
        width: 3px;
    }

    .modal__right {
        padding: 20px 15px;
    }

    .no-favorite {
        grid-column: 1 / span 2;
    }

    .banner__social img {
        border-radius: 16px;
    }

    .banner__img img {
        border-radius: 16px;
    }

    .input-street {
        width: 75%;
    }

    .input-room {
        width: 31%;
    }

    .input-floor {
        width: 31%;
    }

    .input-building {
        width: 21%;
    }

    .input-entrance {
        width: 32%;
    }

    .order-method {
        font-size: 14px;
    }

    .order-method label input {
        width: 14px;
        height: 14px;
        margin-right: 5px;
    }

    .order-method .checkbox {
        margin-bottom: 5px;
    }

    .header__logo img {
        transition: all 0.2s linear;
        object-fit: contain;
        height: unset;
    }

    .header {
        padding: 10px 0px;
        height: 64px;
    }

    .section_breadcrumbs {
        display: none;
    }

    .product-detail__fav .msFavoriterToggle {
        height: 40px;
    }

    .product-detail__btns .product__btns {
        max-width: 100%;
    }

    .product-detail__fav {
        max-width: 100%;
    }

    .product-detail__right {
        min-height: unset;
    }

    .header__logo img {
        width: 44px;
    }

    .complete h1 {
        font-size: 28px;
    }

    .complete h3 {
        font-size: 16px;
    }

    .recipe__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 500px){
    .btn-fixed-bottom-login {
        gap: 5px;
        font-size: 12px;
        max-width: 240px;
        width: 100%;
        line-height: 1.2;
        text-align: center;
        padding: 10px;
        border-radius: 12px;
    }
}
@media (max-width: 450px) {
    .btn-fixed-bottom-login .btn-login-green{
        font-size: 12px;
    }
    .btn-fixed-bottom-login{
        gap: 5px;
        font-size: 10px;
        max-width: 185px;
        width: 100%;
        line-height: 1.2;
        text-align: center;
        padding: 10px;
        border-radius: 12px;
    }
    .cabinet .order {
        padding: 15px;
    }
    ._orientationLeft__hB2Ny .button__u5F0j{
        margin-left: 15px !important;
    }
    .order__item-content {
        margin-left: 0px;
    }

    .order__item-title {
        font-size: 15px;
    }

    /* .order__body .order__item {
        flex-direction: column;
    } */

    .order__item-media {
        margin-bottom: 10px;
    }

    .recipe__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .recipe__item {
        margin-bottom: 0px;
    }

    .recipe__text {
        min-height: unset;
    }

    .modal__wrap .modal__title {
        font-size: 24px;
    }

    .product__img {
        height: 120px;
    }

    .product-price__new {
        font-size: 16px;
    }

    .product-price__old {
        font-size: 14px;
    }

    .product__add {
        font-size: 14px;
    }

    .product-detail__btns .product__add {
        font-size: 16px;
    }

    .product__more {
        font-size: 0px;
    }

    .input-entrance {
        width: 30%;
    }

    .cabinet-main__content .card-body .d-flex {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media(max-width: 450px) {
    .product-review__wrap_mob .ec-d-rating {
        display: flex;
        flex-direction: column;
    }

    .product-review__wrap_mob .ec-d-rating__col-lines {
        width: 100%;
    }
    .cart-bonus__fon{
        max-width: 170px;
        line-height: 1;
        width: 100%;
        text-align: center;
    }

    .cart-bonus__fon span{
        margin-top: 7px;
        display: block;
    }

}
@media(max-width: 370px){
    .btn-fixed-bottom-login{
        max-width: 170px;
    }
    .btn-fixed-bottom-login .btn-login-green{
        font-size: 10px;
    }
}
@media (max-width: 350px) {
    .btn-login-green{
        font-size: 14px;
    }
    .header .container {
        justify-content: space-between;
    }

    .header__bottom {
        justify-content: flex-end;
        max-width: 190px;
        width: 100%;
    }

    .container {
        padding: 0px 15px;
    }

    .header__search-wrap {
        transition: all 0.2s linear;
        width: 100px;
    }

    .header__search-wrap.active {
        position: fixed;
        left: 15px;
        width: calc(100% - 30px);
        z-index: 3;
    }

    .product-price__new {
        font-size: 14px;
    }

    .product-price__old {
        font-size: 12px;
    }

    .input-entrance {
        width: 35%;
    }

    .input-floor {
        width: 28%;
    }

    .input-room {
        width: 28%;
    }

    /* .product-price__wrap {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	} */
    .product-detail__fav button {
        font-size: 14px;
    }

    .product-detail__btns .product__add {
        font-size: 14px;
    }
}