/* ! -------------------reset-styles------------------ */

* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

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

li {
    position: relative;
}

img {
    vertical-align: top;
    max-width: 100%;
    max-height: 100%;
}

button {
    cursor: pointer;
    background-color: unset;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

:focus {
    outline: none;
}

input::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}

input::-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}

input:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}
@media (max-width: 1200px) {
    .lock-scroll {
        overflow: hidden;
    }
}

select {
    width: 100%;
    font: 400 1.6rem/2.4rem "Roboto", Arial, Helvetica, sans-serif;
    border: 1px solid #F7F8FB;
    border-radius: 5px;
    padding: 1rem 2.5rem 1rem 1rem;
    -webkit-appearance: none;
    appearance: none;
    background-color: #F7F8FB;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.284143 1.91713L4.77096 6.66853C4.86819 6.77356 4.98386 6.85693 5.11131 6.91382C5.23876 6.97071 5.37547 7 5.51353 7C5.6516 7 5.7883 6.97071 5.91575 6.91382C6.0432 6.85693 6.15888 6.77356 6.25611 6.66853L10.6906 1.91713C10.7887 1.81296 10.8665 1.68902 10.9196 1.55246C10.9727 1.4159 11 1.26943 11 1.1215C11 0.973565 10.9727 0.827095 10.9196 0.690537C10.8665 0.553981 10.7887 0.43004 10.6906 0.325864C10.4947 0.11715 10.2296 -8.86323e-07 9.95329 -8.62168e-07C9.67698 -8.38012e-07 9.4119 0.11715 9.21594 0.325864L5.51353 4.29283L1.81113 0.325865C1.61632 0.118839 1.35339 0.00212611 1.07901 0.000888261C0.941366 3.56885e-05 0.804918 0.0283026 0.677491 0.0840692C0.550063 0.139836 0.434163 0.222006 0.336436 0.325865C0.234908 0.426292 0.152959 0.54728 0.095324 0.681838C0.0376887 0.816396 0.00551076 0.961857 0.000647984 1.10982C-0.00421384 1.25778 0.0183358 1.4053 0.0669951 1.54387C0.115654 1.68244 0.189458 1.8093 0.284143 1.91713Z' fill='%23343434'/%3E%3C/svg%3E%0A");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 4.6rem;
    margin: 0;
}


/* ! ------------------------body-------------------- */

html {
    height: 100%;
    font-size: 10px;
}

@media (max-width: 767px) {
    html {
        font-size: 9px;
    }
}

@media (min-width: 1200px) and (max-width: 1470px) {
    html {
        font-size: 0.6802721088vw;
    }
}

body {
    font-family: "Rubic", "Arial", "Helvetica", sans-serif;
    color: var(--main-text-color);
    height: 100%;
    font-weight: 400;
    font-style: normal;
}

body.lock,
html.lock {
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}
.payment-form-block-n .c-button,
.default-btn {
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    border: 1px solid transparent;
    background: none;
    border-radius: 5px;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    height: 5rem;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
    cursor: pointer;
}


.payment-form-block-n .c-button:active,
.default-btn:active {
    transition: none;
    transform: scale(0.95);
}
.payment-form-block-n .c-button,
.default-btn {
    background: var(--accent-color);
    color: var(--secondary-text-color);
}
.payment-form-block-n .c-button::after,
.default-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.2);
    transition: opacity 0.25s;
    opacity: 0;
}
.payment-form-block-n .c-button:hover::after,
.default-btn:hover::after {
    opacity: 1;
}
.payment-form-block-n .c-button:hover,
.default-btn:hover {
    background: var(--accent-color);
    color: var(--secondary-text-color);
    box-shadow: none;
}

.default-btn_grey {
    background: #F1F1F5;
    color: var(--main-text-color);
}

.default-btn_white {
    background: var(--main-background-color);
    color: var(--main-text-color);
}

.default-btn_white:hover {
    background: var(--main-background-color);
    color: var(--accent-color);
}

/* ! ------------------------styles------------------ */

.container {
    max-width: 147rem;
    padding: 0 2.5rem;
    margin: 0 auto;
}
@media (min-width: 1550px) {
.background-texture .product-page-bg .container {
    background: var(--accent-background-color);
    margin: 20px auto;
    border-radius: 12px;
}

.background-texture .compare-page .container {
    background: var(--accent-background-color);
    margin: 20px auto;
    border-radius: 12px;
    padding: 20px 2.5rem;
}
}
.dropdown {
    position: relative;
}

.dropdown__container {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(170, 189, 206, 0.25);
    border-radius: 5px;
    width: 27.8rem;
    padding: 1rem 0;
    margin: 0.5rem 0 0 0;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    opacity: 0;
    visibility: hidden;
    z-index: 200;
}

.dropdown__container::before {
    content: '';
    position: absolute;
    bottom: calc(100%);
    width: 100%;
    height: 0.5rem;
}

.dropdown:hover .dropdown__container {
    opacity: 1;
    visibility: visible;
}

.main-background {
    background-color: var(--accent-background-color);
    padding: 53px 0 20px;
    overflow: hidden;
}
@media (min-width: 1550px) {
.background-texture .main-background {
    background: none;
    padding: 33px 0 20px;
}

.background-texture .main-background > .container {
    background-color: var(--accent-background-color);
    padding-top: 20px;
    padding-bottom: 0;
    border-radius: 12px;
}
}
.catalog {
    background-color: var(--accent-background-color);
    height: 100%;
}
@media (min-width: 1550px) {
.background-texture .catalog {
    background: none;
}

.background-texture .catalog .container {
    background-color: var(--accent-background-color);
    border-radius: 12px;
    margin: 20px auto;
}
}
.sidebar__wrapper {
    margin: 0 0 2rem;
    background: var(--main-background-color);
    border-radius: 10px;
    padding: 3rem;
}

.sidebar__banner {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 30px;
    background-color: var(--main-background-color);
    border-radius: 10px;
    box-shadow: 0 0 10px #0000001a;
    margin-bottom: 10px;
}

.banners-background {
    width: 100%;
    background: linear-gradient(to right,var(--accent-color)  0, var(--secondary-background-color) 100%) no-repeat;
}

.settings__container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

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



.settings__sort {
    width: auto;
    font-size: 1.5rem;
    min-width: 21rem;
}
@media (max-width: 1200px) {
    .settings__wrapper {
        justify-content: flex-start;
    }
    .settings__sort {
        min-width: auto;
    }
}

.settings__sort select {
    background-color: var(--main-background-color);
}

.catalog-menu__container .settings__sort select {
    height: 30px;
}

.sidebar {
    width: 100%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.catalog__main {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 10rem;
}

@media (max-width: 1200px) {
    .sidebar {
        width: 0;
        height: 0;
        position: absolute;
    }

    .sidebar__banner {
        display: none;
    }
    .catalog__main {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 600px) {

    .catalog-menu {
        margin-bottom: 10px;
    }
}


.categories-open-btn {
    display: none;
}

@media (max-width: 1200px) {
    .categories-open-btn {
        display: block;
        padding: 0.5rem 1.5rem;
        height: 4.6rem;
        font-size: 1.5rem;
        font-weight: 400;
        background: var(--main-background-color);
        color: var(--main-text-color);
        transition: border-color 0.25s, color 0.25s, background 0.25s;
        text-align: center;
        text-decoration: none;
        line-height: 1.2;
        border-radius: 5px;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        border: 1px solid transparent;
        margin-right: 1rem;
    }

    .categories-open-btn:hover {
        color: var(--accent-color);

    }

    .categories-open-btn svg {
        margin: 0 0 0 1rem;
        flex: 0 0 auto;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        fill: currentColor;
        fill-rule: evenodd;
        width: 1.1rem;
        height: 1.1rem;
    }
}



.catalog__goods {
    opacity: 0;
}

.catalog__goods_active {
    opacity: 1;
}

.product-page {
    font-size: 1.4rem;
}

.product-page-wrapper {
    background-color: var(--accent-background-color);
    padding: 0 0 3.5rem;
}
@media (min-width: 1550px) {
.background-texture .product-page-wrapper {
    background: none;
}
}
.product-page__main {
    background-color: var(--main-background-color);
    border-radius: 10px;
    margin-bottom: 6rem;
}

.userFields__container {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.userFields__button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 2px;
}

.userFields__button i {
    transition: all 0.4s ease-in-out;
}

.userFields__content {
    display: none;
    margin: 5px 0;
    color: var(--main-text-color);
    font-size: 14px;
    font-weight: 400;
}

.userFields__container_active .userFields__content {
    display: block;
}

.userFields__container_active .userFields__button i {
    transform: rotate(180deg);
}

.product-page__table-item {
    margin: 14px 0;
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .product-page .container {
        padding: 0;
    }
    .product-page__main {
        border-radius: 0;
        flex-direction: column;
    }
}

.swiper-notification {
    display: none;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
}

._hide {
    display: none !important;
}

.hidden {
    display: none;
}

.opacity {
    opacity: 0;
}

.main {
    flex: 1 1 auto;
    background-color: var(--accent-background-color);
}

@media (min-width: 1550px) {
.background-texture .feedback-wrapper .container {
    background: var(--accent-background-color);
    padding: 20px 2.5rem;
    border-radius: 12px;
    margin: 20px auto;
}

.background-texture .main {
    background: none;
}
}

.account__link {
    display: block;
    padding: 6px 0;
}

.product-wrapper .rating-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.product-wrapper .rating-wrapper .info {
    margin-left: 5px;
}

.a-button__title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button--light {
    background-color: var(--secondary-background-color);
    color: var(--secondary-text-color);
    transition: all 0.4s ease-in-out;
    border-radius: 20px;
    padding: 8px 10px;
    margin-bottom: 10px;
    display: block;
    width: fit-content;
}

.button--light:hover {
    background-color: var(--accent-color);
    color: var(--main-text-color);
}

.relative {
    position: relative;
}

.fit-content {
    width: fit-content;
}

.show-pass {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.show-pass svg {
    width: 20px;
    height: 20px;
}


/* Каталог */

.catalog__wrapper {
    display: flex;
    margin: 0 -10px;
}

.catalog__description {
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    background-color: var(--main-background-color);
    border-radius: 10px;
    overflow: hidden;
    padding: 3rem;
    line-height: 1.4;
    color: var(--main-text-color);
}

.description__text img {
    height: auto !important;
}

.description__seo {
    margin-top: 20px;
}

.description__text iframe {
    display: block !important;
    max-width: 100% !important;
    margin: 10px 0 !important;
}

.catalog__settings {
    margin-bottom: 10px;
}

.settings {
    display: flex;
    justify-content: space-between;
}

.settings-search {
    width: 100%;
}

.settings-search .settings__container {
    width: 100%;
    justify-content: space-between;
}

.settings-search .compare {
    display: flex;
    align-items: center;
    transition: all .3s ease;
}

.settings-search .compare .c-compare__link--text {
    margin-left: 5px;
}

.settings-search .compare:hover {
    color: var(--main-text-color);
}

.catalog__empty-goods {
    font-size: 16px;
    margin-top: 30px;
    grid-column-end: -1;
    grid-column-start: 1;
}

.catalog .c-title {
    padding-top: 25px;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 382px) {
    .settings__sort span {
        display: none;
    }
}

@media (min-width: 768px) {
    .settings__compare {
        display: block;
    }

    .settings__compare a {
        display: flex;
        align-items: center;
        transition: all .3s ease;
    }

    .settings__compare a:hover {
        color: var(--main-color);
    }

    .settings__compare .compare {
        margin-left: 20px;
    }
}

@media (min-width: 980px) {
    .sidebar__banner img {
        width: 100%;
        max-width: 100%;
    }

    .sidebar__banner-text {
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        background-color: var(--main-color);
        font-size: 20px;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 1.5px;
        text-shadow: 1px 3px 5px rgba(0, 0, 0, 0.31);
        font-weight: normal;
    }

    .sidebar__banner-top {
        position: relative;
    }

    .sidebar__banner-top-text {
        padding: 5px;
        box-sizing: border-box;
        text-align: center;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: normal;
        position: absolute;
        width: 100%;
        bottom: 0;
        letter-spacing: 1.5px;
        background: rgba(255, 255, 255, 0.4);
    }
}


/* Конец каталог */


/* Страница товара */

.product-page__main {
    display: flex;
}
.product-page__order {
    padding: 0 0 2rem;
    margin: 0 0 2.5rem;
    border-bottom: 1px solid var(--secondary-border-color);
}

.product-page__order:last-of-type {
    border-bottom: none;
}

.product-page__order-1 {

}



.product-page__info {
    width: calc(50% - 30px);
    padding: 25px 25px 25px 0;
}

.product-page__sticky {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
}

.product-page__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: none;
}

.product-page__rating {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.product-page__rating .rateit {
    display: flex;
    margin-right: 20px;
}

.product-page__rating .rating-wrapper {
    display: flex;
    margin-bottom: 20px;
    margin-right: 20px;
}

.product-page__rating button {
    display: block;
    transition: all .3s ease;
    margin-bottom: 20px;
    width: fit-content;
    margin-top: 10px;
    font-size: 13px;
    color: var(--third-text-color);
}

.product-page__rating:hover button {
    color: var(--main-color);
}

.product-page__table tr td {
    max-width: 50%;
    width: 50%;
}

.product-page__price {
    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;
    white-space: nowrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 1.5rem;
    clear: both;
}

.product-page__price-normal {
    display: flex;
    color: var(--main-text-color);
    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;
}

.product-page__buy-buttons {
    display: flex;
    gap: 1rem
}

.product__amount {
    max-width: 24rem;
}

.product-page__price-normal span:last-of-type {
    margin-left: 5px;
}

.product-page__price-normal_red {
    color: #e02b40;
}

.product-page__price-old {
    margin: 0 0.7rem 0 0;
    padding: 0 0.2rem;
    position: relative;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 400;
}

.product-page__price-old s {
    text-decoration: none;
}

.product-page__price-old s::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0.2rem;
    background: #F45656;
    margin: -1px 0 0;
}

.product-page__price-sale-container {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 400;
    color: #BDC2D3;
}

.product-page .variant,
.product-page .card__button {
    opacity: 1;
    visibility: visible;
}

.product-page .card__buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.product-page .quickview__favorites,
.product-page .quickview__compare {
    background: none;
    transition: all .4s ease-in-out;
    width: auto;
    height: auto;
    position: static;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.product-page .quickview__favorites:hover,
.product-page .quickview__compare:hover {
    color: var(--accent-color);
}

.product-page .quickview__compare {
    margin-right: 10px;
}

.product-page .quickview__favorites {
    padding: 11px 11px 11px 0;
    margin-right: 10px;
}

.product-page .quickview__compare {
    padding: 5px;
}

.product-page .c-product__message .alert {
    display: none;
}

.product-page .a-button {
    margin-top: 10px;
}

.product-page__order .compare-text {
    display: none;
}

.product-page__order .compare-text.add_compare_active {
    display: block;
}

.product-page__order .compare-text.remove_compare_active {
    display: block;
}

.product-page__compare-favorites {
    display: flex;
}

.product-page .mg-buy-click-button:hover {
    color: var(--secondary-text-color);
    background-color: var(--secondary-background-color);
}

.product-page .color-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.product-page .color-block>span,
.size-block>span {
    margin-right: 10px;
}

.product-page .size-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-page__payments {
    margin-top: 20px;
    padding: 20px 0;
    background-color: var(--accent-background-color);
}

.product-page__payments-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.footer__payments {
    padding: 0 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.product-page .footer__payments {
    display: flex;
}

.product-page .footer__pay {
    margin: 10px 10px 0 0;

}

.product-page .owl-item {
    cursor: pointer;
    max-height: 600px;
}

.product-page .owl-item .main-img {
    width: 100% !important;
}

.product-page .mg-product-comments-rating-dropZone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 2;
    padding: 10px;
}

.product-page #mg-product-comments-rating ul li span.action {
    font-size: 12px;
    margin-bottom: 10px;
}

.mg-price-non-available span,
.mg-price-buy-click span {
    color: var(--main-text-color);
}

.treelike-showImgComments {
    margin-right: 15px;
}

@media (max-width: 1200px) {
    .product-page__info {
        width: 100%;
        padding: 0;
    }
    .product-page__order {
        padding: 2.5rem;
        margin: 0;
    }
    .product-page .card__product-code {
        text-align: right;
    }
}
@media (max-width: 500px) {
    .product-page__compare-favorites {
        flex-direction: column;
    }
}

/* Конец страница товара */

.personal-page {
    background-color: var(--accent-background-color);
}
@media (min-width: 1550px) {
.background-texture .personal-page {
    background: none;
}

.background-texture .personal-page .container {
    background: var(--accent-background-color);
    padding: 20px 2.5rem;
    margin: 20px auto;
    border-radius: 12px;
}
}
.personal-page .default-btn {
    height: 4rem;
}

.personal-page label {
    position: relative;
    cursor: pointer;
}

.personal-page label.op-field-check {
    display: flex;
    align-items: center;
}

.personal-page label.active .cbox::before {
    transform: scale(1);
}

.personal-page label .cbox {
    display: block;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    margin-right: 5px;
    border: 1px solid #dadada;
    border-radius: 3px;
    background: #fff;
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.personal-page label .cbox::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 2px;
    display: block;
    width: 14px;
    height: 14px;
    transform: scale(0);
    background: var(--main-color);
    transition: all .3s ease;
}

.personal-page label .cbox_radio,
.personal-page label .cbox_radio::before {
    border-radius: 50%;
}


/* Страница оформления заказа
------------------------------------------------------------------- */

.c-order__information {
    display: flex;
}

.c-order__container-2 {
    display: flex;
}

.c-order__container {
    flex-grow: 0;
    flex-shrink: 0;
}

.c-order__delivery-container {
    width: 39.35%;
    margin-right: 3.5%;
}

.c-order__form-container {
    width: 57.15%;
}

.c-order__payment-container {
    width: 28%;
    font-size: 16px;
    margin-left: 2%;
}

@media (max-width: 767px) {
    .c-order__list--item {
        width: 100%;
    }
}

.c-order__list--width {
    width: 100%;
}

@media (max-width: 767px) {
    .c-order__payment {
        margin-bottom: 10px;
    }
}

.c-order__list--item {
    font-size: 1.4rem;
}

.orderFileContainer {
    margin-bottom: 15px;
}

.c-order__payment li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

.c-order__payment li.c-order__payment_alert:hover {
    background-color: unset;
    cursor: default;
}

.c-order__payment li [class*='icon-'] {
    display: none !important;
    flex-shrink: 0;
}

.c-order__payment label {
    margin-bottom: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 100%;
    text-decoration: none !important;
}

.c-order__payment .deliveryPrice {
    margin-left: auto;
    padding-left: 10px;
    font-weight: 500;
}

.c-order__payment .deliveryCurrency {
    font-weight: 500;
}

.c-order__payment .rate-payment {
    font-size: 12px;
    padding-left: 6px;
    text-transform: lowercase;
}

.c-order__payment li:not(:last-of-type) label {
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 10px;
}

.c-order__payment label {
    font-size: 14px;
    flex-wrap: wrap;
}

.c-order .total-price-block {
    margin-top: 20px;
}

.c-order__total {
    text-align: center;
}

.c-order__total--row {
    display: flex;
    margin-top: 16px;
}

.c-order__total--row:first-child {
    margin-top: 0;
}

.c-order__total--row:last-of-type {
    justify-content: flex-end;
}

.c-order__total--amount {
    font-size: 24px;
    font-weight: 500;
    color: var(--accent-color);
    margin-left: 10px;
    width: 100%;
}

.c-order-field__title {
    margin-top: 0;
    margin-bottom: 7px;
}

.ui-datepicker table {
    border-spacing: 0;
}

.ui-datepicker-header {
    background-color: #fff;
    border-color: #fff;
    text-shadow: none;
    color: #333;
}

@media (max-width: 767px) {
    .c-order__total--amount {
        font-size: 16px;
    }
}

.c-order .c-form .button {
    padding: 15px 25px;
    font-size: 14px;
}

.c-order .c-form .disabled-btn {
    background-color: silver !important;
    pointer-events: none;
    border-color: silver !important;
}

.addressPartsTitle {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

@media (max-width: 980px) {
    .c-order__information {
        flex-direction: column;
    }

    .c-order__delivery-container {
        width: 39.35%;
        margin-right: 3.5%;
    }

    .c-order__form-container {
        width: 57.15%;
    }

    .c-order__payment-container {
        display: flex;
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .c-order__payment-container>div:first-child {
        width: 39.35%;
        margin-right: 3.5%;
    }

    .c-order__payment-container>div:last-child {
        width: 57.15%;
    }

    .c-order .total-price-block {
        margin-top: 0;
    }
}

@media (max-width: 700px) {

    .c-order__container-2,
    .c-order__payment-container {
        flex-direction: column;
    }

    .c-order__delivery-container {
        width: 100%;
        margin-right: 0;
    }

    .c-order__form-container {
        margin-top: 30px;
        width: 100%;
    }

    .c-order__payment-container>div:first-child {
        width: 100%;
        margin-right: 0;
    }

    .c-order__payment-container>div:last-child {
        width: 100%;
        margin-top: 15px;
    }
}

.payment-form-block {
    max-width: 100%;
    margin-bottom: 15px;
}

.payment-form-block input[type="submit"] {
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    border: 1px solid transparent;
    background: none;
    border-radius: 5px;
    padding: 0.5rem 2rem !important;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    height: 3rem;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
    background: var(--accent-color);
    color: var(--secondary-text-color);
    cursor: pointer;
}

.payment-form-block input[type="submit"]:hover {
    background-color: #000;
    color: var(--secondary-text-color);
}

.l-row .l-col.min-0--12 .l-row {
    display: flex;
    flex-direction: column;
}

.not-found__home-link {
    margin: 0 auto;
    display: block;
    width: fit-content;
    font-size: 14px;
    color: var(--secondary-text-color);
    background-color: var(--secondary-background-color);
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    padding: 8px 10px;
}

.not-found__home-link:hover {
    color: var(--main-text-color);
    background-color: var(--accent-color);
}


/* c-title
------------------------------------------------------------------- */

.c-title {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
}

@media (max-width: 767px) {
    .c-title {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .c-title {
        font-size: 22px;
    }
}

@media (min-width: 1025px) {
    .c-title {
        font-size: 26px;
    }
}

.c-title__search {
}

.c-title--no-border {
    padding-bottom: 0;
    border-bottom: 0;
}


/* c-alert
------------------------------------------------------------------- */

.c-alert {
    display: block;
    padding: 1rem 1.6rem;
    font-size: 1.4rem;
    text-align: center;
}

.c-alert span {
    display: block;
}

.payment-form-block .c-alert span {
    display: inline;
}

@media (max-width: 767px) {
    .c-alert {
        padding: 10px;
    }
}

.c-alert--red {
    color: #a94442;
    background: #f2dede;
    margin-bottom: 15px;
}

.mg-error {
    font-size: 1.2rem;
}

.email-error.c-alert--red {
    background: none;
}

.c-alert--blue {
    color: #31708f;
    background: #d9edf7;
}

.c-alert--green {
    color: #3c763d;
    background: #dff0d8;
}

.c-alert--orange {
    color: #8a6d3b;
    background: #fcf8e3;
}


/* c-form
------------------------------------------------------------------- */

.c-order .c-form {
    width: 100%;
}

.c-order .c-form__row {
    margin-top: 10px;
}

.c-order .c-form__row:first-of-type {
    margin-top: 0;
}

.c-order .c-form__row--line {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #dadada;
}

.c-order .c-form label {
    line-height: 1.2;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.c-order .c-form label * {
    cursor: pointer;
}

.c-order .c-form label [type='radio'],
.c-order .c-form label [type='checkbox'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.c-order .c-form .c-order__checkbox label::before {
    border-radius: 3px;
}

.c-order .c-form label.orderFileContainer:before {
    display: none;
}

.order-storage label:nth-child(n+2) {
    margin-top: 10px;
}

.order-storage {
    font-size: 14px;
    color: #545454;
    margin-bottom: 10px;
}

.flex100 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
}

.c-order .c-form .agreement__label::before {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}

.c-order .c-form .agreement__label>span {
    padding-left: 25px;
    font-size: 14px;
}

.c-order .c-form label:not(.active):hover:before {
    border-color: #c1c1c1;
}

.c-order .c-form select {
    cursor: pointer;
}

.c-order .c-form select,
.c-order .c-form textarea,
.c-order .c-form [type='url'],
.c-order .c-form [type='text'],
.c-order .c-form [type='number'],
.c-order .c-form [type='email'],
.c-order .c-form [type='search'],
.c-order .c-form [type='password'],
#treelike-comments form div.textarea-wrapper.clearfix textarea,
div#treelike-comments form input[type="text"] {
    width: 100%;
    height: 40px;
    padding: 9px 16px;
    color: var(--main-text-color);
    border: 1px solid #dadada;
    background: #fff;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    border-radius: 5px;
}

#treelike-comments form .two-input {
    display: flex;
    flex-direction: column;
}
#treelike-comments form button {
    float: none !important;
}
#treelike-comments .two-input .input-wrapper + .input-wrapper {
    margin-left: 0 !important;
}
#treelike-comments .two-input .input-wrapper:first-child {
    margin-bottom: 15px;
}
#treelike-comments form button {
    max-width: 200px;
}

@media (max-width: 767px) {

    .c-order .c-form select,
    .c-order .c-form textarea,
    .c-order .c-form [type='url'],
    .c-order .c-form [type='text'],
    .c-order .c-form [type='number'],
    .c-order .c-form [type='email'],
    .c-order .c-form [type='search'],
    .c-order .c-form [type='password'] {
        height: 30px;
        padding: 0 10px;
    }
    div#treelike-comments form input[type="text"],
    #treelike-comments form div.textarea-wrapper.clearfix textarea {
        height: 30px;
        padding: 5px 10px;
    }
}

.c-order .c-form select:focus,
.c-order .c-form textarea:focus,
.c-order .c-form [type='url']:focus,
.c-order .c-form [type='text']:focus,
.c-order .c-form [type='number']:focus,
.c-order .c-form [type='email']:focus,
.c-order .c-form [type='search']:focus,
.c-order .c-form [type='password']:focus,
#treelike-comments form div.textarea-wrapper.clearfix textarea:focus,
#treelike-comments>form>div:nth-child(8)>input[type='text']:focus {
    border-color: var(--main-color);
    -webkit-box-shadow: inset 0 0 0 1px var(--main-color);
    box-shadow: inset 0 0 0 1px var(--main-color);
}

.c-order .c-form textarea {
    line-height: 1.4;
    min-height: 120px;
    max-height: 500px;
    max-width: 100%;
    min-width: 100%;
    padding: 10px;
}

.c-order .c-form ::-moz-placeholder {
    color: #999;
}

.c-order .c-form :-ms-input-placeholder {
    color: #999;
}

.c-order .c-form ::-webkit-input-placeholder {
    color: #999;
}

.c-order .c-form--width {
    max-width: 300px;
}

.payment-form-block p em {
    display: block;
    margin-top: 30px;
    font-size: 16px;
}

.payment-form-block .l-col {
    padding-top: 16px;
}

@media (max-width: 767px) {
    .c-order .c-form--width {
        max-width: none;
    }

    .payment-form-block p em {
        display: block;
        margin-top: 20px;
        font-size: 14px;
    }
}

.titles-modal-mg-buy-click {
    flex-wrap: wrap;
}

.buyClick_agreement .agreement__checkbox {
    margin-right: 10px;
}


/* КОНЕЦ страницы оформления заказа */

.static-container {
    font-size: 16px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.static-container img {
    height: auto !important;
}

.footer__spoiler {
    position: relative;
    font-style: normal;
    margin-bottom: 10px;
}

.footer__arrow {
    background-size: 13px 8px;
    top: -4px;
    right: -8px;
}

.footer__title._active+.footer__arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.footer__list {
    max-height: 0;
    margin-bottom: 10px;
    -webkit-transition: opacity 0.5s linear, max-height 0.5s linear, min-height 0.5s linear, width 0.5s linear;
    transition: opacity 0.5s linear, max-height 0.5s linear, min-height 0.5s linear, width 0.5s linear;
    width: 100%;
    opacity: 0;
    overflow: hidden;
}

.footer__list._active {
    -webkit-transition: opacity 0.5s linear 0.2s, max-height 0.5s linear, min-height 0.5s linear, width 0.5s linear 0.2s;
    transition: opacity 0.5s linear 0.2s, max-height 0.5s linear, min-height 0.5s linear, width 0.5s linear 0.2s;
    opacity: 1;
}

.footer__widget {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
}

@media (max-width: 980px) {
    .footer__widget {
        margin: 0 auto;
    }
}

.footer__list._active .footer__button {
    height: 45px;
    padding: 7px 10px;
}

.footer__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25px;
    margin-right: 10px;
}

.footer__image svg {
    max-width: 25px;
    height: 25px;
    width: 25px;
    fill: var(--main-color);
}

.footer__telephones {
    display: flex;
    flex-direction: column;
}

.footer__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}



.footer__copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--main-text-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    border-top: 1px solid #E4E7F1;
    padding: 10px 15px 15px;
    margin-top: 10px;
}

.footer__copy-container>div {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    align-items: center;
}

.footer__copy-container a:hover {
    text-decoration: underline;
}

.alert-change-payment {
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .footer__copy-container>div {
        flex-direction: column;
        flex-shrink: 0;
    }
}

.footer__payments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer__pay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    opacity: 0.5;
    margin-top: 10px;
    height: 16px;
}

.search-catalog .daily-wrapper {
    display: none;
}

.footer__pay img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.footer__pay:hover {
    opacity: 1;
}

address.footer__spoiler .footer__item {
    margin-bottom: 35px;
}

@media (min-width: 480px) {
    .top__checkout {
        margin-left: 20px;
    }

    .account__menu {
        left: -105px;
    }
}


@media (min-width: 625px) {
    .top__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 6px 20px;
        margin: 0 auto;
    }

    .wrapper-back-ring .back-ring-button {
        margin-left: 0;
    }

    .top__links {
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .account {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .account__title {
        display: block;
        margin-left: 6px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        color: #000;
    }

    .account:hover .account__title {
        color: var(--main-color);
    }

    .account__menu {
        top: 60px;
        left: -115px;
    }
}

@media (min-width: 980px) {
    .top__contacts {
        display: flex;
    }

    .top__contacts-phone {
        display: block;
        font-weight: 400;
    }

    .top__contacts-phone:hover {
        color: var(--main-color);
    }

    .top__checkout {
        margin-left: 20px;
    }

    .footer__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .footer__arrow {
        display: none;
    }

    .footer__list {
        max-height: none !important;
        width: auto;
        opacity: 1;
    }

    .footer__spoiler {
        padding: 0 15px;
    }

    .footer__spoiler_1 {
        width: 28%;
    }

    .footer__spoiler_1 .footer__title {
        display: none;
    }

    .footer__spoiler_2 {
        width: 23%;
    }

    .footer__spoiler_3 {
        width: 23%;
    }

    .footer__spoiler_5 {
        margin-top: 45px;
    }

    .footer__spoiler_5 .footer__title {
        display: none;
    }

    .footer__button {
        padding: 7px 10px;
        height: 45px;
        right: 0;
    }

    .footer__copyright {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 5px 15px 15px;
    }
}

@media (min-width: 1080px) {
    .header__main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        align-items: center;
    }

    .header__cabinet-container {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .account__menu {
        top: 50px;
    }
}

@media (min-width: 1200px) {
    .top__wrapper {
        padding: 6px 30px;
        max-width: 1150px;
    }

    .header__menu {
        position: relative;
        top: 0;
        transform: none;
        display: flex;
        margin: 20px 0;
    }

    .clothes {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .clothes__title {
        font-weight: 500;
        color: var(--main-color);
        padding: 5px 0;
        font-size: 13px;
        border-bottom: 1px solid var(--main-color);
        margin-bottom: 16px;
    }

    .clothes__subcategory {
        min-width: 190px;
        padding-right: 30px;
    }

    .blender {
        right: -120px;
        top: -6px;
        padding: 10px;
        min-width: 140px;
    }

    .blender a {
        font-weight: 500;
    }
}

.c-modal .c-modal__close {
    background: none;
    width: 15px;
    height: 15px;
    position: absolute;
}

.c-modal .c-modal__content {
    border-radius: 10px;
    margin: 0 15px;
}

.c-modal textarea {
    min-height: 70px;
}

.c-modal .button {
    display: block;
    width: fit-content;
    color: var(--secondary-text-color);
    background-color: var(--secondary-background-color);
    padding: 8px 10px;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.c-modal .button:hover {
    color: var(--main-text-color);
    background-color: var(--accent-color);
}

@media (min-width: 1450px) {
    .top__wrapper {
        max-width: 1260px;
    }

    .advantage__title {
        letter-spacing: 0.6px;
        line-height: 22px;
        font-size: 12px;
    }
}

.column-section {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.column-section__block {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
}

.column-section__sidebar {
    order: 2;
    width: 100%;
}

@media(min-width: 980px) {
    .column-section {
        flex-direction: row;
    }

    .column-section__sidebar {
        flex: 0 0 240px;
        max-width: 240px;
        padding-right: 20px;
        box-sizing: border-box;
        order: 1;
    }

    .column-section__block {
        flex-grow: 1;
        order: 2;
        margin-bottom: 0;
    }
}

.form__date-register {
    margin-bottom: 10px;
}

.e-form__row {
    margin-bottom: 10px;
}


.e-form-input {
    display: block;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    color: var(--main-text-color);
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: none;
    width: 100%;
    max-width: 400px;
    max-height: 250px;
    min-height: 40px;
    min-width: 250px;
}

textarea.e-form-input {
    min-width: 400px;
    max-width: 400px;
}

@media (max-width: 470px) {
    textarea.e-form-input {
        min-width: 100%;
        max-width: 100%;
    }
}

.e-form-input.feedback-textarea {
    max-width: 100%;
}

@media (max-width: 641px) {
    .c-table__promocode button {
        margin-left: auto;
    }
}

.order-page .e-form-input {
    width: auto;
    min-height: auto;
}

.msgError,
.mg-success {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    font-size: 12px;
}

.msgError {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

.mg-success {
    background-color: #c3ecfe;
    border: 1px solid #b1e7ff;
    color: #0081ba;
}

.static-container h1,
.static-container h2,
.static-container h3,
.static-container p {
    margin-bottom: 20px;
}

.groups-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
}

.goods-description {
    margin-bottom: 10px;
}

.history-section {
    padding: 0 16px;
    font-size: 1.4rem;
}

.history-section .c-title {
    border-bottom: none;
    font-size: 26px;
    font-weight: 400;
    color: var(--main-text-color);
}

@media (max-width: 1005px) {
    .history-section .c-title {
        font-size: 20px;
    }
}

.history-section p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.mg-form-designer .agreement {
    font-size: 14px;
}

.mg-form-designer .agreement__btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    background: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    text-decoration: underline dotted;
}

.mg-form-designer .agreement__btn:hover {
    text-decoration: none;
}

.mg-form-designer label,
.mg-form-designer input[type="checkbox"] {
    cursor: pointer;
}
.mg-news-full-desc ul,
.mg-news-full-desc ol,
.static-content ul,
.static-content ol,
.static-container ul,
.static-container ol,
.main .history-section ul,
.main .history-section ol,
.product-page .c-tab__content--desc ul,
.product-page .c-tab__content--desc ol {
    padding-left: 15px;
    margin-left: 5px;
}

.product-page__char {
    max-height: 200px;
    overflow-y: auto;
}
.mg-news-full-desc ul li,
.static-content ul li,
.static-container ul li,
.main .history-section ul li,
.product-page .c-tab__content--desc ul li {
    list-style-type: disc;
}
.mg-news-full-desc ol li,
.static-content ol li,
.static-container ol li,
.main .history-section ol li,
.product-page .c-tab__content--desc ol li {
    list-style-type: decimal;
}

.order-payment-page {
    padding: 40px 30px;
    font-size: 1.4rem;
}

#chd-show-more-button {
    background: var(--accent-color);
    color: var(--secondary-text-color);
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    height: 5rem;
    transition: all 0.25s;
    justify-content: center;
    -ms-flex-pack: justify;
    margin: 1rem auto 0;
    grid-column-start: 1;
    grid-column-end: -1;
}

#chd-show-more-button:hover {
    opacity: 0.8;
    background: var(--accent-color);
}

.show-more-container {
    width: 100%;
}

.product-groups {
    background-color: var(--accent-background-color);
    height: 100%;
}
@media (min-width: 1550px) {
.background-texture .product-groups {
    background: none;
}

.background-texture .product-groups>.container {
    margin: 20px auto;
    padding: 20px 2.5rem;
    border-radius: 12px;
    background: var(--accent-background-color);
}
}
.favorites {
    background-color: var(--accent-background-color);
    padding-bottom: 40px;
}
@media (min-width: 1550px) {
.background-texture .favorites {
    background: none;
}
.background-texture .favorites .container {
    background: var(--accent-background-color);
    margin: 20px auto;
    padding: 20px 2.5rem;
    border-radius: 12px;
}
}
.favorites .title-section__title-text {
    margin: 0 2.5rem;
}
.favorites .settings__view,
.product-groups .settings__view {
    justify-content: flex-end;
    margin-bottom: 30px;
}

.auth-form-message {
    color: var(--main-text-color);
    margin-bottom: 10px;
    font-size: 15px;
}

.block-wrapper {
    background-color: var(--accent-background-color);
}
@media (min-width: 1550px) {
.background-texture .block-wrapper {
    background: none;
}

.background-texture .block-wrapper .container {
    background: var(--accent-background-color);
    padding: 20px 2.5rem;
    margin: 20px auto;
    border-radius: 12px;
}
}

.static-container .spoiler-title {
    display: flex;
    justify-content: space-between;
}

.static-container .spoiler-title:hover {
    background-color: var(--accent-color);
    color: var(--main-text-color);
}

.static-container .spoiler {
    border-color: var(--border-color);
}

.static-container .spoiler-title::after {
    content: "\F0140";
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    transition: all 0.4s ease-in-out;
    width: fit-content;
    line-height: 1;
    height: 16px;
}

.static-container .spoiler._active .spoiler-title::after {
    transform: rotate(180deg);
}

.comments textarea {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 10px;
}

.comments .showImgComments {
    margin: 5px;
    display: block;
    width: fit-content;
}

.goods-search {
    padding-bottom: 40px;
}

.temporarySaleBanner {
    padding: 0 16px;
}

.dailyProduct {
    width: 100% !important;
}

.order-payment-title {
    font-size: 26px;
    margin: 20px 0;
}


@media (max-width: 1005px) {
    .order-payment-title {
        font-size: 20px;
        margin: 10px 0;
    }
}

.quickview-text {
    display: block;
    -ms-flex: 1;
    flex: 1;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 400;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 1rem;
}
.minicart-item__dropdown .quickview-text {
    margin-left: 0;
}

.e-form__title {
    display: block;
    margin-bottom: 3px;
    color: var(--third-text-color);
}

.e-form__row-info>div {
    margin-bottom: 7px;
}

.checkCapcha input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    max-width: 150px;
}

.accordeon__btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 2rem 5rem 2rem 2.5rem;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 500;
    cursor: pointer;
    color: #343434;
    min-height: 7rem;
    margin: 0;
    transition: color 0.25s;
    padding: 3rem 8rem 3rem 3rem;
    font-size: 2.4rem;
    min-height: 9.9rem;
}

.accordeon__dropdown {
    padding: 0 3rem 3rem;
    text-align: justify;
}

.accordeon__arrow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    transition: transform 0.25s;
    padding: 0 3rem;
}
.accordeon__arrow svg {
    width: 2.1rem;
    height: 2.1rem;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    fill: currentColor;
    fill-rule: evenodd;
}

.accordeon.active .accordeon__arrow {
    transform: rotate(-180deg);
}
.captcha {
    display: block;
    transition: 0.25s;
    width: 100%;
    background: #F7F8FB;
    border: 1px solid #F7F8FB;
    font: 400 1.6rem/2.4rem "Roboto", Arial, Helvetica, sans-serif;
    padding: 1rem 1.6rem;
    color: var(--main-text-color);
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    transition: 0.25s;
    box-shadow: none;
    border-radius: 5px;
    margin: 0 0 2rem;
    height: 4.6rem;
    transition: box-shadow 0.25s;
    max-width: 100%;
    min-width: 200px;
}

.g-recaptcha {
    margin-bottom: 15px;
}

.total-price-block .checkCapcha {
    margin-top: 15px;
}

#bonus-card button:hover {
    color: var(--secondary-text-color);
}

.modal.modal_subscribe  {
    vertical-align: baseline;
}

.wrapper-chd-request-price.button {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.resently-container {
    display: flex;
    flex-wrap: wrap;
}

.resently-item{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 1rem 2rem;
}
.resently-item:nth-of-type(n + 5) {
    display: none;
}

@media (max-width: 1200px) {
    .resently-item {
        -ms-flex: 0 0 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}
@media (max-width: 991px) {
    .resently-item {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
}
@media (max-width: 767px) {
    .resently-item {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
  }