/* common */
@font-face {
    font-family: "Open Sans";
    src: url("fonts/OpenSans-Light.woff2") format("woff2"), url("fonts/OpenSans-Light.woff?v=1.101") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Open Sans";
    src: url("fonts/OpenSans-Regular.woff2") format("woff2"), url("fonts/Regular/OpenSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Open Sans";
    src: url("fonts/OpenSans-SemiBold.woff2") format("woff2"), url("fonts/OpenSans-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}
html, body {
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 10px;
    line-height: 160%;
    color: #414141;
    background-color: #fcfcfd;
}
@media (max-width: 767px) {
    html {
        background-color: #C80973;
    }
    body {
        /*background-color: #b8267d;*/
        background-color: #C80973;
        transition: 0.25s padding ease;
    }
}
.container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* form */

.btn {
    display: inline-block;
    padding: 0 20px;
    font-family: 'Open Sans';
    line-height: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    /*background: linear-gradient(92.26deg, #CC2178 19.85%, #AE2980 56.82%);*/
    background: linear-gradient(92.26deg, #E8308A 19.85%, #C80973 56.82%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    border-radius: 21px;
    border: none;
    transition: 1s background;
    box-sizing: border-box;
    user-select: none;
}
.btn:hover {
    /*background: linear-gradient(92.76deg, #CE2177 -104.65%, #AA2A81 100%);*/
    background: linear-gradient(92.76deg, #F850AA -104.65%, #C81983 100%);
    cursor: pointer;
}
.btn-bordered {
    position: relative;
}
.btn-bordered:before {
    content: '';
    position: absolute;
    background-color: #fff;
    left: 1px;
    top: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 21px;
    z-index: 0;
}
.btn-bordered:after {
    content: attr(data-text);
    color: #CC2178;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
}
.btn-bordered:hover:before {
    background-color: #f8f8f8;
}

.form {}
input[type="text"].form__input,
input[type="password"].form__input {
    width: 100%;
    height: 38px;
    margin: 0 0 20px 0;
    padding: 0 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #8C8C8C;
    line-height: 36px;
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    border-radius: 21px;
    box-sizing: border-box;
    outline: none;
}
input[type="text"].form__input:focus,
input[type="password"].form__input:focus {
    border-color: #CC2178;
}
input[type="text"].form__input.error {
    border-color: #f00;
    background-color: #fff8f8;
}
.form__textarea {
    width: 100%;
    height: auto;
    min-height: 100px;
    margin: 0 0 20px 0;
    padding: 0 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #8C8C8C;
    line-height: 36px;
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    border-radius: 21px;
    box-sizing: border-box;
    resize: vertical;
    outline: none;
}
.form__checkbox,
.form__radio {
    position: relative;
    margin-bottom: 20px;
    padding: 4px 0 0 34px;
    box-sizing: border-box;
}
.form__checkbox [type="checkbox"],
.form__radio [type="radio"] {
    display: none;
}
.form__checkbox [type="checkbox"] + label,
.form__radio [type="radio"] + label {
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    color: #535353;
    user-select: none;
}
.form__checkbox [type="checkbox"] + label:before,
.form__radio [type="radio"] + label:before {
    content: '';
    display: block;
    position: absolute;
    left: 2px;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 1px solid #bbb;
    border-radius: 4px;
    box-sizing: border-box;
}
.form__checkbox a {
    display: inline-block;
    color: #AE2980;
}
.form__checkbox [type="checkbox"]:checked + label:before,
.form__radio [type="radio"]:checked + label:before {
    background: linear-gradient(180deg, #CC2178 0%, #AE2980 100%);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.form__checkbox [type="checkbox"]:checked + label:after,
.form__radio [type="radio"]:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    left: 8px;
    top: 8px;
    width: 10px;
    height: 10px;
    background-image: url(/assets/images/ico-check.svg);
    background-repeat: no-repeat;
    box-sizing: border-box;
}
.form__select {
    position: relative;
    user-select: none;
}
.form__select.active .form-select__list {
    display: block;
}
.form-select__selected {
    width: 100%;
    height: 38px;
    margin: 0 0 20px 0;
    padding: 0 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #606060;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 36px;
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    border-radius: 21px;
    box-sizing: border-box;
    outline: none;
    z-index: 2;
    position: relative;
    cursor: pointer;
}
.form-select__selected:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    width: 6px;
    height: 6px;
    margin-top: -5px;
    border-right: 1px solid #606060;
    border-bottom: 1px solid #606060;
    transform: rotate(45deg);
}
.form-select__list {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 80%;
    max-height: 250px;
    padding: 0;
    overflow-y: auto;
    /*top: 25%;
    box-shadow: 0 4px 41px rgba(0,0,0,0.25);
    border-radius: 0 0 21px 21px;
    box-sizing: border-box;
    padding: 24px 0 0 0;*/
    border: 1px solid #DBDBDB;
    box-shadow: 0 4px 4px 0 #0000000D;
    border-radius: 21px;
}
.form-select__option {
    margin: 0 20px;
    padding: 13px 0;
    border-top: 1px solid #F1F1F1;
    font-size: 12px;
    font-weight: 400;
    color: #606060;
    cursor: pointer;
}
.form-select__option:first-child {
    border-top: none;
}

/* paginate */
.pagination-nav {
    padding-top: 40px;
    text-align: center;
}
.pagination-nav__item {
    width: 40px;
    margin: 4px;
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    text-align: center;
    color: #606060;
    font-size: 15px;
    font-weight: 700;
    line-height: 38px;
    text-decoration: none;
    box-sizing: border-box;
}
.pagination-nav__item.active {
    border: 1px solid #C81983;
    line-height: 36px;
}

/* footer */

.footer {
    position: relative;
    background-color: #1C1C1C;
    color: #949494;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    z-index: 9;
}
.footer .container {
    position: relative;
    padding-bottom: 20px;
}
.footer-contacts {
    position: relative;
    padding: 40px 0;
    background: center top url(/assets/images/footer_contacts_bg.jpg) no-repeat;
    background-size: cover;
    z-index: 9;
}
.footer-contacts:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(46,46,46,.69);
}
.footer-contacts__req {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 11px;
    line-height: 15px;
    color: #EFEFEF;
}
.footer-contacts__address {
    margin: 0 0 40px 0;
    padding-left: 40px;
    background: url(/assets/images/ico-map.svg) no-repeat;
}
.footer-contacts__phone {
    margin: 0 0 40px 0;
    padding-left: 40px;
    background: 3px top url(/assets/images/ico-phone.svg) no-repeat;
}
.footer-contacts__phone-tel {
    color: #EFEFEF;
    text-decoration: none;
}
.footer-contacts__email {
    padding-left: 40px;
    background: url(/assets/images/ico-email.svg) no-repeat;
}
.footer-contacts__form {
    position: relative;
}
.footer-contacts-form__title {
    margin-bottom: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
}
.footer-contacts-form__title span {
    font-weight: 300;
}
.footer-contacts-form__text {
    margin: 0 auto 20px auto;
    max-width: 200px;
    font-weight: 400;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
    color: #E9E9E9;
}
.footer-contacts-form__input {
    width: 100%;
    margin-bottom: 15px;
    padding: 0 0 0 15px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 40px;
    height: 40px;
    color: #FFFFFF;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    outline: none;
}
.footer-contacts-form__input::placeholder {
    color: #fff;
}
.footer-contacts-form__agree {
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 11px;
    line-height: 15px;
    font-weight: 500;
    color: #EBEBEB;
}
.footer-contacts-form__agree [type="checkbox"] {
    display: none;
}
.footer-contacts-form__agree [type="checkbox"] + label {
    position: relative;
    display: block;
    padding: 0 0 0 30px;
    cursor: pointer;
    user-select: none;
}
.footer-contacts-form__agree [type="checkbox"] + label:before {
    content: '';
    display: block;
    position: absolute;
    left: 2px;
    top: 3px;
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    border-radius: 2px;
    box-sizing: border-box;
    user-select: none;
}
.footer-contacts-form__agree [type="checkbox"]:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    box-sizing: border-box;
    user-select: none;
}
.footer-contacts-form__agree [type="checkbox"] + label a {
    color: #EBEBEB;
}
.footer-contacts-form__submit {
    width: 100%;
    margin-bottom: 40px;
    outline: none;
}
.go-top {
    position: absolute;
    top: -18px;
    right: 45px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /*background: linear-gradient(180deg, #CC2178 0%, #AE2980 100%);*/
    background: linear-gradient(180deg, #E8308A 0%, #C80973 100%);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.42);
    cursor: pointer;
    box-sizing: border-box;
    z-index: 100;
}
.go-top:before {
    content: '';
    display: block;
    position: absolute;
    left: 14px;
    top: 14px;
    width: 7px;
    height: 7px;
    border: 1px solid #fff;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}
.go-top:after {
    content: '';
    display: block;
    position: absolute;
    left: 15px;
    top: 19px;
    width: 5px;
    height: 5px;
    border: 1px solid #fff;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    z-index: 1;
}
.footer__copyright {
    width: 100%;
    padding: 24px 0 16px 0;
    text-align: right;
}
.footer__link {
    color: #949494;
    text-decoration: none;
}
.footer__disclaimer {
    margin-right: 100px;
}
@media (min-width: 640px) {
    .footer .container {
        padding-bottom: 50px;
    }
}
@media (min-width: 768px) {
    .footer {
        font-size: 13px;
        line-height: 17px;
    }
    .footer .container {
        max-width: 1230px;
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 20px;
    }
    .footer-contacts {
        background-image: url(/assets/images/footer_contacts_desktop_bg.jpg);
    }
    .footer-contacts .container {
        max-width: 1150px;
        padding-left: 50px;
        padding-right: 50px;
    }
    .footer-contacts__req {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        font-size: 14px;
        line-height: 19px;
    }
    .footer-contacts__address,
    .footer-contacts__phone,
    .footer-contacts__email {
        width: 32%;
        margin-bottom: 0;
        padding-left: 45px;
        box-sizing: border-box;
    }
    .footer-contacts__form {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }
    .footer-contacts-form__title {
        width: 100%;
        font-size: 30px;
        line-height: 41px;
    }
    .footer-contacts-form__text {
        width: 100%;
        margin-bottom: 50px;
        max-width: unset;
        font-size: 14px;
        line-height: 19px;
    }
    .footer-contacts-form__input {
        width: 21%;
        margin-right: 4%;
        font-size: 14px;
        order: 1;
    }
    .footer-contacts-form__agree {
        margin-bottom: 50px;
        font-size: 12px;
        line-height: 16px;
        order: 3;
    }
    .footer-contacts-form__submit {
        width: 20%;
        margin-bottom: 15px;
        font-size: 13px;
        order: 2;
    }
    .footer__disclaimer {
        margin-right: 300px;
    }
    .go-top {
        right: 95px;
    }
}
@media(min-width: 1024px) {
    .footer__disclaimer {
        margin-top: -35px;
    }
    .footer__disclaimer span {
        display: block;
    }
    .footer-contacts-form__agree {
        margin-bottom: 70px;
    }
    .footer-contacts-form__agree [type="checkbox"] + label:before {
        top: 1px;
    }
    .footer-contacts-form__agree [type="checkbox"]:checked + label:after {
        top: 4px;
    }
    .footer-contacts-form__input {
        margin-right: 6%;
    }
    .footer-contacts-form__submit {
        max-width: 170px;
    }
    .go-top {
        top: -22px;
        width: 44px;
        height: 44px;
    }
    .go-top:before {
        left: 17px;
        top: 17px;
        width: 9px;
        height: 9px;
    }
    .go-top:after {
        left: 18px;
        top: 23px;
        width: 7px;
        height: 7px;
    }
}

/* header */

.header-common {
    position: relative;
    padding: 10px 0;
    background-color: #fff;
    border-bottom: 1px solid #f1f1f1;
    z-index: 11;
}
.header-common .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    display: block;
    width: 120px;
    margin-left: 16px;
    text-decoration: none;
}
.header__logo img {
    display: block;
    width: 100%;
    height: auto;
}
.header__logo-title {
    display: block;
    margin-top: -5px;
    text-align: right;
    color: #A9A9A9;
    font-weight: 400;
    font-size: 7px;
    line-height: 9px;
}
.header__phone {
    display: none;
    margin-left: 3%;
    font-size: 13px;
    font-weight: 500;
}
.header__phone a {
    display: inline-block;
    margin: 3px 0 3px 0;
    color: #282828;
    text-decoration: none;
}
.header__phone-main {
    margin: 4px 10px 0 16px;
}
.header__call {
    display: none;
    margin-left: 1%;
    padding: 0 10px;
    line-height: 30px;
    height: 30px;
    box-shadow: none;
}
.header__search {
    display: none;
    position: relative;
    margin: 0 3%;
}
.header-search__input {
    position: relative;
    width: 100%;
    padding: 0 20px;
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 12px;
    line-height: 30px;
    height: 30px;
    color: #919191;
    border: 1px solid #D7D7D7;
    border-radius: 21px;
    background-color: #fff;
    box-sizing: border-box;
    outline: none;
    z-index: 2;
    transition: .15s background-position;
    background-position: 90% 6px;
}
.header-search__input.active {
    background-image: url(/assets/images/ico-zoom-color.svg);
    background-repeat: no-repeat;
    padding-left: 32px;
    background-size: 18px;
    background-position: 8px 6px;
}
.header-search__submit {
    position: absolute;
    top: 7px;
    right: 14px;
    width: 16px;
    height: 16px;
    background: left top url(/assets/images/ico-zoom.svg) no-repeat;
    background-size: contain;
    z-index: 2;
    cursor: pointer;
}
.header-search__submit.close {
    background: none;
}
.header-search__submit.close:before,
.header-search__submit.close:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    width: 16px;
    border-top: 1px solid #999;
    transform: rotate(45deg);
}
.header-search__submit.close:after {
    transform: rotate(-45deg);
}
.header-search__result {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 50%;
    box-shadow: 0 4px 41px rgba(0,0,0,0.25);
    border-radius: 0 0 21px 21px;
    box-sizing: border-box;
    padding: 24px 0 0 0;
}
.header-search__result.active {
    display: block;
}
.header-search__result-item:first-child {
    border-top: none;
}
.header-search__result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 16px;
    padding: 12px 0;
    border-top: 1px solid #F1F1F1;
    font-size: 13px;
    font-weight: 400;
    color: #606060;
    cursor: pointer;
    text-decoration: none;
}
.header-search__result-item span:first-child {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.header-search__result-item span:last-child {
    font-weight: 700;
}
.header-search__result-item.all-result {
    color: #AE2980;
}
@media (min-width: 1024px) {
    .header-search__result-item {
        margin: 0 20px;
    }
}
@media (min-width: 1200px) {
    .header-search__result-item {
        margin: 0 24px;
    }
}

.header__socials {
    margin-left: 0;
}
.header-social {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 3px 3px 0 3px;
    background-size: contain;
    box-sizing: border-box;
}
.header-social.ico-vk {
    background-image: url(/assets/images/ico-vk-color.svg);
}
.header-social.ico-ok {
    background-image: url(/assets/images/ico-ok-color.svg);
}
.header-social.ico-tg {
    background-image: url(/assets/images/ico-telegram-color.svg);
}
.header-social.ico-wt {
    background-image: url(/assets/images/ico-whatsapp-color.svg);
}
.header__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    list-style: none;
    margin: 4px 0 0 0;
    padding: 0;
}
.header__option {
    position: relative;
}
.header__option a {
    display: block;
    max-width: 16px;
    text-decoration: none;
}
.header__option img {
    width: 100%;
}
.label-option {
    position: absolute;
    top: -9px;
    right: -8px;
    padding: 0 5px;
    font-weight: 400;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
    color: #FFFFFF;
    /*background: #AE2980;*/
    background: #C80973;
    box-shadow: 0 2px 2px rgba(174, 41, 128, 0.51);
    border-radius: 8px;
}
.header__option .personal {
    display: block;
    width: 24px;
    height: 24px;
    max-width: unset;
    margin-top: -5px;
    text-align: center;
    color: #fff;
    line-height: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50%;
    /*background: linear-gradient(156.97deg, #AE2980 14.91%, #CC2178 97.76%);*/
    background: linear-gradient(156.97deg, #C80973 14.91%, #E8308A 97.76%);
    /*border: 2px solid #e4c9eA;*/
    border: 2px solid #FF9ED4;
    box-sizing: border-box;
}
.header-common__space {
    flex: 1;
}
.menu-toggle {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    position: absolute;
    top: 11px;
    left: 3px;
    width: 18px;
    height: 2px;
    background-color: #595959;
}
.menu-toggle:before {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 3px;
    width: 18px;
    height: 2px;
    background-color: #595959;
}
.menu-toggle:after {
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    left: 3px;
    width: 18px;
    height: 2px;
    background-color: #595959;
}
.header-services {
    box-shadow: 0 4px 11px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    z-index: 9;
}
.header-services .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    list-style: none;
    height: 50px;
    padding-top: 0;
    padding-bottom: 0;
}
.header-service {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 30px;
    min-height: 22px;
    background-position: center center;
    box-sizing: border-box;
}
.header-service__title {
    display: none;
    font-weight: 400;
    line-height: 12px;
    color: #747474;
    box-sizing: border-box;
}
.header-service__tooltip {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: -17px;
    width: 230px;
    margin-top: 7px;
    padding: 20px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #2B2B2B;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 4px 11px rgba(0, 0, 0, .25);
    background-color: rgba(255,255,255,.8);
    border-radius: 9px;
    z-index: 2;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity .25s;
}
.header-service__tooltip:before {
    content: '';
    display: block;
    border: 15px solid transparent;
    border-bottom: 15px solid rgba(255,255,255,.8);
    width: 1px;
    position: absolute;
    top: -30px;
    left: 15px;
    backdrop-filter: blur(2px);
}
.header-service__tooltip:after {
    content: '';
    display: block;
    position: absolute;
    top: -11px;
    left: 20px;
    width: 20px;
    height: 20px;
    border-left: 1px solid rgba(0,0,0,.15);
    border-top: 1px solid rgba(0,0,0,.15);
    transform: rotate(45deg);
    z-index: 1;
}
.header-service.ico-photo .header-service__tooltip {
    left: unset;
    right: 40px;
}
.header-service.ico-photo .header-service__tooltip:before {
    left: unset;
    right: 17px;
}
.header-service.ico-photo .header-service__tooltip:after {
    left: unset;
    right: 22px;
}
.ico-auto {
    background-image: url(/assets/images/ico-auto.svg);
    background-repeat: no-repeat;
}
.ico-postcard {
    background-image: url(/assets/images/ico-postcard.svg);
    background-repeat: no-repeat;
}
.ico-bouquet {
    background-image: url(/assets/images/ico-bouquet.svg);
    background-repeat: no-repeat;
}
.ico-diploma {
    background-image: url(/assets/images/ico-diploma.svg);
    background-repeat: no-repeat;
}
.ico-photo {
    background-image: url(/assets/images/ico-photo.svg);
    background-repeat: no-repeat;
}
@media (min-width: 768px) {
    .header__logo {
        margin-left: 0;
    }
    .header__phone {
        display: block;
    }
    .header__phone-main {
        display: none;
    }
    .header__call {
        display: block;
    }
    .header__search {
        display: block;
        flex: 1
    }
    .header__socials {
        display: flex;
        justify-content: space-between;
        margin-left: 1%;
    }
    .header-common__space {
        display: none;
    }
    .header-services {
        background-color: #fcfcfd;
    }
    .header-service {
        position: relative;
        width: 20%;
        padding-left: 35px;
        padding-right: 10px;
        background-position: left center;
        cursor: pointer;
    }
    .header-service.ico-auto {
        width: 21%;
    }
    .header-service.ico-photo {
        width: 18%;
        padding-right: 0;
    }
    .header-service__title:hover + .header-service__title {
        color: #AE2980;
    }
    .header-service__title {
        display: block;
    }
    .header-service__title:hover + .header-service__tooltip {
        visibility: visible;
        opacity: 1;
    }
}
@media (min-width: 1024px) {
    .header-service.ico-auto {
        width: 23%;
    }
    .header-service.ico-bouquet {
        width: 22%;
    }
    .header-service.ico-diploma {
        width: 19%;
    }
    .header-service.ico-photo {
        width: 16%;
        padding-right: 0;
    }
    .header-service__tooltip {
        left: -15px;
        font-size: 13px;
        line-height: 18px;
    }
    .header-service.ico-photo .header-service__tooltip {
        right: -40px;
    }
    .header-service.ico-photo .header-service__tooltip:before {
        left: 40px;
        right: unset;
    }
    .header-service.ico-photo .header-service__tooltip:after {
        left: 45px;
        right: unset;
    }
}
@media (min-width: 1200px) {
    .header-service__tooltip {
        left: -10px;
    }
    .header-service.ico-photo .header-service__tooltip {
        left: -10px;
        right: unset;
    }
    .header-service.ico-photo .header-service__tooltip:before {
        left: 18px;
        right: unset;
    }
    .header-service.ico-photo .header-service__tooltip:after {
        left: 23px;
        right: unset;
    }
}

/* common menu */

body.mobile-menu-open {
    overflow: hidden;
    padding-top: 20px;
    padding-left: 260px;
}
body.mobile-filter-open {
    overflow: hidden;
}
body.mobile-menu-open .menu-toggle:before,
body.mobile-menu-open .menu-toggle:after {
    display: none;
}
body.mobile-menu-open .menu-toggle span {
    position: relative;
    transform: rotate(45deg);
}
body.mobile-menu-open .menu-toggle span:before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background-color: #595959;
    transform: rotate(-90deg);
}
body.mobile-menu-open .header-common {
    border-top-left-radius: 27px;
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    padding: 40px 20px 30px 20px;
    opacity: 0;
    z-index: 0;
    box-sizing: border-box;
    transition: 0.75s opacity;
}
body.mobile-menu-open .mobile-menu {
    opacity: 1;
}
.mobile-menu__phone {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}
.mobile-menu__phone a {
    display: inline-block;
    margin: 0 0 8px 0;
    color: #fff;
    text-decoration: none;
}
.mobile-menu__request-call-button {
    margin: 12px 0 10px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
    border: none;
    border-radius: 21px;
    font-weight: 400;
    font-size: 11px;
    line-height: 40px;
    text-align: center;
    color: #AE2980;
    cursor: pointer;
}
.mobile-menu__search {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 21px;
    overflow: hidden;
}
.mobile-menu-search__input {
    padding: 0 40px 0 20px;
    font-family: 'Open Sans';
    line-height: 40px;
    font-weight: 400;
    font-size: 11px;
    color: #919191;
    border: none;
    background: transparent;
    box-sizing: border-box;
    outline: none;
}
.mobile-menu-search__button {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 25px;
    height: 25px;
    background-image: url(/assets/images/ico-zoom.svg);
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    border: none;
    background-color: transparent;
}
.mobile-menu__items {
    flex: 1;
    position: relative;
    margin: 15px -20px;
}
.mobile-menu__items::-webkit-scrollbar-thumb {
    background: #fff;
}
.mobile-menu__items:before,
.mobile-menu__items:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    /*background: linear-gradient(180deg, rgba(184,38,125,1) 0%, rgba(255,255,255,0) 100%);*/
    background: linear-gradient(180deg, rgba(200,9,115,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}
.mobile-menu__items:after {
    bottom: 0;
    top: unset;
    /*background: linear-gradient(0deg, rgba(184,38,125,1) 0%, rgba(255,255,255,0) 100%);*/
    background: linear-gradient(0deg, rgba(200,9,115,1) 0%, rgba(255,255,255,0) 100%);
}
.mobile-menu__menu {
    list-style: none;
    margin: 0;
    padding: 15px 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: scroll;
}
.mobile-menu__group,
.mobile-menu__item {
    padding: 10px 0 10px 40px;
    font-weight: 300;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #fff;
}
.mobile-menu__item {
    padding: 6px 6px 6px 40px;
    font-weight: 300;
    font-size: 11px;
    line-height: 17px;
}
.mobile-menu__item a {
    color: #fff;
    text-decoration: none;
}
.mobile-menu__group {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    transition: background-color .25s;
}
.mobile-menu__group:before {
    content: '';
    display: block;
    position: absolute;
    left: 25px;
    top: 13px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}
.mobile-menu__group.active {
    background: rgba(255, 255, 255, 0.12);
}
.mobile-menu__group.active:before {
    top: 12px;
    transform: rotate(135deg);
}
.mobile-menu__group.active .mobile-menu__subgroup {
    max-height: 620px;
}
.mobile-menu__group-title {
    display: inline-block;
    padding: 10px 20px 10px 0;
}
.mobile-menu__subgroup {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .70s;
}
.mobile-menu__subgroup .mobile-menu__item {
    padding-left: 0;
}
.mobile-menu__subgroup .mobile-menu__item:last-child {
    padding-bottom: 20px;
}
.mobile-menu__item {}
.mobile-menu__socials {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-menu__social {
    display: block;
    text-underline: none;
    width: 35px;
    height: 35px;
}
.mobile-menu__social.ico-vk {
    background: center center url(/assets/images/ico-vk.svg) no-repeat;
}
.header__menu {
    display: none;
    position: relative;
    /*box-shadow: 0 4px 11px rgba(0, 0, 0, 0.06);*/
    background-color: #fff;
    z-index: 10;
}
.header__menu:after {
    content: '';
    display: block;
    left: 0;
    right: 0;
    box-shadow: 0 6px 11px rgb(0 0 0 / 6%);
    position: absolute;
    z-index: 1;
    height: 10px;
    background-color: transparent;
    bottom: 0;
}
.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    font-size: 11px;
    background-color: #fff;
}
.main-menu__group,
.main-menu__item a {
    display: block;
    line-height: 40px;
    height: 40px;
    font-weight: 500;
    color: #2f2f2f;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}
.main-menu__group {
    position: relative;
    padding-right: 10px;
    user-select: none;
}
.main-menu__group:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 4px;
    height: 4px;
    margin-top: -3px;
    border-right: 1px solid #2f2f2f;
    border-bottom: 1px solid #2f2f2f;
    transform: rotate(45deg);
}
.main-menu__group.active {
    color: #AE2980;
}
.main-menu__group.active:before {
    margin-top: -2px;
    transform: rotate(-45deg);
    border-right: 1px solid #AE2980;
    border-bottom: 1px solid #AE2980;
}
.main-menu__group.active .main-menu__submenu {
    animation: submenu-show .25s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}
.main-menu__group.hide .main-menu__submenu {
    animation: submenu-hide .25s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}
.main-menu__submenu {
    width: 0;
    overflow: hidden;
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 15px 0 20px 0;
    background-color: #fff;
    box-shadow: 0 4px 41px rgba(0, 0, 0, .25);
    border-radius: 0 0 9px 9px;
    z-index: -1;
    cursor: default;
}
@keyframes submenu-show {
    0%    { opacity: 0; width: auto; }
    100%  {
        opacity: 1; width: auto;
    }
}
@keyframes submenu-hide {
    0%    { opacity: 1; width: auto; }
    100%  {
        opacity: 0; width: 0;
    }
}
@keyframes submenu-show-2 {
    0%    { opacity: 0; width: 450px; }
    100%  {
        opacity: 1; width: 450px;
    }
}
@keyframes submenu-show-3 {
    0%    { opacity: 0; width: 300px; }
    100%  {
        opacity: 1; width: 300px;
    }
}
@keyframes submenu-show-4 {
    0%    { opacity: 0; width: 380px; }
    100%  {
        opacity: 1; width: 380px;
    }
}
@keyframes submenu-show-5 {
    0%    { opacity: 0; width: 250px; }
    100%  {
        opacity: 1; width: 250px;
    }
}
@keyframes submenu-show-6 {
    0%    { opacity: 0; width: 270px; }
    100%  {
        opacity: 1; width: 270px;
    }
}
/*@keyframes submenu-show-7 {
    0%    { opacity: 0; width: 250px; }
    100%  {
        opacity: 1; width: 250px;
    }
}*/
.main-submenu__title,
.main-submenu__item {
    padding: 0 20px 0 30px;
    font-size: 11px;
    line-height: 11px;
    text-transform: none;
    color: #515151;
    text-decoration: none;
}
.main-submenu__title {
    padding-left: 20px;
    line-height: 24px;
    font-weight: 700;
    white-space: nowrap;
}
.main-submenu__item a,
.main-submenu__title a {
    line-height: 21px;
    color: #515151;
    text-decoration: none;
}
.main-submenu__item {
    white-space: nowrap;
}
.main-submenu__item a:hover {
    color: #AE2980;
    /*background-color: #f0f0f0;*/
}
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    .mobile-menu {
        display: none;
    }
    .header__menu {
        display: block;
    }
    .header-socials {
        margin-right: 0;
    }
    .header-social {
        margin: 1px 3px 0 3px;
    }
    .main-menu__group.active .main-menu__submenu.col-2 {
        animation: submenu-show-4 .25s;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }
    .main-menu__group.active .main-menu__submenu.from.col-2 {
        animation: submenu-show-5 .25s;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }
    .main-menu__group.active .main-menu__submenu.flowers.col-2 {
        animation: submenu-show-6 .25s;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }
    .main-menu__submenu.col-2 {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        box-sizing: border-box;
    }
    .main-menu__submenu.from.col-2 {
        right: -20px;
    }
    .main-menu__submenu.reason.col-2 {
        right: -20px;
    }
    .col-2 .main-submenu__title {
        width: 100%;
    }
    .main-submenu__title,
    .main-submenu__item {
        padding: 0 20px 0 20px;
    }
    .col-2 .main-submenu__item {
        display: block;
        box-sizing: border-box;
        width: 180px;
        padding-right: 5px;
        white-space: normal;
    }
    .flowers.col-2 .main-submenu__item {
        width: 130px;
    }
    .from.col-2 .main-submenu__item {
        width: 120px;
    }
}
@media(min-width: 1024px) {
    .header-common .container,
    .header__menu .container,
    .header-services .container,
    .page-header .container,
    .filter-sort-container .container,
    .content .container,
    .index-article-section .container,
    .reviews-section .container,
    .article-section .container,
    .catalog-sections .container,
    .catalog-section .container,
    .catalog-product .container,
    .cart-section .container,
    .order-section .container,
    .personal-section .container,
    .search-section .container,
    .order-complete-section .container {
        padding: 0 55px;
    }
    .header__phone {
        margin-left: 5%;
    }
    .header__call {
        margin-left: 2%;
        padding: 0 20px;
    }
    .header__search {
        margin: 0 5%;
    }
    .header__socials {
        margin-left: 2%;
    }
    .header-services .container {
        height: 70px;
    }
    .header-service {
        min-height: 45px;
        padding-left: 45px;
        padding-right: 15px;
        background-size: 15%;
    }
    .header-service__title {
        font-size: 12px;
        line-height: 15px;
    }
    .main-menu__group,
    .main-menu__item a {
        line-height: 50px;
        height: 50px;
        font-size: 13px;
    }
    .main-menu__group {
        padding-right: 15px;
    }
    .main-menu__group.active .main-menu__submenu.col-2 {
        animation: submenu-show-2 .25s;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }
    .main-menu__group.active .main-menu__submenu.from.col-2 {
        animation: submenu-show-3 .25s;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }
    .main-menu__group.active .main-menu__submenu.flowers.col-2 {
        animation: submenu-show-4 .25s;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }
    .main-menu__submenu {
        padding: 20px 0 25px 0;
    }
    /*.main-menu__submenu.col-2 {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        box-sizing: border-box;
    }*/
    .main-menu__submenu.from.col-2 {
        right: -50px;
    }
    .main-menu__submenu.reason.col-2 {
        right: -50px;
    }
    .main-submenu__title,
    .main-submenu__item {
        padding: 4px 30px 4px 30px;
        font-size: 14px;
        font-weight: 400;
    }
    .main-submenu__title {
        padding-left: 30px;
        line-height: 30px;
        font-weight: 700;
    }
    .col-2 .main-submenu__item {
        /*display: block;
        box-sizing: border-box;*/
        width: 215px;
        /*padding-right: 5px;
        white-space: normal;*/
    }
    .flowers.col-2 .main-submenu__item {
        width: 165px;
    }
    .from.col-2 .main-submenu__item {
        width: 145px;
    }
}
@media(min-width: 1200px) {
    .header-common {
        padding: 20px 0;
    }
    .header__logo {
        width: 184px;
    }
    .header__logo-title {
        font-size: 10px;
        line-height: 10px;
        font-weight: 500;
        letter-spacing: .25px;
    }
    .header__phone {
        font-size: 14px;
    }
    .header__call {
        padding: 0 30px;
        font-size: 13px;
        height: 40px;
        line-height: 40px;
    }
    .header-search__input {
        height: 40px;
        padding: 0 30px;
        font-size: 13px;
        font-weight: 500;
        line-height: 40px;
    }
    .header-search__input.active {
        background-position: 12px 10px;
        padding-left: 42px;
    }
    .header-search__submit {
        top: 10px;
        right: 17px;
        width: 20px;
        height: 20px;
    }
    .header-social {
        width: 32px;
        height: 32px;
        margin: 0 8px;
    }
    .header__options {
        width: 100px;
    }
    .header__option a {
        max-width: unset;
    }
    .header__option .personal {
        width: 30px;
        height: 30px;
        line-height: 26px;
        font-size: 15px;
    }
    .header-services .container {
        justify-content: space-between;
        height: 90px;
    }
    .header-service {
        padding-left: 60px;
        padding-right: 20px;
        background-size: 40px;
    }
    .header-service__title {
        font-size: 13px;
        line-height: 15px;
    }
}

/* filter & sort */

.filter-sort-container {
    position: relative;
    background-color: #fff;
    z-index: 1;
}
.filter-sort-container .filter {
    padding: 20px 0 10px 0;
}
.filter-sort-container .filter__toggle {
    /*display: none;*/
    width: 100%;
    font-size: 13px;
    box-shadow: unset;
    cursor: pointer;
}
.filter-sort-container .filter__toggle .ico-filter {
    position: absolute;
    width: 13px;
    height: 13px;
    left: 50%;
    top: 14px;
    margin-left: -52px;
    background-image: url(/assets/images/ico-filter.svg);
    background-repeat: no-repeat;
}

.filter-sort-container .sort {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 20px 0;
    font-size: 13px;
    font-weight: 400;
    display: none;
}
.filter-sort-container .sort__title {
    padding-left: 20px;
    background-image: url(/assets/images/ico-sort.svg);
    background-repeat: no-repeat;
    background-position: 0 2px;
}
.filter-sort-container .sort__selected {}
.filter-sort-container .sort.active .sort__list {
    display: block;
}
.filter-sort-container .sort__list {
    display: none;
    position: absolute;
    overflow: hidden;
    width: 100%;
    right: 0;
    top: 100%;
    padding: 10px 0;
    background-color: #fff;
    z-index: -1;
    box-shadow: 0 4px 21px rgba(0, 0, 0, .15);
    border-radius: 0 0 9px 9px;
    box-sizing: border-box;
}
.filter-sort-container .sort__list:after {
    content: '';
    box-shadow: inset 0 5px 7px rgba(0, 0, 0, .05);
    display: block;
    position: absolute;
    z-index: 1;
    height: 20px;
    top: 0;
    left: -5px;
    right: -5px;
}
.filter-sort-container .sort__list-item {
    padding: 7px 20px;
}
.filter-sort-container .sort__list-item:hover {
    color: #AE2980;
}
.filter-sort-container .mobile-filter {
    display: none;
}
.filter-sort-container.mobile-filter-open {
    z-index: 100;
}
body.mobile-filter-open .filter-sort-container.mobile-filter-open .mobile-filter {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 55px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 101;
}
.mobile-filter__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    box-shadow: 0 8px 10px rgba(0,0,0,.075);
}
.mobile-filter__title {
    flex: 1;
    padding-left: 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: #CC2178;
    box-sizing: border-box;
}
.mobile-filter__title .ico-filter {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 13px;
    margin-right: 10px;
    background-image: url(/assets/images/ico-filter.svg);
    background-repeat: no-repeat;
}
.mobile-filter__close {
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 20px;
    cursor: pointer;
}
.mobile-filter__close:before {
    content: '';
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #999;
    transform: rotate(45deg);
    top: 11px;
}
.mobile-filter__close:after {
    content: '';
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #999;
    transform: rotate(-45deg);
    top: 11px;
}
.mobile-filter__options {
    overflow-x: hidden;
    overflow-y: auto;
}
.mobile-filter__options .filter__color-title {
    box-sizing: border-box;
    padding: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.mobile-filter__options .filter__color-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 0 20px;
}
.mobile-filter__options .filter__color {
    width: 24px;
    height: 24px;
    margin: 0 16px 16px 0;
    border: 1px solid #868686;
    border-radius: 50%;
    cursor: pointer;
    box-sizing: border-box;
}
.mobile-filter__options .filter__color.active {
    width: 30px;
    height: 30px;
    margin-top: -3px;
    background-size: contain !important;
}
@media (min-width: 768px) {
    .filter-sort-container {
        position: relative;
        z-index: 2;
        box-shadow: 0 4px 11px rgba(0, 0, 0, 0.06);
    }
    .filter-sort-container .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /*padding-top: 20px;
        padding-bottom: 20px;*/
    }
    .filter-sort-container .sort {
        display: flex;
    }
    .filter-sort-container .filter__toggle,
    .filter-sort-container .sort__selected {
        display: none;
    }
    .filter-sort-container .sort,
    .filter-sort-container .filter {
        padding: 0;
    }
    .filter-sort-container .sort {
        width: 120px;
        height: 64px;
        background-color: #fff;
        cursor: pointer;
        user-select: none;
    }
    .filter-sort-container .filter {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex: 1;
        padding-right: 50px;
        box-sizing: border-box;
    }
    .filter-sort-container .filter__price {
    }
    .filter-sort-container .sort__title {
        position: relative;
        padding-right: 15px;
    }
    .filter-sort-container .sort__title:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        width: 5px;
        height: 5px;
        margin-top: -3px;
        border-right: 1px solid #2f2f2f;
        border-bottom: 1px solid #2f2f2f;
        transform: rotate(45deg);
    }
    .filter__color-list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 400px;
    }
    .filter__color {
        width: 24px;
        height: 24px;
        border: 1px solid #868686;
        border-radius: 50%;
        cursor: pointer;
        box-sizing: border-box;
    }
    .filter__color.active {
        /*box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
        border-color: transparent;*/
        width: 30px;
        height: 30px;
        margin: -3px;
        background-size: contain !important;
    }
    /*.filter__color:nth-child(1) {
        background-color: #67A156;
    }
    .filter__color:nth-child(2) {
        background-color: #DE4B3F;
    }
    .filter__color:nth-child(3) {
        background-color: #FDA8D2;
    }
    .filter__color:nth-child(4) {
        background-color: #FFD7BA;
    }
    .filter__color:nth-child(5) {
        background-color: #F8CD46;
    }
    .filter__color:nth-child(6) {
        background-color: #F29D39;
    }
    .filter__color:nth-child(7) {
        background-color: #2668C9;
    }
    .filter__color:nth-child(8) {
        background-color: #B132AD;
    }
    .filter__color:nth-child(9) {
        background-color: #E31C81;
    }
    .filter__color:nth-child(10) {
        background-color: #000000;
    }
    .filter__color:nth-child(11) {
        background-color: #FFFFFF;
    }*/
}

/* article */

.articles-section {
    position: relative;
    padding: 0 0 30px 0;
    background-color: #fcfcfd;
    z-index: 1;
}
.articles-list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -3%;
}
.article {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    width: 44%;
    margin: 3% 3% 6% 3%;
    box-sizing: border-box;
}
.article picture {
    display: block;
    width: 100%;
    max-height: 290px;
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
}
.article picture img {
    display: block;
    width: 100%;
    height: auto;
}
.article__title {
    flex: 1;
    display: inline-block;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    color: #606060;
    text-decoration: none;
}
.article-detail.content {
    overflow: auto;
}
.article-detail.content h2 {
    margin: 0;
    padding-top: 30px;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    color: #5B5B5B;
    clear: both;
}
.article-detail.content h3 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 15px;
    line-height: 17px;
    color: #5B5B5B;
}
.article-detail.content ul, .article-detail.content ol {
    list-style: none inside disc;
    margin: 10px 0 20px 0;
}
.article-detail.content li {
    margin: 0 0 0 20px;
    padding: 6px 0;
}
.article-detail.content picture img {
    width: 100%;
    height: auto;
}
.article-detail.content picture.left {
    display: block;
    max-width: 100%;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}
@media (min-width: 640px) {
    .articles-list {
        margin: -2%;
    }
    .article {
        width: 29.3%;
        margin: 2% 2% 4% 2%;
        box-sizing: border-box;
    }
    .article-detail.content h2 {
        clear: none;
    }
}
@media (min-width: 768px) {
    .article-detail.content picture.left {
        display: inline-block;
        float: left;
    }
    .articles-section {
        padding-top: 30px;
    }
    .articles-list {
        margin: -1.5%;
    }
    .article {
        width: 30%;
        margin: 1.5% 1.5% 3% 1.5%;
        box-sizing: border-box;
    }
    .article-detail.content picture.left {
        max-width: 350px;
        margin: 30px 30px 30px 0;
    }
    .article-detail.content h2 {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .article-detail.content h3 {
        padding-top: 30px;
        padding-bottom: 20px;
    }
}
@media (min-width: 1024px) {
    .articles-list {
        margin: -1%;
    }
    .article {
        width: 31%;
        margin: 1% 1% 3% 1%;
        box-sizing: border-box;
    }
    .article-detail.content h2 {
        color: #3B3B3B;
        font-weight: 500;
        font-size: 17px;
    }
    .article-detail.content h3 {
        color: #3B3B3B;
        font-weight: 600;
        font-size: 14px;
    }
}
@media (min-width: 1200px) {
    .articles-section {
        padding: 50px 0;
    }
    .articles-list {
        margin: 0 -1.25% 0 -.75%;
    }
    .article {
        width: 31%;
        margin: 1% 1% 3% 1%;
        box-sizing: border-box;
    }
    .article__title {
        padding: 20px 0;
        font-size: 17px;
        line-height: 21px;
    }
    .article-detail.content h2 {
        font-size: 20px;
    }
    .article-detail.content h3 {
        font-size: 16px;
    }
    .article-detail.content picture.left {
        max-width: 500px;
        margin: 30px 30px 30px 0;
    }
}

/* reviews */
.reviews-section {
    position: relative;
    padding: 40px 0 30px 0;
    background-color: #fcfcfd;
    z-index: 1;
}
.reviews-section__list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -3%;
}
.reviews-section__item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    margin: 3% 3% 12% 3%;
    box-sizing: border-box;
}
.review__picture {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-color: #f0f0f0;
    border-radius: 50%;
    overflow: hidden;
}
.review__picture picture {
    display: block;
    width: 100%;
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
}
.review__picture picture img {
    display: block;
    width: 100%;
    height: auto;
}
.review__product-name {
    width: 100%;
    padding: 20px 0 10px 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
    color: #606060;
    text-decoration: none;
}
.review__product-link {
    color: #606060;
    text-decoration: none;
}
.review__person-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    width: 100%;
    padding: 5px 0 10px 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #606060;
}
.review__add-date {
    width: 100%;
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
    text-align: center;
    font-style: italic;
    color: #aaa;
}
.review__text {
    width: 100%;
    flex: 1;
    padding: 10px 10% 10px 10%;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #606060;
    text-align: center;
    box-sizing: border-box;
}
.review__score {
    width: 0;
    height: 10px;
    margin: 5px auto 10px auto;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAgCAYAAAB3j6rJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAxhJREFUeNpi+P//PwO5+POlpzzntdv+305a+p8Sc0CYiYEC8Kh04+ef994yvF1+juHN2ovTKTGLbIe823E97fOhu3D+k5qtGQPiEKDFM5H5Px++Y3g+4+gDujrk1aLTR79fe4Eh/rxjt/zvzz/o45DfX38xPG3aYYVV7tUXhhcTDv6ni0NezTz6/dezjzjlX0w8yPDj+SdGmjrk14dvDM8793LgU/Pv2y9QFP2jqUOedez5/5eINPB63kmGb/feMJNiNiOoMMEHfr74xPjl5MO6T/tuNbyafZxog9nkBBnEM22+cJvKmfNbKV4jySGgFP/1zGOHr2cf7/565hELkGb49fQjA6WAkZWZgVNbgoHbWJaB20TuGJB259GR/IKi5t2uG5FvV51bBnQAw4+brxjoBZi42Rm4DaUZeCwUGMSzbZkYTwlX/gclsIEEkuUuDEzS9R7vBtIRLMLcDCJxpixMUrl2wiAXDQRg5uNg0NiZycWlKPwXnH3l6j0YxdKt6OoIUBpR35Imw60l8R2lHFHsD2IUjjSijyM4WBjUN6eq8JrIPcVaoKnMjWIU8NGmqSMYWZgYVFYl+vFZKNzFW7Kqr0pk5HfXoI0jmJkYlBfHNgi6qG8mqmT98/03wy2/2f8/H71HRVcwMijNj1oiGmYYS1IR//vTD4ZLmm3//7z/RhV3iOfZMSh0+DGSXOmxArMWqL6gFuBQFT1Pdu0Lav5RC/x68M6QLIf8AkbJ3w/fqeaQnw/fk9ce+Xn/rSg1cwzQPDId8uBdGVUdQiCa8Tkkh5oO+fPmK7jhTXoaefiOgxgLeMzlGdgVhIgLlXtveEh2yA88cQoqIUH1ku7Fcg7t/bmMBteqGEGFFaeWBH6HPHiXSnqIPHiPtcknEm/GoHu5ggVUL3Gpiv6EyYmGG8XqnSlhVF4a18OlL43LITWkh8id1yh80QRzBt1L5czK08MYORWE/uLSJxKoV6p7vJBRZVVCEbeRDKrnHr/HHYe4hgkumfX8P8FZ/P9ewdr/359+YCR3uAHUJr7iOBls1osFJ4/iUgcQYABm4uDwsrJFtgAAAABJRU5ErkJggg==);
    background-repeat: repeat-x;
    background-size: contain;
}
@media (min-width: 640px) {
    .reviews-section__list {
        margin: -2%;
    }
    .reviews-section__item {
        width: 44%;
        margin: 2% 2% 8% 2%;
        box-sizing: border-box;
    }
    .review__text {
        padding: 10px 5% 10px 5%;
    }
}
@media (min-width: 768px) {
    /*.reviews-section {
        padding-top: 30px;
    }*/
    .reviews-section__list {
        margin: -1.5%;
    }
    .reviews-section__item {
        width: 30%;
        margin: 1.5% 1.5% 6% 1.5%;
        box-sizing: border-box;
    }
    .review__text {
        padding: 10px 10% 10px 10%;
    }
}
@media (min-width: 1024px) {
    .review__picture {
        width: 150px;
        height: 150px;
    }
    .review__add-date {
        font-size: 14px;
        line-height: 14px;
    }
    .review__text {
        font-size: 14px;
        line-height: 21px;
    }
    /*.reviews-section__list {
        margin: -1.5%;
    }
    .reviews-section__item {
        width: 30%;
        margin: 1.5% 1.5% 6% 1.5%;
        box-sizing: border-box;
    }*/
}
@media (min-width: 1200px) {
    .reviews-section {
        padding: 70px 0;
    }
    /*.reviews-section__list {
        margin: 0 -1.25% 0 -.75%;
    }*/
    /*.catalog-section__title {
        padding-bottom: 50px;
        font-size: 30px;
    }*/
    /*.reviews-section__item {
        width: 30%;
        margin: 1.5% 1.5% 5% 1.5%;
        box-sizing: border-box;
    }*/
    .review__picture {
        width: 180px;
        height: 180px;
    }
    .review__product-name {
        font-size: 15px;
    }
    .review__person-name {
        /*padding: 10px 0;*/
        font-size: 15px;
    }
}

/* catalog */
.catalog-sections {
    padding: 20px 0 30px 0;
    background-color: #fcfcfd;
}
.catalog-sections .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.catalog-sections__item {
    display: block;
    margin: 6px;
    padding: 10px 20px;
    border-radius: 21px;
    background-color: #f0f0f0;
    text-align: center;
    color: #606060;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
}
.catalog-section {
    position: relative;
    padding: 0 0 30px 0;
    background-color: #fcfcfd;
    z-index: 1;
}
.catalog-section__title {
    margin: 0;
    padding-top: 12px;
    padding-bottom: 30px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #2B2B2B;
}
.catalog-section__list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -3%;
}
.catalog-section__item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    width: 44%;
    margin: 3% 3% 6% 3%;
    box-sizing: border-box;
}
.catalog-section__item picture {
    display: block;
    width: 100%;
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
}
.catalog-section__item picture img {
    display: block;
    width: 100%;
    height: auto;
}
.catalog-section-item__title {
    flex: 1;
    padding: 5px 0;
    font-weight: 500;
    font-size: 11px;
    line-height: 15px;
    color: #606060;
    text-decoration: none;
}
.catalog-section-item__price {
    white-space: nowrap;
    color: #303030;
}
.catalog-section-item__price .discount {
    display: inline-block;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: line-through;
}
.catalog-section-item__price .price {
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
}
.catalog-section-item__price .discount + .price {
    color: #CE1261;
}
.catalog-section-item__action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 8px;
}
.catalog-section-item__action .one-click-btn {
    flex: 1;
    margin-right: 10px;
    padding: 0;
    font-weight: 400;
    font-size: 10px;
    line-height: 26px;
    text-align: center;
    /*color: #CC2178;
    border: 1px solid #CC2178;*/
    background-color: #fff;
    color: #C80973;
    border: 1px solid #C80973;
    border-radius: 21px;
    cursor: pointer;
    box-sizing: border-box;
    user-select: none;
}
.catalog-section-item__action .buy-btn {
    position: relative;
    width: 26px;
    height: 26px;
    /*background: linear-gradient(139.94deg, #CC2178 -0.93%, #AE2980 106.54%);*/
    background: linear-gradient(139.94deg, #E8308A -0.93%, #C80973 106.54%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
}
.catalog-section-item__action .buy-btn:before {
    content: '';
    display: block;
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 7px;
    top: 6px;
    background: center center url(/assets/images/ico-cart-white.svg) no-repeat;
    background-size: contain;
}
.favorite-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 29px;
    height: 29px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background-image: url(/assets/images/ico-favorite-2.svg);
    background-repeat: no-repeat;
    background-position: 5px 7px;
    cursor: pointer;
    user-select: none;
}
.favorite-btn:hover {
    background-image: url(/assets/images/ico-favorite-3.svg);
}
.favorite-btn--remove,
.favorite-btn--remove:hover {
    background-image: none;
}
.favorite-btn--remove:before,
.favorite-btn--remove:after {
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    top: 50%;
    left: 50%;
    margin: 0 0 0 -10px;
    border-top: 1px solid #CC2178;
    transform: rotate(45deg);
}
.favorite-btn--remove:after {
    transform: rotate(-45deg);
}
.catalog-section-item__labels {
    position: absolute;
    font-size: 10px;
    left: -7px;
    top: 10px;
}
.catalog-section-item__labels .label__action,
.catalog-section-item__labels .label__hit,
.catalog-section-item__labels .label__new {
    margin-bottom: 8px;
    padding: 2px 10px;
    background-color: #E45D4F;
    color: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    border-radius: 0 5px 5px 0;
    box-sizing: border-box;
}
.catalog-section-item__labels .label__hit {
    background-color: #8752DE;
}
.catalog-section-item__labels .label__new {
    /*background-color: #CC2474;*/
    background-color: #E8308A;
}
@media (min-width: 640px) {
    .catalog-section__list {
        margin: -2%;
    }
    .catalog-section__item {
        width: 29.3%;
        margin: 2% 2% 4% 2%;
        box-sizing: border-box;
    }
}
@media (min-width: 768px) {
    .catalog-sections {
        padding: 30px 0 0 0;
    }
    .catalog-section {
        padding-top: 30px;
    }
    .catalog-section__list {
        margin: -1.5%;
    }
    .catalog-section__item {
        width: 22%;
        margin: 1.5% 1.5% 3% 1.5%;
        box-sizing: border-box;
    }
    .catalog-section-item__action .one-click-btn {
        padding: 0;
        font-size: 11px;
    }
}
@media (min-width: 1024px) {
    .catalog-sections {
        padding: 30px 0 0 0;
    }
    .catalog-sections__item {
        font-size: 14px;
    }
    .catalog-section__list {
        margin: -1%;
    }
    .catalog-section__title {
        padding-bottom: 40px;
        font-size: 24px;
    }
    .catalog-section__item {
        width: 14.6%;
        margin: 1% 1% 3% 1%;
        box-sizing: border-box;
    }
}
@media (min-width: 1200px) {
    .catalog-sections {
        padding: 40px 0 0 0;
    }
    .catalog-section {
        padding: 50px 0;
    }
    .catalog-section__list {
        margin: 0 -1.25% 0 -.75%;
    }
    .catalog-section__title {
        padding-bottom: 50px;
        font-size: 30px;
    }
    .catalog-section__item {
        width: 14.6%;
        margin: 1% 1% 3% 1%;
        box-sizing: border-box;
    }
    .catalog-section-item__title {
        padding: 10px 0;
        font-size: 14px;
    }
    .catalog-section-item__action {
        margin-top: 12px;
    }
    .catalog-section-item__action .one-click-btn {
        height: 38px;
        font-size: 13px;
        line-height: 36px;
    }
    .catalog-section-item__action .buy-btn {
        width: 38px;
        height: 38px;
    }
    .catalog-section-item__action .buy-btn:before {
        left: 10px;
        right: 10px;
        bottom: 10px;
        top: 9px;
    }
    .favorite-btn {
        top: 12px;
        right: 12px;
        width: 37px;
        height: 37px;
        background-position: 9px 11px;
    }
}

/* product-detail */
.catalog-product {
    position: relative;
    padding: 30px 0;
    background-color: #fcfcfd;
}
.catalog-product + .catalog-product {
    padding-top: 1px;
}
.catalog-product .container {}
.catalog-product__container {
    display: flex;
    justify-content: flex-start;
    align-items: self-start;
    flex-wrap: wrap;
}
.catalog-product__images {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}
.catalog-product__image {
    width: 100%; /* 77% */
    padding-right: 3%;
    box-sizing: border-box;
    border-radius: 8px;
}
.catalog-product__image picture {
    display: block;
    width: 100%;
    height: auto;
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
}
.catalog-product__image img {
    display: block;
    width: 100%;
    height: auto;
}
.catalog-product__preview {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    width: 23%;
    box-sizing: border-box;
}
.catalog-product__preview-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24%;
    padding: 5px;
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
}
.catalog-product__preview-item.empty {
    padding: 0;
}
.catalog-product__preview img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}
.catalog-product__preview-item {}
.catalog-product__info {
    flex: 1;
    padding: 30px 0 0 0;
}
.catalog-product__text {
    padding-bottom: 20px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #414141;
}
.catalog-product__params {
    border-bottom: 1px solid #F1F1F1;
}
.catalog-product__param {
    padding-bottom: 20px;
}
.catalog-product__param .title {
    padding-bottom: 5px;
    font-weight: 700;
    font-size: 11px;
    line-height: 11px;
    text-transform: uppercase;
    color: #57596D;
}
.catalog-product__param .value {
    font-size: 12px;
    line-height: 18px;
    color: #414141;
    font-weight: 400;
}
.catalog-product__param .value + .value {
    margin-top: 10px;
}
.catalog-product__components .qty {
    font-size: 12px;
    color: #989898;
}
.catalog-product__delivery {
    padding-top: 20px;
    border-bottom: 1px solid #F1F1F1;
}
.catalog-product__delivery-param {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 20px;
}
.catalog-product__delivery-param .title {
    width: 50%;
    padding-right: 20px;
    font-weight: 700;
    font-size: 11px;
    line-height: 18px;
    text-transform: uppercase;
    color: #57596D;
    box-sizing: border-box;
}
.catalog-product__delivery-param .value {
    width: 50%;
    font-size: 12px;
    line-height: 18px;
    color: #414141;
    font-weight: 400;
}
.catalog-product__price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    padding: 30px 0 30px 0;
}
.catalog-product__price .title {
    padding-right: 20px;
    font-weight: 700;
    font-size: 11px;
    line-height: 18px;
    text-transform: uppercase;
    color: #57596D;
}
.catalog-product__price .value {
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-transform: uppercase;
    color: #3D3D3D;
}
.catalog-product__price .discount {
    text-align: center;
    /*font-size: 17px;*/
    font-weight: 500;
    color: #989898;
    text-decoration: line-through;
}
.catalog-product__action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.catalog-product__action .one-click-btn {
    order: 1;
    width: 150px;
    margin-right: 10px;
    padding: 0;
    display: inline-block;
    vertical-align: top;
}
.catalog-product__action .buy-btn {
    order: 2;
    position: relative;
    width: 150px;
    padding: 0;
    display: inline-block;
    vertical-align: top;
}
.catalog-product__delivery {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 20px 0 0 0;
    padding: 10px 26px 10px 17px;
    border-radius: 10px;
    border: 1px solid #E12785;
    background: #FFF4FB;
}
.catalog-product__delivery-icon {
    margin-right: 14px;
}
.catalog-product__delivery-info {}
.catalog-product__delivery-title {
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    text-align: left;
    text-transform: uppercase;
    max-width: 145px;
    letter-spacing: -0.4px;
}
.catalog-product__delivery-time {
    color: #542340;
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    letter-spacing: 0.3px;
}
.catalog-product-seo.content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    order: 2;
}
.catalog-product-seo.content h2 {
    font-weight: 500;
}
.catalog-product-seo__link {
    display: inline-block;
    text-decoration: none;
}
.catalog-product-seo__link span {
    display: inline-block;
    margin-right: 5px;
}
.catalog-product-seo__content {
    order: 2;
    padding-top: 20px;
}
.catalog-product__add {
    flex: 1;
    order: 1;
    padding: 15px 0 30px 0;
}
.catalog-product__services {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 50px;
    max-width: 600px;
}
.catalog-product-services__title {
    width: 100%;
    padding-bottom: 35px;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #535353;
}
.catalog-product-service {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 33%;
    max-width: 160px;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
}
.catalog-product-service__ico {
    width: 50px;
    background-position: center center;
    background-size: 55%;
}
.catalog-product-service__text {}
.catalog-product__reviews {
    order: 1;
}
.catalog-product-reviews__title {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #535353;
}
.catalog-product-reviews__title span {
    color: #AE2980;
}
.catalog-product-reviews__empty,
.catalog-product-reviews__create-first {
    margin: 0;
    padding: 6px 0;
    font-size: 11px;
    line-height: 18px;
    font-weight: 400;
}
.catalog-product-reviews__create-first {
    padding-top: 0;
    font-size: 13px;
    font-weight: 500;
}
.catalog-product-reviews__list {
    padding-bottom: 20px;
}
.catalog-product-review {
    padding: 10px 0 0 0;
}
.catalog-product-review__score {
    width: 0;
    height: 10px;
    margin: 5px 0;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAgCAYAAAB3j6rJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAxhJREFUeNpi+P//PwO5+POlpzzntdv+305a+p8Sc0CYiYEC8Kh04+ef994yvF1+juHN2ovTKTGLbIe823E97fOhu3D+k5qtGQPiEKDFM5H5Px++Y3g+4+gDujrk1aLTR79fe4Eh/rxjt/zvzz/o45DfX38xPG3aYYVV7tUXhhcTDv6ni0NezTz6/dezjzjlX0w8yPDj+SdGmjrk14dvDM8793LgU/Pv2y9QFP2jqUOedez5/5eINPB63kmGb/feMJNiNiOoMMEHfr74xPjl5MO6T/tuNbyafZxog9nkBBnEM22+cJvKmfNbKV4jySGgFP/1zGOHr2cf7/565hELkGb49fQjA6WAkZWZgVNbgoHbWJaB20TuGJB259GR/IKi5t2uG5FvV51bBnQAw4+brxjoBZi42Rm4DaUZeCwUGMSzbZkYTwlX/gclsIEEkuUuDEzS9R7vBtIRLMLcDCJxpixMUrl2wiAXDQRg5uNg0NiZycWlKPwXnH3l6j0YxdKt6OoIUBpR35Imw60l8R2lHFHsD2IUjjSijyM4WBjUN6eq8JrIPcVaoKnMjWIU8NGmqSMYWZgYVFYl+vFZKNzFW7Kqr0pk5HfXoI0jmJkYlBfHNgi6qG8mqmT98/03wy2/2f8/H71HRVcwMijNj1oiGmYYS1IR//vTD4ZLmm3//7z/RhV3iOfZMSh0+DGSXOmxArMWqL6gFuBQFT1Pdu0Lav5RC/x68M6QLIf8AkbJ3w/fqeaQnw/fk9ce+Xn/rSg1cwzQPDId8uBdGVUdQiCa8Tkkh5oO+fPmK7jhTXoaefiOgxgLeMzlGdgVhIgLlXtveEh2yA88cQoqIUH1ku7Fcg7t/bmMBteqGEGFFaeWBH6HPHiXSnqIPHiPtcknEm/GoHu5ggVUL3Gpiv6EyYmGG8XqnSlhVF4a18OlL43LITWkh8id1yh80QRzBt1L5czK08MYORWE/uLSJxKoV6p7vJBRZVVCEbeRDKrnHr/HHYe4hgkumfX8P8FZ/P9ewdr/359+YCR3uAHUJr7iOBls1osFJ4/iUgcQYABm4uDwsrJFtgAAAABJRU5ErkJggg==");
    background-repeat: repeat-x;
    background-size: contain;
}
.catalog-product-review__person {
    font-size: 13px;
    font-weight: 500;
}
.catalog-product-review__text {
    padding: 5px 0;
    font-size: 11px;
    line-height: 18px;
    font-weight: 400;
}

.review-form {
    position: relative;
    padding-top: 20px;
}
.review-form .btn {
    width: 100%;
    max-width: 200px;
}
.review-form__body {}
.review-form__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.review-form__rating {}
.review-form__rating-title {
    font-size: 13px;
    font-weight: 500;
}
.review-form__rating-form {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 10px 0;
}
.review-form__rating-form input {
    display: none;
}
.review-form__rating-form label {
    margin-right: 3px;
    cursor: pointer;
}
.review-form__rating-form label svg {
    display: block;
}
.review-form__rating-form input:checked ~ label svg path {
    fill: #C80973;
}
.review-form__rating-form label:hover svg path, .review-form__rating-form label:hover ~ label svg path {
    fill: #C80973;
}
.review-form__rating-desc {
    font-size: 11px;
    line-height: 18px;
    font-weight: 400;
    color: #989898;
}
.review-form__action {
    width: 50%;
}

.catalog-product__sections {
    order: 1;
    width: 100%;
    padding: 40px 0 0 0;
}
.catalog-product-sections__item {
    display: inline-block;
    vertical-align: middle;
    margin: 4px;
    padding: 6px 12px;
    border-radius: 21px;
    background-color: #f0f0f0;
    text-align: center;
    color: #606060;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
}

.catalog-product__add .cart-summary {
    box-sizing: border-box;
}
.catalog-product__add .cart-summary .btn {
    max-width: 400px;
    display: block;
    margin: 0 0 0 auto;
}
.catalog-product__add .cart-summary,
.catalog-product__list {
    max-width: 600px;
}
.catalog-product-list__title {
    width: 100%;
    padding-bottom: 35px;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #535353;
}
.cart-summary__product-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.cart-summary__product-list picture {
    display: block;
    max-width: 70px;
    margin: 0 10px 10px 0;
}
.cart-summary__product-list img {
    display: block;
    width: 100%;
}
@media (min-width: 640px) {
    .review-form__action {
        width: unset;
    }
}
@media (min-width: 768px) {
    .catalog-product__text {
        padding-bottom: 30px;
        font-size: 14px;
        line-height: 21px;
    }
    .catalog-product__param {
        padding-bottom: 30px;
    }
    .catalog-product__param .title {
        padding-bottom: 15px;
        font-size: 14px;
        font-weight: 600;
    }
    .catalog-product__param .value {
        font-size: 14px;
    }
    /*.catalog-product__delivery {
        padding-top: 30px;
    }*/
    .catalog-product__delivery-param {
        padding-bottom: 30px;
    }
    .catalog-product__delivery-param .title {
        font-weight: 600;
        font-size: 14px;
    }
    .catalog-product__delivery-param .value {
        font-size: 14px;
    }
    .catalog-product__price .title {
        font-weight: 600;
        font-size: 13px;
    }
    .catalog-product__price .value {
        font-size: 26px;
    }
    .catalog-product__action .one-click-btn,
    .catalog-product__action .buy-btn {
        order: 1;
        width: 210px;
        font-size: 13px;
        margin-right: 10px;
    }
    .catalog-product__action .one-click-btn {
        order: 2;
        width: 180px;
    }
    .catalog-product__action .buy-btn:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 16px;
        height: 16px;
        margin-bottom: 3px;
        margin-right: 10px;
        background: center center url(/assets/images/ico-cart-white.svg) no-repeat;
        background-size: contain;
    }
    .catalog-product-services__title,
    .catalog-product-reviews__title,
    .catalog-product-list__title {
        font-size: 17px;
        font-weight: 500;
    }
    .catalog-product-reviews__empty,
    .catalog-product-reviews__create-first {
        font-size: 14px;
        line-height: 23px;
    }
    .catalog-product-reviews__create-first {
        font-weight: 600;
    }
    .catalog-product-review__person {
        font-size: 15px;
        font-weight: 600;
    }
    .catalog-product-review__text {
        font-size: 14px;
        line-height: 23px;
    }
    .review-form__rating-desc {
        font-size: 13px;
        line-height: 23px;
    }
}
@media (min-width: 1024px) {
    .catalog-product__container {
        flex-wrap: nowrap;
    }
    .catalog-product__images,
    .catalog-product-seo.content {
        max-width: unset;
        width: 40%;
        order: 1;
    }
    .catalog-product {
        padding: 50px 0;
    }
    .catalog-product__container {
        display: flex;
        justify-content: space-between;
        align-items: self-start;
    }
    .catalog-product__info {
        order: 2;
        padding-top: 0;
        padding-left: 50px;
    }
    .catalog-product-seo {
        order: 1;
    }
    .catalog-product-seo__content {
        padding-top: 0;
    }
    .catalog-product__reviews {
        order: 2;
        padding-top: 30px;
    }
    .catalog-product__sections {
        order: 2;
    }
    .catalog-product__add {
        order: 2;
        padding-left: 50px;
    }
}
@media (min-width: 1200px) {
    .catalog-product__info {
        padding-left: 60px;
    }
    .catalog-product__add {
        padding-left: 60px;
    }
    .catalog-product-services__title,
    .catalog-product-reviews__title,
    .catalog-product-list__title {
        font-size: 20px;
    }
    .catalog-product-service {
        font-size: 14px;
        line-height: 21px;
    }
    .catalog-product-service__ico {
        width: 62px;
        background-position: center center;
        background-size: 70%;
    }
}

/* page */

.page-header {
    position: relative;
    min-height: 100px;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.page-header__title {
    position: relative;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
}
.page-header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(46,46,46,.49);
}
.page-header__breadcrumbs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 20px 0 0 0;
    color: #fff;
    position: relative;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
}
.page-header__breadcrumbs .breadcrumbs__item {
    position: relative;
    padding-right: 20px;
    color: #cacaca;
}
.page-header__breadcrumbs .breadcrumbs__item:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #fff;
    right: 8px;
    top: 7px;
}
.page-header__breadcrumbs .breadcrumbs__item:last-child:after {
    display: none;
}
.page-header__breadcrumbs .breadcrumbs__item a {
    color: #fff;
    text-decoration: none;
}
.content {
    padding-top: 36px;
    padding-bottom: 50px;
    background-color: #fcfcfd;
}
.bordered {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #EFEFEF;
    border-radius: 19px;
    box-sizing: border-box;
}
.content h2 {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #535353;
}
.content h2 span {
    display: block;
    font-size: 12px;
}
.content p {
    margin: 0;
    padding: 10px 0;
    font-size: 11px;
    line-height: 18px;
    font-weight: 400;
}
.content p + ul,
.content p + ol {
    margin-top: 0;
}
.content a {
    color: #AE2980;
}
.content ul,
.content ol {
    margin: 10px 0 30px 0;
    padding: 0;
    font-size: 11px;
    line-height: 18px;
    font-weight: 400;
}
.content ul + p,
.content ol + p {
    padding-top: 0;
}
.content li {
    margin: 0 0 0 30px;
    padding: 4px 0;
}
.index-bottom-content h1,
.index-bottom-content h2 {
    margin: 0;
    padding-top: 12px;
    padding-bottom: 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #2B2B2B;
}
.index-bottom-content h3,
.section-bottom-content h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 23px;
}
.index-bottom-content ul {
    margin: 20px 0 30px 0;
    padding: 0;
    font-size: 14px;
    line-height: 23px;
}
.index-bottom-content li {
    margin: 5px 30px;
    padding: 0;
}
.section-bottom-content {
    background-color: #fcfcfd;
}
.section-bottom-content .container {
    border-top: 1px solid #e3e3e3;
}
.section-bottom-content h2 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #3B3B3B;
}
.delivery-payment-content h2,
.privacy-content h2 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    color: #5B5B5B;
}
.delivery-payment-content h3 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #5B5B5B;
}
@media (min-width: 1024px) {
    .index-bottom-content h1,
    .index-bottom-content h2 {
        padding-bottom: 20px;
        font-size: 24px;
    }
    .section-bottom-content h2 {
        font-size: 17px;
    }
    .delivery-payment-content h2,
    .privacy-content h2 {
        color: #3B3B3B;
        font-weight: 500;
        font-size: 17px;
    }
    .delivery-payment-content h3 {
        color: #3B3B3B;
        font-weight: 500;
        font-size: 15px;
    }
}
@media (min-width: 1200px) {
    .index-bottom-content h1,
    .index-bottom-content h2 {
        padding-bottom: 30px;
        font-size: 30px;
    }
    .section-bottom-content h2 {
        font-size: 20px;
    }
    .delivery-payment-content h2,
    .privacy-content h2 {
        font-size: 20px;
    }
    .delivery-payment-content h3 {
        font-size: 17px;
    }
}
@media (min-width: 768px) {
    .content h2 {
        font-size: 17px;
        line-height: 19px;
        font-weight: 500;
    }
    .content h2 span {
        font-size: 14px;
    }
    .content p,
    .content ul,
    .content ol {
        font-size: 14px;
        line-height: 23px;
    }
    .content li {
        padding: 6px 0;
    }
    .page-header {}
    .page-header__title {}
}
@media (min-width: 1024px) {
    .content {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    .page-header {
        min-height: 120px;
    }
    .page-header__title {
        padding-top: 25px;
        font-size: 24px;
    }
}
@media (min-width: 1200px) {
    .content h2 {
        font-size: 20px;
        line-height: 24px;
    }
    .page-header {}
    .page-header__title {
        font-size: 30px;
    }
}

/* specific content page */

.page-header--contacts,
.page-header--privacy {
    background-image: url(/assets/images/content/contacts_header_bg_o.jpg);
}
.page-header--about,
.page-header--articles,
.page-header--reviews,
.page-header--search {
    background-image: url(/assets/images/content/about_header_bg_o.jpg);
}
.page-header--delivery-payment {
    background-image: url(/assets/images/content/delivery_payment_header_bg_o.jpg);
}
.page-header--bonus {
    background-image: url(/assets/images/content/bonus_header_bg_o.jpg);
}
.page-header--catalog {
    background-image: url(/assets/images/content/catalog_header_bg_o.jpg);
}
.page-header--cart {
    background-image: url(/assets/images/content/cart_header_bg_o.jpg);
}
.page-header--order {
    background-image: url(/assets/images/content/order_header_bg_o.jpg);
}
.page-header--personal {
    background-image: url(/assets/images/content/personal_header_bg_o.jpg);
}

/* about */

.about-top-content {
    border-bottom: 1px solid #E3E3E3;
}
.about-bottom-content {
    border-top: 1px solid #E3E3E3;
}
.about-control-notice {
    /*margin: 50px 0;*/
    padding: 50px 0 90px 0;
    background-color: #FFEEF8;
    background-image: url(/assets/images/content/about-notice-skew.jpg);
    background-position: right bottom;
    background-repeat: no-repeat;
}
.about-control-notice__title {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    color: #2B2B2B;
}
.about-control-notice__title span {
    display: block;
    font-weight: 400;
}
.about-control-notice__list {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}
.about-control-notice__item {
    position: relative;
    display: block;
    margin: 25px 0;
    padding: 3px 0 0 40px;
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    color: #2B2B2B;
}
.about-control-notice__item:before {
    content: attr(data-value);
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
    font-weight: 400;
    font-size: 10px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    background-color: #242424;
    border-radius: 50%;
    box-sizing: border-box;
}
.about-control-notice__item .social-link {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    margin: 10px 5px 0 5px;
    text-align: center;
    line-height: 30px;
    /*background: linear-gradient(139.94deg, #CC2178 -0.93%, #AE2980 106.54%);*/
    background: linear-gradient(139.94deg, #E8308A -0.93%, #C80973 106.54%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    box-sizing: border-box;
}
.about-control-notice__item .social-link img {
    display: inline-block;
}
.about-control-notice__item .link-whatsapp {
    padding-top: 2px;
}
.about-control-notice__item .link-tg {
    padding-top: 1px;
}
.about-control-notice__decor {
    display: none;
}

@media (min-width: 640px) {
    .about-control-notice__item br {
        display: none;
    }
}
@media (min-width: 768px) {
    .about-top-content {
        border-bottom: unset;
    }
    .about-bottom-content {
        border-top: unset;
    }
    .about-top-content .container:after {
        content: '';
        display: block;
        margin-top: 40px;
        border-bottom: 1px solid #E3E3E3;
    }
    .about-bottom-content .container:before {
        content: '';
        display: block;
        margin-bottom: 40px;
        border-top: 1px solid #E3E3E3;
    }
    .about-control-notice {
        margin: 0;
        padding: 0 0 30px 0;
        background-image: unset;
        background-color: #fcfcfd;
    }
    .about-control-notice__container {
        padding: 40px;
        background-color: #FFEEF8;
        border-radius: 19px;
        background-image: url(/assets/images/content/about-notice.jpg);
        background-repeat: no-repeat;
        background-position: 80% 55%;
        background-size: 220px;
        box-sizing: border-box;
    }
    .about-control-notice__title {
        font-size: 21px;
        line-height: 32px;
    }
    .about-control-notice__item {
        font-size: 14px;
        line-height: 18px;
    }
    .about-control-notice__item br {
        display: block;
    }
    .about-control-notice__item .social-link {
        width: 38px;
        height: 38px;
        line-height: 38px;
    }
    .about-control-notice__item .social-link img {
        width: 50%;
    }
    .about-control-notice__item .link-whatsapp {
        padding-top: 4px;
    }
    .about-control-notice__item .link-tg,
    .about-control-notice__item .link-vk {
        padding-top: 2px;
    }
}
@media (min-width: 1024px) {
    .about-control-notice__decor {
        flex: 1;
        display: block;max-width: 420px;
        margin-right: 20px;
        background-image: url(/assets/images/content/about-notice-flower.jpg);
        background-size: cover;
        background-position: center;
        border-radius: 19px;
    }
    .about-control-notice .container {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0 55px;
    }
    .about-control-notice__container {
        width: 70%;
        max-width: 880px;
        background-position: 95% 55%;
        background-size: 220px;
    }
    .about-control-notice__title {
        font-size: 30px;
        line-height: 41px;
    }
}
@media (min-width: 1200px) {
    .about-control-notice__container {
        padding: 60px;
        background-position: 85% 50%;
        background-size: 250px;
    }
}

.bonus-content {}
.bonus-about {
    margin: 20px -20px 40px -20px;
    padding: 40px 7% 20px 7%;
    background: rgba(174, 41, 128, 0.08);
}
.bonus-about__item {
    margin: 0 0 30px 0;
}
.bonus-about__ico {
    margin-bottom: 10px;
    text-align: center;
}
.bonus-about__ico img {
    display: inline-block;
}
.bonus-about__text {
    font-size: 11px;
    line-height: 18px;
    font-weight: 500;
    text-align: center;
}
.bonus-content h3 {
    margin: 20px 0 10px 0;
    text-transform: uppercase;
    font-weight: 500;
}
.bonus-content .warn {
    color: #ae2980;
    font-weight: 600;
}
@media (min-width: 768px) {
    .bordered {
        padding: 30px;
    }
    .bonus-about {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0 -30px;
    }
    .bonus-about__item {
        width: 25%;
        margin-bottom: 10px;
        padding: 0 2%;
        box-sizing: border-box;
    }
    .bonus-about__ico img {
        width: 60px;
    }
    .bonus-content h2 {
        margin-bottom: 25px;
        font-size: 21px;
    }
    .bonus-content h3 {
        margin: 40px 0 10px 0;
        font-size: 16px;
    }
}
@media (min-width: 1024px) {
    .bordered {
        padding: 40px 50px;
    }
    .bonus-about {
        margin: 0 -50px;
    }
}


/* page content blocks */

.section-map {
    position: relative;
    height: 600px;
    padding-top: 130px;
    background-color: #fff;
}
#map {height: 100%;}
#map > ymaps {height: 100%;}
.map-points {
    list-style: none;
    position: absolute;
    left: 50%;
    top: 25px;
    width: 290px;
    margin-left: -145px;
    padding: 35px 20px 5px 30px;
    z-index: 9;
    background-color: #fff;
    border: 1px solid #EFEFEF;
    border-radius: 19px;
    box-sizing: border-box;
}
.map-point {
    margin-bottom: 20px;
}
.map-point__title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 11px;
    line-height: 14px;
    color: #535353;
}
.map-point__phone,
.map-point__email {
    font-weight: 400;
    font-size: 11px;
    line-height: 17px;
    color: #535353;
}
.map-point__socials {
    margin: 16px 0 0 -4px;
}
@media (min-width: 768px) {
    .section-map {
        padding-top: 0;
        background-color: #e0e0e0;
    }
    .map-points {
        left: 30px;
        top: 30px;
        width: auto;
        margin: 0;
        padding: 40px 20px 10px 20px;
    }
    .map-point {
        margin-bottom: 20px;
    }
    .map-point__title {
        font-size: 12px;
        line-height: 17px;
    }
    .map-point__phone,
    .map-point__email {
        font-size: 11px;
        line-height: 16px;
    }
}
@media(min-width: 1024px) {
    .map-point {
        margin-bottom: 30px;
    }
    .map-points {
        left: 50px;
        top: 50px;
        padding: 60px 40px 20px 40px;
    }
    .map-point__title {
        font-size: 14px;
        line-height: 19px;
    }
    .map-point__phone,
    .map-point__email {
        font-size: 13px;
        line-height: 19px;
    }
}
@media(min-width: 1200px) {
    .map-point__socials {
        margin-left: -8px;
    }
}

/* page error */

.error-page {
    min-height: 300px;
    background-color: #fcfcfd;
}
.error-page .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
.error-page__image {
    width: 200px;
    margin-bottom: 20px;
}
.error-page__title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 41px;
    text-align: center;
    text-transform: uppercase;
    color: #2B2B2B;
}
.error-page__text {
    margin: 10px 0 25px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #222222;
}
.error-page__action {
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    border-top: 1px solid #E9E9E9;
}
.error-page__action .btn {
    width: 190px;
    margin: 10px 0;
    font-size: 12px;
    white-space: nowrap;
}
@media (min-width: 480px) {
    .error-page .container {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .error-page__image {
        width: unset;
    }
    .error-page__title {
        font-size: 30px;
    }
    .error-page__action {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .error-page__action .btn {
        margin: 0 10px;
        font-size: 13px;
    }
}

/* index promo */
.index-promo {
    display: flex;
    background-color: #f0f0f0;
}
.index-promo:before {
    content: '';
    padding-bottom: 100%;
}
.index-promo-slide {
    max-height: 424px; /* 377 */
}
.index-promo-slide picture {
    display: block;
    width: 100%;
    height: auto;
}
.index-promo-slide img {
    display: block;
    width: 100%;
    height: auto;
}
.index-promo-slide__content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.index-promo-slide__content .container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    padding: 30px 30px 0 0;
    box-sizing: border-box;
}
.index-promo-slide__title {
    max-width: 250px;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-align: right;
    text-transform: uppercase;
    color: #323232;
}
.index-promo-slide__text {
    max-width: 230px;
    margin-top: 10px;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    text-align: right;
    color: #919191;
}
.index-promo-pagination {
    text-align: center;
    position: absolute;
    bottom: 20px!important;
    z-index: 1;
}
.swiper-pagination-bullet {
    background: #E8E8E8;
    opacity: 1;
    /*transition: width .25s;*/
}
.index-promo-pagination .swiper-pagination-bullet-active {
    width: 30px;
    background: #E83587;
    background: linear-gradient(90deg, #CC2178 4%, #AE2980 100%);
    border-radius: 8px;
}
.index-promo__prev,
.index-promo__next {
    display: none;
    position: absolute;
    width: 31px;
    height: 31px;
    top: 50%;
    left: 40px;
    margin-top: -15px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 40px rgba(138, 149, 158, 0.2);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}
.index-promo__prev:before,
.index-promo__next:before {
    content: '';
    display: block;
    position: absolute;
    left: 12px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-left: 1px solid #242424;
    border-bottom: 1px solid #242424;
    transform: rotate(45deg);
}
.index-promo__next:before {
    left: 7px;
    transform: rotate(225deg);
}
.index-promo__next {
    left: unset;
    right: 40px;
}
.index-article-section {
    background-color: #fcfcfd;
}
.index-article-section__title {
    margin: 0;
    padding-top: 36px;
    padding-bottom: 30px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #2B2B2B;
}
.index-article {
    display: flex !important;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0;
}
.index-article__item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    box-sizing: border-box;
}
.index-article-item__picture {
    align-self: center;
}
.index-article-item__picture picture {
    display: block;
    width: 100%;
    max-height: 290px;
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
}
.index-article-item__picture img {
    display: block;
    width: 100%;
    height: auto;
}
.index-article-item__title {
    flex: 1;
    display: inline-block;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    color: #606060;
    text-decoration: none;
}
.swiper-container.swiper-container-initialized .index-article {
    flex-wrap: nowrap;
}

@media (min-width: 480px) {
    .index-promo-slide__content .container {
        padding: 40px 30px 0 0;
    }
    .index-promo-slide__title {
        font-size: 16px;
        line-height: 21px;
        font-weight: 600;
    }
    .index-promo-slide__text {
        max-width: 250px;
        margin-top: 15px;
        font-size: 12px;
        line-height: 18px;
    }
}
@media (min-width: 480px) {
    .index-promo:before {
        padding-bottom: 25.25%;
    }
    .index-promo-slide__content .container {
        padding: 40px 40px 0 0;
    }
}
@media (min-width: 768px) {
    .index-promo-slide {
        max-height: 487px;
    }
    .index-promo-pagination {
        bottom: 30px!important;
    }
    .index-article {
        margin: -1.5%;
    }
    .index-article__item {
        width: 30.3333% !important;
        margin: 1.5% 1.5% 1.5% 1.5%;
        padding: 0;
        box-sizing: border-box;
    }
}
@media (min-width: 1024px) {
    .index-promo-slide__content .container {
        padding: 5% 10% 0 0;
    }
    .index-promo-slide__title {
        max-width: 350px;
        font-size: 24px;
        line-height: 33px;
        text-align: left;
    }
    .index-promo-slide__text {
        max-width: 300px;
        text-align: left;
    }
    .index-promo__prev,
    .index-promo__next {
        display: block;
    }
    .index-article-section__title {
        padding-bottom: 40px;
        font-size: 24px;
    }
    .index-article {
        margin: -1%;
    }
    .index-article__item {
        width: 31.3333% !important;
        margin: 1% 1% 1% 1%;
    }
}
@media (min-width: 1200px) {
    .index-promo-slide__content .container {
        padding: 6% 2% 0 0;
    }
    .index-promo-slide__title {
        width: 400px;
        max-width: unset;
    }
    .index-promo-slide__text {
        width: 400px;
        max-width: unset;
    }
    .index-article-section__title {
        padding-bottom: 50px;
        font-size: 30px;
    }
    .index-article {
        margin: 0 -1.25% 0 -.75%;
    }
    .index-article-item__title {
        padding: 20px 0;
        font-size: 17px;
        line-height: 21px;
    }
}
/*@media (min-width: 1400px) {
    .index-promo-slide img {
        width: auto;
        margin: 0 auto;
    }
}*/

/* search page */
.search-section {
    position: relative;
    padding: 40px 0 50px;
    background-color: #fcfcfc;
}
.search-result-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 30px;
}
.search-result-empty__title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 41px;
    text-align: center;
    text-transform: uppercase;
    color: #2B2B2B;
}
.search-result-empty__text {
    margin: 10px 0 25px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #222222;
}
@media (min-width: 480px) {
    .search-result-empty {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .search-result-empty__title {
        font-size: 30px;
    }
}

/* order complete */
.order-complete-section {
    position: relative;
    padding: 40px 0 100px;
    background-color: #fcfcfc;
}
.order-complete-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.order-complete__title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 41px;
    text-align: center;
    text-transform: uppercase;
    color: #2B2B2B;
}
.order-complete__text {
    margin: 10px 0 25px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #222222;
}
.order-complete__action {
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    border-top: 1px solid #E9E9E9;
    justify-content: center;
    align-items: center;
}
.order-complete__action .btn {
    width: 240px;
    margin: 10px 0;
    font-size: 12px;
    white-space: nowrap;
}
@media (min-width: 480px) {
    .order-complete-section .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .order-complete__title {
        font-size: 30px;
    }
    .order-complete__action {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .order-complete__action .btn {
        margin: 0 10px;
        font-size: 13px;
    }
}

/* cart */
.cart-section {
    position: relative;
    padding: 40px 0 100px;
    background-color: #fcfcfc;
}
.cart-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.cart-section .l-column,
.cart-section .r-column {
    width: 100%;
}
.cart-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.cart-empty__title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 41px;
    text-align: center;
    text-transform: uppercase;
    color: #2B2B2B;
}
.cart-empty__text {
    margin: 10px 0 25px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #222222;
}
.cart-empty__action {
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    border-top: 1px solid #E9E9E9;
}
.cart-empty__action .btn {
    width: 190px;
    margin: 10px 0;
    font-size: 12px;
    white-space: nowrap;
}
@media (min-width: 480px) {
    .cart-empty {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .cart-empty__title {
        font-size: 30px;
    }
    .cart-empty__action {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .cart-empty__action .btn {
        margin: 0 10px;
        font-size: 13px;
    }
}

.cart-items {}
.cart-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 15px 0;
    padding: 12px;
    border: 1px solid #EFEFEF;
    border-radius: 19px;
    background-color: #fff;
    box-sizing: border-box;
}
.cart-item__picture {
    width: 26%;
    max-width: 100px;
    border-radius: 12px;
    overflow: hidden;
}
.cart-item__picture picture {
    display: block;
    width: 100%;
    padding: 4px;
    background-color: #f4f4f4;
    box-sizing: border-box;
}
.cart-item__picture img {
    width: 100%;
    height: auto;
}
.cart-item__info {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-self: stretch;
    padding: 0 0 0 16px;
    box-sizing: border-box;
}
.cart-item__title {
    width: 100%;
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 14px;
    font-weight: 600;
}
.cart-item__title a {
    color: #393939;
    text-decoration: none;
}
.cart-item__article {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 10px;
    color: #9799aD;
    text-transform: uppercase;
    font-weight: 600;
}
.cart-item__structure {
    margin-bottom: 10px;
    color: #717171;
    font-size: 9px;
    font-weight: 400;
    line-height: 13px;
}
.cart-item__qty {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    margin: 5px 0 10px 0;
    color: #979494;
    user-select: none;
}
.cart-item__qty .btn {
    width: 24px;
    line-height: 22px;
    height: 24px;
    padding: 0;
    margin-left: 7px;
    border: 1px solid #b7b7b7;
    font-size: 14px;
    font-weight: 600;
    color: #AE2980;
    text-align: center;
    background: none;
    box-shadow: none;
    box-sizing: border-box;
}
.cart-item__qty .btn:first-child {
    margin-left: unset;
}
.cart-item__qty input[type="text"].form__input {
    width: 30%;
    min-width: 40px;
    max-width: 100px;
    line-height: 22px;
    height: 24px;
    margin: 0 0 0 7px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #b7b7b7;
    border-radius: 24px;
    background: none;
    box-sizing: border-box;
}
.cart-item__price {
    font-size: 10px;
    line-height: 10px;
    color: #57596D;
    text-transform: uppercase;
    font-weight: 600;
}
.cart-item__price-value {
    display: inline-block;
    margin-left: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #3D3D3D;
}
.cart-auth {
    margin-top: 24px;
    padding: 16px 16px 16px 16px;
    background-color: #F9F9F9;
    background-image: url(/assets/images/cart-auth-bg.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 85px;
    border: 1px solid #EFEFEF;
    border-radius: 19px;
    box-sizing: border-box;
}
.cart-auth__notice {
    padding-bottom: 5px;
    font-size: 11px;
    font-weight: 500;
}
.cart-auth__notice p {
    padding: 0;
    margin: 0 0 8px 0;
}
.cart-auth .btn {
    width: 100%;
    box-shadow: unset;
}
.cart-summary {
    margin-top: 20px;
    padding: 25px 16px;
    background-color: #F9F9F9;
    background-image: url(/assets/images/cart-total-bg.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 170px;
    border: 1px solid #EFEFEF;
    border-radius: 19px;
}
.cart-summary__title {
    padding: 0 0 12px 0;
    font-size: 14px;
    line-height: 19px;
    color: #535353;
    font-weight: 400;
    border-bottom: 1px solid #F1F1F1;
}
.cart-summary__product-qty,
.cart-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-size: 11px;
    line-height: 14px;
    font-weight: 400;
    color: #535353;
}
.cart-summary__total {
    padding: 20px 0;
    border-bottom: 1px solid #F1F1F1;
}
.cart-summary__total .title {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
}
.cart-summary__total .value {
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
}
.cart-summary .btn {
    width: 100%;
}
.cart-summary .btn:before {
    background-color: transparent;
}
.cart-summary__agree {}
.cart-summary__agree a {
    display: inline-block;
    color: #AE2980;
}
@media (min-width: 768px) {
    .cart-section .container {
        flex-direction: row;
    }
    .cart-section .l-column {
        width: 56.5%;
    }
    .cart-section .r-column {
        width: 43.5%;
        padding-left: 20px;
        box-sizing: border-box;
    }
    .cart-item {
        padding: 16px;
    }
    .cart-item__info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .cart-item__title {
        font-size: 14px;
        line-height: 17px;
    }
    .cart-item__article {
        margin-top: 5px;
        text-align: right;
    }
    .cart-item__structure {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 15px;
    }
    .cart-item__qty {
        align-self: end;
    }
    .cart-item__price {
        align-self: end;
        margin-bottom: 10px;
    }
    .cart-item__price-value {
        font-size: 22px;
        line-height: 30px;
    }
    .cart-summary {
        margin-top: 0;
    }
}
@media (min-width: 1024px) {
    .cart-item__title {
        width: 70%;
    }
    .cart-item__article {
        width: 30%;
        color: #57596D;
    }
    .cart-item__qty .btn {
        width: 30px;
        line-height: 28px;
        height: 30px;
    }
    .cart-item__qty input[type="text"].form__input {
        height: 30px;
        line-height: 28px;
    }
    .cart-auth {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .cart-auth__notice {
        padding-bottom: 0;
    }
    .cart-auth .btn {
        width: 180px;
        font-size: 13px;
    }
    .cart-summary {
        padding: 24px;
    }
    .cart-summary__title {
        font-weight: 400;
        font-size: 18px;
        line-height: 25px;
    }
    .cart-summary__product-qty {
        margin: 16px 0;
        font-size: 14px;
        line-height: 19px;
    }
    .cart-summary__total {
        padding: 0 0 20px 0;
    }
    .cart-summary__total .title {
        font-size: 16px;
        line-height: 22px;
    }
    .cart-summary__total .value {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
    }
    /*.cart-summary__agree [type="checkbox"] + label {
        font-size: 12px;
        line-height: 16px;
    }
    .cart-summary__agree [type="checkbox"] + label:before {
        top: -2px;
    }
    .cart-summary__agree [type="checkbox"]:checked + label:after {
        top: 5px;
    }*/
    .cart-summary .btn {
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
    .cart-section .l-column {
        width: 64%;
    }
    .cart-section .r-column {
        width: 36%;
    }
    .cart-item {
        padding-right: 28px;
    }
    .cart-auth {
        /*padding-right: 28px;*/
    }
    .cart-auth__notice {
        padding: 0 16px 0 16px;
        font-size: 13px;
        line-height: 20px;
        font-weight: 400;
    }
    .cart-auth__notice p {
        padding: 0;
        margin: 5px 0 5px 0;
    }
    .cart-auth .btn {
        width: 210px;
    }
    .cart-summary {
        padding: 30px;
    }
}

/* order */
.order-section {
    position: relative;
    padding: 40px 0 100px;
    background-color: #fcfcfc;
}
.order-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.order-section .l-column,
.order-section .r-column {
    width: 100%;
}
.order-personal-contacts,
.order-delivery,
.order-payment,
.order-recipient,
.order-comments,
.personal-data-form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 15px 0;
    padding: 25px 16px;
    border: 1px solid #EFEFEF;
    border-radius: 19px;
    background-color: #fff;
    box-sizing: border-box;
}
.order-personal-contacts__title,
.order-delivery__title,
.order-payment__title,
.order-recipient__title,
.order-comments__title,
.personal-data__title,
.personal-password__title {
    width: 100%;
    padding: 0 0 24px 0;
    font-size: 14px;
    line-height: 19px;
    color: #535353;
    font-weight: 400;
}
.order-personal-contacts__title {
    padding-bottom: 12px;
}
.order-personal-contacts__description {
    display: block;
    padding-bottom: 12px;
    font-size: 11px;
    color: #979797;
    font-weight: 400;
}
.order-personal-contacts__recipient {
    display: none;
}
.order-personal-contacts__recipient.active {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.order-personal-contacts input[type="text"].form__input,
.order-recipient input[type="text"].form__input,
.order-personal-contacts__recipient input[type="text"].form__input {
    width: 100%;
    padding: 0 20px;
}
.order-personal-contacts .form__checkbox {
    width: 100%;
}
.order-personal-contacts .form__checkbox .disclaimer {
    display: block;
    font-size: 11px;
    color: #B7B7B7;
}
.order-payment .form__radio {
    width: 100%;
}
.order-delivery__description {
    width: 100%;
    padding-bottom: 12px;
    font-size: 11px;
    font-weight: 400;
}
.order-delivery__switch {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 250px;
    height: 38px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 500;
    background-color: #F1F4F6;
    border-radius: 24px;
    box-sizing: border-box;
    cursor: pointer;
}
.order-delivery__switch:before {
    content: 'Доставка';
    position: relative;
    display: block;
    width: 50%;
    text-align: center;
    z-index: 2;
}
.order-delivery__switch:after {
    content: 'Самовывоз';
    position: relative;
    display: block;
    width: 50%;
    text-align: center;
    z-index: 2;
}
.order-delivery__switch-bar {
    position: absolute;
    width: 50%;
    left: 2px;
    top: 2px;
    height: 34px;
    background-color: #fff;
    border-radius: 17px;
    transition: .3s left;
}
.order-delivery__switch.shift .order-delivery__switch-bar {
    left: 50%;
    margin-left: -2px;
}
.order-delivery__method {
    display: none;
    width: 100%;
}
.order-delivery__method.active {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.order-delivery input[type="text"].form__input[name="entrance"],
.order-delivery input[type="text"].form__input[name="floor"],
.order-delivery input[type="text"].form__input[name="room"],
.order-delivery input[type="text"].form__input[name="code"] {
    width: 48%;
}
.order-delivery__date-time-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.order-delivery__date-time-container .order-delivery__title {
    padding-top: 10px;
    padding-bottom: 15px;
}
.order-delivery__date,
.order-delivery__time {
    width: 100%;
}
.order-delivery input[type="text"].form__input[name="date"],
.order-delivery input[type="text"].form__input[name="time"] {
    width: 100%;
}
.order-delivery__method .form__select {
    width: 100%;
}
.order-delivery__district-select {
    z-index: 3;
}
.order-delivery__time-select .form-select__list {
    top: 120%;
}
.order-payment__logo {
    display: inline-block;
    vertical-align: bottom;
    margin-left: 8px;
}


/*.order-comments .form__textarea {
    width: 100%;
    height: auto;
    min-height: 100px;
    margin: 0 0 20px 0;
    padding: 0 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #8C8C8C;
    line-height: 36px;
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    border-radius: 21px;
    box-sizing: border-box;
    resize: vertical;
    outline: none;
}*/

.order-summary {
    margin-top: 20px;
    padding: 25px 16px;
    background-color: #F9F9F9;
    background-image: url(/assets/images/cart-total-bg.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 170px;
    border: 1px solid #EFEFEF;
    border-radius: 19px;
}
.order-summary__title {
    padding: 0 0 12px 0;
    font-size: 14px;
    line-height: 19px;
    color: #535353;
    font-weight: 400;
    border-bottom: 1px solid #F1F1F1;
}
.order-summary__total-sum,
.order-summary__delivery,
.order-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-size: 11px;
    line-height: 14px;
    font-weight: 400;
    color: #535353;
}
.order-summary__total {
    padding: 20px 0;
    border-bottom: 1px solid #F1F1F1;
}
.order-summary__total .title {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
}
.order-summary__total .value {
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
}
.order-summary .btn {
    width: 100%;
}
.order-summary .btn:before {
    background-color: transparent;
}
.order-summary__agree {}
.order-summary__agree a {
    display: inline-block;
    color: #AE2980;
}
@media (min-width: 768px) {
    .order-section .container {
        flex-direction: row;
    }
    .order-section .l-column {
        width: 56.5%;
    }
    .order-section .r-column {
        width: 43.5%;
        padding-left: 20px;
        box-sizing: border-box;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
    .order-delivery__date,
    .order-delivery__time {
        width: 48%;
    }
    .order-personal-contacts .form__checkbox [type="checkbox"] + label,
    .form__checkbox.order-summary__agree [type="checkbox"] + label {
        font-size: 12px;
    }
    .order-delivery__method .form__select {
        width: 75%;
    }
    .order-summary {
        margin-top: 0;
    }
}
@media (min-width: 1024px) {
    .order-personal-contacts,
    .order-delivery,
    .order-payment,
    .order-recipient,
    .order-comments,
    .personal-data-form {
        padding: 24px;
    }
    .order-personal-contacts__title,
    .order-delivery__title,
    .order-payment__title,
    .order-recipient__title,
    .order-comments__title,
    .personal-data__title,
    .personal-password__title {
        font-weight: 400;
        font-size: 18px;
        line-height: 25px;
    }
    .order-personal-contacts input[type="text"].form__input,
    .order-recipient input[type="text"].form__input,
    .order-personal-contacts__recipient input[type="text"].form__input {
        width: 48%;
    }
    .order-delivery__switch {
        width: 330px;
        font-size: 13px;
    }
    .order-delivery input[type="text"].form__input[name="entrance"],
    .order-delivery input[type="text"].form__input[name="floor"],
    .order-delivery input[type="text"].form__input[name="room"],
    .order-delivery input[type="text"].form__input[name="code"] {
        width: 23%;
    }
    .order-summary {
        padding: 24px;
    }
    .order-summary__title {
        font-weight: 400;
        font-size: 18px;
        line-height: 25px;
    }
    .order-summary__total-sum,
    .order-summary__delivery {
        margin: 16px 0;
        font-size: 14px;
        line-height: 19px;
    }
    .order-summary__total {
        padding: 0 0 20px 0;
    }
    .order-summary__total .title {
        font-size: 16px;
        line-height: 22px;
    }
    .order-summary__total .value {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
    }
    .order-summary .btn {
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
    .order-section .l-column {
        width: 64%;
    }
    .order-section .r-column {
        width: 36%;
    }
    .order-personal-contacts,
    .order-delivery,
    .order-payment,
    .order-recipient,
    .order-comments,
    .personal-data-form {
        padding: 30px;
    }
    .order-delivery__date-time-container {
        width: 75%;
    }
    .order-delivery__method .form__select {
        width: 52%;
    }
    .order-summary {
        padding: 30px;
    }
}

.popup-overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    background-color: rgba(0,0,0,.35);
    opacity: 0;
    transition: opacity .4s;
}
.popup-overlay.active {
    visibility: visible;
    z-index: 1000;
    opacity: 1;
}
.popup {
    display: none;
    position: relative;
    min-width: 290px;
    max-width: 570px;
    margin: 16px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 19px;
    box-sizing: border-box;
}
.popup .hide {
    display: none;
}
.popup.active {
    display: block;
}
.popup__close {
    position: absolute;
    right: 18px;
    top: 18px;
    height: 20px;
    line-height: 18px;
    cursor: pointer;
}
.popup__close:before,
.popup__close:after {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background-color: #424242;
    cursor: pointer;
}
.popup__close:before {
    margin-top: 9px;
    transform: rotate(-45Deg);
}
.popup__close:after {
    margin-top: -1px;
    transform: rotate(45Deg);
}
.popup__title {
    margin: 20px 0 30px 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #2B2B2B;
}
@media (min-width: 640px) {
    .popup {
        padding: 36px;
    }
    .popup__title {
        font-size: 21px;
    }
}
@media (min-width: 768px) {
    .popup__close {
        top: 24px;
        right: 24px;
    }
    .popup__title {
        font-size: 21px;
    }
}
@media (min-width: 1024px) {
    .popup {
        padding: 36px 50px;
    }
    .popup__title {
        margin-bottom: 40px;
        font-size: 30px;
        line-height: 41px;
    }
}


.popup-auth-form {
    margin: 20px
}
.popup-auth-form .btn {
    width: 100%;
    margin-top: 20px;
}
.popup-auth .error {
    color: #ff0000;
}
.popup-auth .popup__message {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}
.popup-callme {
    max-width: 400px;
}
.popup-add-to-cart .btn,
.popup-add-to-favorites .btn,
.popup-remove-from-favorites .btn,
.popup-remove-from-cart .btn,
.popup-buy-one-click .btn {
    vertical-align: top;
    width: 180px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: none;
}
.popup-add-to-cart .buy-btn {
    position: relative;
    padding-left: 38px;
}
.popup-add-to-cart .buy-btn:before {
    content: '';
    display: block;
    position: absolute;
    left: 18px;
    top: 12px;
    width: 16px;
    height: 16px;
    background: center center url(/assets/images/ico-cart-white.svg) no-repeat;
    background-size: contain;
}
.popup-add-to-cart .popup__body,
.popup-remove-from-cart .popup__body,
.popup-add-to-favorites .popup__body,
.popup-remove-from-favorites .popup__body,
.popup-buy-one-click .popup__body,
.popup-message .popup__body,
.popup-callme .popup__body {
    text-align: center;
}

.popup-buy-one-click .popup__title {
    margin-bottom: 10px;
}
.buy-one-click__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
.buy-one-click__image {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.buy-one-click__image img {
    max-height: 120px;
    border-radius: 8px;
}
.buy-one-click__content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 0 20px 0;
    text-align: left;
}
.buy-one-click__components {
    width: 100%;
    margin-bottom: 10px;
}
.buy-one-click__components br {
    display: none;
}
.buy-one-click__components .title {
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 3px;
    color: #909090;
}
.buy-one-click__components .value {
    font-size: 11px;
    font-weight: 500;
}
.buy-one-click__code {
    width: 50%;
}
.buy-one-click__code .title {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 3px;
    color: #909090;
}
.buy-one-click__code .value  {
    font-size: 12px;
    font-weight: 600;
}
.buy-one-click__price {
    width: 50%;
}
.buy-one-click__price .title {
    font-weight: 500;
    font-size: 13px;
    text-align: right;
    margin-bottom: 5px;
}
.buy-one-click__price .value  {
    font-size: 17px;
    font-weight: 700;
    text-align: right;
}

.popup-callme-form__agree {
    text-align: left;
}

.popup-message .btn,
.popup-callme .btn {
    width: 100%;
    max-width: 150px;
}
.popup-message .popup__message  {
    margin: 0 0 30px 0;
    font-size: 13px;
    line-height: 17px;
    font-weight: 500;
    text-align: center;
}
@media (min-width: 480px) {
    .popup-buy-one-click .popup__title {
        margin-bottom: 30px;
    }
    .buy-one-click__image {
        width: 45%;
        display: flex;
        justify-content: left;
        align-items: flex-start;
        box-sizing: border-box;
        padding-right: 5%;
        margin-bottom: 10px;
    }
    .buy-one-click__image img {
        width: 100%;
        max-height: none;
        margin-top: -15px;
    }
    .buy-one-click__content {
        width: 55%;
        margin-bottom: 10px;
    }
    .popup-buy-one-click input[type="text"].form__input {
        width: 48%;
    }
    .popup-buy-one-click input[type="text"].form__input + input[type="text"].form__input {
        margin-left: 4%;
    }
}
@media (min-width: 640px) {
    .buy-one-click__image {
        margin-bottom: 30px;
    }
    .buy-one-click__content {
        margin-bottom: 30px;
    }
    .buy-one-click__components {
        margin-bottom: 30px;
    }
    .buy-one-click__components br {
        display: inline-block;
    }
    .buy-one-click__components .title {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .buy-one-click__components .value {
        font-size: 13px;
        font-weight: 400;
    }
    .buy-one-click__code .title {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .buy-one-click__code .value {
        font-size: 13px;
        font-weight: 500;
    }
    .buy-one-click__price .title {
        margin-bottom: 10px;
        color: #999;
    }
    .buy-one-click__price .value {
        font-size: 21px;
    }

}
@media (min-width: 768px) {
    .popup-auth-form [type="text"].form__input,
    .popup-auth-form [type="password"].form__input {
        padding: 0 20px;
        font-size: 13px;
    }
    .popup-auth-form .form__checkbox label {
        font-size: 13px;
        line-height: 18px;
    }
    .popup-auth-form .btn {
        font-size: 13px;
    }
}
@media (min-width: 1024px) {
    .popup-add-to-cart .btn {
        font-size: 13px;
        width: 200px;
    }
    .popup-remove-from-cart .btn {
        font-size: 13px;
    }
    .popup-message .popup__message  {
        margin: 0 0 50px 0;
    }
}

.personal-section {
    padding: 40px 0 100px;
    background-color: #fcfcfc;
}
.personal-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.personal-section .sidebar,
.personal-section .content {
    width: 100%;
}
.personal__menu {
    list-style: none;
    margin: 0;
    padding: 6px 16px;
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    border-radius: 19px;
}
.personal-menu__item {
    position: relative;
    padding: 16px 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #B0B0B0;
    border-top: 1px solid #F1F1F1;
}
.personal-menu__item:first-child {
    border-top: none;
}
.personal-menu__item:after {
    content: '';
    position: absolute;
    right: 3px;
    top: 50%;
    margin-top: -4px;
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #8F9098;
    border-right: 1px solid #8F9098;
    transform: rotate(45deg);
}
.personal-menu__item a {
    color: #535353;
    text-decoration: none;
}
.personal-menu__item span {}
.personal-menu__item span:before {
    content: '(';
}
.personal-menu__item span:after {
    content: ')';
}
.personal-section .sidebar .btn {
    width: 100%;
    margin-top: 40px;
    box-shadow: none;
}
.personal-section .content .btn {
    color: #fff;
    width: 100%;
    max-width: 200px;
}
.personal-data {
    width: 100%;
    margin-bottom: 40px;
}
.personal-password {
    width: 100%;
}
@media (min-width: 768px) {
    .personal-section .container {
        flex-direction: row;
    }
    .personal-section .sidebar {
        width: 42%;
    }
    .personal-section .content {
        padding: 0 0 0 16px;
        box-sizing: border-box;
    }
    /*.personal-section .sidebar .btn {
        display: none;
    }*/
    .personal__menu {
        padding: 0;
        overflow: hidden;
        background-color: #FFF7FC;
        border: none;
    }
    .personal-menu__item {
        padding: 12px 24px;
        font-size: 16px;
        line-height: 22px;
        color: #3C3C3C;
        border-top: none;
    }
    .personal-menu__item:after {
        display: none;
    }
    .personal-menu__item span {
        display: inline-block;
        height: 20px;
        margin-left: 4px;
        padding: 0 10px;
        font-size: 13px;
        line-height: 20px;
        color: #fff;
        background: linear-gradient(90deg, #CC2178 0%, #AE2980 100%);
        border-radius: 10px;
        box-sizing: border-box;
    }
    .personal-menu__item span:before,
    .personal-menu__item span:after {
        display: none;
    }
    .personal-menu__item.active {
        background: rgba(174, 41, 128, 0.06);
    }
}
@media (min-width: 1024px) {
    .personal-section .sidebar {
    }
    .personal-section .content {
    }
    .personal-menu__item {
        padding: 16px 36px;
    }
    .personal-data {
        width: 48%;
    }
    .personal-password {
        width: 48%;
    }
}
@media (min-width: 1200px) {
    .personal-section .sidebar {
        width: 31.5%;
    }
    .personal-section .content {
        
    }
}

/* datepicker custom */
.air-datepicker-cell {
    color: #AE2980 !important;

    font-size: 13px !important;
    width: 20px !important;
    height: 20px !important;

    margin: 0 7px !important;
}
.air-datepicker-cell.-current- {
    color: #67164b !important;
}
.air-datepicker-cell.-selected- {
    background: #AE2980 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
}
.air-datepicker-cell.-year-.-other-decade-, .air-datepicker-cell.-day-.-other-month- {
    color: #E4E4E4 !important;
}
.air-datepicker-body--day-name {
    color: #666666 !important;
}
.air-datepicker-body--day-names {
    margin-bottom: 14px !important;
}
.air-datepicker.-inline- {
    border-radius: 17px !important;
}
.air-datepicker-nav--title {
    color: #151522 !important;
}
.air-datepicker-nav--title i {
    color: #151522 !important;
}
