/* ! -------------------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;
}


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

html {
    height: 100%;
}

body {
    font-family: "Roboto", "Arial", "Helvetica", sans-serif;
    color: var(--main-text-color);
    height: 100%;
    font-weight: 400;
    font-size: 12px;
    font-style: normal;
    overflow-x: hidden;
}
input {
    font-family: "Roboto", "Arial", "Helvetica", sans-serif;
}
body.lock,
html.lock {
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-left: 148px;
    background-color: var(--accent-background-color);
}
.comments form .sendComment,
.default-btn {
    color: var(--secondary-text-color);
    background-color: var(--accent-color);
    margin: 0;
    padding: 8px 12px;
    border-radius: 105px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    margin-right: 10px;
}

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

.container {
    padding: 0 15px;
    margin: 0 auto;
}

.dropdown {
    position: relative;
}

.dropdown__container {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(170, 189, 206, 0.25);
    border-radius: 5px;
    width: fit-content;
    min-width: 100px;
    padding: 10px 0;
    margin: 5px 0 0 0;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
}

.dropdown__container::before {
    position: absolute;
    top: -5px;
    content: '';
    width: 100%;
    height: 5px;
    left: 0;
}

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

@media (max-width: 1269px) {
    .container {
        padding: 0 15px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .wrapper {
        padding-left: 0px;
    }
}

@media (max-width: 768px) {
    .wrapper {
        background: none;
    }
}

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

.header__top {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

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

.header-top {
    display: flex;
    width: 100%;
    height: 41px;
}

.header-top__container {
    display: flex;
    margin-left: auto;
    align-items: center;
    font-size: 14px;
}
.header__address {
    margin-right: 60px;
}
.header__address i {
    margin-right: 4px;
}

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

.header-center__container {
    display: flex;
}

.header__logo {
    width: 173px;
    margin: 8px 0;
    flex-shrink: 0;
    height: 34px;
    display: block;
}

@media (max-width: 488px) {
    .header__logo {
        width: 114px;
    }
}

@media (max-width: 430px) {
    .header__top {
        display: none;
    }
}

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

.header__search {
    width: 40%;
}

.video-test {
    height: calc(100vw / 16 * 9);
    max-height: min(calc(100vw / 16 * 9), calc(1270px / 16 * 9 ));
}

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

.header__center {
    border-bottom: 1px solid var(--border-color);
}

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

.header-bottom__lang-currency {
    flex: 0 0 auto;
    display: flex;
}

.header-bottom__wrapper {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.header__burger-button {
    background: none;
    color: var(--accent-color);
    width: 32px;
    height: 32px;
    position: relative;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    outline: none;
    margin: 5px 24px 0 0;
}

.header__burger-button svg {
    width: 100%;
    height: 100%;
}

.header__burger {
    margin-right: 15px;
    cursor: pointer;
    display: none;
}

@media (max-width: 1024px) {
    .header__search {
        width: 100%;
        order: 1;
    }

    .header-center {
        flex-wrap: wrap;
    }

    .header__sticky .header__center {
        position: fixed;
        top: 0;
        transform: translateY(-100px);
        left: 0px;
        width: 100%;
        z-index: 999;
        background: var(--main-background-color);
    }

    .header__sticky.up .header__center {
        transform: translateY(0);
        transition: transform 0.2s;
        box-shadow: 1px 1px 16px rgba(0,0,0,0.24);
    }
    .header__center {
        padding: 11px 0;
    }
    .header__sticky .header__search {
        display: none;
    }
}

@media (max-width: 1024px) {
    .header__burger {
        display: block;
        margin-right: 0;
    }

    .header-bottom__wrapper {
        display: none;
    }

    .header__bottom {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__address {
        display: none;
    }
}

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

.left-menu__container {
    overflow-y: auto;
    height: calc(100vh);
}



.left-menu.left-menu_active {
    left: 0;
}


.main-background {
    padding: 53px 0 20px;
    overflow: hidden;
}

@media (max-width: 430px) {
    .main-background {
        padding: 20px 0 20px;
    }
}

.main-background .container {
    padding: 0;
}

.catalog {
    background-color: var(--accent-background-color);
    height: 100%;
}

.sidebar__wrapper {
    top: 0;
    padding: 20px 0;
    background-color: var(--main-background-color);
    margin-bottom: 15px;
    height: 100%;
    border-radius: 10px;
}

.banners-background {
    width: 100%;
}

.settings__container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5px;
    background-color: var(--main-background-color);
    border-radius: 10px;
}

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

.settings__sort {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--main-text-color);
}

.settings__sort select {
    height: 42px;
    font-size: 14px;
    color: #777;
    padding: 0 10px;
    border-radius: 5px;
}

.settings__sort-text-mobile {
    display: none;
}

@media (max-width: 800px) {
    .settings__sort-text-desctop {
        display: none;
    }
    .settings__sort-text-mobile {
        display: inline;
    }
}

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

.sidebar {
    width: 264px;
    flex-shrink: 0;
    flex-grow: 0;
}

.card__top-left {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 140px;
    z-index: 100;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    width: fit-content;
}

.card__stickers {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 15px 0 0;
    z-index: 100;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 100%;
}

.card__stickers .card__sticke:first-of-type~* {
    position: absolute;
}

.card__stickers .card__sticker:nth-of-type(2) {
    top: 100%;
}

.card__stickers .card__sticker:nth-of-type(3) {
    top: 200%;
}
.card__sticker {
    margin: 0 0 5px;
    position: relative;
    top: 0;
    left: 0;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    white-space: nowrap;
    font-size: 11px;
    line-height: 11px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 5px 8px;
    background: #ccc;
    color: var(--secondary-text-color);
    border-radius: 8px;
}

.card__sticker-sale {
    background: rgb(242, 153, 74);
}

.card__sticker-new {
    background: rgb(39, 174, 96);
}

.card__sticker-hit {
    background: rgb(235, 87, 87);
}


.card__stickers .card__sticker:nth-of-type(1) {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

@media (max-width: 430px) {
    .card__top-left {
        right: auto;
        width: fit-content;
    }
}


.catalog__sidebar-sticky {
    position: sticky;
    top: 20px;
    margin-bottom: 20px;
    z-index: 3;
    height: 100%;
}

.wrapper-mg-buy-click {
    width: auto;
    margin-bottom: 10px;
}

.catalog__sticky {
    position: sticky;
    top: 20px;
    z-index: 2;
}

.catalog__main {
    padding: 0 0 0 20px;
    width: 100%;
}

@media (max-width: 1270px) {
    .catalog__main {
        padding: 0;
    }
    .sidebar__wrapper,
    .catalog__sidebar-sticky {
        margin-bottom: 0;
    }
    .sidebar {
        z-index: 999;
        box-shadow: 0px 6px 24px rgba(0,0,0,0.12);
    }
}



.product-page {
    font-size: 14px;
}

.product-page-wrapper {
    background-color: var(--accent-background-color);
    padding: 0 0 35px;
}

.product-page__main {
    background-color: var(--main-background-color);
    padding: 2.2% 2.25% 2.4% 2.4%;
    display: flex;
    margin: 0 0 24px;
    border-radius: 10px;
}

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

.description-and-blog {
    display: flex;
    flex-direction: row-reverse;
    padding: 0 15px;
    margin-bottom: 40px;
}

.description-and-blog .history-section {
    width: calc(50% - 30px);
    background: var(--main-background-color);
    padding: 40px 39px;
    border-radius: 8px;
    margin-right: 30px;
}

.description-and-blog .blog-head {
    margin-left: 0;
    margin-right: 0;
}
.description-and-blog .blog {
    padding: 0;
    width: 100%;
    margin: 0;
}

.description-and-blog>.container {
    width: 50%;
    padding: 38px 40px 24px;
    background: var(--main-background-color);
    border-radius: 8px;
}

.description-and-blog .history-section>.block-wrapper {
    background: var(--main-background-color);
}

@media (max-width: 1550px) {
    .description-and-blog {
        flex-direction: column-reverse;

    }
    .description-and-blog .history-section {
        width: 100%;
        border-radius: 8px 8px 0 0;
        margin-right: 0;
    }
    .description-and-blog>.container {
        width: 100%;
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 1270px) {
    .description-and-blog .history-section {
        padding: 33px 39px 60px;
    }
}

@media (max-width: 1024px) {
    .description-and-blog .history-section {
        padding: 30px;
    }
    .description-and-blog>.container {
        padding: 28px 30px 26px;
    }
}
@media (max-width: 768px) {
    .description-and-blog .history-section {
        padding: 0;
        margin-bottom: 30px;
    }
    .description-and-blog>.container {
        padding: 0;
    }
}

.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-name {
    font-size: 14px;
}

.product-page__right-price .product-page__table-value {
    color: var(--main-text-color);
}

.product-page__table-value {
    font-size: 13px;
    font-weight: 400;
    color: var(--third-text-color);
}

.product-page__table-item {
    display: flex;
    align-items: center;
}

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

._hide {
    display: none !important;
}

.product-page .card__quick-buttons .quickview-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 5px;
}
.product-page .quickview__favorites .quickview-svg::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: var(--accent-color);
    transition: all 0.3s;
    border-radius: 50%;
}

.product-page .quickview__favorites._active .quickview-svg::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.product-page .quickview__favorites._active .quickview-svg svg {
    color: var(--secondary-text-color);
    position: relative;
    z-index: 2;
}

.quickview__compare .quickview-svg::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transition: all 0.3s;
}

.quickview__compare._active .quickview-svg::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.product-page .card__quick-buttons svg {
    width: 12px;
    height: 12px;
    position: relative;
    z-index: 2;
}

.product-page .quickview__compare._active .icon_compare {
    display: block;
    color: #fff;
}

.product-page .add_compare {
    display: none;
}

.hidden {
    display: none;
}

.opacity {
    opacity: 0;
}

.main {
    flex: 1 1 auto;
}

.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;
}

.quickview__favorites svg {
    max-height: 15px;
}


.e-form__row--submit button,
.personal-history__submit,
.button--light {
    color: var(--secondary-text-color);
    background-color: var(--accent-color);
    margin: 0;
    padding: 8px 12px;
    border-radius: 105px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    margin-right: 10px;
    display: block;
    margin-bottom: 10px;
    width: fit-content;
    font-weight: 500;
}

.e-form__row--submit button:hover,
.personal-history__submit:hover,
.button--light:hover {
    opacity: 0.8;
}


/* Каталог */

.catalog__wrapper {
    display: flex;
    margin-bottom: 26px;
    position: relative;
}

.catalog__description {
    margin-bottom: 25px;
    font-size: 14px;
    background-color: var(--main-background-color);
    overflow: hidden;
    padding: 34px 39px;
    line-height: 1.4;
    color: var(--third-text-color);
    border-radius: 10px;
}

.catalog__description a {
    color: var(--accent-color);
}

.catalog__description ul li {
    list-style: disc;
}
.catalog__description ol li {
    list-style: decimal;
}
.catalog__description ol {
    list-style: decimal;
    padding-left: 15px;
}
.catalog__description ul {
    list-style: disc;
    padding-left: 15px;
}

.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-row-start: 1;
    grid-row-end: -1;
    grid-column-start: 1;
    grid-column-end: -1;
}

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

@media (max-width: 800px) {
    .settings__wrapper {
        flex-direction: row-reverse;
    }
    .settings__sort select {
        width: 1px;
    }
}

@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 (max-width: 768px) {
    .catalog {
        background: var(--main-background-color);
    }
    .catalog .container {
        padding: 0;
    }
    .catalog__description {
        padding: 15px;
    }
    .catalog .title-section {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .catalog__goods .card-in {
        border: 1px solid var(--border-color);
        margin: 0 -1px -1px 0;
    }
    .catalog__goods .card:hover .card-in {
        border-radius: 0;
    }
}

@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);
    }
}

@media (max-width: 508px ) {
    .c-goods--grid-5 {
        grid-template-columns: 1fr 1fr;
    }
}


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


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



.product-page__info {
    width: calc(100% - 25.834vw);
    padding: 25px 25px 25px 0;
}

.product-page__sticky {
    position: sticky;
    top: 0;
}

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

.product-page__price-description {
    display: flex;
    padding: 19px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}


.product-page__rating {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.product-page__code,
.product-page__count {
    margin-right: 15px;
}

.product-page__count .card__available-container {
    margin-top: 0;
}

.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;
    width: fit-content;
    margin-top: 10px;
    font-size: 13px;
    color: var(--accent-color);
}
.product-page__table tr td {
    padding: 2px 0;
}

.product-page__table tr td:first-child {
    padding-right: 10px;
    font-weight: 700;
}

.product-page__price {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-right: 30px;
    flex: 1 0 auto;
    flex-direction: column;
}

.product-page__head {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.product-page__price-normal {
    display: flex;
    font-size: 30px;
    font-weight: 500;
    color: var(--main-text-color);
}

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

.product-page__price-old {
    font-size: 18px;
    color: var(--third-text-color);
    margin: 5px 0;
}

.product-page__price-sale-container {
    display: flex;
    color: var(--main-text-color);
    font-size: 12px;
    padding: 4px 10px;
    margin: 5px 0;
    line-height: 1.2;
    height: fit-content;
    font-weight: 400;
    border: 2px solid #ffd957;
}

.product-page__price-container {
    font-size: 30px;
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.product-page__price-container .card__price-unit {}



.product-page .c-product__message .a-button,
.product-page .card__button {
    color: var(--secondary-text-color);
    background-color: var(--accent-color);
    border-radius: 100px;
    padding: 8px 15px;
    transition: all 0.4s ease-in-out;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-page .c-product__message .a-button:hover,
.product-page .card__button:hover {
    opacity: 0.8;
}

.product-page .card__button svg {
    display: none;
}


.product-page .card__buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
    position: static;
}

@media (max-width: 380px) {
    .product-page .card__buttons {
        justify-content: center;
    }
}
.product-page__short-description {
    display: flex;
    flex-direction: column;
}

.product-page__link-description {
    color: var(--accent-color);
    font-size: 14px;
    width: fit-content;
    margin-top: 5px;
    margin-bottom: 5px;
}

.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._active,
.product-page .quickview__compare._active {
    color: var(--accent-color);
}
.product-page .btn.addToWishList:hover,
.product-page .quickview__favorites:hover,
.product-page .quickview__compare:hover {
    color: var(--accent-color);
}

.product-page .quickview__favorites {
    margin-bottom: 10px;
}

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

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

.product-page .btn.addToWishList {
    margin-left: 0;
    padding: 0;
    font-size: 13px;
}

.product-page .btn.addToWishList::before {
    content: "\F1278";
    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;
    margin-right: 5px;
}

.product-page .btn.addToWishList:hover {
    background-color: none;
    border: none;
}

.product-page__right-price {
    width: 100%;
}

.product-page__right-price .product-page__char {
    max-width: 550px;
}

.product-page .wishlist {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--main-text-color);
    font-weight: 400;
    font-size: 13px;
    padding: 5px;
    margin-bottom: 2px;
}

.btn.addToWishList {
    font-size: 0px;
}

.product-page .btn.addToWishList {
    border: none;
    color: var(--main-text-color);
    font-size: 13px;
    font-weight: 400;
}

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

.product-page .mg-buy-click-button {
    color: var(--accent-color);
    background: var(--main-background-color);
    border: 2px solid var(--accent-color);
    padding: 9px 15px;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    text-shadow: none;
    box-shadow: none;
    height: 100%;
    display: flex;
    align-items: center;
    width: fit-content;
    font-weight: 500;
    text-transform: none;
}

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

@media (max-width: 460px) {
    .product-page .wrapper-mg-buy-click {
        width: 100%;
    }
    .product-page .mg-buy-click-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
     .product-page .card__button {
        width: calc(100% - 116px);
        margin-right: 0;
     }
}

.product-page .a-button:hover {
    background-color: #000;
    color: #fff;
}

.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 .sizeMap-row .color {
    border-radius: 2px;
}

.product-page .sizeMap-row .color {
    margin: 5px 5px 5px 0;
}

.product-page .sizeMap-row .size {
    border-radius: 3px;
    padding: 4px 5px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

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

@media (max-width: 1270px) {
    .sidebar {
        position: absolute;
        left: 0;
        top: 0;
        display: none;
    }

    .sidebar.open {
        display: block;
    }
    .product-page__price-description {
        flex-direction: column;
    }
    .product-page__right-price {
        padding-top: 15px;
    }
    .image-slider__main {
        width: 37vw;
        height: 37vw;
    }
    .product-page__images,
    .product-page__images-sticky {
        width: 37vw;
    }
}

@media (max-width: 767px) {
    .product-page .sizeMap-row .size {
        padding: 7px 5px 5px 5px;
    }
    .sidebar {
        box-shadow: 0px 11px 24px rgba(0,0,0,0.12);
        width: 100%;
    }
}

.wrapper-mg-non-available .mg-non-available-button {
    padding: 10px 15px;
    background: var(--accent-color);
    border: none;
    color: var(--secondary-text-color);
    box-shadow: none;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.4s ease-in-out;
}

.wrapper-mg-non-available .mg-non-available-button:hover {
    opacity: 0.8;
}



.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);
}

.wrapper-modal-mg-non-available .mg-action-buttons .close-mg-booking-button {
    color: var(--main-text-color);
    border-color: var(--border-color);
}

.mg-send-booking-click-button,
.mg-send-order-click-button {
    background-color: var(--accent-color);
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    color: var(--secondary-text-color);
}

.mg-send-order-click-button:hover,
.mg-send-booking-click-button:hover {
    background-color: var(--accent-color);
    color: var(--main-text-color);
}

.wrapper-modal-mg-non-available .mg-action-buttons .close-mg-booking-button:hover {
    color: var(--main-text-color);
}

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


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

.personal-page {
    background-color: var(--accent-background-color);
}

@media (max-width: 768px) {
    .personal-page {
        background: var(--main-background-color);
    }
}

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

.personal-error__container {
    padding: 30px;
    border-radius: 10px;
    background: var(--main-background-color);
    margin-top: 30px;
}

.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__payment li:last-child {
    padding-bottom: 10px;
}

.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 .c-order__total--row {
    justify-content: center;
}

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

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



.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: 15px;
    margin-bottom: 7px;
}

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

.ui-datepicker-header {
    background-color: var(--main-color);
    border-color: var(--main-color);
    text-shadow: none;
    color: #fff;
}

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

.c-order .c-form .button {
    padding: 10px 20px;
    font-size: 14px;
    width: fit-content;
    display: block;
    margin: 10px 0;
}

.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;
}
.order-empty__link,
.payment-form-block input[type="submit"] {
    display: flex;
    background-color: var(--accent-color);
    color: var(--secondary-text-color);
    padding: 12px 12px;
    font-weight: 500;
    text-align: center;
    border-radius: 30px;
    vertical-align: middle;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
    width: fit-content;
    min-width: 0;
    letter-spacing: 1px;
}

.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(--accent-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 {
    padding: 0 10px;
    background: var(--main-background-color);
    border-radius: 10px;
}

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


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

.c-alert {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
}

.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;
}

.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;
}

.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 {
    width: 100%;
    height: 40px;
    padding: 9px 16px;
    color: var(--main-text-color);
    border: 1px solid #dadada;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    border-radius: 0;
    border: 1px solid var(--border-color);
    background: var(--accent-background-color);

}

.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 {
    outline: none;
}

#treelike-comments form button {
    max-width: 200px;
}


.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;
    margin-top: 40px;
    margin-bottom: 40px;
    background: var(--main-background-color);
    border-radius: 10px;
    padding: 20px;
}

@media (max-width: 768px) {
    .static-container {
        padding: 0;
    }
}

.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__email {
    width: 100%;
    font-size: 12px;
    line-height: 1.33;
    border-radius: 6px 0 0 6px;
    color: var(--main-text-color);
    font-family: inherit;
    font-weight: inherit;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 3px;
    margin: 0;
}

.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 var(--border-color);
    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;
}

@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(--accent-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;
}

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: 14px;
}

.history-section a {
    color: var(--accent-color);
}

.history-section ul li {
    list-style: disc;
}
.history-section ol li {
    list-style: decimal;
}
.history-section ol {
    list-style: decimal;
    padding-left: 15px;
}
.history-section ul {
    list-style: disc;
    padding-left: 15px;
}

.history-section .c-title {
    border-bottom: none;
    font-size: 24px;
    font-weight: 700;
    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;
}

.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;
}

.static-container ul li,
.main .history-section ul li,
.product-page .c-tab__content--desc ul li {
    list-style-type: disc;
}

.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;
}

#mg-product-comments-rating form button {
    padding: 13px 15px;
    background: var(--accent-color);
    border-radius: 30px;
    color: var(--secondary-text-color);
}

#mg-product-comments-rating form button:hover {
    opacity: 0.8;
}


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

@media (max-width: 1400px) {
    .product-page .wishlist {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .product-page__images, .product-page__images-sticky {
        width: 100%;
        height: auto;
    }
  .hide_mobile{
  display:none;
  }
    .product-page__main {
        flex-direction: column;
    }

    .bottom-images__container {
        margin: 0 25px;
    }

    .product-page__info {
        width: 100%;
        padding: 25px 0;
    }
    .image-slider__main {
        width: 73.75vw;
        height: 73.75vw;
        margin: 0 auto 15px;
    }
    .product-page-wrapper {
        background: var(--main-background-color);
    }
    .product-page-wrapper .container {
        padding: 0;
    }
    .product-page__main {
        margin: 0;
        padding: 0;
    }
    .product-page__main-params,
    .product-page__price-description,
    .product-page__head {
        padding: 0 24px 10px;
    }
    .product-page__tabs {
        padding: 24px 24px 32px;
    }
}
@media (max-width: 430px) {
    .product-page__head {
        flex-direction: column;
    }
    .product-page__rating {
        margin-bottom: 10px;
    }
    .product-page__count {
        margin-bottom: 10px;
    }
}

.registration-wrapper {
    height: 100%;
    background-color: var(--accent-background-color);
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.registration__form {
    width: 33.3%;
    margin-top: 30px;
}

.registration {
    padding: 40px;
    background-color: var(--main-background-color);
    width: 100%;
    margin: 32px 0 24px;
    border-radius: 10px;
}

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

.enter__left-text {
    font-size: 16px;
}
.e-form__row--submit .button-loggout,
.e-form__row--submit input,
.registration__submit button{
    color: var(--secondary-text-color);
    background-color: var(--accent-color);
    padding: 13px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    width: fit-content;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.e-form__row--submit .button-loggout:hover,
.e-form__row--submit input:hover,
.registration__submit button:hover {
    opacity: 0.8;
}

.registration__success {
    font-size: 14px;
    color: var(--main-text-color);
    padding: 10px;
    background: #deffdc;
    border-radius: 8px;
}

.registration__success a {
    cursor: pointer;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

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

.enter-wrapper {
    background-color: var(--accent-background-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 14px;
    color: var(--main-text-color);
    padding: 0 15px;
}

.enter-wrapper .enter-form {
    margin: 32px 0 24px;
}
.enter__container {
    padding: 40px;
    display: flex;
    border-radius: 10px;
}

.enter__left-column {
    width: 33.3%;
    margin-right: 3.75%;
}

.enter__right-column {
    position: relative;
    top: 2px;
    width: 30%;
    padding: 31px 30px;
    box-shadow: 0px 0px 24px rgba(0,0,0,0.12);
    height: fit-content;
}

.enter__registration-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}

.enter__registration-text {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.enter__label-text {
    display: block;
    margin-bottom: 9px;
}

.enter__left-column .c-form {
    margin-top: 30px;
}

.enter__title {
    margin-top: 30px;
    font-size: 32px;
    font-weight: 700;
}

.enter-text {
    margin-bottom: 10px;
}

.enter-form {
    background-color: var(--main-background-color);
    width: 100%;
}
.registration__input,
.enter-input {
    margin-bottom: 10px;
    position: relative;
}
.e-form-input,
.captcha,
.registration__input input,
.enter-input input {
    width: 100%;
    padding: 11px 14px 10px;
    font-size: 14px;
    background-color: var(--accent-background-color);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}



.captcha {
    margin-bottom: 15px;
}

.capcha__img {
    border: 1px solid var(--border-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.capcha__text {
    font-size: 14px;
    margin-bottom: 7px;
    display: block;
}

.enter-buttons-container {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

.registeted__link-enter {
    font-size: 14px;
    line-height: 1.5;
    color: var(--accent-color);
    border-bottom: 1px dashed var(--accent-color);
    position: relative;
    top: -3px;
}

.enter-buttons-container button {
    display: inline-block;
    min-width: 113px;
    padding: 13px 20px;
    font-size: 14px;
    color: var(--secondary-text-color);
    font-weight: 600;
    background-color: var(--accent-color);
    border: none;
    border-radius: 30px;
    text-align: center;
    box-sizing: border-box;
    transition: all .2s ease;
    cursor: pointer;
    margin-top: 28px;
}

.enter-buttons-container a:hover,
.enter-buttons-container button:hover {
    opacity: 0.8;
}

.enter-link-register {
    color: var(--accent-color);
    background: var(--main-background-color);
    border: 2px solid var(--accent-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    display: block;
    width: fit-content;
    margin-top: 17px;
    padding: 12px 18px 11px;
}

.enter-link {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent-color);
}

.enter-link-register:hover {
    color: var(--secondary-text-color);
    background: var(--accent-color);
}

.product-groups {
    background-color: var(--accent-background-color);
    height: 100%;
}

.favorites {
    background-color: var(--accent-background-color);
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .favorites .container {
        padding: 0;
    }
}

.favorites .settings__view,
.product-groups .settings__view {
    justify-content: flex-end;
    margin-bottom: 30px;
    padding: 8px;
    box-shadow: 0 0 10px #0000001a;
    border-radius: 10px;
    background-color: var(--main-background-color);
}

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

.e-form__row--submit_account-confirm {
    display: flex;
}



.e-form__row--submit .button-loggout {
    color: var(--main-text-color);
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--main-background-color);
    transition: all 0.2s;
}

.e-form__row--submit .button-loggout:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.e-form__row--submit .button-loggout {
    width: fit-content;
    margin-left: 10px;
}

.feedback-form-wrapper {
    background-color: var(--accent-background-color);
}

.feedback-block {
    padding: 30px;
    margin: 0 auto;
    background-color: var(--main-background-color);
    margin-bottom: 30px;
    border-radius: 10px;
}

.forgotpass-wrapper {
    height: 100%;
    background-color: var(--accent-background-color);
}

.forgotpass-block {
    background-color: var(--main-background-color);
    margin: 32px 0 24px;
    padding: 40px;
    border-radius: 10px;
}

.forgotpass-wrapper .main-page-title {
    font-size: 24px;
}

.forgotpass-wrapper .title-section {
    padding: 20px 15px 0;
}
.forgotpass-block .auth-form-title {
    margin-bottom: 10px;
}

.block-wrapper {
    background-color: var(--accent-background-color);
}

.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: 1270px) {
    .enter__right-column,
    .enter__left-column {
        width: 50%;
    }
    .registration__form {
        width: 100%;
    }
}


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

@media (max-width: 768px) {
    .enter__container {
        flex-direction: column;
        padding: 0 20px 0;
    }
    .enter__right-column,
    .enter__left-column {
        width: 100%;

    }
    .feedback-block {
        padding: 0;
    }
    .enter__right-column {
        box-shadow: none;
        margin-top: 24px;
        padding: 25px 0 0;
        border-top: 1px solid var(--border-color);
    }
    .feedback-form-wrapper,
    .enter-wrapper {
        background: var(--main-background-color);
    }
    .enter__title {
        font-size: 22px;
    }
    .forgotpass-block,
    .registration {
        padding: 25px 20px 35px;
        margin-top: 0;
    }
    .block-wrapper,
    .product-groups,
    .registration-wrapper,
    .favorites,
    .forgotpass-wrapper {
        background: var(--main-background-color);
    }
}

@media (max-width: 518px) {
    .registration__submit {
        flex-direction: column;
    }
    .registration__submit button {
        margin-bottom: 10px;
    }
}

.ya-share2__container_mobile .ya-share2__badge {
    border-radius: 0 !important;
}

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

.e-form__row-info>div {
    margin-bottom: 7px;
}
.comments input[type=text],
.checkCapcha input {
    width: 100%;
    padding: 11px 14px 10px;
    font-size: 14px;
    background-color: var(--accent-background-color);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-top: 8px;
}

.checkCapcha img {
    margin-bottom: 10px;
}

.products-wrapper.brands {
    padding: 0 15px;
}

.ui-datepicker {
    background: #fff;
}

.ui-datepicker-title {
    color: var(--main-text-color);
  }