@charset "UTF-8";

@font-face {
    font-family: "Playfair";
    font-display: swap;
    src: url("../fonts/Playfair-BoldItalic.woff") format("woff"), url("../fonts/Playfair-BoldItalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Roboto";
    font-display: swap;
    src: url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    font-display: swap;
    src: url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    font-display: swap;
    src: url("../fonts/Roboto-SemiBold.woff") format("woff"), url("../fonts/Roboto-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    font-display: swap;
    src: url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Rubik";
    font-display: swap;
    src: url("../fonts/Rubik-Bold.woff") format("woff"), url("../fonts/Rubik-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Rubik";
    font-display: swap;
    src: url("../fonts/Rubik-Medium.woff") format("woff"), url("../fonts/Rubik-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Rubik";
    font-display: swap;
    src: url("../fonts/Rubik-Regular.woff") format("woff"), url("../fonts/Rubik-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Rubik";
    font-display: swap;
    src: url("../fonts/Rubik-SemiBold.woff") format("woff"), url("../fonts/Rubik-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

.login__footer {
    display: flex;
    justify-content: center;
}

.login__block {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

._error {
    color: red;
    font-size: 12px;
}

.auth-alert--hidden {
    display: none;
}

.alert {
    position: relative;
    width: 100%;
    padding: 12px 14px;
    margin: 0 0 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.order-details__paid.paid-order {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.order-details__paid .paid-order__icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b4f34;
}

.order-details__paid .paid-order__icon svg {
    width: 26px;
    height: 26px;
}

.order-details__paid .paid-order__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-details__paid .paid-order__title,
.order-details__paid .paid-order__text {
    margin: 0;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.form-login .auth-alert,
.login-popup .auth-alert,
.request-send__body .auth-alert,
.recover-password__head .auth-alert {
    text-align: left;
}

.request-send__body .auth-alert,
.recover-password__head .auth-alert {
    text-align: center;
}

.iti {
    display: flex !important;
}

.data-order__input.form_error,
.select__title.form_error {
    border-radius: 8px;
    border: 1px solid red;
}

.data-info-order__input.form_error,
.info-order__bio.form_error {
    border-radius: 8px;
    border: 1px solid red;
}


.flatpickr-years-grid,
.flatpickr-months-grid,
.flatpickr-days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 10px;
}

.flatpickr-years-grid {
    grid-template-columns: repeat(4, 1fr);
}

.flatpickr-days-grid {
    grid-template-columns: repeat(4, 1fr);
}

.flatpickr-year-item,
.flatpickr-month-item,
.flatpickr-day-item {
    padding: 8px;
    text-align: center;
    background: #f0f0f0;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
}

.flatpickr-year-item:hover,
.flatpickr-month-item:hover,
.flatpickr-day-item:hover {
    background: #d0d0d0;
}

.checkbox__content.form_error::before {
    border: 1px solid red;
}

.recover-password__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    text-align: center;
}

.info-login__description {
    text-align: center;
    color: #242424;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

a:focus,
a:active {
    outline: none;
}

#calendar-wrapper {
    position: absolute;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
    padding: 10px;
    border-radius: 8px;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

._center {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    line-height: 1;
    font-family: "Rubik";
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

.request-send__text {
    text-align: center;
}

input,
button,
textarea {
    font-family: "Rubik";
}

input::-ms-clear {
    display: none;
}

.sidebar-cart__checkbox {
    display: flex;
    vertical-align: middle;
}

button {
    cursor: pointer;
}

._error {
    color: red !important;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

.flatpickr-calendar.open {
    max-height: 440px !important;
    width: 340px;
    overflow-y: auto;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

.auth__icon,
.auth__icon img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    height: 42px;
    width: 42px;
}

span.terms {
    cursor: pointer;
    color: #5234d7;
}

span.terms:hover {
    text-decoration: underline;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

body {
    color: #261645;
    font-size: 16px;
    line-height: 1.2;
}

body._violet-bg {
    background: #F5F3FC;
}

body._bg {
    background: #F5F3FC;
}

body._bg-gray {
    background: #F5F5F5;
}

body._lock {
    overflow: hidden;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

._container {
    width: 100%;
    padding: 0px 20px;
    max-width: 1210px;
    margin: 0 auto;
}

._container._mini {
    max-width: 1060px;
}

._container._big {
    max-width: 1340px;
}

.product-order__quantity {
    width: 208px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 168px;
    flex: 0 0 168px;
    margin-right: -20px;
}

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0px 0px;
}

._register a {
    color: #5234d7;
}

.btn._fw {
    width: 100%;
}

.total_price {
    width: 120px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    display: inline-block;
    text-align: right;
    color: #261645;
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
}

.select {
    position: relative;
}

.select__item {
    position: relative;
}

.select__title {
    color: #261645;
    cursor: pointer;
    border-radius: 8px;
    background: #F5F5F5;
    outline: 1px solid transparent;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.select__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-tap-highlight-color: transparent;
    font-size: 14px;
    padding: 0px 15px;
    min-height: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.select__title:focus,
.select__title:active {
    outline: 1px solid transparent;
}

.select__value._placeholder {
    color: #989898;
}

.select__value span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.select__value:before {
    content: "";
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 20px;
    height: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%;
}

.select__options {
    color: #261645;
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    border-radius: 8px;
    min-width: 100%;
    left: 0;
    font-size: 14px;
    background: #fff;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(38, 22, 69, 0.1);
    box-shadow: 0px 4px 4px 0px rgba(38, 22, 69, 0.1);
    max-height: 400px;
    overflow: auto;
}

.select__option {
    cursor: pointer;
    padding: 10px 15px;
    margin: 0px 0px 0px 0px;
}

.select._active {
    z-index: 5;
}

.select._active .select__title {
    outline: 1px solid #5234D7;
}

.select._active .select__value:before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.select._active .select__options {
    display: block;
}

.viewpass {
    position: absolute;
    top: 24px;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.viewpass._active .viewpass__hide {
    display: none;
}

.viewpass._active .viewpass__view {
    display: block;
}

.viewpass__view {
    width: 24px;
    height: 24px;
    display: none;
}

.viewpass__hide {
    width: 24px;
    height: 24px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.label {
    color: #261645;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
}

.input {
    border-radius: 8px;
    background: #F5F5F5;
    outline: 1px solid transparent;
    width: 100%;
    display: block;
    padding: 0px 15px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;

    font-size: 14px;
    font-weight: 400;
    min-height: 48px;
}

._phone {
    font-size: 16px;
}

.input:focus {
    outline: 1px solid #5234D7;
}

.input._focus {
    color: #261645;
}

.input._error {
    outline: 1px solid #F2494C;
}

#register_form input[name="accept_terms"]._error {
    outline: 1px solid #F2494C;
    outline-offset: 1px;
    border-radius: 2px;
}

.input._date {
    background: url(../img/icons/calendar.svg) calc(100% - 15px) center/24px no-repeat, #F5F5F5;
}

._error {
    color: #F2494C;
    font-size: 14px;
    font-weight: 400;

}

.form__error {
    color: #F2494C;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: 10px;
}

/*
.form__error::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17px;
          flex: 0 0 17px;
  width: 17px;
  height: 17px;
  background: url(../img/icons/error.svg) center/cover no-repeat;
  display: inline-block;
} */

textarea.input {
    resize: none;
    padding: 15px;
    min-height: 90px;
}

#add-price-period:not(._active) {
    display: none;
}

.file__input {
    display: none;
}

.file__content {
    border-radius: 8px;
    border: 2px dashed #B7B7B7;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.file__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
}

.file__icon svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.file__icon svg path[fill] {
    fill: #989898;
}

.file__icon svg path[stroke] {
    stroke: #989898;
}

.file__text {
    color: #989898;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.file__format {
    color: #989898;
    font-size: 12px;
    font-weight: 400;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.checkbox {
    position: relative;
}

.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.checkbox__input:checked + .checkbox__content:before {
    background: url("../img/icons/check.svg") center/14px no-repeat, #5234D7;
    border-color: #5234D7;
}

.checkbox__content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 14px;
    color: #261645;
    cursor: pointer;
}

.checkbox__content:before {
    content: "";
    margin: 0px 12px 0px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #261645;
    border-radius: 2px;
}

.checkbox a {
    color: #5234D7;
}

.checkbox._error .checkbox__text:before {
    border: 1px solid #ee1212;
}

.options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.options__item {
    position: relative;
    cursor: pointer;
}

.options__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    left: 0;
    top: 0;
    visibility: hidden;
}

.options__input:checked + .options__content::before {
    border-color: #5234D7;
}

.options__input:checked + .options__content::after {
    opacity: 1;
}

.options__content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 18px;
    color: #261645;
    font-weight: 400;
    line-height: 1.4;
}

.options__content:before {
    content: "";
    margin: 0px 8px 0px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #7B7E86;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.options__content::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 5px;
    background: #5234D7;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.rating-block {
    display: table;
    font-size: 0;
}

.rating {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.rating.edit .star {
    cursor: pointer;
}

.rating .star {
    width: 17px;
    height: 14px;
    display: inline-block;
    position: relative;
    z-index: 3;
}

.rating__line {
    position: absolute;
    width: 85px;
    height: 14px;
    top: 0;
    left: 0;
    background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
    z-index: 1;
    background-size: 85px 100%;
}

.rating__activeline {
    position: absolute;
    width: 0px;
    height: 14px;
    top: 0;
    left: 0;
    background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
    z-index: 2;
    background-size: 85px 100%;
}

.rating__value {
    display: inline-block;
    color: #1b3139;
    font-size: 14px;
    line-height: 13px;
    vertical-align: middle;
}

.quantity {
    width: 100%;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #B5B5B5;
    border-radius: 50px;
    padding: 5px 15px;
}

.quantity__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin: -1px 0px 0px -7px;
    background: #261645;
    width: 14px;
    height: 2px;
}

.quantity__button_plus::before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.quantity__input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.quantity__input input {
    height: 100%;
    color: #261645;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: center;
}

img,
svg {
    vertical-align: middle;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

._btn {
    padding: 5px 30px;
    border-radius: 30px;
    background: #5234D7;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 48px;
}

._btn._white-stroke {
    background: transparent;
    border: 1px solid #fff;
}

._title {
    color: #261645;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 auto;
}

ol.counter {
    list-style-type: none;
    counter-reset: item;
}

ol.counter li {
    position: relative;
    padding: 0px 0px 0px 45px;
}

ol.counter li:before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    color: #818181;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    border: 1px solid #4274bb;
}

.ellipsis {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.es {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.table {
    display: table;
    font-size: 0;
    width: 100%;
}

.trow {
    display: table-row;
}

.cell {
    display: table-cell;
}

.cell.full {
    width: 100%;
}

._ibg {
    position: relative;
}

._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

body.ie ._ibg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body.ie ._ibg img {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.video {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.moretext {
    overflow: hidden;
}

.moretext__more {
    cursor: pointer;
}

.moretext__more span {
    font-style: normal;
}

.moretext__more span:first-child {
    display: block;
}

.moretext__more span:last-child {
    display: none;
}

.moretext__more.active span {
    font-style: normal;
}

.moretext__more.active span:first-child {
    display: none;
}

.moretext__more.active span:last-child {
    display: block;
}

#map {
    background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
    overflow: hidden;
}

._swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
    display: none !important;
}

.slick-slider {
    position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slick-slider .slick-track {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-slider .slick-slide {
    position: relative;
}

.tab__item {
    display: none;
}

.tab__item.active {
    display: block;
}

._tabs-block {
    display: none;
}

._tabs-block._active {
    display: block;
}

.mirror {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.nicescroll-rails {
    z-index: 1000 !important;
}

.gm-style-iw-t {
    opacity: 0;
}

.baloon {
    opacity: 1;
    right: -7px !important;
    bottom: 80px !important;
}

.baloon button {
    display: none !important;
}

.baloon:after {
    display: none !important;
}

.baloon-style {
    display: none;
}

.baloon-content.gm-style-iw {
    opacity: 1;
    border-radius: 0px !important;
    max-width: 300px !important;
    padding: 0 !important;
    left: 0 !important;
    width: 100% !important;
    overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
    overflow: hidden !important;
    max-width: none !important;
}

.baloon-content.gm-style-iw:after {
    display: none !important;
}

.baloon-close {
    top: 18px !important;
}

._custom-scroll {
    position: fixed;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    z-index: 1000;
}

._custom-scroll__line {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px 0 0 3px;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
}

.qs-datepicker-container {
    margin-top: 5px;
    font-size: 1rem;
    font-family: sans-serif;
    color: #261645;
    position: absolute;
    width: 15.625em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 9001;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
    box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
    padding: 5px;
}

.qs-datepicker-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.qs-datepicker-container.qs-centered {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.qs-datepicker-container.qs-hidden {
    display: none;
}

.qs-datepicker .qs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 0.5em;
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.qs-datepicker .qs-overlay.qs-hidden {
    opacity: 0;
    z-index: -1;
}

.qs-datepicker .qs-overlay .qs-overlay-year {
    background: rgba(0, 0, 0, 0);
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    font-size: 0.875em;
    padding: 0.25em 0;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.qs-datepicker .qs-overlay .qs-close {
    padding: 0.5em;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

.qs-datepicker .qs-overlay .qs-submit {
    border: 1px solid #fff;
    border-radius: 0.26392em;
    padding: 0.5em;
    margin: 0 auto auto;
    cursor: pointer;
    background: rgba(128, 128, 128, 0.4);
}

.qs-datepicker .qs-overlay .qs-submit.qs-disabled {
    color: grey;
    border-color: grey;
    cursor: not-allowed;
}

.qs-datepicker .qs-overlay .qs-overlay-month-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.qs-datepicker .qs-overlay .qs-overlay-month {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33.33333%;
    cursor: pointer;
    opacity: 0.5;
    -webkit-transition: opacity 0.15s;
    -o-transition: opacity 0.15s;
    transition: opacity 0.15s;
}

.qs-datepicker .qs-overlay .qs-overlay-month.active,
.qs-datepicker .qs-overlay .qs-overlay-month:hover {
    opacity: 1;
}

.qs-datepicker .qs-controls {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #fff;
    color: #261645;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter 0.3s;
    transition: -webkit-filter 0.3s;
    -o-transition: filter 0.3s;
    transition: filter 0.3s;
    transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-controls.qs-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.qs-datepicker .qs-arrow {
    height: 1.5625em;
    width: 1.5625em;
    position: relative;
    cursor: pointer;
    border-radius: 0.26392em;
    -webkit-transition: background 0.15s;
    -o-transition: background 0.15s;
    transition: background 0.15s;
}

.qs-datepicker .qs-arrow:hover {
    background: rgba(0, 0, 0, 0.1);
}

.qs-datepicker .qs-arrow:hover.qs-left:after {
    border-right-color: #000;
}

.qs-datepicker .qs-arrow:hover.qs-right:after {
    border-left-color: #000;
}

.qs-datepicker .qs-arrow:after {
    content: "";
    border: 0.39062em solid rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    -webkit-transition: border 0.2s;
    -o-transition: border 0.2s;
    transition: border 0.2s;
}

.qs-datepicker .qs-arrow.qs-left:after {
    border-right-color: grey;
    right: 50%;
    -webkit-transform: translate(25%, -50%);
    -ms-transform: translate(25%, -50%);
    transform: translate(25%, -50%);
}

.qs-datepicker .qs-arrow.qs-right:after {
    border-left-color: grey;
    left: 50%;
    -webkit-transform: translate(-25%, -50%);
    -ms-transform: translate(-25%, -50%);
    transform: translate(-25%, -50%);
}

.qs-datepicker .qs-month-year {
    font-weight: 700;
    -webkit-transition: border 0.2s;
    -o-transition: border 0.2s;
    transition: border 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
}

.qs-datepicker .qs-month-year:hover {
    border-bottom: 1px solid grey;
}

.qs-datepicker .qs-month-year:active:focus,
.qs-datepicker .qs-month-year:focus {
    outline: none;
}

.qs-datepicker .qs-month {
    padding-right: 0.5ex;
}

.qs-datepicker .qs-year {
    padding-left: 0.5ex;
}

.qs-datepicker .qs-squares {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #261645;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.3125em;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter 0.3s;
    transition: -webkit-filter 0.3s;
    -o-transition: filter 0.3s;
    transition: filter 0.3s;
    transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-squares.qs-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.qs-datepicker .qs-square {
    width: 14.28571%;
    height: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background 0.1s;
    -o-transition: background 0.1s;
    transition: background 0.1s;
    border-radius: 0.26392em;
}

.qs-datepicker .qs-square.qs-current {
    font-weight: 700;
}

.qs-datepicker .qs-square.qs-current span {
    text-decoration: underline;
}

.qs-datepicker .qs-square.qs-active {
    background: #5234D7;
    color: #fff;
    font-weight: 500;
}

.qs-datepicker .qs-square.qs-range-date-start:not(.qs-range-date-6) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle {
    background: #d4ebf2;
}

.qs-datepicker .qs-square.qs-range-date-middle:not(.qs-range-date-0):not(.qs-range-date-6) {
    border-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-end:not(.qs-range-date-0),
.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-6 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.qs-datepicker .qs-square.qs-disabled span {
    opacity: 0.2;
}

.qs-datepicker .qs-square.qs-empty {
    cursor: default;
}

.qs-datepicker .qs-square.qs-disabled {
    cursor: not-allowed;
}

.qs-datepicker .qs-square.qs-day {
    cursor: default;
    font-weight: 700;
    color: grey;
}

.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background: #5234D7;
    color: #fff;
}

.qs-datepicker .qs-event {
    position: relative;
}

.qs-datepicker .qs-event:after {
    content: "";
    position: absolute;
    width: 0.46875em;
    height: 0.46875em;
    border-radius: 50%;
    background: #07f;
    bottom: 0;
    right: 0;
}

.qs-datepicker .qs-event.qs-disabled:after,
.qs-datepicker .qs-event.qs-empty:after {
    background: #cce4ff;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 2px;
    color: #999;
    cursor: pointer;
    display: block;
    margin-top: -10px;
    position: absolute;
    display: block;
    width: 20px;
    height: 36px;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    z-index: 1080;
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    color: #fff;
}

.lg-actions .lg-next {
    right: 20px;
    background: url("../img/icons/p-right.svg") 0 0/100% no-repeat;
}

.lg-actions .lg-prev {
    left: 20px;
    background: url("../img/icons/p-left.svg") 0 0/100% no-repeat;
}

@-webkit-keyframes lg-right-end {
    0% {
        left: 0;
    }

    50% {
        left: -30px;
    }

    100% {
        left: 0;
    }
}

@keyframes lg-right-end {
    0% {
        left: 0;
    }

    50% {
        left: -30px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes lg-left-end {
    0% {
        left: 0;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0;
    }
}

@keyframes lg-left-end {
    0% {
        left: 0;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0;
    }
}

.lg-outer.lg-right-end .lg-object {
    -webkit-animation: lg-right-end 0.3s;
    animation: lg-right-end 0.3s;
    position: relative;
}

.lg-outer.lg-left-end .lg-object {
    -webkit-animation: lg-left-end 0.3s;
    animation: lg-left-end 0.3s;
    position: relative;
}

.lg-toolbar {
    z-index: 1082;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
    color: #fff;
}

.lg-toolbar .lg-close {
    background: url("../img/icons/close.svg") center no-repeat;
}

.lg-toolbar .lg-download {
    display: none;
}

.lg-sub-html {
    background-color: rgba(0, 0, 0, 0.45);
    bottom: 0;
    color: #eee;
    font-size: 16px;
    left: 0;
    padding: 10px 40px;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 1080;
}

.lg-sub-html h4 {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
}

.lg-sub-html p {
    font-size: 12px;
    margin: 5px 0 0;
}

#lg-counter {
    color: #999;
    display: inline-block;
    font-size: 16px;
    padding-left: 20px;
    padding-top: 12px;
    vertical-align: middle;
}

.lg-toolbar,
.lg-prev,
.lg-next {
    opacity: 1;
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    -webkit-transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-hide-items .lg-prev {
    opacity: 0;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
    opacity: 0;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
    opacity: 0;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
    -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
    transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
    -o-transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
}

.lg-outer .lg-thumb-outer {
    background-color: #0d0a0a;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1080;
    max-height: 350px;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
    -webkit-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
    transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
    padding: 10px 0;
    height: 100%;
    margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
    border-radius: 5px;
    cursor: pointer;
    float: left;
    overflow: hidden;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 4px;
    margin-bottom: 5px;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
    padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
    padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
    -webkit-transition: bottom 0.25s ease;
    -o-transition: bottom 0.25s ease;
    transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 100px;
}

.lg-outer .lg-toggle-thumb {
    background-color: #0d0a0a;
    border-radius: 2px 2px 0 0;
    color: #999;
    cursor: pointer;
    font-size: 24px;
    height: 39px;
    line-height: 27px;
    padding: 5px 0;
    position: absolute;
    right: 20px;
    text-align: center;
    top: -39px;
    width: 50px;
}

.lg-outer .lg-toggle-thumb:after {
    content: "";
}

.lg-outer .lg-toggle-thumb:hover {
    color: #fff;
}

.lg-outer .lg-video-cont {
    display: inline-block;
    vertical-align: middle;
    max-width: 1140px;
    max-height: 100%;
    width: 100%;
    padding: 0 5px;
}

.lg-outer .lg-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}

.lg-outer .lg-video .lg-object {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
    width: 84px;
    height: 59px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -42px;
    margin-top: -30px;
    z-index: 1080;
    cursor: pointer;
}

._no-webp .lg-outer .lg-has-vimeo .lg-video-play {
    background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

._no-webp .lg-outer .lg-has-vimeo:hover .lg-video-play {
    background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

._no-webp .lg-outer .lg-has-html5 .lg-video-play {
    background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
}

.lg-outer .lg-has-html5 .lg-video-play {
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
    width: 64px;
    opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
    opacity: 1;
}

._no-webp .lg-outer .lg-has-youtube .lg-video-play {
    background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

._no-webp .lg-outer .lg-has-youtube:hover .lg-video-play {
    background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
    visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
    display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
    visibility: visible;
}

.lg-progress-bar {
    background-color: #333;
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1083;
    opacity: 0;
    -webkit-transition: opacity 0.08s ease 0s;
    -o-transition: opacity 0.08s ease 0s;
    transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
    background-color: #a90707;
    height: 5px;
    width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
    width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
    opacity: 1;
}

.lg-autoplay-button:after {
    content: "";
}

.lg-show-autoplay .lg-autoplay-button:after {
    content: "";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
    -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
    -webkit-transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
    transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
    -o-transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
    transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
    transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#lg-zoom-in:after {
    content: "";
}

#lg-actual-size {
    font-size: 20px;
}

#lg-actual-size:after {
    content: "";
}

#lg-zoom-out {
    opacity: 0.5;
    pointer-events: none;
}

#lg-zoom-out:after {
    content: "";
}

.lg-zoomed #lg-zoom-out {
    opacity: 1;
    pointer-events: auto;
}

.lg-outer .lg-pager-outer {
    bottom: 60px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1080;
    height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
    overflow: visible;
}

.lg-outer .lg-pager-cont {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
    -webkit-box-shadow: 0 0 0 2px white inset;
    box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
    background-color: #fff;
    color: #fff;
    bottom: 100%;
    height: 83px;
    left: 0;
    margin-bottom: 20px;
    margin-left: -60px;
    opacity: 0;
    padding: 5px;
    position: absolute;
    width: 120px;
    border-radius: 3px;
    -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
    transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
    transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
    transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
    width: 100%;
    height: 100%;
}

.lg-outer .lg-pager {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
    display: block;
    height: 12px;
    -webkit-transition: box-shadow 0.3s ease 0s;
    -o-transition: box-shadow 0.3s ease 0s;
    -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
    transition: -webkit-box-shadow 0.3s ease 0s;
    transition: box-shadow 0.3s ease 0s;
    transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
    width: 12px;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
    -webkit-box-shadow: 0 0 0 8px white inset;
    box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px dashed;
    bottom: -10px;
    display: inline-block;
    height: 0;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    vertical-align: middle;
    width: 0;
}

.lg-fullscreen:after {
    content: "";
}

.lg-fullscreen-on .lg-fullscreen:after {
    content: "";
}

.lg-outer #lg-dropdown-overlay {
    background-color: rgba(0, 0, 0, 0.25);
    bottom: 0;
    cursor: default;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1081;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
    -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
    transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -ms-transform: translate3d(0, 0px, 0);
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
    opacity: 1;
    visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
    color: #fff;
}

.lg-outer .lg-dropdown {
    background-color: #fff;
    border-radius: 2px;
    font-size: 14px;
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 50px;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translate3d(0, 5px, 0);
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
    -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
    -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
    -webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
    transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
    -o-transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
    transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
    transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    border: 8px solid transparent;
    border-bottom-color: #fff;
    right: 16px;
    top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
    margin-bottom: 0px;
}

.lg-outer .lg-dropdown > li:hover a,
.lg-outer .lg-dropdown > li:hover .lg-icon {
    color: #333;
}

.lg-outer .lg-dropdown a {
    color: #333;
    display: block;
    white-space: pre;
    padding: 4px 12px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
    background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
    display: inline-block;
    line-height: 1;
    margin-top: -3px;
    vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
    color: #333;
    display: inline-block;
    float: none;
    font-size: 20px;
    height: auto;
    line-height: 1;
    margin-right: 8px;
    padding: 0;
    vertical-align: middle;
    width: auto;
}

.lg-outer #lg-share {
    position: relative;
}

.lg-outer #lg-share:after {
    content: "";
}

.lg-outer #lg-share-facebook .lg-icon {
    color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
    content: "";
}

.lg-outer #lg-share-twitter .lg-icon {
    color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
    content: "";
}

.lg-outer #lg-share-googleplus .lg-icon {
    color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
    content: "";
}

.lg-outer #lg-share-pinterest .lg-icon {
    color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
    content: "";
}

.group {
    *zoom: 1;
}

.group:before,
.group:after {
    display: table;
    content: "";
    line-height: 0;
}

.group:after {
    clear: both;
}

.lg-outer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}

.lg-outer * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.lg-outer.lg-visible {
    opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
    -webkit-transition-duration: inherit !important;
    -o-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    -o-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
    -webkit-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
    transition-duration: 0s !important;
    opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}

.lg-outer .lg {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 100%;
}

.lg-outer .lg-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.lg-outer .lg-item {
    background: url("../img/icons/loading.gif") no-repeat scroll center center transparent;
    display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
    display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
    display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}

.lg-outer .lg-img-wrap {
    position: absolute;
    padding: 0 5px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.lg-outer .lg-item.lg-complete {
    background-image: none;
}

.lg-outer .lg-item.lg-current {
    z-index: 1060;
}

.lg-outer .lg-image {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
    opacity: 1;
}

.lg-outer .lg-empty-html {
    display: none;
}

.lg-outer.lg-hide-download #lg-download {
    display: none;
}

.lg-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
    opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
    -webkit-transition: none 0s ease 0s !important;
    -o-transition: none 0s ease 0s !important;
    transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
    opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
    -webkit-transition: opacity 0.1s ease 0s;
    -o-transition: opacity 0.1s ease 0s;
    transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
    opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
    opacity: 0;
    position: absolute;
    left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
    left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    left: 0;
    opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.popup {
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    padding: 30px 20px;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: visibility 0.8s ease 0s;
    -o-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
}

.popup::before {
    content: "";
    background: rgba(87, 84, 91, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0s;
    -o-transition: opacity 0.8s ease 0s;
    transition: opacity 0.8s ease 0s;
}

.popup.show {
    visibility: visible;
    overflow: auto;
}

.popup.show::before {
    opacity: 1;
}

.popup.show .popup__body {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup._active {
    overflow: auto;
    visibility: visible;
}

.popup._active::before {
    opacity: 1;
}

.popup._active .popup__body {
    -webkit-transition: all 0.3s ease 0.2s;
    -o-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.2s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.request-send__title {
    font-size: 24px;
}

.request-send__body {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.popup__body {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-radius: 8px;
    background: #FFF;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    position: relative;
}

.popup__body._terms {
    max-width: 760px;
    max-height: calc(100vh - 80px);
    overflow: hidden;
    padding-right: 48px;
}

.popup__body._terms .terms_popup__content {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

.article__content a {
    color: #7B7E86;
    text-decoration: underline;
}

.popup__close {
    width: 16px;
    height: 16px;
    position: absolute;
    top: -20px;
    right: -20px;
    cursor: pointer;
    z-index: 30;
    background: url("../img/icons/close-b.svg") center/cover no-repeat;
}

.popup__body._terms .popup__close--side {
    position: absolute;
    top: 16px;
    right: 16px;
    margin: 0;
    display: block;
    z-index: 140;
}

.extend-period {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.extend-period__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.extend-period__title {
    color: #261645;
    font-size: 18px;
    font-weight: 700;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.extend-period__close {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.extend-period__content {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.extend-period__footer {
    padding-top: 30px;
    border-top: 1px solid #D7D7D7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.extend-period__total {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #261645;
}

.extend-period__button {
    width: 100%;
    max-width: 100%;
}

.person-extend-period {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.person-extend-period__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.person-extend-period__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.person-extend-period__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.person-extend-period__title {
    color: #261645;
    font-size: 16px;
    font-weight: 600;
}

.person-extend-period__period {
    color: #00A759;
    font-size: 14px;
    font-weight: 400;
}

.subscribe .popup__body {
    max-width: 840px;
    width: 100%;
    padding: 10px;
    border-radius: 22px;
}

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

.subscribe__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 365px;
    flex: 0 0 365px;
}

.subscribe__image img,
.subscribe__image svg {
    width: 100%;
    max-width: 100%;
}

.subscribe__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 30px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 30px;
}

.subscribe__text {
    color: #7B7E86;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.form-subscribe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.form-subscribe__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-subscribe__label {
    margin-bottom: 10px;
    text-align: left;
}

.form-subscribe__button {
    font-size: 16px;
    font-weight: 500;
}

.expired .popup__body {
    max-width: 360px;
    width: 100%;
    border-radius: 16px;
}

.expired__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.expired__icon {
    width: 52px;
    height: 52px;
}

.expired__title {
    color: #261645;
    font-size: 44px;
    font-weight: 700;
}

.expired__text {
    color: rgba(66, 66, 66, 0.75);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.expired__button {
    width: 100%;
}

.header {
    padding: 20px 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: #fff;
    z-index: 4;
}

.header._border-b {
    border-bottom: 1px solid #E2E2E2;
}

.header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.header__content._center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header__content._center .header__logo {
    margin: 0px;
}

.header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 176px;
    flex: 0 0 176px;
    width: 176px;
}

.header__logo img,
.header__logo svg {
    width: 100%;
    max-width: 100%;
}

.header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.header__user {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    position: relative;
}

.header__user span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: -3px;
    top: -6px;
    background: #5234D7;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.header__user img,
.header__user svg {
    width: 24px;
    height: 24px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
}

.header__cart {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    position: relative;
}

.header__cart span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: -3px;
    top: -6px;
    background: #5234D7;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.header__cart img,
.header__cart svg {
    width: 24px;
    height: 24px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.menu__item._user .menu__link {
    color: #fff;
    background: #5234D7;
}

.menu__item._user svg path[fill] {
    fill: #fff;
}

.menu__item._user svg path[stroke] {
    stroke: #fff;
}

.menu__link {
    color: #261645;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 0px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.menu__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-left: auto;
}

.language {
    position: relative;
}

.language__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    cursor: pointer;
}

.language__head._active .language__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.language__value {
    color: #261645;
    font-size: 16px;
    font-weight: 400;
}

.language__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.language__body {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #fff;
    display: none;
    min-width: 100%;
    z-index: 1;
}

.language__item {
    padding: 10px;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    color: #261645;
    display: block;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.icon-menu {
    display: none;
}

.footer {
    border-top: 1px solid #ACACAC;
    padding: 40px 0px;
    background: #fff;
}

.anpc {
    display: block;
    height: 30px;
}

.anpc img {
    object-fit: fill;
    display: Flex;
    width: 100%;
    height: 100%;
}

.footer__main {
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 70px;
    -moz-column-gap: 70px;
    column-gap: 70px;
    -ms-grid-columns: (minmax(0, 1fr)) [ 4 ];
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
}

.footer__logo {
    width: 100%;
    max-width: 176px;
}

.footer__logo img,
.footer__logo svg {
    width: 100%;
    max-width: 100%;
}

.footer__text {
    color: rgba(66, 66, 66, 0.75);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.footer__name {
    color: #424242;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.footer__body {
    margin-top: 15px;
}

.footer__list {
    color: rgba(66, 66, 66, 0.75);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
}

.footer__list a {
    color: inherit;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.footer__list .footer__item.sal {
    display: flex;
    column-gap: 10px;
}

.footer__bottom {
    margin-top: 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    row-gap: 0;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
}

.footer__copy {
    justify-self: start;
    color: #424242;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.footer__payments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-self: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    row-gap: 0;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.footer__anpc {
    justify-self: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.footer__payment {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 38px;
    flex: 0 0 38px;
    width: 38px;
}

.footer__payment.sal {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 78px;
    flex: 0 0 78px;
    width: 78px;
}

.footer__payment--wide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 138px;
    flex: 0 0 138px;
    width: 138px;
}

body._deceased-layout .header--deceased {
    padding: 12px 0;
    border-bottom: 1px solid #dcdcdc;
}

body._deceased-layout .header--deceased .header__content {
    justify-content: center;
}

body._deceased-layout .header--deceased .header__logo {
    flex: 0 0 176px;
    width: 176px;
    max-width: 176px;
}

body._deceased-layout .footer--deceased {
    border-top: 1px solid #dcdcdc;
    background: transparent;
    padding: 24px 0;
}

body._deceased-layout .footer--deceased .footer-deceased__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
}

body._deceased-layout .footer--deceased .footer__logo {
    width: 176px;
    max-width: 176px;
}

body._deceased-layout .footer--deceased .footer-deceased__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
}

body._deceased-layout .footer--deceased .footer-deceased__links a {
    font-family: Rubik, sans-serif;
    color: #424242;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

body._deceased-layout .footer--deceased .footer-deceased__copy {
    font-family: Rubik, sans-serif;
    margin-top: 30px;
    color: #424242;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 991.98px) {
    body._deceased-layout .header--deceased .header__logo {
        margin-right: unset;
    }
}

@media (max-width: 767.98px) {
    body._deceased-layout .footer--deceased .footer-deceased__top {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

.footer__payment--wide img {
    width: 100%;
    height: auto;
    max-height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner {
    padding: 0px 0px 40px;
}

._no-webp .banner__slide {
    background: url(../img/banner-image.png) 100% calc(100% + 50px)/700px no-repeat, #2E3B52;
}

.banner__slide {
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    overflow: hidden;
    min-height: 450px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    margin-left: 85px;
    max-width: 550px;
}

.banner__title {
    color: #FFF;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner__text {
    color: #D7D7D7;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.banner__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.about-section {
    padding: 40px 0px;
}

.about-section._v2 .about-section__button {
    position: static;
}

.about-section._v3 .about-section__circle-bg {
    background: rgba(198, 187, 244, 0.1);
}

.about-section._v3 .about-section__wrapper {
    padding: 40px 20px;
    background: #2E3B52;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-section._v3 .about-section__title,
.about-section._v3 .about-section__text,
.about-section._v3 .about-section__item span {
    color: #fff;
}

.about-section__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about-section__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 570px;
    flex: 0 0 570px;
}

.about-section__text {
    color: #7B7E86;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.about-section__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.about-section__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.about-section__item span {
    color: #261645;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.about-section__item img,
.about-section__item svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
}

.about-section__item svg path {
    fill: #5234D7;
}

/* Remove fill from the SVG container */
.about-section__item._purple svg {
    fill: none;
}

.about-section__item._purple svg path {
    fill: none;
    stroke: #5234D7;
}

.about-section__scan {
    max-width: 370px;
}

.about-section__image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.about-section__image .about-section__button {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.about-section__phone {
    position: relative;
    z-index: 1;
    width: 278px;
}

.about-section__phone img,
.about-section__phone svg {
    width: 100%;
    max-width: 100%;
}

.about-section__circle-bg {
    width: 530px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(82, 52, 215, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.scan-about-section {
    border-radius: 12px;
    background: #EEEBFB;
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 20px;
    position: relative;
    z-index: 1;
}

.scan-about-section__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.scan-about-section__top img,
.scan-about-section__top svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.scan-about-section__text {
    font-size: 18px;
    font-weight: 400px;
    line-height: 1.4;
}

.scan-about-section__qr-image {
    width: 458px;
    position: absolute;
    bottom: -50px;
    left: calc(100% - 50px);
    z-index: 2;
}

.scan-about-section__qr-image img,
.scan-about-section__qr-image svg {
    width: 100%;
    max-width: 100%;
}

.style-section {
    padding: 40px 0px;
}

.style-section__wrapper {
    padding: 20px 85px;
    border-radius: 12px;
    background: #EEEBFB;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    min-height: 450px;
}

.style-section__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 20px;
}

.style-section__text {
    color: #7B7E86;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.style-section__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 570px;
    flex: 0 0 570px;
}

.style-section__image img {
    width: 100%;
    max-width: 100%;
}

.how-work {
    padding: 40px 0px;
}

.how-work__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.how-work__subtitle {
    color: #7B7E86;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    width: 100%;
    max-width: 570px;
}

.how-work__body {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 90px;
    -moz-column-gap: 90px;
    column-gap: 90px;
    row-gap: 50px;
}

.how-work__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 90px * 2) / 3);
    flex: 0 0 calc((100% - 90px * 2) / 3);
}

.item-work {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.item-work__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.item-work__image {
    aspect-ratio: 33/24;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.item-work__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.item-work__text {
    color: #261645;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.item-work__text a {
    color: #5234D7;
    text-decoration: underline;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.section-products {
    padding: 40px 0px;
}

.section-products__title {
    text-align: center;
}

.section-products__content {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.section-products__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
    flex: 0 0 calc((100% - 20px * 1) / 2);
}

.product {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 28px;
    border-radius: 24px;
    border: 2px solid #5234D7;
    background: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-products__item.product {
    padding: 28px;
}

.section-products__item.product .product__image {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 18px;
}

.section-products__item.product .product__image img {
    -o-object-fit: cover;
    object-fit: cover;
}

.section-products__item.product .product__body {
    row-gap: 16px;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.section-products__item.product .product__name {
    font-weight: 600;
    line-height: 1.05;
}

.section-products__item.product .product__desc {
    margin-top: 2px;
    margin-bottom: 0;
    color: #7c7f8a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

.section-products__item.product .product__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.section-products__item.product .product__price {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.section-products__item.product .product__button {
    font-size: 15px;
    font-weight: 400;
    border-radius: 100px;
    padding: 8px 20px;
}

@media (max-width: 1222px) {
    .product {
        padding: 20px;
        border-radius: 18px;
        grid-template-columns: minmax(0, 1fr);
        row-gap: 16px;
    }

    .section-products__item.product {
        padding: 20px;
    }

    .section-products__item.product .product__name {
        font-size: 32px;
    }

    .section-products__item.product .product__price {
        font-size: 34px;
        margin: 0 auto;
    }

    .section-products__item.product .product__button {
        min-height: 50px;
        font-size: 20px;
        padding: 8px 28px;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .section-products__item.product .product__actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.product__image {
    display: block;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.product__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.product__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.product__name {
    color: #261645;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.product__price {
    color: #5234D7;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.create-banner {
    padding: 40px 0px;
}

._no-webp .create-banner__wrapper {
    background: url(../img/create-banner-image.png) calc(100% - 85px) 100%/468px no-repeat, #2E3B52;
}

.create-banner__wrapper {
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    overflow: hidden;
    min-height: 450px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0px;
}

.create-banner__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 30px;
    margin-left: 85px;
    max-width: 500px;
}

.create-banner__title {
    color: #fff;
}

.create-banner__text {
    color: #D7D7D7;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.create-banner__button {
    font-weight: 600;
}

.card {
    padding: 40px 0px;
}

.card__wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.card__price {
    color: #5234D7;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.card__label {
    color: #7B7E86;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.card__options {
    margin-top: 5px;
}

.card__actions {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 140px 1fr;
    grid-template-columns: 140px 1fr;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.card__description {
    border-radius: 12px;
    background: #EEEBFB;
    padding: 15px;
    color: #261645;
    font-size: 12px;
    font-weight: 400;
}

.card__details {
    color: #7B7E86;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.card__description b {
    font-weight: 500;
}

.card__details ul,
.card__description ul {
    padding-left: 25px;
}

.card__details ul li,
.card__description ul li {
    list-style: disc;
}

.card__details ul li:not(:last-child),
.card__description ul li:not(:last-child) {
    margin-bottom: 15px;
}

.gallery-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.main-gallery-card__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.main-gallery-card__item:not(:last-child) {
    margin-right: 20px;
}

.main-gallery-card__item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.thumbs-gallery-card__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.thumbs-gallery-card__item.swiper-slide-thumb-active::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #5234D7;
    z-index: 1;
    border-radius: inherit;
}

.thumbs-gallery-card__item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.details-card__title {
    color: #261645;
    font-size: 16px;
    font-weight: 500;
}

.details-card__body {
    margin-top: 15px;
    color: #261645;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    padding-left: 20px;
}

.details-card__body ul {
    padding-left: 20px;
}

.details-card__body ul li {
    list-style: disc;
}

.details-card__body ul li:not(:last-child) {
    margin-bottom: 5px;
}

.help {
    padding: 40px 0px;
}

.help._v2 .help__content {
    max-width: 760px;
    margin: 30px auto 0px;
}

.help__title {
    text-align: center;
}

.help__content {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.item-help {
    padding: 20px 40px;
    background: #2E3B52;
    border-radius: 16px;
}

.item-help__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.item-help__top._active .item-help__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.item-help__main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
}

.item-help__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.item-help__name {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.item-help__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.item-help__body {
    padding-left: 40px;
    color: #D0D0D0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 20px;
    display: none;
}

.item-help__body:has(ol),
.item-help__body:has(ul) {
    padding-left: 57px;
}

.item-help__body > *:not(:last-child), .item-help__body li:not(:last-child) {
    margin-bottom: 5px;
}

.place-section {
    padding: 40px 0px;
}

.place-section__wrapper {
    border-radius: 12px;
    background: #FFF;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr)) [ 2 ];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 40px;
}

.place-section__image {
    max-width: 100%;
}

.place-section__img {
    width: 412px;
    position: relative;
    border-radius: 12px;
    aspect-ratio: 1;
    max-width: 100%;
    overflow: hidden;
}

.place-section__img img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.place-section__body {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.place-section__text {
    color: #7B7E86;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 415px;
}

.order {
    padding: 40px 0px;
}

.order__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.order__back {
    color: #989898;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.order__back img,
.order__back svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}

.order__back svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.order__back svg path[fill] {
    fill: #989898;
}

.order__back svg path[stroke] {
    stroke: #989898;
}

.order__wrapper {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.order__main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border-radius: 16px;
    background: #FFF;
    padding: 30px;
}

.order__section {
    padding: 20px 0px;
}

.order__section:not(:last-child) {
    border-bottom: 1px solid #E0E0E0;
}

.order__section:first-child {
    padding-top: 0;
}

.order__section:last-child {
    padding-bottom: 0;
}

.order__name {
    color: #261645;
    font-size: 24px;
    font-weight: 700;
}

.order__body {
    margin-top: 20px;
}

.order__products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.order__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
}

.product-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.product-order._period .product-order__period {
    display: block;
}

.product-order._period .product-order__add {
    display: none;
}

.product-order__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-order__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-order__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.product-order__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.product-order__name {
    color: #261645;
    font-size: 20px;
    font-weight: 500;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.product-order__price {
    color: #261645;
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
}

.product-order__delete {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-order__delete img,
.product-order__delete svg {
    width: 24px;
    height: 24px;
}

.product-order__text {
    color: #261645;
    font-size: 16px;
    font-weight: 400;
}

.product-order__period {
    display: none;
}

.product-order__add {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: #5234D7;
    font-size: 14px;
    font-weight: 400;
}

.product-order__add img,
.product-order__add svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14px;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.period-product-order__delete {
    color: #96969A;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin-top: 10px;
}

.period-product-order__delete img,
.period-product-order__delete svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14px;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.period-product-order__delete svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.period-product-order__delete svg path[fill] {
    fill: #96969A;
}

.period-product-order__delete svg path[stroke] {
    stroke: #96969A;
}

.data-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
}

.data-order__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc((100% - 20px * 1) / 2);
    flex: 1 0 calc((100% - 20px * 1) / 2);
}

.data-order__item._full {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.data-order__label {
    margin-bottom: 10px;
}

.payment-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.payment-order__input {
    display: none;
}

.payment-order__input:checked + .payment-order__content .payment-order__circle {
    border: 2px solid #5234D7;
}

.payment-order__input:checked + .payment-order__content .payment-order__circle::after {
    opacity: 1;
}

.payment-order__content {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #5234D7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.payment-order__circle {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    position: relative;
}

.payment-order__circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #5234D7;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    opacity: 0;
    border-radius: 50%;
}

.payment-order__text {
    color: #261645;
    font-size: 18px;
    font-weight: 400;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.payment-order__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.sidebar-order__wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.sidebar-order__title {
    color: #261645;
    font-size: 22px;
    font-weight: 700;
}

.sidebar-order__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.sidebar-order__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    color: #261645;
    font-size: 16px;
    font-weight: 400;
    align-items: baseline;
}

.sidebar-order__item span:last-child {
    text-align: right;
}

.sidebar-order__item._shipping span:last-child {
    color: #6C6678;
    padding-left: 12px;
}

.sidebar-order__item._total {
    padding-top: 20px;
    border-top: 1px solid #D7D7D7;
    font-weight: 700;
}

.sidebar-order__button {
    font-weight: 500;
    padding: 12px 30px;
    min-height: 56px;
}

.order-submited {
    padding: 60px 0px;
}

.order-submited__wrapper {
    border-radius: 16px;
    background: #FFF;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    row-gap: 20px;
    max-width: 600px;
    width: 100%;
    margin: 0px auto;
}

.order-submited__icon {
    width: 52px;
    height: 52px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 52px;
    flex: 0 0 52px;
}

.order-submited__title {
    color: #261645;
    font-size: 28px;
    font-weight: 700;
}

.order-submited__text {
    color: #7B7E86;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.order-submited__button {
    min-width: 240px;
}

.login {
    padding: 60px 0px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login__wrapper {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    background: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    margin: 0px auto;
    padding: 40px;
}

.login__navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #DBDBDB;
}

.login__nav {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 2);
    flex: 0 0 calc(100% / 2);
    color: #949494;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0px 8px;
    position: relative;
    cursor: pointer;
}

.login__nav::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #5234D7;
    position: absolute;
    bottom: -1px;
    left: 0;
    display: inline-block;
    opacity: 0;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.login__nav._active {
    color: #261645;
    font-weight: 500;
}

.login__nav._active::after {
    opacity: 1;
}

.form-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.form-login__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.form-login__label {
    display: inline-block;
    font-size: 16px;
    color: #261645;
    font-weight: 400;
}

.form-login__label--required::after {
    content: " *";
    color: #e53935;
}

.form-login__required-star {
    color: #e53935;
}

.form-login__input {
    position: relative;
}

.form-login__forgot {
    color: #9D9D9D;
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    text-align: center;
}

.form-login__button {
    width: 100%;
    font-weight: 500;
    font-size: 16px;
}

.head-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.head-login__icon {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #F5F3FC;
}

.head-login__icon img,
.head-login__icon svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    height: 65px;
    width: 65px;
}

.head-login__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.head-login__title {
    color: #261645;
    font-size: 22px;
    font-weight: 700;
}

.head-login__text {
    color: #261645;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.footer-login__back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #949494;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.footer-login__back svg path {
    fill: #949494;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.footer-login__button {
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    text-transform: unset;
}

.contacts {
    padding: 40px 0px;
}

.contacts__content {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

.contacts__content {
    max-width: 760px;
    margin: 30px auto 0px;
}

.contacts__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 50px * 1) / 1);
    flex: 0 0 calc((100% - 50px * 1) / 1);
    padding: 40px;
    background: #fff;
    border-radius: 16px;
}

.list-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.list-contacts__label {
    color: #261645;
    font-size: 22px;
    font-weight: 500;
}

.list-contacts__body {
    border-radius: 8px;

    background: #F5F3FC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 8px 30px;
    min-height: 100px;
    margin-top: 10px;
}

.list-contacts__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}

.list-contacts__icon img,
.list-contacts__icon svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.list-contacts__value {
    color: #2E3B52;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.list-contacts__value a {
    color: inherit;
}

.callback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.callback__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.callback__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
    flex: 0 0 calc((100% - 20px * 1) / 2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.callback__item._full {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.callback__label {
    margin-bottom: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.callback__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.article {
    padding: 40px 0px;
}

.article__wrapper {
    border-radius: 16px;
    background: #FFF;
    padding: 40px;
}

.terms_popup__content .article__wrapper {
    padding: 0px;
}

.article__title {
    text-align: center;
}

.article__content {
    margin: 30px auto 0px;
    color: #7B7E86;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

.article__content ul,
.article__content ol {
    padding-left: 20px;
}

.item-help__body ul li,
.article__content ul li {
    list-style: disc;
}

.article__content > *:not(:last-child) {
    margin-bottom: 15px;
}

.article__content img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;
}

.how-work-page {
    padding: 40px 0px;
}

.how-work-page__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 65px;
    -moz-column-gap: 65px;
    column-gap: 65px;
}

.how-work-page__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 425px;
    flex: 0 0 425px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 30px;
}

.how-work-page__text {
    color: #7B7E86;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.how-work-page__steps {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
}

.steps-how-work {
    border-radius: 16px;
    background: #FFF;
    padding: 30px;
    -webkit-box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
    box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
}

.steps-how-work::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: inherit;
    border: 1px solid rgba(82, 52, 215, 0.15);
    z-index: 1;
    left: 0;
    top: 0;
    border-radius: inherit;
}

.steps-how-work::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #F5F3FC;
    left: 0;
    top: 0;
    border-radius: inherit;
    -webkit-transform: translate(20px, 20px);
    -ms-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
}

.steps-how-work__row {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.steps-how-work__row:not(:last-child)::after {
    content: "";
    width: 0px;
    height: calc(100% + 50px);
    position: absolute;
    top: 0;
    left: 30px;
    border: 1px dashed #D8D8D8;
}

.steps-how-work__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #D8D8D8;
    position: relative;
    z-index: 1;
}

.steps-how-work__icon img,
.steps-how-work__icon svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.steps-how-work__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
}

.steps-how-work__name {
    color: #261645;
    font-size: 20px;
    font-weight: 600;
}

.steps-how-work__text {
    color: #261645;
    font-size: 16px;
    font-weight: 400;
}

.steps-how-work__text a {
    color: #5234D7;
    text-decoration: underline;
}

.cabinet {
    padding: 40px 0px;
}

.cabinet__wrapper {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

.cabinet__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
}

.cabinet__main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.cabinet__block {
    border-radius: 16px;
    background: #FFF;
    padding: 40px;
}

.cabinet__order-info-list {
    display: none;
}

.sidebar-cabinet__wrapper {
    border-radius: 8px;
    background: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 12px;
    padding: 20px;
}

.sidebar-cabinet__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
    border-radius: 8px;
    background: #F5F3FC;
    padding: 12px 15px;
    color: #261645;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.sidebar-cabinet__item a {
    color: inherit;
}

.sidebar-cabinet__item span {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.sidebar-cabinet__item svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.sidebar-cabinet__item svg path[fill] {
    fill: #261645;
}

.sidebar-cabinet__item svg path[stroke] {
    stroke: #261645;
}

.sidebar-cabinet__item._active {
    background: #5234D7;
    color: #fff;
}

.sidebar-cabinet__item._active svg path[fill] {
    fill: #fff;
}

.sidebar-cabinet__item._active svg path[stroke] {
    stroke: #fff;
}

.top-cabinet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.top-cabinet._active .top-cabinet__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.top-cabinet__info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.top-cabinet__name {
    color: #261645;
    font-size: 18px;
    font-weight: 700;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.top-cabinet__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.data-cabinet__section {
    padding: 30px 0px;
}

.data-cabinet__section:first-child {
    padding-top: 0;
}

.data-cabinet__section:last-child {
    padding-bottom: 0;
}

.data-cabinet__section:not(:last-child) {
    border-bottom: 1px solid #E0E0E0;
}

.data-cabinet__title {
    color: #261645;
    font-size: 24px;
    font-weight: 700;
}

.data-cabinet__form {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.data-cabinet__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 30px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.data-cabinet__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
    flex: 0 0 calc((100% - 20px * 1) / 2);
}

.data-cabinet__label {
    margin-bottom: 10px;
}

.data-cabinet__input {
    position: relative;
}

.data-cabinet__footer {
    width: 100%;
    max-width: calc((100% - 20px * 1) / 2);
}

.data-cabinet__button {
    width: 100%;
    max-width: 100%;
}

.memorial__info {
    display: none;
}

.form_control {
    display: none;
}

.list-memorial__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DADADA;
}

.list-memorial__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 24px;
    font-weight: 700;
    color: #261645;
}

.list-memorial__button {
    font-weight: 500;
    min-height: 44px;
    padding: 5px 20px;
}

.list-memorial__footer {
    padding-top: 12px;
}

.item-memorial {
    padding: 20px 0px;
    border-bottom: 1px solid #DADADA;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 80px 1fr auto;
    grid-template-columns: 80px 1fr auto;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 20px;
}

.item-memorial__image {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.item-memorial__image img {
    /* width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover; */
    width: auto;
    height: 50px;
    top: 50%;
    left: 50%;
    position: absolute;
    -o-object-fit: fill;
    object-fit: fill;
    transform: translate(-50%, -50%);
}

.item-memorial__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
}

.item-memorial__row {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 5px;
}

.item-memorial__name {
    color: #261645;
    font-size: 16px;
    font-weight: 600;
}

.item-memorial__link {
    color: #5234D7;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.item-memorial__status {
    color: #00A759;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.item-memorial__status._soon {
    color: #A76700;
}

.item-memorial__status._soon::before {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14px;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    background: url(../img/icons/warn.svg) center/cover no-repeat;
}

.item-memorial__edit {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.item-memorial__edit svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.item-memorial__edit svg path[fill] {
    fill: #8D82A3;
}

.item-memorial__edit svg path[stroke] {
    stroke: #8D82A3;
}

.item-memorial__add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #5234D7;
    font-size: 14px;
    font-weight: 400;
}

.item-memorial__add img,
.item-memorial__add svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.info-order__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.info-order__top {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.info-order__title {
    color: #261645;
    font-size: 24px;
    font-weight: 700;
}

.info-order__back {
    color: #989898;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.info-order__back img,
.info-order__back svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}

.info-order__back svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.info-order__back svg path[fill] {
    fill: #989898;
}

.info-order__back svg path[stroke] {
    stroke: #989898;
}

.info-order__text {
    color: #4F4F4F;
    font-size: 16px;
    font-weight: 400;
}

.info-order__content {
    margin-top: 20px;
}

.info-order__section {
    padding: 20px 0px;
}

.info-order__section:not(:last-child) {
    border-bottom: 1px solid #E0E0E0;
}

.info-order__section:first-child {
    padding-top: 0;
}

.info-order__section:last-child {
    padding-bottom: 0;
}

.info-order__body:not(:first-child) {
    margin-top: 20px;
}

.info-order__name {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.info-order__bio {
    margin-top: 10px;
}

.info-order__footer {
    margin-top: 30px;
}

.info-order__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.data-info-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.data-info-order__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc((100% - 20px * 1) / 2);
    flex: 1 0 calc((100% - 20px * 1) / 2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.data-info-order__item._full {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.data-info-order__label {
    margin-bottom: 10px;
}

.quotes-info-order__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.quotes-info-order__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.quotes-info-order__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.quotes-info-order__input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.quotes-info-order__input textarea {
    min-height: 0px;
    height: 48px;
}

.quotes-info-order__detele {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.quotes-info-order__detele img,
.quotes-info-order__detele svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.quotes-info-order__detele svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.quotes-info-order__detele svg path[fill] {
    fill: #CCCCCC;
}

.quotes-info-order__detele svg path[stroke] {
    stroke: #CCCCCC;
}

.quotes-info-order__add {
    color: #5234D7;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin-top: 10px;
}

.history-info-order__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.history-info-order__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.history-info-order__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 180px;
    grid-template-columns: 1fr 180px;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.history-info-order__input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.history-info-order__date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
}

.history-info-order__detele {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.history-info-order__detele img,
.history-info-order__detele svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.history-info-order__detele svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.history-info-order__detele svg path[fill] {
    fill: #CCCCCC;
}

.history-info-order__detele svg path[stroke] {
    stroke: #CCCCCC;
}

.history-info-order__add {
    color: #5234D7;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin-top: 10px;
}

.gallery-info-order__label {
    margin-bottom: 10px;
}

.gallery-info-order__body {
    margin-top: 20px;
}

.photos-gallery-info-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.photos-gallery-info-order__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
    flex: 0 0 calc((100% - 20px * 3) / 4);
    position: relative;
}

.photos-gallery-info-order__image {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.photos-gallery-info-order__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.videos-gallery-info-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.videos-gallery-info-order__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    position: relative;
}

.videos-gallery-info-order__video {
    border-radius: 16px;
    overflow: hidden;
}

.details-photos-gallery-info-order {
    position: absolute;
    top: 10px;
    right: 10px;
}

.details-photos-gallery-info-order__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.details-photos-gallery-info-order__btn img,
.details-photos-gallery-info-order__btn svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}

.details-photos-gallery-info-order__body {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: none;
}

.details-photos-gallery-info-order__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.details-photos-gallery-info-order__item {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.order-list__title {
    color: #261645;
    font-size: 24px;
    font-weight: 700;
}

.order-list__content {
    margin-top: 30px;
    font-family: "Roboto";
}

.order-list__top {
    padding-bottom: 12px;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-grid-columns: 95px 80px 170px 52px 55px 55px 55px;
    grid-template-columns: 95px 80px 170px 52px 55px 55px 55px;
    font-size: 14px;
    color: #9D9D9D;
    font-weight: 400;
}

.order-list__item {
    padding: 20px 0px;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-grid-columns: 90px 80px 170px 52px 55px 55px 55px;
    grid-template-columns: 90px 80px 170px 52px 55px 55px 55px;
    border-bottom: 1px solid #E2E2E2;
    color: #261645;
    font-size: 14px;
    font-weight: 400;
}

.order-list__item:first-child {
    border-top: 1px solid #E2E2E2;
}

.order-list__details {
    color: #5234D7;
    font-size: 14px;
    font-weight: 400;
}

.order-info {
    font-family: "Roboto";
}

.order-info:not(._active) {
    display: none;
}

.order-info__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.order-info__title {
    color: #261645;
    font-size: 24px;
    font-weight: 700;
}

.order-info__back {
    color: #989898;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.order-info__back img,
.order-info__back svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}

.order-info__back svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.order-info__back svg path[fill] {
    fill: #989898;
}

.order-info__back svg path[stroke] {
    stroke: #989898;
}

.order-info__date {
    color: #261645;
    font-size: 14px;
    font-weight: 400;
}

.order-info__content {
    margin-top: 30px;
}

.order-info__details {
    padding: 20px 0px;
}

.products-order-info__top {
    padding-bottom: 12px;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-grid-columns: 95px 80px 170px 52px 55px 55px;
    grid-template-columns: 95px 80px 170px 52px 55px 55px;
    color: #9D9D9D;
    font-size: 14px;
    font-weight: 400;
}

.products-order-info__item {
    border-bottom: 1px solid #E2E2E2;
    padding: 20px 0px;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-grid-columns: 95px 80px 170px 52px 55px 55px;
    grid-template-columns: 95px 80px 170px 52px 55px 55px;
    color: #261645;
    font-size: 14px;
    font-weight: 400;
}

.products-order-info__item:first-child {
    border-top: 1px solid #E2E2E2;
}

.details-order-info {
    font-family: "Roboto";
}

.details-order-info__title {
    color: #383838;
    font-size: 16px;
    font-weight: 500;
}

.details-order-info__content {
    margin-top: 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 190px 1fr;
    grid-template-columns: 190px 1fr;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
}

.details-order-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
}

.details-order-info__name {
    color: #9D9D9D;
    font-size: 14px;
    font-weight: 400;
}

.details-order-info__value {
    color: #261645;
    font-size: 14px;
    font-weight: 400;
}

.list-order-info {
    border-top: 1px solid #E2E2E2;
}

.list-order-info__item {
    padding: 8px 0px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    color: #261645;
    font-size: 14px;
    font-weight: 400;
}

.list-order-info__item span:last-child {
    color: #5234D7;
    font-weight: 600;
    text-align: right;
}

.profile {
    padding: 40px 0px;
    padding-bottom: 0 !important;
}

.profile__wrapper {
    width: 100%;
    max-width: 980px;
    margin: 0px auto;
}

.profile__had {
    position: relative;
    border-radius: 16px;
    aspect-ratio: 98/44;
    overflow: hidden;
}

.profile__had img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.profile__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    margin-top: -95px;
}

.profile__body {
    margin-top: 40px;
}

.profile__section {
    padding: 30px 0px;
}

.profile__info {
    margin-top: 30px;
}

.profile__desciption {
    color: #7B7E86;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.profile__desciption li {
    list-style: none;
}

.head-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    row-gap: 20px;
}

.head-profile__image {
    width: 190px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    border: 10px solid #fff;
    position: relative;
}

.head-profile__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.head-profile__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.head-profile__name {
    color: #261645;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}

.head-profile__date {
    color: #7B7E86;
    font-size: 20px;
    font-weight: 400;
}

.head-profile__quote {
    padding: 15px 50px;
    border-radius: 8px;
    background: rgba(82, 52, 215, 0.15);
    font-family: Playfair;
    color: #5234D7;
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
    font-style: italic;
}

.top-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    cursor: pointer;
}

.top-profile._active .top-profile__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.top-profile__name {
    color: #261645;
    font-size: 24px;
    font-weight: 600;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.top-profile__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.description-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.description-profile__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.description-profile__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 380px;
    flex: 0 0 380px;
    aspect-ratio: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.description-profile__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-profile {
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    -ms-grid-columns: (minmax(0, 1fr)) [ 4 ];
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-profile__item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-profile__item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.mini-footer {
    padding: 40px 0px 30px;
}

.mini-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    row-gap: 30px;
}

.mini-footer__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mini-footer__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 176px;
    flex: 0 0 176px;
    width: 176px;
}

.mini-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    color: #424242;
    font-size: 18px;
    font-weight: 400;
}

.mini-footer__list a {
    color: inherit;
}

.mini-footer__copy {
    color: #424242;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.not-found {
    padding: 100px 0px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.not-found__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
}

.not-found__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 450px;
    flex: 0 0 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.not-found__title {
    color: #261645;
    font-size: 64px;
    font-weight: 700;
}

.not-found__subtitle {
    font-size: 52px;
    font-weight: 400;
    text-transform: uppercase;
    color: #261645;
}

.not-found__text {
    color: rgba(66, 66, 66, 0.75);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.not-found__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 575px;
    flex: 0 1 575px;
}

.page {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 73px;
}

.page section:last-of-type,
.page section:only-of-type {
    padding-bottom: 80px;
}


@media (min-width: 479.98px) {
    body._bg-md4 {
        background: #F5F3FC;
    }

    .data-cabinet__form._password .data-cabinet__body {
        max-width: calc((100% - 20px * 1) / 2);
    }

    .data-cabinet__form._password .data-cabinet__body .data-cabinet__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .info-order__bio textarea {
        height: 240px;
    }
}

@media (min-width: 721.98px) {
    .subscribe__image_mob {
        display: none;
    }

    .main-gallery-card__pagination {
        display: none;
    }

    .data-order__item._tr {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 calc((100% - 20px * 2) / 3);
        flex: 1 0 calc((100% - 20px * 2) / 3);
    }

    .order-list__top span:nth-child(4),
    .order-list__top span:nth-child(5),
    .order-list__top span:nth-child(6) {
        text-align: center;
    }

    .order-list__item span:nth-child(4),
    .order-list__item span:nth-child(5),
    .order-list__item span:nth-child(6) {
        text-align: center;
    }

    .order-list__item span._md3 {
        display: none;
    }

    .order-info__date {
        display: none;
    }

    .products-order-info__top span:nth-child(4),
    .products-order-info__top span:nth-child(5),
    .products-order-info__top span:nth-child(6) {
        text-align: center;
    }

    .products-order-info__item span:nth-child(4),
    .products-order-info__item span:nth-child(5),
    .products-order-info__item span:nth-child(6) {
        text-align: center;
    }

    .products-order-info__item span._price {
        display: none;
    }

    .profile__section {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    .profile__section:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .profile__info {
        display: none;
    }
}

@media (min-width: 991.98px) {
    .quantity__button:hover::before,
    .quantity__button:hover::after {
        background: #5234D7;
    }

    .menu__item._user {
        display: none;
    }

    .menu__link._active {
        border-bottom: 2px solid #261645;
    }

    .menu__arrow {
        display: none;
    }

    .scan-about-section__qr-image_tablet {
        display: none;
    }

    .item-work:first-child .item-work__step {
        -webkit-transform: translate(-80%, -50%);
        -ms-transform: translate(-80%, -50%);
        transform: translate(-80%, -50%);
    }

    .item-work__step {
        color: transparent;
        /* делает текст прозрачным */
        -webkit-text-stroke: 2px rgba(82, 52, 215, 0.5);
        /* обводка 1px черного цвета */
        text-stroke: 2px rgba(82, 52, 215, 0.5);
        font-size: 230px;
        font-weight: 700;
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .card__name {
        font-size: 32px;
    }

    .cabinet__top {
        display: none;
    }

    .list-memorial__footer {
        display: none;
    }
}

@media (min-width: 992px) {
    .select__option:hover {
        background: #f2f2f2;
    }

    .checkbox a:hover {
        text-decoration: underline;
    }
}

@media (min-width: 1025px) {
    .lg-outer .lg-thumb-item {
        -webkit-transition: border-color 0.25s ease;
        -o-transition: border-color 0.25s ease;
        transition: border-color 0.25s ease;
    }
}

@media (min-width: 1222px) {
    .about-section._v3 .about-section__wrapper {
        padding: 50px 85px;
        border-radius: 16px;
    }

    .about-section__scan {
        margin-top: 20px;
    }
}

@media (max-width: 1222px) {
    ._title {
        font-size: 28px;
    }

    .menu__list {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .banner {
        padding: 0px 0px 30px;
    }

    .banner__container {
        padding: 0px;
    }

    ._no-webp .banner__slide {
        background: url(../img/banner-image.png) 100% calc(100% + 50px)/580px no-repeat, #2E3B52;
    }

    .banner__slide {
        border-radius: 0px;
        min-height: 400px;
    }

    .banner__body {
        margin-left: 20px;
        max-width: 420px;
    }

    .banner__title {
        font-size: 32px;
    }

    .banner__text {
        font-size: 16px;
    }

    .about-section {
        padding: 30px 0px;
    }

    .about-section._v3 .about-section__container {
        padding: 0px;
    }

    .about-section__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 460px;
        flex: 0 0 460px;
    }

    .about-section__text,
    .card__details {
        font-size: 16px;
    }

    .about-section__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 430px;
        flex: 0 0 430px;
    }

    .about-section__phone {
        width: 222px;
    }

    .about-section__circle-bg {
        width: 100%;
    }

    .scan-about-section {
        padding: 20px;
    }

    .scan-about-section__qr-image {
        width: 330px;
        left: calc(100% - 20px);
        bottom: 0px;
    }

    .style-section {
        padding: 30px 0px;
    }

    .style-section__container {
        padding: 0px;
    }

    .style-section__wrapper {
        min-height: 320px;
        border-radius: 0px;
        padding: 20px 20px;
        -webkit-column-gap: 0px;
        -moz-column-gap: 0px;
        column-gap: 0px;
    }

    .style-section__text {
        font-size: 16px;
    }

    .style-section__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 470px;
        flex: 0 0 470px;
    }

    .how-work {
        padding: 30px 0px;
    }

    .how-work__subtitle {
        font-size: 16px;
        max-width: 405px;
    }

    .how-work__body {
        -webkit-column-gap: 70px;
        -moz-column-gap: 70px;
        column-gap: 70px;
    }

    .how-work__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 70px * 3) / 3);
        flex: 0 0 calc((100% - 70px * 3) / 3);
    }

    .item-work {
        row-gap: 15px;
    }

    .item-work__text {
        font-size: 16px;
    }

    .section-products {
        padding: 30px 0px;
    }

    .create-banner {
        padding: 30px 0px;
    }

    .create-banner__container {
        padding: 0px;
    }

    ._no-webp .create-banner__wrapper {
        background: url(../img/create-banner-image.png) calc(100% - 20px) 100%/320px no-repeat, #2E3B52;
    }

    .create-banner__wrapper {
        border-radius: 0px;
        min-height: 320px;
    }

    .create-banner__body {
        margin-left: 80px;
        max-width: 385px;
    }

    .create-banner__text {
        font-size: 16px;
    }

    .card {
        padding: 30px 0px;
    }

    .help {
        padding: 30px 0px;
    }

    .place-section {
        padding: 30px 0px;
    }

    .place-section__wrapper {
        padding: 40px 20px;
        margin: 0px -20px;
        -webkit-column-gap: 100px;
        -moz-column-gap: 100px;
        column-gap: 100px;
        -ms-grid-columns: 300px 1fr;
        grid-template-columns: 300px 1fr;
    }

    .place-section__text {
        font-size: 16px;
    }

    .order {
        padding: 30px 0px;
    }

    .order__wrapper {
        margin-top: 30px;
    }

    .login {
        padding: 50px 0px;
    }

    .contacts {
        padding: 30px 0px;
    }

    .contacts__content {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .contacts__column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
        flex: 0 0 calc((100% - 20px * 1) / 2);
        padding: 20px;
    }

    .list-contacts {
        row-gap: 20px;
    }

    .list-contacts__body {
        min-height: 90px;
    }

    .callback {
        row-gap: 20px;
    }

    .callback__body {
        row-gap: 20px;
    }

    .article {
        padding: 30px 0px;
    }

    .how-work-page {
        padding: 30px 0px;
    }

    .cabinet {
        padding: 30px 0px;
    }

    .cabinet__wrapper {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .cabinet__sidebar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
        flex: 0 0 300px;
    }

    .cabinet__block {
        padding: 20px;
    }

    .item-memorial {
        -ms-grid-columns: 60px 1fr auto;
        grid-template-columns: 60px 1fr auto;
    }

    .profile {
        padding: 30px 0px;
    }

    .not-found {
        padding: 80px 0px;
    }

    .not-found__wrapper {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .page section:last-child {
        padding-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .menu__link {
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .options__content {
        font-size: 16px;
    }

    .subscribe__body {
        padding: 20px;
    }

    .header__logo {
        margin-right: auto;
    }

    .header__menu {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .header__actions {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .header__user {
        display: none;
    }

    .menu__body {
        position: fixed;
        top: 73px;
        left: 0;
        background: #fff;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: calc(100dvh - 73px);
        padding: 30px 20px;
        overflow-y: auto;
        border-top: 1px solid #DADADA;
        -webkit-transition: all 0.3s 0s;
        -o-transition: all 0.3s 0s;
        transition: all 0.3s 0s;
    }

    .menu__body:not(._active) {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
    }

    .menu__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        padding: 15px 20px;
        border-radius: 8px;
        background: #F7F5FB;
    }

    .icon-menu {
        display: block;
        position: relative;
        width: 24px;
        height: 20px;
        cursor: pointer;
        z-index: 5;
    }

    .icon-menu span {
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        top: calc(50% - 1px);
        left: 0px;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #261645;
    }

    .icon-menu span:first-child {
        top: 0px;
    }

    .icon-menu span:last-child {
        top: auto;
        bottom: 0px;
    }

    .icon-menu._active span {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .icon-menu._active span:first-child {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: calc(50% - 1px);
    }

    .icon-menu._active span:last-child {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        bottom: calc(50% - 1px);
    }

    .footer {
        padding: 30px 0px;
    }

    .footer__main {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .footer__text {
        font-size: 14px;
    }

    .footer__name {
        font-size: 14px;
    }

    .footer__list {
        font-size: 14px;
        row-gap: 12px;
    }

    .footer__copy {
        font-size: 16px;
    }

    ._no-webp .banner__slide {
        background: url(../img/banner-image.png) calc(100% + 120px) calc(100% + 50px)/580px no-repeat, #2E3B52;
    }

    .banner__body {
        max-width: 340px;
    }

    .banner__title {
        font-size: 28px;
    }

    .banner__buttons {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }

    .banner__button {
        padding: 5px 20px;
        font-size: 16px;
        min-height: 44px;
    }

    .about-section__wrapper {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .about-section__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 435px;
        flex: 0 1 435px;
    }

    .about-section__item span {
        font-size: 16px;
    }

    .about-section__scan {
        max-width: 330px;
    }

    .about-section__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 275px;
        flex: 0 0 275px;
        margin-top: 10px;
    }

    .about-section__phone {
        width: 143px;
    }

    .scan-about-section__text {
        font-size: 16px;
    }

    .scan-about-section__qr-image {
        width: 190px;
        top: -20px;
    }

    .scan-about-section__qr-image_pc {
        display: none;
    }

    .style-section__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 370px;
        flex: 0 0 370px;
    }

    .how-work__body {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        margin-top: 20px;
    }

    .how-work__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
        flex: 0 0 calc((100% - 20px * 2) / 3);
    }

    .item-work {
        row-gap: 10px;
    }

    .item-work__step {
        width: 42px;
        height: 42px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        background: #5234D7;
        border-radius: 50%;
    }

    .section-products {
        display: none;
    }

    .section-products__content {
        margin-top: 20px;
    }

    .section-products__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    ._no-webp .create-banner__wrapper {
        background: url(../img/create-banner-image.png) 100% 100%/320px no-repeat, #2E3B52;
    }

    .create-banner__body {
        margin-left: 20px;
        row-gap: 20px;
    }

    .card__wrapper {
        margin: 0px -20px;
        padding: 30px 20px;
        border-radius: 0px;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .card__body {
        row-gap: 20px;
    }

    .card__info {
        row-gap: 20px;
    }

    .card__price {
        font-size: 28px;
    }

    .place-section__wrapper {
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }

    .order__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
        margin-top: 20px;
    }

    .sidebar-order__wrapper {
        position: static !important;
    }

    .login {
        padding: 40px 0px;
    }

    .contacts__content {
        margin-top: 20px;
    }

    .list-contacts__label {
        font-size: 18px;
    }

    .list-contacts__body {
        padding: 8px 20px;
    }

    .article__wrapper {
        padding: 20px;
    }

    .article__content img {
        margin-bottom: 20px;
    }

    .article__content {
        margin-top: 20px;
    }

    .how-work-page__content {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .how-work-page__body {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .how-work-page__text {
        font-size: 16px;
    }

    .cabinet__wrapper {
        margin-top: 20px;
    }

    .cabinet__sidebar {
        display: none;
    }

    .cabinet__blocks {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
    }

    .cabinet__block {
        display: block !important;
    }

    .cabinet__body {
        display: none;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #DADADA;
    }

    .data-cabinet__title {
        font-size: 18px;
    }

    .list-memorial__head {
        display: none;
    }

    .item-memorial {
        padding: 12px 0px;
    }

    .info-order__title {
        font-size: 18px;
    }

    .quotes-info-order__input textarea {
        height: calc(3lh + 32px);
    }

    .order-list__title {
        font-size: 18px;
    }

    .order-info__title {
        font-size: 18px;
    }

    .description-profile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        row-gap: 30px;
    }

    .description-profile__image {
        width: 100%;
        height: 380px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        aspect-ratio: unset;
    }

    .not-found {
        padding: 60px 0px;
    }

    .not-found__wrapper {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .not-found__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
        flex: 0 0 320px;
        row-gap: 20px;
    }

    .not-found__title {
        font-size: 44px;
    }

    .not-found__subtitle {
        font-size: 32px;
    }

    .not-found__text {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) and (max-width: 479.98px) {
    .menu__body {
        padding: 20px;
        max-height: calc(100vh - 52px);
        top: 52px;
    }
}

@media (max-width: 780.98px) {
    ._btn {
        padding: 5px 10px;
        font-size: 13px;
    }

    .item-help__body:has(ol), .item-help__body:has(ul) {
        padding-left: 15px;
    }
}

@media (max-width: 721.98px) {

    .subscribe__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .subscribe__image_pc {
        display: none;
    }

    .subscribe__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .subscribe__body {
        padding: 0px;
        row-gap: 20px;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        width: 100%;
    }

    .form-subscribe {
        row-gap: 20px;
    }

    .footer__main {
        -ms-grid-columns: (minmax(0, 1fr)) [ 2 ];
        grid-template-columns: repeat(2, minmax(0, 1fr));
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 30px;
    }

    .footer__info {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

    .footer__bottom {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .footer__copy,
    .footer__payments,
    .footer__anpc {
        justify-self: center;
    }

    ._no-webp .banner__slide {
        background: url(../img/banner-image.png) center calc(100% + 25px)/320px no-repeat, #2E3B52;
    }

    .banner__slide {
        min-height: 0px;
        padding: 30px 20px 210px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .banner__body {
        row-gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        margin-left: 0;
    }

    .about-section._v3 .about-section__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
    }

    .about-section._v3 .about-section__image {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        max-width: 350px;
    }

    .about-section._v3 .about-section__phone {
        width: 100%;
        max-width: 192px;
    }

    .about-section__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .about-section__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 12px;
    }

    .about-section__image {
        width: 100%;
        max-width: 290px;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .about-section__phone {
        width: 156px;
    }

    .scan-about-section {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 15px 20px;
        width: 100%;
        max-width: 100%;
    }

    .scan-about-section__qr-image {
        display: none;
    }

    .style-section__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        min-height: 0px;
        row-gap: 15px;
    }

    .style-section__body {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .style-section__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        max-width: 370px;
    }

    ._no-webp .create-banner__wrapper {
        background: url(../img/create-banner-image.png) bottom center/320px no-repeat, #2E3B52;
    }

    .create-banner__wrapper {
        min-height: 0px;
        padding: 40px 20px 310px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .create-banner__body {
        row-gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        margin-left: 0;
    }

    .card__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
    }

    .card__info {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .item-help {
        padding: 20px;
    }

    .place-section__wrapper {
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .place-section__body {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .order__main {
        padding: 20px;
    }

    .data-order__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

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

    .list-contacts__body {
        min-height: 60px;
    }

    .how-work-page__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 30px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .how-work-page__body {
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        row-gap: 20px;
    }

    .how-work-page__steps {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: calc(100 - 20px);
        max-width: 350px;
        margin-right: 20px;
    }

    .item-memorial__image {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .item-memorial__add {
        -ms-grid-column-span: 3;
        grid-column: span 3;
    }

    .history-info-order__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .history-info-order__input {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .history-info-order__date {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .order-list__content {
        margin-top: 15px;
    }

    .order-list__top {
        display: none;
    }

    .order-list__item span._mmd3 {
        display: none;
    }

    .order-list__item {
        -ms-grid-columns: 1fr 80px;
        grid-template-columns: 1fr 80px;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 12px;
    }

    .order-info__content {
        margin-top: 12px;
    }

    .products-order-info__top {
        display: none;
    }

    .products-order-info__item {
        -ms-grid-columns: 1fr 80px;
        grid-template-columns: 1fr 80px;
    }

    .products-order-info__item span:not(._name, ._price) {
        display: none;
    }

    .details-order-info__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .profile__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
        margin-top: 20px;
    }

    .profile__section {
        padding: 20px;
        background: #fff;
        border-radius: 16px;
    }

    .profile__info {
        margin-top: 20px;
    }

    .top-profile {
        pointer-events: none;
    }

    .top-profile__arrow {
        display: none;
    }

    .gallery-profile {
        -ms-grid-columns: (minmax(0, 1fr)) [ 3 ];
        grid-template-columns: repeat(3, minmax(0, 1fr));
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        row-gap: 10px;
    }

    .not-found__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        row-gap: 20px;
    }

    .not-found__body {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        row-gap: 12px;
    }

    .not-found__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 479.98px) {
    body._bg-md4 .header {
        border-bottom: 1px solid #E6E6E6;
    }

    .options {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    ._title {
        font-size: 24px;
    }

    .popup._slide-mb-popup {
        padding: 0px;
    }

    .popup._slide-mb-popup::before {
        background: -webkit-gradient(linear, left bottom, left top, color-stop(24.52%, #FFF), to(rgba(255, 255, 255, 0)));
        background: -o-linear-gradient(bottom, #FFF 24.52%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(0deg, #FFF 24.52%, rgba(255, 255, 255, 0) 100%);
    }

    .popup._slide-mb-popup .popup__content {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .popup._slide-mb-popup .popup__body {
        border-radius: 16px 16px 0px 0px;
        background: #FFF;
        -webkit-box-shadow: 0px -6px 22px 0px rgba(138, 119, 152, 0.12);
        box-shadow: 0px -6px 22px 0px rgba(138, 119, 152, 0.12);
        max-width: 100%;
        width: 100%;
        -webkit-transform: translateY(100%) scale(1);
        -ms-transform: translateY(100%) scale(1);
        transform: translateY(100%) scale(1);
    }

    .popup._slide-mb-popup._active .popup__body {
        -webkit-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }

    .subscribe__body {
        row-gap: 12px;
    }

    .subscribe__title {
        font-size: 20px;
    }

    .subscribe__text {
        font-size: 16px;
    }

    .form-subscribe {
        row-gap: 12px;
    }

    .header {
        padding: 10px 0px;
        min-height: 52px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
        flex: 0 0 160px;
        width: 160px;
    }

    .banner {
        padding: 0px 0px 20px;
    }

    .banner__title {
        font-size: 24px;
    }

    .banner__button {
        font-size: 14px;
    }

    .about-section {
        padding: 20px 0px;
    }

    .about-section._v3 .about-section__wrapper {
        padding: 30px 20px;
    }

    .about-section__text,
    .card__details {
        font-size: 14px;
    }

    .style-section {
        padding: 20px 0px;
    }

    .style-section__text {
        font-size: 14px;
    }

    .style-section__button {
        font-size: 16px;
    }

    .how-work {
        padding: 20px 0px;
    }

    .how-work__subtitle {
        font-size: 14px;
    }

    .how-work__body {
        row-gap: 20px;
    }

    .how-work__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .section-products {
        padding: 20px 0px;
    }

    .product {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 15px;
        padding: 15px;
    }

    .product__body {
        row-gap: 15px;
    }

    .create-banner {
        padding: 20px 0px;
    }

    .card {
        padding: 20px 0px;
    }

    .card__name {
        font-size: 20px;
    }

    .card__price {
        font-size: 24px;
    }

    .help {
        padding: 20px 0px;
    }

    .help__content {
        row-gap: 15px;
        margin-top: 20px;
    }

    .item-help {
        padding: 15px;
    }

    .item-help__name {
        font-size: 18px;
    }

    .item-help__body {
        font-size: 16px;
        padding-left: 0;
    }

    .place-section {
        padding: 20px 0px;
    }

    .order {
        padding: 20px 0px;
    }

    .order__title {
        font-size: 20px;
    }

    .order__products {
        row-gap: 16px;
    }

    .product-order {
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
    }

    .product-order__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 78px;
        flex: 0 0 78px;
    }

    .product-order__body {
        min-width: 0;
        row-gap: 8px;
    }

    .product-order__main {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
        row-gap: 8px;
        width: 100%;
    }

    .product-order__name {
        font-size: 18px;
        line-height: 1.2;
    }

    .product-order__delete {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 22px;
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
    }

    .product-order__delete img,
    .product-order__delete svg {
        width: 22px;
        height: 22px;
    }

    .product-order__quantity {
        grid-column: 1;
        grid-row: 2;
        width: 130px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
        flex: 0 0 130px;
        margin-right: 0;
    }

    .total_price {
        grid-column: 2;
        grid-row: 2;
        width: auto;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        font-size: 18px;
    }

    .product-order__price {
        font-size: inherit;
    }

    .product-order__text {
        font-size: 15px;
        line-height: 1.3;
    }

    .order .quantity {
        height: 40px;
        padding: 4px 10px;
    }

    .order .quantity__button {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
    }

    .order .quantity__button::before,
    .order .quantity__button::after {
        width: 12px;
        margin: -1px 0px 0px -6px;
    }

    .order .quantity__input input {
        font-size: 18px;
    }

    .payment-order__content {
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
    }

    .payment-order__text {
        font-size: 16px;
    }

    .payment-order__icons {
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
    }

    .order-submited {
        padding: 50px 0px;
    }

    .order-submited__title {
        font-size: 24px;
    }

    .login {
        padding: 30px 0px;
    }

    .login__wrapper {
        padding: 20px;
        row-gap: 20px;
    }

    .form-login {
        row-gap: 20px;
    }

    .head-login {
        row-gap: 20px;
    }

    .contacts {
        padding: 20px 0px;
    }

    .list-contacts__value {
        font-size: 16px;
    }

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

    .article {
        padding: 20px 0px;
    }

    .article__content {
        font-size: 16px;
    }

    .article__content img {
        aspect-ratio: 28/17;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .how-work-page {
        padding: 20px 0px;
    }

    .steps-how-work {
        padding: 20px 15px;
        row-gap: 30px;
    }

    .steps-how-work__row:not(:last-child)::after {
        height: calc(100% + 30px);
    }

    .steps-how-work__name {
        font-size: 18px;
    }

    .steps-how-work__text {
        font-size: 14px;
    }

    .cabinet {
        padding: 20px 0px;
    }

    .data-cabinet__section {
        padding: 20px 0px;
    }

    .data-cabinet__form {
        margin-top: 20px;
        row-gap: 20px;
    }

    .data-cabinet__body {
        row-gap: 20px;
    }

    .data-cabinet__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .data-cabinet__footer {
        max-width: 100%;
    }

    .item-memorial__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .info-order__top {
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
    }

    .info-order__title {
        font-size: 16px;
    }

    .data-info-order__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .photos-gallery-info-order {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        row-gap: 10px;
    }

    .photos-gallery-info-order__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
        flex: 0 0 calc((100% - 10px * 1) / 2);
    }

    .order-info__head {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .details-order-info__content {
        row-gap: 10px;
        margin-top: 10px;
    }

    .profile {
        padding: 0;
    }

    .profile__had {
        aspect-ratio: 36/20;
        margin: 0px -20px;
        border-radius: 0px;
    }

    .profile__head {
        margin-top: -57px;
    }

    .profile__section {
        padding: 20px 12px;
    }

    .profile__desciption {
        font-size: 16px;
    }

    .head-profile__image {
        width: 114px;
        border: 5px solid #fff;
    }

    .head-profile__name {
        font-size: 18px;
    }

    .head-profile__date {
        font-size: 16px;
    }

    .head-profile__quote {
        padding: 15px;
        font-size: 22px;
    }

    .top-profile__name {
        font-size: 20px;
    }

    .description-profile {
        row-gap: 20px;
    }

    .description-profile__image {
        aspect-ratio: 30/21;
        height: auto;
    }

    .gallery-profile {
        -ms-grid-columns: (minmax(0, 1fr)) [ 2 ];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mini-footer__list {
        font-size: 16px;
    }

    .mini-footer__copy {
        font-size: 16px;
    }

    .not-found {
        padding: 50px 0px;
    }

    .not-found__text {
        font-size: 13px;
    }

    .page {
        padding-top: 52px;
    }

    .page section:last-child {
        padding-bottom: 40px;
    }
}

@media (max-width: 1222px) and (min-width: 991.98px) {
    .header__menu {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 991.98px) and (min-width: 721.98px) {
    .about-section__list {
        row-gap: 12px;
    }

    .about-section__image .about-section__button {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .scan-about-section__button {
        display: none;
    }

    .order-list__head {
        display: none;
    }

    .order-list__content {
        margin-top: 0px;
    }
}

@media (min-width: 991.98px) and (max-width: 1222px) {
    .how-work__item:first-child {
        margin-left: 70px;
    }

    .item-work__step {
        font-size: 190px;
    }
}

@media (any-hover: hover) {
    .file__content:hover {
        border-color: #261645;
    }

    .file__content:hover .file__icon svg path[fill] {
        fill: #000;
    }

    .file__content:hover .file__icon svg path[stroke] {
        stroke: #000;
    }

    .file__content:hover .file__text,
    .file__content:hover .file__format {
        color: #000;
    }

    ._btn._white-stroke:hover {
        background: #fff;
        color: #261645;
    }

    ._btn:hover {
        background: #4029a5;
    }

    .menu__link:not(._active):hover {
        color: #5234D7;
    }

    .language__item:hover {
        background: #f2f2f2;
    }

    .footer__list a:hover {
        color: #5234D7;
    }

    .item-work__text a:hover {
        text-decoration: none;
    }

    .product__name:hover {
        color: #5234D7;
    }

    .order__back:hover {
        color: #261645;
    }

    .order__back:hover svg path[fill] {
        fill: #261645;
    }

    .order__back:hover svg path[stroke] {
        stroke: #261645;
    }

    .product-order__add:hover {
        text-decoration: underline;
    }

    .product-order__delete:hover {
        opacity: 0.75;
    }

    .period-product-order__delete:hover {
        color: #261645;
    }

    .period-product-order__delete:hover svg path[fill] {
        fill: #261645;
    }

    .period-product-order__delete:hover svg path[stroke] {
        stroke: #261645;
    }

    .login__nav:not(._active):hover {
        color: #261645;
    }

    .form-login__forgot:hover {
        color: #261645;
    }

    .footer-login__back:hover {
        color: #261645;
    }

    .footer-login__back:hover svg path {
        fill: #261645;
    }

    .list-contacts__value a:hover {
        text-decoration: underline;
    }

    .steps-how-work__text a:hover {
        text-decoration: none;
    }

    .sidebar-cabinet__item:not(._active):hover {
        background: #e3def8;
    }

    .item-memorial__link:hover {
        text-decoration: underline;
    }

    .item-memorial__edit:hover svg path[fill] {
        fill: #5234D7;
    }

    .item-memorial__edit:hover svg path[stroke] {
        stroke: #5234D7;
    }

    .item-memorial__add:hover {
        text-decoration: underline;
    }

    .info-order__back:hover {
        color: #261645;
    }

    .info-order__back:hover svg path[fill] {
        fill: #261645;
    }

    .info-order__back:hover svg path[stroke] {
        stroke: #261645;
    }

    .quotes-info-order__detele:hover svg path[fill] {
        fill: #261645;
    }

    .quotes-info-order__detele:hover svg path[stroke] {
        stroke: #261645;
    }

    .quotes-info-order__add:hover {
        text-decoration: underline;
    }

    .history-info-order__detele:hover svg path[fill] {
        fill: #261645;
    }

    .history-info-order__detele:hover svg path[stroke] {
        stroke: #261645;
    }

    .history-info-order__add:hover {
        text-decoration: underline;
    }

    .details-photos-gallery-info-order__item:hover {
        background: #f5f5f5;
    }

    .order-list__details:hover {
        text-decoration: underline;
    }

    .order-info__back:hover {
        color: #261645;
    }

    .order-info__back:hover svg path[fill] {
        fill: #261645;
    }

    .order-info__back:hover svg path[stroke] {
        stroke: #261645;
    }

    .gallery-profile__item:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
}

._webp .lg-outer .lg-has-vimeo .lg-video-play {
    background: url(../img/vimeo-play.webp) no-repeat scroll 0 0 transparent;
}

._webp .lg-outer .lg-has-vimeo:hover .lg-video-play {
    background: url(../img/vimeo-play.webp) no-repeat scroll 0 -58px transparent;
}

._webp .lg-outer .lg-has-html5 .lg-video-play {
    background: transparent url(../img/video-play.webp) no-repeat scroll 0 0;
}

._webp .lg-outer .lg-has-youtube .lg-video-play {
    background: url(../img/youtube-play.webp) no-repeat scroll 0 0 transparent;
}

._webp .lg-outer .lg-has-youtube:hover .lg-video-play {
    background: url(../img/youtube-play.webp) no-repeat scroll 0 -60px transparent;
}

._webp .banner__slide {
    background: url(../img/banner-image.webp) 100% calc(100% + 50px)/700px no-repeat, #2E3B52;
}

._webp .create-banner__wrapper {
    background: url(../img/create-banner-image.webp) calc(100% - 85px) 100%/468px no-repeat, #2E3B52;
}

@media (max-width: 1222px) {

    ._webp .banner__slide {
        background: url(../img/banner-image.webp) 100% calc(100% + 50px)/580px no-repeat, #2E3B52;
    }
}

@media (max-width: 1222px) {

    ._webp .create-banner__wrapper {
        background: url(../img/create-banner-image.webp) calc(100% - 20px) 100%/320px no-repeat, #2E3B52;
    }
}

@media (max-width: 991.98px) {

    ._webp .banner__slide {
        background: url(../img/banner-image.webp) calc(100% + 120px) calc(100% + 50px)/580px no-repeat, #2E3B52;
    }
}

@media (max-width: 991.98px) {

    ._webp .create-banner__wrapper {
        background: url(../img/create-banner-image.webp) 100% 100%/320px no-repeat, #2E3B52;
    }
}

@media (max-width: 721.98px) {

    ._webp .banner__slide {
        background: url(../img/banner-image.webp) center calc(100% + 25px)/320px no-repeat, #2E3B52;
    }
}

@media (max-width: 721.98px) {

    ._webp .create-banner__wrapper {
        background: url(../img/create-banner-image.webp) bottom center/320px no-repeat, #2E3B52;
    }
}

#delivery._pending-delivery {
    font-size: 0.85em;
    line-height: 1.3;
}


