html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b, strong {
    font-weight: bolder
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

:root {
    --theme-bg-dark: #121212;
    --theme-bg-light: #f3f3f3;
    --theme-bg-light-secondary: #FFF;
    --theme-color-light-primary: #FFF;
    --theme-color-light-secondary: #d0d0d0;
    --theme-color-dark-primary: #121212;
    --theme-color-dark-secondary: #4d4d4d;
    --theme-color-action: #39fdd6;
    --theme-border-primary: #949494;
    --theme-border-secondary: #FFF;
    --theme-border-light: #e4e4e4;
    --theme-control-bg: #FFF;
    --theme-control-color: #121212;
    --theme-control-border: #7d7d7d;
    --theme-control-border-focus: #121212;
    --theme-control-error: #f00;
    --theme-control-disabled: #7d7d7d;
    --theme-control-color-disabled: #c1c6ce;
    --font-main: "Roboto", sans-serif;
    --html: 100%
}

* {
    box-sizing: border-box
}

:after, :before {
    box-sizing: border-box
}

html {
    font-size: var(--html);
    -webkit-tap-highlight-color: transparent;
    -ms-overflow-style: scrollbar
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1;
    font-size: 14px;
    font-optical-sizing: auto;
    background-color: #fff;
    color: var(--theme-color-dark-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

a {
    text-decoration: none;
    color: inherit;
    outline: 0
}

a:focus, a:hover {
    text-decoration: none
}

button {
    outline: 0;
    cursor: pointer
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

.wrapper > :last-child {
    margin-bottom: 0
}

.container {
    padding: 0 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

@media (min-width: 1025px) {
    .container_short {
        max-width: 800px
    }
}

.container .container {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: initial
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 32px
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px
    }
}

.topbar {
    position: relative;
    z-index: 10;
    background-color: var(--theme-bg-light-secondary);
    border-bottom: 1px solid var(--theme-border-light)
}

.topbar__inner {
    display: grid;
    grid-template-columns:1fr 2fr 1fr;
    grid-template-areas:"social text other";
    height: 39px
}

.topbar__inner .social-list {
    grid-area: social
}

.topbar__inner .info-text {
    grid-area: text
}

@media (max-width: 767px) {
    .topbar__inner {
        grid-template-columns:1fr;
        grid-template-areas:initial
    }

    .topbar .info-text {
        grid-area: initial
    }

    .topbar .social-list {
        display: none
    }
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--theme-bg-dark);
    color: var(--theme-color-light-secondary);
    z-index: 10
}

.header__inner {
    height: 95px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: height .3s cubic-bezier(.52, 0, .61, .99)
}

@media (max-width: 1024px) {
    .header__inner {
        position: relative
    }

    .header .logo {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto !important;
        height: 12px
    }

    .header .nav-main {
        display: none
    }
}

body.--header-fix .header__inner {
    height: 75px
}

.button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-light-primary);
    background: var(--theme-bg-dark);
    border: 0;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    border-radius: 5px;
    gap: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    outline: 0;
    padding: 12px 30px;
    overflow: hidden;
    box-shadow: 0 0 0 0 var(--theme-bg-dark);
    letter-spacing: .04em;
    transition: box-shadow 150ms ease-out
}

.button span {
    display: inline-block
}

.button:not(:disabled):hover {
    box-shadow: 0 0 0 1px var(--theme-bg-dark)
}

.button_link {
    border: 0;
    box-shadow: none;
    color: #334fb4;
    background-color: transparent;
    padding: 0
}

.button_link:not(:disabled):hover {
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: 3px
}

.button_light {
    border: 0;
    box-shadow: none;
    color: var(--theme-color-dark-primary);
    background-color: transparent;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px
}

.button_light:not(:disabled):hover {
    box-shadow: none;
    text-decoration-thickness: 2px
}

.button_bg_light {
    background: var(--theme-bg-light-secondary);
    color: var(--theme-color-dark-primary);
    box-shadow: 0 0 0 1px var(--theme-bg-dark), 0 0 3px #121212
}

.button_bg_light:not(:disabled):hover {
    box-shadow: 0 0 0 2px var(--theme-bg-dark), 0 0 5px #121212
}

.button.is-wait, .button.wait {
    cursor: default;
    pointer-events: none;
    color: transparent
}

.button.is-wait:after, .button.wait:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: auto;
    width: 80%;
    height: 80%;
    background: url(../img/wait.svg) center/contain no-repeat;
    content: "";
    animation: wait-rotate 1s linear infinite
}

@keyframes wait-rotate {
    100% {
        transform: rotate(-360deg)
    }
}

input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.control {
    position: relative;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.control__input {
    width: 100%;
    background-color: var(--theme-control-bg);
    border: 1px solid var(--theme-control-border);
    outline: 0;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: .03em;
    color: var(--theme-control-color);
    padding: 21px 20px 7px 20px;
    border-radius: 0;
    font-variant-numeric: lining-nums;
    transition: all 150ms ease-out;
    box-shadow: none
}

.control__input:hover {
    box-shadow: 0 0 0 1px var(--theme-control-border)
}

.control__input:focus {
    background-color: var(--theme-control-bg);
    border-color: var(--theme-control-border-focus);
    box-shadow: 0 0 0 2px var(--theme-control-border-focus)
}

.control__input::-moz-placeholder {
    color: transparent
}

.control__input::placeholder {
    color: transparent
}

.control__input:disabled {
    background-color: var(--theme-control-disabled) !important;
    border-color: var(--theme-control-disabled) !important;
    color: var(--theme-control-color-disabled) !important
}

.control_error .control__input {
    background-color: var(--theme-control-bg);
    border-color: var(--theme-control-error)
}

.control_error .control__input:focus {
    background-color: var(--theme-control-bg);
    border-color: var(--theme-control-error);
    box-shadow: 0 0 0 2px var(--theme-control-error)
}

.control__label {
    color: var(--theme-control-color);
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: .03em;
    display: block;
    position: absolute;
    top: 16px;
    left: 20px;
    z-index: 2;
    text-align: left;
    white-space: nowrap;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: transform 150ms ease-in, top 150ms ease-in, font-size 150ms ease-in
}

.control__input:not(:-moz-placeholder) ~ .control__label {
    top: 4px;
    font-size: 10px;
    font-weight: 400
}

.control__input:focus ~ .control__label, .control__input:not(:placeholder-shown) ~ .control__label {
    top: 4px;
    font-size: 10px;
    font-weight: 400
}

.control textarea.control__input {
    resize: none;
    overflow: hidden;
    min-height: 100px
}

.control__message {
    position: absolute;
    top: -24px;
    right: 0;
    z-index: 2;
    color: #fff;
    background-color: var(--theme-control-error);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    padding: 4px 6px;
    border-radius: 4px;
    animation: errorMsgShow 250ms cubic-bezier(.075, .82, .165, 1);
    pointer-events: none
}

.control__message:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--theme-control-error)
}

.control_error .control__message {
    color: #fff;
    background-color: var(--theme-control-error)
}

.control_error .control__message:after {
    border-top-color: var(--theme-control-error)
}

@keyframes errorMsgShow {
    0% {
        opacity: 0;
        transform: translateY(-50%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.checkbox {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    outline: 0;
    cursor: pointer;
    font-weight: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: -moz-fit-content;
    width: fit-content
}

.checkbox__input {
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0
}

.checkbox__input:checked ~ .checkbox__mark {
    background-color: var(--theme-control-border-focus);
    border-color: var(--theme-control-border-focus) !important
}

.checkbox__input:checked ~ .checkbox__mark:after {
    opacity: 1
}

.checkbox.control_error .checkbox__mark {
    border-color: var(--theme-control-error) !important
}

.checkbox__mark {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 1px solid var(--theme-control-border);
    background-color: var(--theme-control-bg);
    position: relative;
    border-radius: 0;
    transition: all 150ms ease
}

.checkbox__mark:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--theme-control-bg);
    border-bottom: 2px solid var(--theme-control-bg);
    transform: rotate(-45deg);
    opacity: 0
}

.checkbox__text {
    display: inline-block;
    width: calc(100% - 20px);
    flex: 1 0 calc(100% - 20px);
    padding-left: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--theme-control-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.checkbox__text a {
    text-decoration: underline
}

.checkbox__text a:hover {
    text-decoration: none
}

.checkbox:hover .checkbox__mark {
    border-color: var(--theme-control-border-focus)
}

.checkbox__input:disabled + .checkbox__mark {
    background-color: var(--theme-control-bg);
    border-color: var(--theme-control-disabled);
    opacity: .4
}

.checkbox__input:disabled ~ .checkbox__text {
    opacity: .4
}

.checkbox .control__message {
    right: auto;
    left: 0
}

.logo {
    display: inline-block;
    vertical-align: top;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 66px
}

.header .logo {
    margin-right: 14px;
    margin-left: 7px
}

.footer .logo {
    width: 85px
}

.logo img {
    width: 100%;
    height: auto;
    display: block
}

.social-list {
    display: flex;
    align-items: center
}

.social-list__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    color: var(--theme-color-dark-primary);
    outline: 0;
    text-decoration: none;
    flex-shrink: 0
}

.social-list__link svg {
    width: 20px;
    height: 20px
}

.social-list__link:hover {
    transform: scale(1.07)
}

.footer .social-list__link {
    color: var(--theme-color-light-primary)
}

.nav-main__list {
    display: flex;
    align-items: center
}

.nav-main__link {
    position: relative;
    border: 0;
    outline: 0;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 12px;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    background-color: transparent;
    letter-spacing: .04em
}

.nav-main__link span {
    display: inline-block;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: transparent
}

.nav-main__link:hover span {
    border-bottom-color: var(--theme-color-light-primary)
}

.nav-main__link.active span {
    border-bottom-color: var(--theme-color-light-primary)
}

.header .nav-main__link {
    color: var(--theme-color-light-secondary)
}

.header .nav-main__link:hover {
    color: var(--theme-color-light-primary)
}

.header .nav-main__link.active {
    color: var(--theme-color-light-primary)
}

.nav-main button.nav-main__link {
    padding-right: 16px;
    margin-right: 12px
}

.nav-main button.nav-main__link:after {
    content: "";
    display: block;
    position: absolute;
    top: 13px;
    right: 0;
    border-right: 1px solid var(--theme-color-light-secondary);
    border-bottom: 1px solid var(--theme-color-light-secondary);
    transform: rotate(45deg);
    width: 7px;
    height: 7px
}

.nav-main button.nav-main__link:hover:after {
    border-right: 1px solid var(--theme-color-light-primary);
    border-bottom: 1px solid var(--theme-color-light-primary)
}

.nav-main button.nav-main__link > * {
    pointer-events: none
}

.nav-main__item.--open .nav-main__link:after {
    transform: rotate(225deg);
    top: 17px
}

.nav-main__drop {
    display: none;
    box-shadow: 0 4px 5px rgba(18, 18, 18, .05);
    border-bottom: 1px solid var(--theme-border-light);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: var(--theme-bg-light);
    padding: 30px 0
}

.nav-main__drop-inner {
    padding: 0 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.nav-main__item.--open .nav-main__drop {
    display: block
}

.nav-main__link-sub {
    color: var(--theme-color-dark-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: .04em;
    padding: 6px 0;
    display: block;
    width: -moz-fit-content;
    width: fit-content
}

.nav-main__link-sub:hover {
    color: var(--theme-color-dark-primary);
    text-decoration: underline;
    text-underline-offset: 3px
}

.nav-user {
    margin-left: auto
}

.nav-user__list {
    display: flex;
    align-items: center
}

.nav-user__button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-color-light-primary);
    padding: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 0;
    text-decoration: none;
    background-color: transparent;
    gap: 6px
}

.nav-user__button svg {
    width: 26px;
    height: 26px
}

.nav-user__button:hover svg {
    transform: scale(1.07)
}

.nav-user__little-cart {
    position: relative
}

.nav-user__qnt {
    position: absolute;
    bottom: 7px;
    right: 4px;
    background-color: var(--theme-bg-light-secondary);
    color: var(--theme-color-dark-primary);
    min-width: 17px;
    height: 17px;
    text-align: center;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 9px;
    font-weight: 400;
    pointer-events: none
}

@media (max-width: 767px) {
    .nav-user__profile {
        display: none
    }
}

.info-text {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--theme-color-dark-primary);
    padding: 10px 0;
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 auto
}

.hero {
    position: relative;
    margin-bottom: 44px
}

.hero__slide {
    position: relative
}

.hero__slide:after {
    padding-bottom: 41.67%;
    content: "";
    display: block
}

.hero__slide.swiper-slide {
    height: auto
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.hero__pagination {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.hero__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .5)
}

.hero__bullet.active {
    background-color: var(--theme-color-action)
}

@media (max-width: 767px) {
    .hero {
        margin-bottom: 32px
    }

    .hero__pagination {
        bottom: 6px;
        gap: 6px
    }

    .hero__bullet {
        width: 6px;
        height: 6px
    }
}

.section {
    padding: 36px 0
}

.section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px
}

.section__header > :last-child {
    margin-bottom: 0
}

@media (min-width: 1025px) {
    .section__header_left {
        align-items: flex-start
    }
}

.section__headline {
    margin: 0 0 20px;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .02em;
    text-align: center
}

.section__headline_sm {
    font-size: 30px;
    text-align: left
}

.section__headline_normal {
    font-weight: 400
}

.section__text {
    text-align: center;
    color: var(--theme-color-dark-secondary);
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 1.8
}

.section__text a {
    text-decoration: underline;
    text-underline-offset: 3px
}

.section__text a:hover {
    text-decoration-line: underline;
    text-decoration-thickness: 2px
}

.section__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px
}

@media (max-width: 767px) {
    .section {
        padding: 26px 0
    }

    .section__header {
        margin-bottom: 20px
    }

    .section__headline {
        font-size: 30px
    }

    .section__headline br {
        display: none
    }
}

.hero + .section {
    padding-top: 0
}

.headline {
    margin: 0 0 30px;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .02em;
    text-align: center
}

.headline_sm {
    font-size: 30px
}

@media (max-width: 767px) {
    .headline {
        font-size: 30px;
        margin: 0 0 15px
    }
}

.h1, h1 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--theme-color-dark-primary)
}

.h1 span, h1 span {
    font-weight: 400
}

.h2, h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--theme-color-dark-primary)
}

.h2 span, h2 span {
    font-weight: 400
}

.h3, h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .03em;
    margin: 0 0 20px;
    color: var(--theme-color-dark-primary)
}

.h3 span, h3 span {
    font-weight: 400
}

.h4, h4 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .02em;
    margin: 0 0 20px;
    color: var(--theme-color-dark-primary)
}

.h4 span, h4 span {
    font-weight: 400
}

.grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    grid-gap: 8px
}

.grid-4 {
    grid-template-columns:repeat(4, 1fr)
}

.grid-2 {
    grid-template-columns:repeat(2, 1fr)
}

.grid > div:not([class]) > :first-child {
    margin-top: 0
}

.grid > div:not([class]) > :last-child {
    margin-bottom: 0
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns:repeat(2, 1fr);
        grid-row-gap: 16px
    }

    .grid-4 {
        grid-template-columns:repeat(2, 1fr)
    }

    .grid-2 {
        grid-template-columns:1fr
    }
}

@media (max-width: 767px) {
    .grid {
        grid-template-columns:1fr;
        grid-row-gap: 8px
    }

    .grid-4 {
        grid-template-columns:1fr
    }
}

@media (min-width: 1025px) {
    .grid-carousel .swiper-wrapper {
        display: grid;
        grid-template-columns:repeat(4, 1fr);
        grid-gap: 8px
    }

    .grid-carousel .swiper-slide {
        height: auto
    }

    .grid-carousel__controls {
        display: none
    }
}

@media (max-width: 1024px) {
    .grid-carousel {
        margin: 0 -32px !important
    }

    .grid-carousel__controls {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        margin-top: 10px
    }

    .grid-carousel .swiper-slide {
        width: 346px !important;
        height: auto !important
    }

    .grid-carousel .swiper-slide > * {
        height: 100%
    }

    .grid-carousel .swiper-slide:first-child {
        padding-left: 32px;
        width: 378px !important
    }

    .grid-carousel .swiper-slide:last-child {
        padding-right: 32px;
        width: 378px !important
    }

    .grid-carousel__next, .grid-carousel__prev {
        color: var(--theme-color-dark-secondary);
        outline: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        border: 0;
        width: 44px;
        height: 44px;
        background-color: transparent
    }

    .grid-carousel__next.disabled, .grid-carousel__prev.disabled {
        opacity: .3
    }

    .grid-carousel__next svg, .grid-carousel__prev svg {
        width: 24px;
        height: 24px;
        transform: scale(.7)
    }

    .grid-carousel__pagination {
        font-size: 12px;
        line-height: 20px;
        font-weight: 400;
        letter-spacing: .04em;
        color: var(--theme-color-dark-secondary)
    }
}

@media (max-width: 767px) {
    .grid-carousel {
        margin: 0 -20px !important
    }

    .grid-carousel .swiper-slide {
        width: 156px !important
    }

    .grid-carousel .swiper-slide:first-child {
        padding-left: 20px;
        width: 176px !important
    }

    .grid-carousel .swiper-slide:last-child {
        padding-right: 20px;
        width: 176px !important
    }
}

.product-item__inner {
    display: flex;
    flex-direction: column;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    height: 100%
}

.product-item__main {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    outline: 0
}

.product-item__picture {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-bg-light);
    overflow: hidden;
    border-radius: 14px
}

.product-item__picture:before {
    content: "";
    display: block;
    padding-top: 100%
}

.product-item__picture img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform .5s ease;
    will-change: transform
}

.product-item__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
    pointer-events: none;
    bottom: 10px;
    left: 10px;
    right: 10px;
    position: absolute
}

.product-item__badge {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 7px 13px;
    letter-spacing: .06em;
    background-color: var(--theme-bg-dark);
    color: var(--theme-color-light-primary);
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    border-radius: 15px
}

.product-item__info {
    padding: 17px 0
}

.product-item__name {
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: .06em;
    color: var(--theme-color-dark-primary)
}

.product-item__prices {
    margin-top: 7px
}

.product-item__footer {
    margin-top: auto
}

.product-item__button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--theme-bg-light-secondary);
    color: var(--theme-color-dark-primary);
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .06em;
    border: 1px solid var(--theme-color-dark-primary);
    border-radius: 4px;
    transition: box-shadow 150ms ease;
    padding: 13px 10px;
    box-shadow: 0 0 0 1px rgba(18, 18, 18, .3);
    cursor: pointer
}

.product-item__button:not(.disabled):not(:disabled):hover {
    box-shadow: 0 0 0 2px var(--theme-color-dark-primary)
}

.product-item__button.disabled {
    opacity: .5;
    cursor: not-allowed
}

@media (min-width: 1025px) {
    .product-item__main:hover .product-item__name {
        text-decoration: underline
    }

    .product-item__main:hover .product-item__picture img {
        transform: scale(1.03)
    }
}

@media (max-width: 767px) {
    .product-item__info {
        padding: 12px 0
    }

    .product-item__name {
        font-size: 12px
    }

    .product-item__prices .prices {
        flex-direction: column;
        gap: 6px
    }
}

.prices {
    display: flex;
    align-items: baseline;
    gap: 10px
}

.prices__price {
    color: var(--theme-color-dark-primary);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: .06em
}

.prices__old-price {
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: .06em;
    color: var(--theme-color-dark-primary);
    opacity: .75
}

.prices__save {
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1;
    font-weight: 400;
    background-color: #c0392b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    margin-top: -1px
}

.banner-block {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    align-items: center
}

.banner-block__pic {
    position: relative;
    flex: 1
}

.banner-block__pic:before {
    content: "";
    display: block;
    padding-top: 80%
}

.banner-block__pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 14px
}

.banner-block__content {
    flex: 1;
    text-align: center;
    padding: 60px 70px
}

.banner-block__content > :first-child {
    margin-top: 0
}

.banner-block__content > :last-child {
    margin-bottom: 0
}

.banner-block_invert .banner-block__pic {
    order: 2
}

.banner-block_invert .banner-block__content {
    order: 1
}

.banner-block__text {
    color: var(--theme-color-dark-secondary);
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 1.8
}

.banner-block__text > :first-child {
    margin-top: 0
}

.banner-block__text > :last-child {
    margin-bottom: 0
}

.banner-block__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px
}

.banner-block__footer .button {
    width: -moz-fit-content;
    width: fit-content
}

.banner-block_alt .banner-block__content {
    position: relative;
    z-index: 1;
    background-color: var(--theme-bg-light-secondary);
    text-align: left;
    border-radius: 14px;
    margin-left: -40px
}

.banner-block_alt .headline {
    text-align: left
}

.banner-block_alt .banner-block__pic:before {
    padding-top: 67%
}

.banner-block_alt.banner-block_invert .banner-block__content {
    margin-left: 0;
    margin-right: 0
}

@media (max-width: 1024px) {
    .banner-block {
        grid-template-columns:1fr
    }

    .banner-block__content {
        padding: 40px 0 0
    }

    .banner-block_invert .banner-block__pic {
        order: 1
    }

    .banner-block_invert .banner-block__content {
        order: 2
    }

    .banner-block_alt .banner-block__content {
        margin: 0 !important
    }
}

@media (max-width: 767px) {
    .banner-block__footer {
        margin-top: 20px
    }

    .banner-block__text {
        font-size: 15px;
        line-height: 1.6;
        letter-spacing: .03em
    }
}

.banner-block + .banner-block {
    margin-top: 40px
}

.banner {
    position: relative
}

.banner__inner {
    min-height: 420px;
    overflow: hidden;
    display: flex
}

.banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.banner__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.banner__content {
    position: relative;
    z-index: 1;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.banner__title {
    color: var(--theme-color-light-primary);
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .02em;
    text-align: center;
    margin: 0
}

.news-item__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 25px;
    background-color: var(--theme-bg-light);
    border-radius: 14px
}

.news-item__pic {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 6px
}

.news-item__pic:after {
    content: "";
    display: block;
    padding-top: 75%
}

.news-item__pic_portrait:after {
    padding-top: 180%
}

.news-item__pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6px;
    transition: transform .5s ease;
    will-change: transform
}

a.news-item__inner:hover .news-item__pic img {
    transform: scale(1.03)
}

.news-item__content {
    flex: 1;
    text-align: center
}

.news-item__title {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .04em
}

.news-item__text {
    color: var(--theme-color-dark-secondary);
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 1.8;
    margin-top: 10px
}

.news-item__text a {
    text-decoration: underline
}

.news-item__text a:hover {
    text-decoration: none
}

.news-item__text > :first-child {
    margin-top: 0
}

.news-item__text > :last-child {
    margin-bottom: 0
}

@media (max-width: 767px) {
    .news-item__title {
        font-size: 17px;
        letter-spacing: .03em
    }

    .news-item__text {
        font-size: 15px;
        letter-spacing: .03em;
        line-height: 1.6;
        word-break: break-word
    }

    .news-item__pic_portrait {
        margin-bottom: 5px
    }
}

.form__step {
    display: none
}

.form__step.--active {
    display: block
}

.form__step > :last-child {
    margin-bottom: 0
}

.form__back {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0;
    border: 0;
    padding: 0;
    background-color: transparent;
    color: var(--theme-color-dark-primary);
    width: 32px;
    height: 32px
}

.modal .form__back {
    position: absolute;
    top: 38px;
    left: 35px;
    z-index: 3
}

@media (max-width: 767px) {
    .modal .form__back {
        top: 16px;
        left: 20px
    }
}

.form__back svg {
    width: 24px;
    height: 24px;
    transform: scaleX(-1)
}

.form__title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600
}

.form__group {
    position: relative;
    margin-bottom: 20px
}

.form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px
}

.form__row .form__group {
    margin-bottom: 0;
    flex: 1
}

.form__group_control {
    display: flex;
    gap: 16px
}

.form__group_control .button {
    flex: 1
}

.form__label {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .04em
}

.form__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--theme-color-dark-secondary)
}

.form__text > :first-child {
    margin-top: 0
}

.form__text > :last-child {
    margin-bottom: 0
}

.modal .form__text {
    text-align: center
}

.form > :last-child {
    margin-bottom: 0
}

@media (max-width: 767px) {
    .form__row {
        flex-direction: column
    }

    .form__row .form__group {
        width: 100%
    }
}

.document {
    font-size: 16px;
    line-height: 1.7;
    color: var(--theme-color-dark-secondary)
}

.document p {
    margin: 20px 0
}

.document a:not(.button) {
    text-decoration: underline;
    text-underline-offset: 3px
}

.document a:not(.button):hover {
    text-decoration-line: underline;
    text-decoration-thickness: 2px
}

.document img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 20px 0
}

.modal .document {
    text-align: center;
    margin-bottom: 20px
}

.document .h2, .document .h3, .document .h4, .document h2, .document h3, .document h4 {
    margin: 60px 0 20px
}

.document .h1 + .h1, .document .h1 + .h2, .document .h1 + .h3, .document .h1 + .h4, .document .h1 + .h5, .document .h1 + .h6, .document .h1 + h1, .document .h1 + h2, .document .h1 + h3, .document .h1 + h4, .document .h1 + h5, .document .h1 + h6, .document .h2 + .h1, .document .h2 + .h2, .document .h2 + .h3, .document .h2 + .h4, .document .h2 + .h5, .document .h2 + .h6, .document .h2 + h1, .document .h2 + h2, .document .h2 + h3, .document .h2 + h4, .document .h2 + h5, .document .h2 + h6, .document .h3 + .h1, .document .h3 + .h2, .document .h3 + .h3, .document .h3 + .h4, .document .h3 + .h5, .document .h3 + .h6, .document .h3 + h1, .document .h3 + h2, .document .h3 + h3, .document .h3 + h4, .document .h3 + h5, .document .h3 + h6, .document .h4 + .h1, .document .h4 + .h2, .document .h4 + .h3, .document .h4 + .h4, .document .h4 + .h5, .document .h4 + .h6, .document .h4 + h1, .document .h4 + h2, .document .h4 + h3, .document .h4 + h4, .document .h4 + h5, .document .h4 + h6, .document .h5 + .h1, .document .h5 + .h2, .document .h5 + .h3, .document .h5 + .h4, .document .h5 + .h5, .document .h5 + .h6, .document .h5 + h1, .document .h5 + h2, .document .h5 + h3, .document .h5 + h4, .document .h5 + h5, .document .h5 + h6, .document .h6 + .h1, .document .h6 + .h2, .document .h6 + .h3, .document .h6 + .h4, .document .h6 + .h5, .document .h6 + .h6, .document .h6 + h1, .document .h6 + h2, .document .h6 + h3, .document .h6 + h4, .document .h6 + h5, .document .h6 + h6, .document h1 + .h1, .document h1 + .h2, .document h1 + .h3, .document h1 + .h4, .document h1 + .h5, .document h1 + .h6, .document h1 + h1, .document h1 + h2, .document h1 + h3, .document h1 + h4, .document h1 + h5, .document h1 + h6, .document h2 + .h1, .document h2 + .h2, .document h2 + .h3, .document h2 + .h4, .document h2 + .h5, .document h2 + .h6, .document h2 + h1, .document h2 + h2, .document h2 + h3, .document h2 + h4, .document h2 + h5, .document h2 + h6, .document h3 + .h1, .document h3 + .h2, .document h3 + .h3, .document h3 + .h4, .document h3 + .h5, .document h3 + .h6, .document h3 + h1, .document h3 + h2, .document h3 + h3, .document h3 + h4, .document h3 + h5, .document h3 + h6, .document h4 + .h1, .document h4 + .h2, .document h4 + .h3, .document h4 + .h4, .document h4 + .h5, .document h4 + .h6, .document h4 + h1, .document h4 + h2, .document h4 + h3, .document h4 + h4, .document h4 + h5, .document h4 + h6, .document h5 + .h1, .document h5 + .h2, .document h5 + .h3, .document h5 + .h4, .document h5 + .h5, .document h5 + .h6, .document h5 + h1, .document h5 + h2, .document h5 + h3, .document h5 + h4, .document h5 + h5, .document h5 + h6, .document h6 + .h1, .document h6 + .h2, .document h6 + .h3, .document h6 + .h4, .document h6 + .h5, .document h6 + .h6, .document h6 + h1, .document h6 + h2, .document h6 + h3, .document h6 + h4, .document h6 + h5, .document h6 + h6 {
    margin-top: 20px
}

.document p:empty {
    display: none !important
}

.document b, .document strong {
    font-weight: 600
}

.document ol, .document ul {
    margin: 20px 0
}

.document ul {
    padding: 0 0 0 20px
}

.document ul li {
    position: relative;
    list-style: none
}

.document ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    left: -14px;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background-color: var(--theme-color-dark-secondary)
}

.document ul li:not(:last-child) {
    margin-bottom: 20px
}

.document table {
    border-collapse: collapse;
    border: 0;
    margin: 20px 0
}

.document table th {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    padding: 12px;
    border: 1px solid rgba(18, 18, 18, .2)
}

.document table td {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    padding: 12px;
    border: 1px solid rgba(18, 18, 18, .2)
}

.document table ul li:before {
    top: 9px
}

.document table li:not(:last-child) {
    margin-bottom: 10px
}

.document > :first-child {
    margin-top: 0
}

.document > :last-child {
    margin-bottom: 0
}

.img-rounded {
    border-radius: 14px
}

.text-align-center {
    text-align: center
}

.text-align-left {
    text-align: left
}

.mt-0 {
    margin-top: 0 !important
}

.accordion {
    border-bottom: 1px solid var(--theme-border-light)
}

.accordion__label {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 100%;
    text-align: left;
    border: 0;
    background-color: transparent;
    color: var(--theme-color-dark-primary);
    border-radius: 0;
    outline: 0;
    padding: 15px 40px 15px 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: .04em;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.accordion__label svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.accordion__label:after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    border-right: 1px solid var(--theme-color-dark-secondary);
    border-bottom: 1px solid var(--theme-color-dark-secondary);
    transform: rotate(45deg);
    width: 7px;
    height: 7px
}

.--open .accordion__label:after {
    transform: rotate(-135deg);
    top: 20px
}

@media (min-width: 1025px) {
    .accordion__label:hover {
        background-color: rgba(18, 18, 18, .04);
        text-decoration: underline;
        text-underline-offset: 4px
    }
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: all 150ms ease
}

.accordion__content .document {
    padding: 15px 6px
}

@media (max-width: 767px) {
    .accordion__content .document {
        padding-top: 0
    }
}

.accordion-list .accordion:first-child {
    border-top: 1px solid var(--theme-border-light)
}

.subscribe {
    max-width: 360px;
    margin: 0 auto
}

.subscribe__field {
    position: relative
}

.subscribe__send {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0;
    padding: 0;
    background-color: transparent;
    color: var(--theme-color-dark-secondary);
    border: 0;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 46px;
    height: 46px
}

.subscribe__send svg {
    width: 20px;
    height: 20px
}

.sticky-side {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    pointer-events: none
}

.sticky-side__item {
    position: relative
}

.button-side {
    position: relative;
    transform: rotate(90deg);
    transform-origin: left bottom
}

.button-side.--hidden {
    display: none
}

.button-side__button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    background-color: var(--theme-bg-dark);
    color: var(--theme-color-light-primary);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    pointer-events: auto
}

.button-side__close {
    position: absolute;
    top: -12px;
    left: -12px;
    z-index: 1;
    background-color: #fff;
    color: #000;
    outline: 0;
    padding: 2px;
    border: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
    pointer-events: auto
}

.button-side__close svg {
    width: 100%;
    height: 100%
}

.footer {
    background-color: var(--theme-bg-dark);
    color: var(--theme-color-light-secondary);
    padding: 36px 0
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 60px;
    -moz-column-gap: 8px;
    column-gap: 8px
}

.footer__section {
    flex: 1 1 calc(33.33% - 6px)
}

.footer__contacts {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .04em;
    line-height: 1.8
}

.footer__contacts p {
    margin: 0
}

.footer__about {
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 115px
}

.footer__extra {
    padding-bottom: 50px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 30px
}

.footer__copy {
    margin-right: auto;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: .06em
}

.footer__title {
    color: var(--theme-color-light-primary);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .04em;
    margin: 0 0 20px
}

@media (max-width: 767px) {
    .footer {
        padding: 26px 0
    }

    .footer__inner {
        flex-direction: column;
        gap: 40px
    }

    .footer__about {
        min-height: 50px
    }

    .footer__extra {
        padding-bottom: 20px;
        padding-top: 20px
    }

    .footer__bottom {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 20px
    }

    .footer__copy {
        margin-right: 0
    }
}

.footer-nav__link {
    color: var(--theme-color-light-secondary);
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    letter-spacing: .04em;
    line-height: 1.8;
    padding: 5px 0
}

@media (min-width: 1025px) {
    .footer-nav__link:hover {
        color: var(--theme-color-light-primary);
        text-decoration: underline;
        text-underline-offset: 3px
    }
}

@media (max-width: 767px) {
    .footer-nav__link {
        padding: 10px 0
    }
}

.footer-nav__item:first-child .footer-nav__link {
    padding-top: 0
}

.payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.payment-list__item {
    background-repeat: no-repeat;
    width: 50px;
    height: 32px;
    background-size: contain;
    border-radius: 4px
}

.payment-list__item-sber {
    background-image: url(../img/payments/sber.png)
}

.menu {
    display: none
}

.menu__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.menu__section {
    padding: 30px 0
}

.menu__footer {
    margin-top: auto;
    background-color: var(--theme-bg-light);
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.menu__button {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .04em
}

.menu__button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0
}

@media (max-width: 1024px) {
    .menu {
        display: none;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 10;
        background-color: var(--theme-bg-light-secondary);
        color: var(--theme-color-dark-primary)
    }
}

@media (max-width: 767px) {
    .menu {
        width: 100%
    }

    .menu__section {
        padding: 20px 0
    }

    .menu__footer {
        padding: 20px
    }
}

@media (max-width: 1024px) {
    .menu {
        top: 135px;
        transition: top .3s linear
    }
}

@media (max-width: 1024px) {
    body.--header-fix .menu {
        top: 75px
    }
}

@media (max-width: 1024px) {
    body.--menu-open {
        overflow: hidden
    }
}

@media (max-width: 1024px) {
    body.--menu-open .menu {
        display: block
    }
}

.menu-button {
    display: none
}

@media (max-width: 1024px) {
    .menu-button {
        display: flex;
        justify-content: center;
        align-items: center;
        outline: 0;
        background-color: transparent;
        color: var(--theme-color-light-primary);
        width: 44px;
        height: 44px;
        padding: 9px;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        cursor: pointer;
        border: 0;
        margin-left: -12px
    }

    .menu-button svg {
        width: 26px;
        height: 26px
    }

    .menu-button span {
        display: none
    }
}

@media (max-width: 1024px) {
    body.--menu-open .menu-button > svg {
        display: none
    }

    body.--menu-open .menu-button span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%
    }
}

.nav-menu__link {
    display: block;
    padding: 11px 30px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .02em;
    font-weight: 400;
    text-decoration: none;
    outline: 0;
    text-align: left;
    border: 0;
    background-color: transparent;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    width: 100%
}

.nav-menu__link.active {
    background-color: var(--theme-bg-light)
}

.nav-menu__link svg {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    margin: auto 0
}

.nav-menu button.nav-menu__link {
    position: relative
}

.nav-menu__drop {
    display: none;
    background-color: var(--theme-bg-light-secondary);
    padding: 30px 0
}

.nav-menu__back {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background-color: transparent;
    color: var(--theme-color-dark-primary);
    gap: 10px;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%;
    border: 0;
    padding: 13px 30px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    font-weight: 400
}

.nav-menu__back svg {
    position: relative;
    top: -1px;
    width: 16px;
    height: 16px;
    display: block;
    transform: scaleX(-1)
}

.nav-menu__item.--open .nav-menu__drop {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

@media (max-width: 767px) {
    .nav-menu__drop {
        padding: 20px 0
    }

    .nav-menu__back {
        padding: 13px 20px
    }

    .nav-menu__link {
        padding: 11px 20px
    }

    .nav-menu__link svg {
        right: 20px
    }
}

.quick-search {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 0 50px;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-bg-dark);
    color: var(--theme-color-light-primary);
    display: none
}

.quick-search__main {
    display: flex;
    align-items: center;
    gap: 5px
}

.quick-search__field {
    position: relative;
    width: 742px
}

.quick-search__input {
    background-color: var(--theme-bg-dark);
    color: var(--theme-color-light-primary);
    border: 0;
    outline: 0;
    padding: 21px 100px 7px 20px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: .03em;
    box-shadow: 0 0 0 1px var(--theme-border-primary);
    width: 100%
}

.quick-search__input:hover {
    box-shadow: 0 0 0 2px var(--theme-border-primary)
}

.quick-search__input:focus {
    box-shadow: 0 0 0 2px var(--theme-border-secondary)
}

.quick-search__input::-moz-placeholder {
    color: transparent
}

.quick-search__input::placeholder {
    color: transparent
}

.quick-search__label {
    color: var(--theme-color-light-secondary);
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    display: block;
    position: absolute;
    top: 16px;
    left: 20px;
    z-index: 2;
    text-align: left;
    white-space: nowrap;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    letter-spacing: .03em;
    transition: transform 150ms ease-in, top 150ms ease-in, font-size 150ms ease-in
}

.quick-search__input:not(:-moz-placeholder) ~ .quick-search__label {
    top: 4px;
    font-size: 10px;
    font-weight: 400
}

.quick-search__input:focus ~ .quick-search__label, .quick-search__input:not(:placeholder-shown) ~ .quick-search__label {
    top: 4px;
    font-size: 10px;
    font-weight: 400
}

.quick-search__clear {
    justify-content: center;
    align-items: center;
    background-color: transparent;
    outline: 0;
    padding: 0;
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0;
    right: 46px;
    z-index: 1;
    border: 0;
    color: var(--theme-color-light-primary);
    display: none
}

.quick-search__clear:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    height: 26px;
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.quick-search__clear span {
    display: block;
    width: 18px;
    height: 18px;
    padding: 1px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%
}

.quick-search__clear svg {
    width: 100%;
    height: 100%
}

.quick-search__clear:hover {
    color: var(--theme-color-light-secondary)
}

.quick-search__clear:hover span {
    transform: scale(1.07)
}

.quick-search__clear:hover svg {
    transform: scale(1.07)
}

.quick-search__input:not(:-moz-placeholder) ~ .quick-search__clear {
    display: flex
}

.quick-search__input:not(:placeholder-shown) ~ .quick-search__clear {
    display: flex
}

.quick-search__send {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0;
    padding: 0;
    background-color: transparent;
    color: var(--theme-color-light-secondary);
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 46px
}

.quick-search__send svg {
    width: 20px;
    height: 20px
}

.quick-search__send:hover {
    color: var(--theme-color-light-primary)
}

.quick-search__send:hover svg {
    transform: scale(1.07)
}

.quick-search__close {
    flex-shrink: 0;
    outline: 0;
    padding: 0;
    border: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    color: var(--theme-color-light-primary);
    background-color: transparent
}

.quick-search__close svg {
    width: 30px;
    height: 30px
}

.quick-search__close:hover {
    color: var(--theme-color-light-secondary)
}

.quick-search__close:hover svg {
    transform: scale(1.07)
}

.quick-search__result {
    display: none
}

@media (max-width: 1024px) {
    .quick-search {
        padding: 0
    }

    .quick-search__main {
        flex: 1
    }

    .quick-search__field {
        width: 100%
    }
}

body.--quick-search-open:after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: .7;
    z-index: 9
}

body.--quick-search-open .quick-search {
    display: flex
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, .5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: center;
    display: none
}

.modal.--open {
    display: flex;
    visibility: visible;
    opacity: 1
}

.modal__content {
    flex-shrink: 0;
    position: relative;
    background-color: #fff;
    padding: 0;
    border-radius: 16px;
    width: 500px;
    margin-top: auto;
    margin-bottom: auto;
    color: var(--theme-color-dark-primary)
}

@media (max-width: 767px) {
    .modal__content {
        border-radius: 0;
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: none
    }
}

@media (min-width: 1025px) {
    .modal_order .modal__content {
        width: 600px
    }
}

.modal_review .modal__content {
    width: 700px
}

@media (max-width: 767px) {
    .modal_review .modal__content {
        width: 100%
    }
}

.modal__header {
    position: relative;
    z-index: 3;
    border-radius: 16px 16px 0 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 0
}

.modal__header_empty {
    padding: 0
}

@media (max-width: 767px) {
    .modal__header {
        position: sticky;
        top: 0;
        z-index: 1;
        border-radius: 0;
        padding: 20px 70px;
        box-shadow: 0 8px 40px rgba(48, 49, 51, .16);
        min-height: 64px;
        flex-shrink: 0
    }

    .modal__header_empty {
        padding: 0;
        min-height: initial;
        box-shadow: none
    }
}

.modal__headline {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    order: 2;
    display: flex;
    align-items: center
}

@media (max-width: 767px) {
    .modal__headline {
        font-size: 20px
    }
}

.modal__close {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: 0;
    outline: 0;
    background-color: transparent;
    color: var(--theme-color-dark-secondary);
    width: 32px;
    height: 32px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.modal__close:hover {
    opacity: .7
}

.modal__close svg {
    width: 28px;
    height: 28px
}

.modal__close {
    order: 3;
    margin-left: auto;
    align-self: flex-start;
    position: absolute;
    top: 8px;
    right: 8px
}

@media (max-width: 767px) {
    .modal__close {
        top: 14px;
        right: 12px
    }
}

.modal__body {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px
}

@media (max-width: 767px) {
    .modal__body {
        border-radius: 0;
        padding: 20px
    }
}

.modal__header:not(.modal__header_empty) ~ .modal__body {
    border-radius: 0 0 16px 16px
}

.modal__text {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 20px
}

.modal__text > :first-child {
    margin-top: 0
}

.modal__text > :last-child {
    margin-bottom: 0
}

body.is-modal-open {
    overflow: hidden
}

.filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px
}

.filter__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1
}

.filter__title {
    font-size: 14px;
    line-height: 1.5;
    color: var(--theme-color-dark-primary);
    margin-right: -12px
}

.filter__info {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .04em;
    opacity: .7;
    color: var(--theme-color-dark-primary)
}

.filter__toggle {
    display: none
}

.filter__mob-header {
    display: none
}

.filter__mob-footer {
    display: none
}

@media (max-width: 767px) {
    .filter__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 15px;
        line-height: 20px;
        font-weight: 400;
        background-color: transparent;
        color: var(--theme-color-dark-primary);
        padding: 5px 0;
        border: 0;
        outline: 0;
        cursor: pointer;
        letter-spacing: .04em
    }

    .filter__toggle svg {
        width: 20px;
        height: 20px
    }

    .filter__inner {
        display: none
    }

    .filter__info {
        margin-left: auto
    }

    .filter__mob-header {
        position: relative;
        text-align: center;
        display: block;
        padding: 10px 25px;
        width: 100%;
        border-bottom: 1px solid rgba(18, 18, 18, .08);
        margin-bottom: 27px
    }

    .filter__mob-title {
        color: var(--theme-color-dark-primary);
        font-size: 14px;
        line-height: 1.4;
        letter-spacing: .04em
    }

    .filter__mob-info {
        font-size: 13px;
        color: var(--theme-color-dark-primary);
        opacity: .7;
        line-height: 1.7;
        letter-spacing: .04em
    }

    .filter__mob-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 25px;
        width: 100%;
        border-top: 1px solid rgba(18, 18, 18, .08);
        margin-top: auto;
        gap: 20px
    }

    .filter__mob-footer .button {
        flex: 1
    }

    .filter__close {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 0;
        padding: 0;
        outline: 0;
        width: 32px;
        height: 32px;
        background-color: transparent;
        color: var(--theme-color-dark-primary);
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0;
        margin: auto 0
    }

    .filter__close svg {
        width: 100%;
        height: 100%
    }

    .filter__title {
        display: none
    }
}

@media (max-width: 767px) {
    body.--filter-open {
        overflow: hidden
    }

    body.--filter-open:after {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 19;
        background-color: #000;
        opacity: .4
    }

    body.--filter-open .filter__inner {
        position: fixed;
        top: 0;
        right: 0;
        left: 50px;
        bottom: 0;
        z-index: 20;
        background-color: var(--theme-bg-light-secondary);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0
    }
}

.filter-item {
    position: relative;
    display: flex;
    align-items: center
}

.filter-item_right {
    margin-left: auto
}

.filter-item > .control svg {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 10px;
    height: 6px;
    margin: auto 0
}

.filter-item > .control select.control__input {
    font-size: 14px;
    padding: 10px 30px 10px 10px
}

.filter-item > .control select.control__input:not(:focus) {
    border-color: transparent;
    box-shadow: none
}

.filter-item__label {
    margin-right: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--theme-color-dark-primary);
    white-space: nowrap
}

.filter-item__toggle {
    position: relative;
    padding: 0 16px 0 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 0;
    outline: 0;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
    color: var(--theme-color-dark-primary);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    border-radius: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center
}

.filter-item__toggle:after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    border-right: 1px solid var(--theme-color-dark-secondary);
    border-bottom: 1px solid var(--theme-color-dark-secondary);
    transform: rotate(45deg);
    width: 7px;
    height: 7px
}

.filter-item__toggle span {
    display: inline-block;
    vertical-align: top
}

.filter-item__toggle svg {
    display: none
}

.filter-item__toggle > * {
    pointer-events: none
}

@media (min-width: 1025px) {
    .filter-item__toggle:hover span {
        text-decoration: underline;
        text-underline-offset: 3px
    }
}

.filter-item__drop {
    display: none
}

.filter-item__head {
    display: flex;
    align-items: flex-start;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(18, 18, 18, .2)
}

.filter-item__reset {
    margin-left: auto;
    flex-shrink: 0;
    background-color: transparent;
    border: 0;
    padding: 0;
    outline: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--theme-color-dark-primary)
}

.filter-item__reset:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.filter-item__qnt, .filter-item__title {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--theme-color-dark-primary);
    opacity: .75;
    letter-spacing: .04em
}

.filter-item__list {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.filter-item__item {
    flex: 1 1 100%;
    width: 100%
}

.filter-item__control {
    flex: 1
}

.filter-item__control input::-webkit-inner-spin-button, .filter-item__control input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0
}

.filter-item__control input[type=number] {
    -moz-appearance: textfield
}

.filter-item__back {
    display: none
}

.filter-item__mob-text {
    display: none
}

.filter-item__mob-footer {
    display: none
}

@media (min-width: 768px) {
    .filter-item.--open .filter-item__toggle:after {
        transform: rotate(225deg);
        top: 10px
    }

    .filter-item.--open .filter-item__drop {
        display: block;
        position: absolute;
        top: 100%;
        left: -10px;
        margin-top: 10px;
        z-index: 1;
        background-color: var(--theme-bg-light-secondary);
        border: 1px solid rgba(18, 18, 18, .1);
        box-shadow: 0 4px 5px rgba(18, 18, 18, .05);
        min-width: 320px
    }
}

@media (max-width: 767px) {
    .filter-item {
        width: 100%;
        position: static
    }

    .filter-item__toggle {
        width: 100%;
        padding: 13px 25px;
        color: var(--theme-color-dark-secondary);
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
        justify-content: flex-start;
        letter-spacing: .04em
    }

    .filter-item__toggle:after {
        display: none
    }

    .filter-item__toggle svg {
        width: 16px;
        height: 16px;
        right: 20px;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto 0;
        display: block
    }

    .filter-item__label {
        font-size: 15px;
        line-height: 1.6;
        padding-left: 25px;
        color: var(--theme-color-dark-secondary)
    }

    .filter-item > .control svg {
        position: absolute;
        top: 0;
        right: 22px;
        bottom: 0;
        width: 12px;
        height: 8px;
        margin: auto 0
    }

    .filter-item > .control select.control__input {
        font-size: 15px;
        padding: 15px 30px 15px 10px
    }

    .filter-item.--open .filter-item__drop {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 63px;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1;
        background-color: var(--theme-bg-light-secondary)
    }

    .filter-item__head {
        display: none
    }

    .filter-item__list {
        padding: 27px 0 0;
        gap: 0;
        flex-wrap: wrap
    }

    .filter-item__back {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        background-color: transparent;
        color: var(--theme-color-dark-primary);
        gap: 10px;
        outline: 0;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        width: 100%;
        border: 0;
        padding: 17px 25px;
        font-size: 15px;
        line-height: 16px;
        letter-spacing: .04em;
        font-weight: 400;
        flex: 1 1 100%
    }

    .filter-item__back svg {
        position: relative;
        top: -1px;
        width: 16px;
        height: 16px;
        display: block;
        transform: scaleX(-1)
    }

    .filter-item__item {
        padding: 15px 25px;
        flex: 1 1 100%;
        width: 100%
    }

    .filter-item__control {
        padding: 6px 12px
    }

    .filter-item__back + .filter-item__control, .filter-item__mob-text + .filter-item__control {
        padding-left: 25px
    }

    .filter-item__control:last-child {
        padding-right: 25px
    }

    .filter-item__mob-text {
        display: block;
        flex: 1 1 100%;
        width: 100%;
        padding: 15px 25px;
        text-align: left;
        font-size: 14px;
        line-height: 1.6;
        font-weight: 400;
        color: var(--theme-color-dark-primary);
        opacity: .75;
        letter-spacing: .04em
    }

    .filter-item__mob-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 25px;
        width: 100%;
        border-top: 1px solid rgba(18, 18, 18, .08);
        margin-top: auto;
        gap: 20px
    }

    .filter-item__mob-footer .button {
        flex: 1
    }
}

.filter-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px
}

.filter-selected:empty {
    display: none
}

.filter-selected__button {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: 0;
    background-color: var(--theme-bg-light-secondary);
    color: var(--theme-color-dark-primary);
    padding: 4px 26px 4px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    border: 0;
    border-radius: 14px;
    letter-spacing: .04em;
    box-shadow: 0 0 0 1px rgba(18, 18, 18, .2);
    transition: box-shadow 150ms ease
}

.filter-selected__button:hover {
    box-shadow: 0 0 0 2px rgba(18, 18, 18, .4)
}

.filter-selected__button svg {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    right: 8px;
    bottom: 0;
    margin: auto 0
}

.filter-selected__reset {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--theme-color-dark-primary);
    background-color: transparent;
    padding: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    letter-spacing: .04em
}

.filter-selected__reset:hover {
    text-decoration-thickness: 2px
}

.detail {
    display: flex;
    gap: 50px
}

.detail__gallery {
    flex: 1 1 55%;
    max-width: 55%;
    width: 55%
}

.detail__info {
    flex: 1;
    max-width: 345px
}

.detail__headline {
    margin: 0;
    font-size: 40px;
    letter-spacing: .04em;
    font-weight: 400;
    line-height: 1.3
}

.detail__short {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--theme-color-dark-secondary);
    text-transform: uppercase;
    margin-bottom: 15px
}

.detail__section {
    margin-bottom: 15px
}

.detail__section .prices {
    align-items: center
}

.detail__section .prices__price {
    font-size: 18px;
    line-height: 1
}

.detail__section .prices__old-price {
    font-size: 16px;
    line-height: 1
}

.detail__controls {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.detail__controls .button {
    width: 100%
}

.detail__label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--theme-color-dark-secondary);
    margin-bottom: 6px;
    letter-spacing: .04em
}

.detail__extra {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .05em;
    color: var(--theme-color-dark-secondary);
    margin-top: 10px
}

.detail__extra a {
    text-decoration: underline;
    text-underline-offset: 3px
}

.detail__extra a:hover {
    text-decoration: none
}

.detail > :first-child {
    margin-top: 0
}

.detail > :last-child {
    margin-bottom: 0
}

@media (max-width: 1024px) {
    .detail {
        gap: 32px
    }

    .detail__gallery {
        flex: 1 1 calc(50% - 16px);
        max-width: calc(50% - 16px);
        width: calc(50% - 16px)
    }
}

@media (max-width: 767px) {
    .detail {
        display: block;
        gap: initial
    }

    .detail__gallery {
        flex: initial;
        max-width: 100%;
        width: 100%
    }

    .detail__info {
        max-width: 100%;
        width: 100%;
        margin-top: 20px
    }

    .detail__headline {
        font-size: 30px
    }

    .detail__prices .prices__price {
        font-size: 16px
    }

    .detail__prices .prices__old-price {
        font-size: 13px
    }
}

.map-order {
    overflow: hidden;
    border-radius: 4px;
    height: 250px;
    width: 100%;
    display: block;
    background-color: var(--theme-bg-light);
    margin-bottom: 40px
}

.gallery-list {
    --preview-ratio: 0.8;
    --aspect-ratio: var(--preview-ratio);
    --ratio-percent: calc(1 / var(--aspect-ratio) * 100%);
    --viewport-offset: 170px;
    --constrained-min-height: 500px;
    --constrained-height: max(var(--constrained-min-height), calc(100vh - var(--viewport-offset)));
    --contained-width: calc(var(--constrained-height) * var(--aspect-ratio));
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1
}

@media (max-width: 767px) {
    .gallery-list {
        --aspect-ratio: var(--preview-ratio);
        --ratio-percent: calc(1 / var(--aspect-ratio) * 100%);
        --viewport-offset: 400px;
        --constrained-min-height: 300px;
        --constrained-height: max(var(--constrained-min-height), calc(100vh - var(--viewport-offset)));
        position: relative
    }
}

.gallery-list__main {
    border-radius: 14px
}

.gallery-list__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
    width: min(var(--contained-width), 100%);
    padding-top: min(var(--constrained-height), var(--ratio-percent));
    box-shadow: inset 0 0 0 1px rgba(18, 18, 18, .1);
    border-radius: 14px
}

.gallery-list__link img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 14px
}

.gallery-list__thumbs {
    position: relative;
    margin-top: 40px;
    padding: 0 32px
}

.gallery-list__thumb {
    position: relative;
    border-radius: 14px;
    cursor: pointer
}

.gallery-list__thumb:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(18, 18, 18, .1);
    border-radius: 14px;
    z-index: 1;
    pointer-events: none
}

.gallery-list__thumb.active:before {
    box-shadow: inset 0 0 0 2px var(--theme-color-dark-primary)
}

.gallery-list__thumb:after {
    content: "";
    display: block;
    padding-top: 100%
}

.gallery-list__thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 11px
}

.gallery-list__thumb:hover {
    opacity: .7
}

.gallery-list__next, .gallery-list__prev {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    outline: 0;
    border: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-color-dark-primary);
    opacity: .7;
    background-color: transparent;
    width: 32px;
    height: 32px
}

.gallery-list__next svg, .gallery-list__prev svg {
    width: 24px;
    height: 24px;
    transform: scale(.7)
}

.gallery-list__next:not(.disabled):hover, .gallery-list__prev:not(.disabled):hover {
    opacity: 1
}

.gallery-list__next:not(.disabled):hover svg, .gallery-list__prev:not(.disabled):hover svg {
    transform: scale(.8)
}

.gallery-list__next.disabled, .gallery-list__prev.disabled {
    cursor: default;
    opacity: .4
}

.gallery-list__prev {
    left: 0
}

.gallery-list__next {
    right: 0
}

@media (max-width: 767px) {
    .gallery-list__thumbs {
        margin-top: 20px
    }
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px
}

.rating__list {
    display: flex;
    align-items: center;
    gap: 2px
}

.rating__item {
    position: relative;
    color: #e6e6e6
}

.rating__item.active {
    color: #fdbc00
}

.rating__item svg + svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    color: #fdbc00
}

.rating__item svg {
    width: 16px;
    height: 16px
}

.rating__text {
    color: var(--theme-color-dark-secondary);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: .04em
}

.choose {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.choose__item {
    position: relative;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.choose__input {
    width: 1px;
    height: 1px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0
}

.choose__text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid var(--theme-color-dark-primary);
    color: var(--theme-color-dark-primary);
    background-color: var(--theme-bg-light-secondary);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    border-radius: 20px
}

.choose__input:checked ~ .choose__text {
    background-color: var(--theme-bg-dark);
    color: var(--theme-color-light-primary)
}

.qnt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content
}

.qnt:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 0 1px rgba(18, 18, 18, .55);
    pointer-events: none
}

.qnt__button {
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 0;
    color: var(--theme-control-color)
}

.qnt__button svg {
    position: relative;
    top: 2px;
    width: 24px;
    height: 24px;
    transform: scale(-.7)
}

.qnt__input {
    position: relative;
    text-align: center;
    outline: 0;
    width: 50px;
    height: 45px;
    padding: 0;
    font-size: 16px;
    line-height: 1.2;
    border: 0;
    z-index: 1;
    background-color: var(--theme-control-bg);
    color: var(--theme-control-color)
}

.qnt__input:focus {
    outline: 2px solid rgba(18, 18, 18, .5);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px var(--theme-control-bg)
}

.qnt input::-webkit-inner-spin-button, .qnt input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0
}

.qnt input[type=number] {
    -moz-appearance: textfield
}

.promocode {
    margin: 25px 0
}

.promocode__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 12px;
    background: linear-gradient(to right, #f16395, #553096);
    color: #fff;
    max-width: 345px
}

.promocode__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.promocode__icon svg {
    width: 20px;
    height: 20px
}

.promocode__content {
    flex: 1;
    letter-spacing: .05em
}

.promocode__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 2px
}

.promocode__text {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400
}

.promocode__extra {
    margin-top: 4px;
    font-style: italic;
    font-size: 10px;
    line-height: 1.2
}

.promocode__control {
    margin-left: auto
}

.promocode__button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: 0;
    background-color: #fff;
    color: #7834b1;
    padding: 2px 8px;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 21px;
    border-radius: 8px
}

.promocode__button svg {
    width: 21px;
    height: 21px
}

.promocode__info {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--theme-color-dark-primary);
    margin-bottom: 8px;
    margin-top: 8px;
    letter-spacing: .04em
}

.timer {
    display: flex;
    align-items: center;
    color: #8e1f0b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    padding: 4px 8px
}

.timer__sep {
    margin: 0 4px
}

.option-list {
    margin: 60px 0 35px
}

.option-list__title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 6px;
    padding-left: 20px
}

.option-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--theme-color-dark-primary);
    width: 100%
}

.option-list__item:not(:last-child) {
    margin-bottom: 10px
}

.option-list__info {
    flex: 1
}

.option-list__pic {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px
}

.option-list__pic img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px
}

.option-list__name {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .05em;
    margin-bottom: 2px
}

.option-list__name:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.option-list__prices .prices {
    justify-content: flex-end;
    flex-direction: row-reverse
}

.option-list__prices .prices__price {
    font-size: 14px;
    line-height: 1.2
}

.option-list__prices .prices__old-price {
    color: #96a4b6;
    font-size: 14px;
    line-height: 1.2
}

.option-list__add {
    margin-left: auto;
    color: var(--theme-color-light-primary);
    background-color: var(--theme-bg-dark);
    padding: 8px 16px 8px 12px;
    border-radius: 4px;
    border: 0;
    outline: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    gap: 6px;
    width: 80px
}

.option-list__add svg {
    width: 20px;
    height: 20px
}

.option-list__add:hover {
    box-shadow: 0 0 0 1px var(--theme-bg-dark)
}

.service-list__list {
    display: flex;
    align-items: flex-start;
    gap: 30px
}

.service-list__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.service-list__icon {
    width: 30px;
    height: 30px
}

.service-list__icon svg {
    width: 100%;
    height: 100%
}

.service-list__text {
    text-align: center;
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: .06em
}

.service-list__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 25px
}

.service-list__link {
    display: inline-block;
    vertical-align: top;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 1.8;
    font-weight: 700;
    opacity: .75
}

.service-list__link:hover {
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    opacity: 1
}

.reviews__header {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 80px
}

.reviews__rate-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 300px
}

.reviews__rate-list .rating svg {
    width: 20px;
    height: 20px
}

.reviews__rate {
    display: flex;
    align-items: center;
    gap: 8px
}

.reviews__rate > span {
    color: var(--theme-color-dark-secondary);
    font-size: 41px;
    font-weight: 600;
    line-height: 1
}

.reviews__bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--theme-border-light);
    margin-bottom: 18px
}

.reviews__label {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: .04em;
    color: var(--theme-color-dark-secondary)
}

.reviews__filter {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px
}

.reviews__control {
    padding: 4px 30px 4px 12px;
    color: var(--theme-color-dark-primary);
    border: 1px solid #e7e7e7;
    background-image: url(../img/icon-down.svg);
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 20px;
    min-height: 35px;
    cursor: pointer;
    background-color: var(--theme-bg-light-secondary);
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0
}

.reviews__table {
    width: 100%;
    border: 0;
    border-collapse: collapse
}

.reviews__table td {
    padding: 6px 3px;
    vertical-align: middle;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: var(--theme-color-dark-secondary)
}

.reviews__table td:first-child {
    padding-left: 0
}

.reviews__table td:last-child {
    padding-right: 0
}

.reviews__table tr.disabled {
    opacity: .6
}

.reviews__table-name {
    width: 40px
}

.reviews__table-name svg {
    position: relative;
    top: -1px;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
    color: #fdbc00
}

.reviews__table-bar {
    position: relative;
    background: #efefef;
    height: 8px;
    border-radius: 8px;
    width: 100%;
    min-width: 150px;
    display: block
}

.reviews__table-bar span {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fdbc00;
    border-radius: 8px;
    height: 8px;
    display: block
}

.reviews__table-percent {
    text-align: center;
    width: 45px
}

.reviews__gallery {
    flex: 1
}

.reviews__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .04em;
    margin: 0 0 20px
}

.reviews__controls {
    padding-top: 40px
}

@media (max-width: 1024px) {
    .reviews__header {
        flex-direction: column;
        gap: 24px;
        padding-bottom: 40px
    }

    .reviews__rate-list {
        width: 100%
    }

    .reviews__gallery {
        width: 100%
    }

    .reviews__controls {
        width: 100%;
        display: flex;
        align-items: center;
        padding-top: 0
    }

    .reviews__controls .button {
        flex: 1
    }

    .reviews__list {
        margin: 0 -10px
    }
}

@media (max-width: 767px) {
    .reviews__label {
        display: none
    }
}

.review-product {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    background-color: var(--theme-bg-light);
    gap: 10px;
    padding: 10px
}

.review-product__pic {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0
}

.review-product__pic img {
    max-width: 100%;
    max-height: 100%
}

.review-product__name {
    flex: 1;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: .04em
}

.review-item {
    margin: 0 10px 20px;
    height: auto;
    width: calc(25% - 20px)
}

@media (max-width: 1024px) {
    .review-item {
        width: calc(50% - 20px)
    }
}

.review-item__inner {
    flex-direction: column;
    border: 1px solid var(--theme-border-light);
    border-radius: 12px;
    padding-bottom: 8px
}

.review-item__pic {
    max-height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    display: block
}

.review-item__pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .5s ease;
    will-change: transform
}

.review-item__pic:hover img {
    transform: scale(1.03)
}

.review-item__content {
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.review-item__header {
    position: relative;
    padding-left: 38px;
    width: 100%
}

.review-item__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    width: 30px;
    height: 30px;
    color: #fff;
    background-color: #5ecd62;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 1
}

.review-item__name {
    color: var(--theme-color-dark-primary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .04em
}

.review-item__date {
    color: var(--theme-color-dark-secondary);
    letter-spacing: .04em;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400
}

.review-item__text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #333;
    letter-spacing: .04em
}

.review-item__text > :first-child {
    margin-top: 0
}

.review-item__text > :last-child {
    margin-bottom: 0
}

.review-item__text.--short .review-item__full-text {
    display: none
}

.review-item__more {
    outline: 0;
    cursor: pointer;
    border: 0;
    padding: 0;
    background-color: transparent;
    color: #333;
    display: inline-block;
    margin-left: 2px
}

.review-item__text:not(.--short) .review-item__short-text {
    display: none
}

.review-item__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0 0;
    gap: 10px;
    letter-spacing: .04em
}

.review-item__label {
    color: #333;
    opacity: .7
}

.review-item__dislike, .review-item__like {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #333;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 0
}

.review-item__like:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/icon-thumbs-up.svg) center/contain no-repeat
}

.review-item__dislike:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/icon-thumbs-down.svg) center/contain no-repeat
}

@media (max-width: 767px) {
    .review-item__label {
        display: none
    }

    .review-item__content {
        padding: 10px
    }
}

.modal .review-item {
    width: 100%;
    margin: 0
}

.modal .review-item__inner {
    flex-direction: row;
    display: flex;
    border: 0;
    border-radius: 0;
    padding-bottom: 0
}

.modal .review-item__pic {
    width: 300px;
    max-height: initial;
    flex-shrink: 0;
    border-radius: 12px;
    pointer-events: none
}

.modal .review-item__pic img {
    height: auto;
    transform: none !important;
    border-radius: 12px
}

.modal .review-item__content {
    flex: 1;
    padding-top: 0;
    padding-right: 0
}

@media (max-width: 767px) {
    .modal .review-item__inner {
        flex-direction: column
    }

    .modal .review-item__pic {
        width: auto;
        height: auto;
        margin: -20px -20px 0;
        border-radius: 0
    }

    .modal .review-item__pic img {
        width: 100%;
        height: auto;
        -o-object-fit: contain;
        object-fit: contain;
        border-radius: 0
    }

    .modal .review-item__content {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-top: 20px
    }
}

.tile-item {
    display: flex;
    flex-direction: column;
    background-color: var(--theme-bg-light);
    overflow: hidden;
    border-radius: 14px;
    padding: 25px 0
}

.tile-item__pic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0 auto
}

.tile-item__pic:before {
    content: "";
    display: block;
    padding-top: 100%
}

.tile-item__pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 14px
}

.tile-item__text {
    font-size: 18px;
    letter-spacing: .06em;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    display: block;
    padding: 25px 25px 0
}

.select-rate {
    display: flex;
    align-items: center
}

.select-rate__label {
    display: block;
    position: relative;
    outline: 0;
    cursor: pointer
}

.select-rate__label.control {
    width: auto
}

.select-rate__label .control__message {
    right: auto;
    left: 0
}

.select-rate__input {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px
}

.select-rate__star {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e6e6e6
}

.select-rate__star svg {
    width: 24px;
    height: 24px
}

.select-rate__input:checked ~ .select-rate__star {
    color: #fdbc00
}

.select-rate__label.--active .select-rate__star {
    color: #fdbc00
}

.upload-photo__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px
}

.upload-photo__list:empty {
    display: none
}

.upload-photo__pic {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-bg-light);
    border: 1px solid var(--theme-border-secondary);
    border-radius: 6px
}

.upload-photo__pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.upload-photo__remove {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(99, 99, 99, .5);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0;
    outline: 0;
    padding: 2px
}

.upload-photo__remove svg {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: currentColor;
    stroke-width: 1
}

.upload-photo__button {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content
}

.upload-photo__button input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 1px;
    height: 1px
}

.upload-photo__text {
    color: var(--theme-color-dark-secondary);
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .04em;
    margin-top: 20px
}

.reviews-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.reviews-gallery__item {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
    width: 80px;
    height: 80px;
    outline: 0;
    padding: 0;
    background-color: transparent
}

.reviews-gallery__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    transition: transform .5s ease;
    will-change: transform;
    pointer-events: none
}

.reviews-gallery__item span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    font-size: 13px;
    line-height: 20px;
    height: 20px;
    gap: 2px;
    font-weight: 400;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2
}

.reviews-gallery__item span svg {
    width: 16px;
    height: 16px
}

.reviews-gallery__item:hover img {
    transform: scale(1.03)
}

@media (max-width: 767px) {
    .reviews-gallery__item {
        width: 60px;
        height: 60px
    }
}

.item-choice {
    position: relative;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: block;
    width: 100%
}

.item-choice__input {
    width: 1px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.item-choice__text {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    background-color: var(--theme-bg-light);
    border-radius: 0;
    color: var(--theme-color-dark-primary);
    border: 1px solid var(--theme-border-light);
    padding: 12px 12px 12px 40px;
    transition: box-shadow 150ms ease
}

.item-choice__text:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    margin: auto 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--theme-bg-light-secondary);
    border: 1px solid var(--theme-control-border)
}

.item-choice:hover .item-choice__text {
    box-shadow: 0 0 0 1px var(--theme-control-border)
}

.item-choice__input:checked ~ .item-choice__text {
    background-color: var(--theme-control-bg);
    border-color: var(--theme-control-border-focus);
    box-shadow: 0 0 0 1px var(--theme-control-border-focus)
}

.item-choice__input:checked ~ .item-choice__text:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    margin: auto 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--theme-control-border-focus)
}

.item-choice + .item-choice {
    margin-top: 6px
}

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translate3d(0, 0, 0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
    transform-style: preserve-3d
}

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.glightbox-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999 !important;
    overflow: hidden;
    touch-action: none;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    backface-visibility: hidden;
    outline: 0
}

.glightbox-container.inactive {
    display: none
}

.glightbox-container .gcontainer {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden
}

.glightbox-container .gslider {
    transition: transform .4s ease;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transform: translate3d(0, 0, 0)
}

.glightbox-container .gslide {
    width: 100%;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0
}

.glightbox-container .gslide.current {
    opacity: 1;
    z-index: 99999;
    position: relative
}

.glightbox-container .gslide.prev {
    opacity: 1;
    z-index: 9999
}

.glightbox-container .gslide-inner-content {
    width: 100%
}

.glightbox-container .ginner-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    margin: auto;
    height: 100vh
}

.glightbox-container .ginner-container.gvideo-container {
    width: 100%
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
    flex-direction: column
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
    max-width: 100% !important
}

.gslide iframe, .gslide video {
    outline: 0 !important;
    border: none;
    min-height: 165px;
    -webkit-overflow-scrolling: touch;
    touch-action: auto
}

.gslide:not(.current) {
    pointer-events: none
}

.gslide-image {
    align-items: center
}

.gslide-image img {
    max-height: 100vh;
    display: block;
    padding: 0;
    float: none;
    outline: 0;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    max-width: 100vw;
    width: auto;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    touch-action: none;
    margin: auto;
    min-width: 200px
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
    width: auto
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
    width: auto;
    max-width: 100%
}

.gslide-image img.zoomable {
    position: relative
}

.gslide-image img.dragging {
    cursor: grabbing !important;
    transition: none
}

.gslide-video {
    position: relative;
    max-width: 100vh;
    width: 100% !important
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
    display: none
}

.gslide-video .gvideo-wrapper {
    width: 100%;
    margin: auto
}

.gslide-video::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, .34);
    display: none
}

.gslide-video.playing::before {
    display: none
}

.gslide-video.fullscreen {
    max-width: 100% !important;
    min-width: 100%;
    height: 75vh
}

.gslide-video.fullscreen video {
    max-width: 100% !important;
    width: 100% !important
}

.gslide-inline {
    background: #fff;
    text-align: left;
    max-height: calc(100vh - 40px);
    overflow: auto;
    max-width: 100%;
    margin: auto
}

.gslide-inline .ginlined-content {
    padding: 20px;
    width: 100%
}

.gslide-inline .dragging {
    cursor: grabbing !important;
    transition: none
}

.ginlined-content {
    overflow: auto;
    display: block !important;
    opacity: 1
}

.gslide-external {
    display: flex;
    width: 100%;
    min-width: 100%;
    background: #fff;
    padding: 0;
    overflow: auto;
    max-height: 75vh;
    height: 100%
}

.gslide-media {
    display: flex;
    width: auto
}

.zoomed .gslide-media {
    box-shadow: none !important
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
    margin: 0 auto;
    flex-direction: column
}

.gslide-description {
    position: relative;
    flex: 1 0 100%
}

.gslide-description.description-left, .gslide-description.description-right {
    max-width: 100%
}

.gslide-description.description-bottom, .gslide-description.description-top {
    margin: 0 auto;
    width: 100%
}

.gslide-description p {
    margin-bottom: 12px
}

.gslide-description p:last-child {
    margin-bottom: 0
}

.zoomed .gslide-description {
    display: none
}

.glightbox-button-hidden {
    display: none
}

.glightbox-mobile .glightbox-container .gslide-description {
    height: auto !important;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 19px 11px;
    max-width: 100vw !important;
    order: 2 !important;
    max-height: 78vh;
    overflow: auto !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .75) 100%);
    transition: opacity .3s linear;
    padding-bottom: 50px
}

.glightbox-mobile .glightbox-container .gslide-title {
    color: #fff;
    font-size: 1em
}

.glightbox-mobile .glightbox-container .gslide-desc {
    color: #a1a1a1
}

.glightbox-mobile .glightbox-container .gslide-desc a {
    color: #fff;
    font-weight: 700
}

.glightbox-mobile .glightbox-container .gslide-desc * {
    color: inherit
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
    color: #fff;
    opacity: .4
}

.gdesc-open .gslide-media {
    transition: opacity .5s ease;
    opacity: .4
}

.gdesc-open .gdesc-inner {
    padding-bottom: 30px
}

.gdesc-closed .gslide-media {
    transition: opacity .5s ease;
    opacity: 1
}

.greset {
    transition: all .3s ease
}

.gabsolute {
    position: absolute
}

.grelative {
    position: relative
}

.glightbox-desc {
    display: none !important
}

.glightbox-open {
    overflow: hidden
}

.gloader {
    height: 25px;
    width: 25px;
    animation: lightboxLoader .8s infinite linear;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    position: absolute;
    display: block;
    z-index: 9999;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 47%
}

.goverlay {
    width: 100%;
    height: calc(100vh + 1px);
    position: fixed;
    top: -1px;
    left: 0;
    background: #000;
    will-change: opacity
}

.glightbox-mobile .goverlay {
    background: #000
}

.gclose, .gnext, .gprev {
    z-index: 99999;
    cursor: pointer;
    width: 26px;
    height: 44px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.gclose svg, .gnext svg, .gprev svg {
    display: block;
    width: 25px;
    height: auto;
    margin: 0;
    padding: 0
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
    opacity: .1
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
    stroke: #fff
}

.gbtn.focused {
    outline: 2px solid #0f3d81
}

iframe.wait-autoplay {
    opacity: 0
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
    opacity: 0 !important
}

.glightbox-clean .gslide-description {
    background: #fff
}

.glightbox-clean .gdesc-inner {
    padding: 22px 20px
}

.glightbox-clean .gslide-title {
    font-size: 1em;
    font-weight: 400;
    font-family: arial;
    color: #000;
    margin-bottom: 19px;
    line-height: 1.4em
}

.glightbox-clean .gslide-desc {
    font-size: .86em;
    margin-bottom: 0;
    font-family: arial;
    line-height: 1.4em
}

.glightbox-clean .gslide-video {
    background: #000
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, .75);
    border-radius: 4px
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
    fill: #fff
}

.glightbox-clean .gprev {
    position: absolute;
    top: -100%;
    left: 30px;
    width: 40px;
    height: 50px
}

.glightbox-clean .gnext {
    position: absolute;
    top: -100%;
    right: 30px;
    width: 40px;
    height: 50px
}

.glightbox-clean .gclose {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 10px;
    position: absolute
}

.glightbox-clean .gclose svg {
    width: 18px;
    height: auto
}

.glightbox-clean .gclose:hover {
    opacity: 1
}

.gfadeIn {
    animation: gfadeIn .5s ease
}

.gfadeOut {
    animation: gfadeOut .5s ease
}

.gslideOutLeft {
    animation: gslideOutLeft .3s ease
}

.gslideInLeft {
    animation: gslideInLeft .3s ease
}

.gslideOutRight {
    animation: gslideOutRight .3s ease
}

.gslideInRight {
    animation: gslideInRight .3s ease
}

.gzoomIn {
    animation: gzoomIn .5s ease
}

.gzoomOut {
    animation: gzoomOut .5s ease
}

@keyframes lightboxLoader {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes gfadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes gfadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes gslideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-60%, 0, 0)
    }
    to {
        visibility: visible;
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes gslideOutLeft {
    from {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0)
    }
    to {
        transform: translate3d(-60%, 0, 0);
        opacity: 0;
        visibility: hidden
    }
}

@keyframes gslideInRight {
    from {
        opacity: 0;
        visibility: visible;
        transform: translate3d(60%, 0, 0)
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes gslideOutRight {
    from {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0)
    }
    to {
        transform: translate3d(60%, 0, 0);
        opacity: 0
    }
}

@keyframes gzoomIn {
    from {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 1
    }
}

@keyframes gzoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

@media (min-width: 769px) {
    .glightbox-container .ginner-container {
        width: auto;
        height: auto;
        flex-direction: row
    }

    .glightbox-container .ginner-container.desc-top .gslide-description {
        order: 0
    }

    .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
        order: 1
    }

    .glightbox-container .ginner-container.desc-left .gslide-description {
        order: 0
    }

    .glightbox-container .ginner-container.desc-left .gslide-image {
        order: 1
    }

    .gslide-image img {
        max-height: 97vh;
        max-width: 100%
    }

    .gslide-image img.zoomable {
        cursor: zoom-in
    }

    .zoomed .gslide-image img.zoomable {
        cursor: grab
    }

    .gslide-inline {
        max-height: 95vh
    }

    .gslide-external {
        max-height: 100vh
    }

    .gslide-description.description-left, .gslide-description.description-right {
        max-width: 275px
    }

    .glightbox-open {
        height: auto
    }

    .goverlay {
        background: rgba(0, 0, 0, .92)
    }

    .glightbox-clean .gslide-media {
        box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, .65)
    }

    .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
        position: absolute;
        height: 100%;
        overflow-y: auto
    }

    .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
        background-color: rgba(0, 0, 0, .32)
    }

    .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
        background-color: rgba(0, 0, 0, .7)
    }

    .glightbox-clean .gprev {
        top: 45%
    }

    .glightbox-clean .gnext {
        top: 45%
    }
}

@media (min-width: 992px) {
    .glightbox-clean .gclose {
        opacity: .7;
        right: 20px
    }
}

@media screen and (max-height: 420px) {
    .goverlay {
        background: #000
    }
}
