@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
    border: 0
}

*,
:after,
:before {
    box-sizing: border-box
}

body,
html {
    line-height: 1;
    height: 100%;
    width: 100%;
    font-size: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

:active,
:focus {
    outline: 0
}

a {
    color: inherit
}

a:active,
a:hover {
    outline: 0
}

a,
a:hover,
a:visited {
    text-decoration: none
}

aside,
footer,
header,
nav {
    display: block
}

button,
input,
select,
textarea {
    font: inherit
}

input::-ms-clear {
    display: none
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

ol,
ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none
}

input,
select {
    color: currentColor;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

textarea {
    overflow-y: auto;
    resize: none
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    -moz-transition: .3s;
    transition: .3s
}

input::placeholder,
textarea::placeholder {
    transition: .3s
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    opacity: 0
}

input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0
}

button {
    background-color: transparent;
    cursor: pointer;
    color: currentColor
}

:root {
    --color-blue: #1D45CF;
    --color-text: #002E7B;
    --color-red: #F30157;
    --color-grey: #CAD3DC;
    --with-container: 1400px
}

html {
    scroll-behavior: smooth;
    line-height: inherit
}

* {
    padding: 0;
    line-height: inherit;
    margin: 0
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    text-rendering: optimizeSpeed;
    color: var(--color-text)
}

body.fixed {
    overflow: hidden !important
}

body.lock {
    overflow: hidden !important
}

button,
input {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

body.down header.clone {
    top: 0;
    left: 0;
    right: 0;
    z-index: 999
}

a {
    transition: .3s
}

.main {
    background: #f2f4fc;
    flex: 1 0 auto
}

.main .container {
    height: 100%
}

.main__wrapper {
    height: 100%;
    display: flex;
    align-items: stretch
}

.footer,
.header {
    flex-shrink: 0
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.icon svg {
    width: 100%;
    height: 100%;
    transition: .3s
}

.icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.iresponsive {
    position: relative
}

.iresponsive img,
.iresponsive video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.iresponsive iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.container {
    max-width: var(--with-container);
    margin: 0 auto;
    padding: 0 15px
}

.container-m {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 15px
}

.input-grey {
    overflow: hidden;
    display: block;
    position: relative;
    width: 100%
}

.input-grey input,
.input-grey textarea {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: 0 0;
    appearance: none;
    min-height: 64px;
    border-bottom: 2px solid #dddef6;
    transition: .3s
}

.radio label {
    cursor: pointer;
    position: relative
}

.radio label:hover span {
    color: var(--color-base)
}

.radio label:hover span::before {
    border-color: var(--color-base)
}

.radio input {
    position: absolute;
    top: 0;
    width: 1px;
    height: 1px;
    font-size: 0
}

.radio input:checked~span::after {
    transform: scale(1)
}

.radio input:checked~span::before {
    border-color: var(--color-base)
}

.radio input:checked~span {
    color: var(--color-base);
    text-shadow: 0 0 .65px var(--color-base), 0 0 .65px var(--color-base)
}

.radio span {
    display: inline-block;
    padding-left: 36px;
    font-size: 14px;
    line-height: 143%;
    color: var(--color-dark2);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: .3s
}

.radio span::before {
    position: absolute;
    left: 0;
    top: calc(50% - 18px / 2);
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-dark4);
    border-radius: 50%;
    transition: .3s;
    content: ''
}

.radio span::after {
    position: absolute;
    left: 4px;
    top: calc(50% - 10px / 2);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    background-color: var(--color-base);
    transition: all .3s ease;
    content: ''
}

.checkbox {
    position: relative
}

.checkbox label {
    cursor: pointer
}

.checkbox input {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0
}

.checkbox input:checked~span::after {
    transform: scale(1)
}

.checkbox span {
    display: inline-block;
    padding-left: 32px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: .3s linear
}

.checkbox span::before {
    position: absolute;
    left: 0;
    top: calc(50% - 25px / 2);
    width: 25px;
    height: 25px;
    background: #dddef6;
    border-radius: 5px;
    transition: .3s;
    content: ''
}

.checkbox span::after {
    position: absolute;
    left: 0;
    top: calc(50% - 25px / 2);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transform: scale(0);
    background-image: url(../img/check.svg);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    transition: all .3s ease;
    content: ''
}

.input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden
}

.input input,
.input textarea {
    width: 100%;
    border-radius: 12px;
    background-color: var(--color-dark6);
    border: 0;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-dark)
}

.input input:focus+.input__placeholder,
.input textarea:focus+.input__placeholder {
    left: -100%;
    opacity: 0
}

.input input.js-active+.input__placeholder,
.input textarea.js-active+.input__placeholder {
    left: -100%;
    opacity: 0
}

.input__placeholder {
    pointer-events: none;
    transition: .3s;
    position: absolute;
    left: 16px;
    font-size: 14px;
    line-height: 20px;
    top: 13px;
    right: 16px;
    color: var(--color-dark4)
}

@keyframes scale {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.text p+p {
    margin-top: 15px
}

.text a {
    text-decoration: underline
}

.input::-moz-placeholder {
    -moz-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.input::placeholder {
    transition: opacity .3s ease
}

.input:focus::-moz-placeholder {
    opacity: 0
}

.input:focus::placeholder {
    opacity: 0
}

.textarea::-moz-placeholder {
    -moz-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.textarea::placeholder {
    transition: opacity .3s ease
}

.textarea:focus::-moz-placeholder {
    opacity: 0
}

.textarea:focus::placeholder {
    opacity: 0
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 52px;
    border-radius: 50px;
    padding: 0 35px
}

.btn span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    white-space: nowrap
}

.btn svg {
    margin-left: 10px;
    width: 23px;
    height: 23px
}

.btn--blue {
    background: linear-gradient(140deg, #1f9eff 13.42%, #1d45cf 104.5%);
    box-shadow: 10px 10px 20px 0 rgba(30, 81, 204, .2)
}

.btn--blue svg {
    fill: #fff
}

.btn--blue:hover {
    background: var(--color-blue)
}

.btn--red {
    border: 1.5px solid #fff;
    background: linear-gradient(138deg, #f30157 16.35%, #b1003f 91.25%);
    box-shadow: 10px 10px 20px 0 rgba(190, 20, 81, .1)
}

.btn--red svg {
    margin-right: 10px;
    margin-left: 0;
    fill: #fff
}

.btn--red:hover {
    background: var(--color-red)
}

.modal {
    position: fixed;
    left: 50%;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%);
    transition: all .5s ease-in-out
}

.modal.js-active {
    opacity: 1;
    visibility: visible
}

.modal__close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5
}

.modal__close svg {
    width: 100%;
    height: 100%;
    fill: var(--color-text);
    transition: .3s linear
}

.modal__close:hover svg {
    fill: var(--color-red)
}

.select {
    display: inline-flex;
    align-items: center;
    z-index: 15;
    width: 100%
}

.select.select-selected-items.addtour-section__select {
    flex-direction: column;
    align-items: flex-start
}

.select.select-placeholder .select__trigger {
    padding-top: 18px;
    padding-bottom: 8px
}

.select.select-placeholder .select__trigger>.icon {
    position: relative;
    top: -5px
}

.select .select-placeholder__trigger-placeholder {
    position: absolute;
    top: 8px;
    left: 16px;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-dark4);
    display: flex;
    align-items: center
}

.select .select-placeholder__trigger-placeholder-icon {
    width: 12px;
    height: 12px;
    fill: var(--color-dark4);
    margin-right: 4px
}

.select.hidden {
    pointer-events: none;
    mix-blend-mode: normal;
    opacity: .36
}

.select__title {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    display: block;
    margin-right: 8px;
    color: var(--color-dark4)
}

.select__wrapper {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%
}

.select__wrapper a {
    text-decoration: none;
    display: flex;
    align-items: center
}

.select__wrapper a .icon {
    margin-right: 5px
}

.select__content {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: .3s;
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: var(--color-dark2)
}

.select__content.open .select__trigger {
    color: var(--color-hover-text);
    border-color: var(--color-hover-text)
}

.select__content.open .select__trigger>.icon svg {
    fill: var(--color-hover-text);
    transform: rotate(90deg)
}

.select__content.open .select__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all
}

.select__content.disabled .icon {
    display: none
}

.select__content.disabled .select__trigger {
    cursor: default
}

.select__content.disabled a {
    cursor: default
}

.select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: 0 0;
    min-height: 56px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border-bottom: 1px solid #b1b1b1;
    box-shadow: 15px 15px 20px rgba(228, 228, 228, .25);
    padding-left: 15px;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--color-text);
    cursor: pointer
}

.select__trigger img {
    width: 28px;
    height: 28px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 10px
}

.select__trigger:hover a,
.select__trigger:hover b,
.select__trigger:hover span {
    color: var(--color-hover-blue)
}

.select__trigger input {
    width: 100%;
    background-color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.select__trigger b {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: var(--dark-green);
    transition: .3s linear
}

.select__trigger b:hover {
    color: var(--green)
}

.select__trigger span,
.select__trigger>a {
    display: flex;
    align-items: center;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.select__trigger .icon {
    margin-left: 15px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
    min-height: 40px
}

.select__trigger .icon svg {
    width: 18px;
    fill: var(--color-text);
    transform: rotate(-90deg);
    height: 18px;
    transition: .3s linear
}

.select__dropdown {
    position: absolute;
    display: block;
    top: calc(100% + 6px);
    left: 0;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 15;
    overflow: hidden;
    width: 100%;
    padding: 0 9px;
    background: #fff;
    box-shadow: 3px 3px 15px rgba(177, 177, 177, .25)
}

.select__options {
    max-height: 175px
}

.select__options .simplebar-vertical {
    width: 6px;
    background: #e1e1e1;
    border-radius: 6px;
    right: 12px;
    top: 16px;
    bottom: 17px
}

.select__options .simplebar-vertical .simplebar-scrollbar {
    background: rgba(129, 189, 167, .7);
    border-radius: 6px
}

.select__options .simplebar-vertical .simplebar-scrollbar:before {
    display: none
}

.select__options .select__option:last-child {
    border-bottom: 0
}

.select__option {
    position: relative;
    display: block;
    cursor: pointer;
    transition: .3s;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    color: #585858;
    min-height: 56px;
    border-bottom: 1px solid rgba(177, 177, 177, .5);
    filter: drop-shadow(15px 15px 20px rgba(228, 228, 228, .25));
    width: 100%
}

.select__option img {
    width: 28px;
    height: 28px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 10px
}

.select__option:last-child {
    margin-bottom: 0
}

.select__option:hover {
    color: var(--color-hover-text);
    filter: none
}

.select__option:hover b,
.select__option:hover span {
    color: var(--green)
}

.select__option.selected:before {
    opacity: 1
}

.select__checkboxs {
    overflow-y: auto
}

.select__checkbox {
    position: relative;
    display: block;
    padding: 10px 16px;
    transition: .3s;
    transition: .3s
}

.select__checkbox.checked {
    background-color: var(--color-muted)
}

.select__checkbox:last-child {
    margin: 0
}

.select__checkbox.checkbox span::before {
    left: 16px
}

.select__checkbox.checkbox span::after {
    left: 16px
}

.select__checkbox:hover {
    background-color: var(--color-muted);
    color: var(--color-base)
}

.select__checkbox:hover.checkbox span::before {
    border-color: var(--color-base)
}

.select__checkbox.selected {
    background-color: var(--color-base);
    color: var(--color-main)
}

.select__on-map {
    display: block;
    text-decoration: none;
    cursor: pointer;
    margin-top: 6px;
    padding: 6px 12px 7px 12px;
    font-size: 14px;
    line-height: 143%;
    color: var(--color-main);
    background-color: var(--color-base);
    transition: .3s
}

.select__on-map:hover {
    color: var(--color-base);
    background-color: var(--color-muted)
}

.bg-overley {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: 120;
    transition: .3s linear
}

.bg-overley.js-active {
    opacity: .8;
    visibility: visible
}

.header {
    background: #f2f2fb;
    box-shadow: 0 10px 10px 0 rgba(24, 106, 169, .05);
    position: absolute;
    top: 0;
    width: calc(100% - (((100vw - var(--with-container))/ 2) + 355px));
    right: 0;
    left: calc(((100vw - var(--with-container))/ 2) + 355px);
    padding: 22px 50px;
    padding-right: calc((100vw - var(--with-container))/ 2 + 80px);
    z-index: 100
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header__logo {
    display: none
}

.header__cart-btn {
    position: relative;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

.header__cart-btn span {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    text-align: center;
    transform: translate(50%, -50%)
}

.header__cart-btn svg {
    width: 100%;
    height: 100%;
    transition: .3s linear;
    fill: var(--color-text)
}

.header__cart-btn:hover {
    color: var(---color-red)
}

.header__btn-burger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.header__btn-burger svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: .3s linear;
    fill: var(--color-text);
    transition: .3s linear;
    opacity: 0
}

.header__btn-burger .open {
    opacity: 1
}

.header__btn-burger.js-active .open {
    opacity: 0
}

.header__btn-burger.js-active .close {
    opacity: 1
}

.header__btn-burger:hover {
    color: var(---color-red)
}

.header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 30px;
    border-radius: 20px;
    border: 3px solid #fff;
    background: linear-gradient(134deg, rgba(255, 255, 255, 0) 4.15%, #fff 98.65%);
    box-shadow: 10px 10px 20px 0 rgba(24, 106, 169, .1)
}

.header-phone__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    border-radius: 50%;
    background: linear-gradient(138deg, #f30157 16.35%, #b1003f 91.25%);
    box-shadow: 10px 10px 20px 0 rgba(190, 20, 81, .1)
}

.header-phone__icon svg {
    width: 20px;
    height: 20px;
    fill: #fff
}

.header-phone__item {
    margin-left: 12px;
    margin-right: 30px;
    color: var(--color-text);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.header-phone__schedule {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text)
}

.header-phone__schedule b {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.header-phone__schedule span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.header-add-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0 50px;
    padding-right: calc((100vw - var(--with-container))/ 2 + 80px);
    background: linear-gradient(90deg, #1d7eee 32.08%, rgba(29, 69, 207, .96) 108.41%);
    width: 100%;
    display: none
}

.header-add-menu__wrapper {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header-add-menu__link {
    color: rgba(255, 255, 255, .5);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: .72px;
    text-transform: uppercase;
    transition: .3s linear
}

.header-add-menu__link:hover {
    color: var(--color-red)
}

.footer {
    background: url(../img/footer-bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative
}

.footer .container-m {
    padding-left: 140px
}

.footer__wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    padding-bottom: 30px
}

.footer__logo {
    width: 150px;
    height: 150px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-104%, -57%)
}

.footer__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.footer__quick-order {
    padding-top: 116px
}

.footer__quick-order .btn {
    width: 100%;
    max-width: 305px
}

.footer__menu {
    padding-top: 67px;
    padding-right: 60px
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.footer-contact__title {
    padding-right: 22px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: .6px;
    color: #fff;
    padding-top: 35px;
    padding-bottom: 6px;
    margin-bottom: 20px;
    border-bottom: 5px solid rgba(255, 255, 255, .2)
}

.footer-contact__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 344px;
    color: #fff
}

.footer-contact__content {
    margin-top: 20px;
    display: flex;
    align-items: stretch
}

.footer-contact__col.one {
    margin-right: 30px
}

.footer-contact__col.one .footer-contact__row {
    margin-bottom: 12px
}

.footer-contact__col.one .footer-contact__row:last-child {
    margin-bottom: 0
}

.footer-contact__col.two {
    max-width: 202px
}

.footer-contact__row {
    display: flex;
    align-items: center
}

.footer-contact__row--icon {
    width: 16px;
    height: 16px;
    margin-right: 12px
}

.footer-contact__row--icon svg {
    width: 100%;
    height: 100%;
    fill: #fff
}

.footer-contact__row--text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff
}

.footer-contact__row--title {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    padding-bottom: 12px
}

.footer-contact__row--link {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: .3s linear
}

.footer-contact__row--link:hover {
    color: var(--color-red)
}

.footer-menu__item {
    margin-bottom: 12px
}

.footer-menu__link {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    transition: .3s linear
}

.footer-menu__link:hover {
    color: var(--color-red)
}

.footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.footer-bottom__link-personal {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    color: #fff;
    transition: .3s linear
}

.footer-bottom__link-personal:hover {
    color: var(--color-red)
}

.footer-bottom__ddb {
    display: flex;
    align-items: center
}

.footer-bottom__ddb span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff
}

.footer-bottom__ddb img {
    margin-left: 12px;
    width: 20px;
    height: 20px
}

.sidebar-global {
    min-width: 340px;
    max-width: 340px;
    border-right: 2px solid #dddef6
}

.sidebar-global__btn-close {
    display: none
}

.sidebar-global__wrapper {
    padding: 36px 26px;
    display: flex;
    flex-direction: column
}

.sidebar-global__wrapper .header-phone {
    display: none
}

.sidebar-global__logo {
    margin-left: 43px;
    width: 130px;
    height: 200px
}

.sidebar-global__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.sidebar-category {
    margin-top: 90px;
    width: 100%
}

.sidebar-category__title {
    width: 100%;
    color: var(--color-blue);
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .66px;
    text-transform: uppercase;
    position: relative
}

.sidebar-category__title::before {
    content: '';
    width: 100%;
    max-width: 200px;
    border-radius: 5px;
    background: #dddef6;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px
}

.sidebar-category__menu-item {
    width: 100%;
    padding: 10px
}

.sidebar-category__menu-item.js-active {
    background: #fff;
    border-radius: 10px;
    box-shadow: 10px 10px 20px 0 rgba(24, 106, 169, .1)
}

.sidebar-category__menu-item.js-active .sidebar-category__menu-link .icon {
    transform: rotate(90deg)
}

.sidebar-category__menu-item a {
    transition: .3s linear
}

.sidebar-category__menu-item a:hover {
    color: var(--color-red)
}

.sidebar-category__menu-item .category-drop {
    display: none
}

.sidebar-category__menu-item>ul {
    padding-top: 14px
}

.sidebar-category__menu-item>ul li {
    padding-left: 37px;
    margin-bottom: 14px
}

.sidebar-category__menu-item>ul li a {
    color: #465f9b;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: .3s linear
}

.sidebar-category__menu-link {
    display: flex;
    align-items: center
}

.sidebar-category__menu-link svg {
    width: 25px;
    height: 25px;
    fill: var(--color-text);
    transition: .3s linear
}

.sidebar-category__menu-link span {
    font-size: 18px;
    font-style: normal;
    transition: .3s linear;
    font-weight: 500;
    line-height: normal;
    color: var(--color-text);
    margin-left: 12px;
    margin-right: 8px
}

.sidebar-category__menu-link .icon {
    transition: .3s linear;
    width: 7px;
    height: 12px
}

.sidebar-category__menu-link .icon svg {
    width: 100%;
    height: 100%
}

.sidebar-category__menu-link:hover svg {
    fill: var(--color-red)
}

.sidebar-category__menu-link:hover span {
    color: var(--color-red)
}

.modal-quick-order {
    background: #f2f4fc;
    box-shadow: 10px 10px 20px 0 rgba(24, 106, 169, .1);
    z-index: 130;
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #fff;
    display: none;
    transition: initial;
    opacity: 1;
    visibility: visible
}

.modal-quick-order__wrapper {
    min-height: 500px;
    background: url(../img/bg-form.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 200%;
    padding: 48px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.modal-quick-order__wrapper .btn {
    width: 100%;
    max-width: 300px
}

.modal-quick-order__succeful {
    min-height: 500px;
    background: url(../img/bg-form.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 200%;
    padding: 48px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.modal-quick-order__succeful .btn {
    width: 100%;
    max-width: 300px
}

.modal-quick-order__img-succeful {
    width: 100px;
    height: 100px;
    margin-bottom: 48px
}

.modal-quick-order__img-succeful img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.modal-quick-order__title {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .66px;
    text-transform: uppercase;
    color: var(--color-blue)
}

.modal-quick-order__subtext {
    padding-top: 50px;
    padding-bottom: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text);
    width: 100%;
    text-align: center;
    max-width: 320px
}

.modal-quick-order__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%
}

.modal-quick-order__form label {
    margin-bottom: 30px
}

.modal-cart-global {
    background: #f2f4fc;
    border: 3px solid #fff;
    z-index: 130;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    display: none;
    transition: initial
}

.modal-cart-global:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(134deg, rgba(255, 255, 255, 0) 4.15%, #fff 98.65%)
}

.modal-cart-global__wrapper {
    position: relative;
    z-index: 2
}

.modal-cart-global__header {
    padding: 50px
}

.modal-cart-global__title {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .66px;
    text-transform: uppercase;
    color: var(--color-blue);
    padding-bottom: 10px;
    max-width: 350px;
    border-bottom: 2px solid #dddef6
}

.modal-cart-global__list {
    padding: 0 50px;
    height: calc(90vh - 140px - 225px)
}

.modal-cart-global__form {
    padding: 0 50px;
    height: calc(90vh - 140px - 225px)
}

.modal-cart-global__form .simplebar-content {
    height: 100%;
    display: flex;
    flex-direction: column
}

.modal-cart-global__form--text {
    padding-bottom: 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text);
    max-width: 475px
}

.modal-cart-global__form--inputs {
    max-width: 500px
}

.modal-cart-global__form--inputs .input-grey {
    margin-bottom: 30px
}

.modal-cart-global__form--btn-back {
    display: flex;
    align-items: center
}

.modal-cart-global__form--btn-back svg {
    width: 14px;
    height: 14px;
    transition: .3s linear
}

.modal-cart-global__form--btn-back span {
    margin-left: 5px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    border-bottom: 1px solid var(--color-text);
    color: var(--color-text);
    transition: .3s linear
}

.modal-cart-global__form--btn-back:hover svg {
    fill: var(--color-red)
}

.modal-cart-global__form--btn-back:hover span {
    border-bottom-color: var(--color-red);
    color: var(--color-red)
}

.modal-cart-global__form--checkbox {
    margin-top: auto
}

.modal-cart-global__item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #dddef6
}

.modal-cart-global__bottom {
    padding: 30px 50px 64px 50px
}

.modal-cart-global__bottom--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px
}

.modal-cart-global__bottom--row span {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #7d94ba
}

.modal-cart-global__bottom--row strong {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-blue)
}

.modal-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.modal-cart-item__img {
    min-width: 125px;
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 3px solid #fff;
    background: linear-gradient(134deg, rgba(255, 255, 255, 0) 4.15%, #fff 98.65%);
    box-shadow: 10px 10px 20px 0 rgba(24, 106, 169, .1);
    padding: 8px
}

.modal-cart-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.modal-cart-item__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
    padding: 0 30px
}

.modal-cart-item__content strong {
    padding-bottom: 30px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--color-text)
}

.modal-cart-item__content .home-product-item__count {
    padding-bottom: 0
}

.modal-cart-item__content .home-product-item__count--input input,
.modal-cart-item__content .home-product-item__count--input span {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-text)
}

.modal-cart-item__right {
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.modal-cart-item__right strong {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-text);
    padding-bottom: 30px
}

.modal-cart-item__delete {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.modal-cart-item__delete svg {
    width: 100%;
    height: 100%;
    fill: var(--color-red);
    transition: .3s linear
}

.modal-cart-item__delete:hover svg {
    fill: var(--color-blue)
}

.modal-cart-succeful {
    width: 100%;
    height: 100%;
    background: #f2f4fc;
    display: none
}

.modal-cart-succeful__wrapper {
    padding: 50px 0;
    height: 100%;
    background: linear-gradient(134deg, rgba(255, 255, 255, 0) 4.15%, #fff 98.65%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%
}

.modal-cart-succeful__logo {
    display: none;
    width: 130px;
    height: 200px
}

.modal-cart-succeful__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.modal-cart-succeful__title {
    padding-top: 50px;
    padding-bottom: 30px;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .9px;
    color: var(--color-blue);
    text-align: center;
    text-transform: uppercase;
    max-width: 359px
}

.modal-cart-succeful__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 402px;
    color: var(--color-text);
    text-align: center;
    padding-bottom: 30px
}

.modal-cart-succeful__check {
    width: 100px;
    height: 100px
}

.modal-cart-succeful__check img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.modal-cart-succeful__btn {
    position: static;
    bottom: 74px;
    left: 50%;
    margin-top: 30px;
    width: 100%;
    max-width: 300px
}

.home-page {
    padding-top: 174px;
    padding-left: 50px;
    padding-right: 65px;
    padding-bottom: 138px;
    width: calc(100% - 340px)
}

.home-global-slider {
    width: 100%
}

.home-global-slider__item {
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 20px 25px -5px rgba(24, 106, 169, .1)
}

.home-global-slider__item img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.home-global-slider__pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 !important;
    bottom: 18px !important;
    right: 0 !important;
    padding-right: 32px
}

.home-global-slider__pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    opacity: 1;
    background: var(--color-grey);
    filter: drop-shadow(0 4px 4px rgba(0, 46, 123, .2));
    transition: .3s linear
}

.home-global-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: linear-gradient(140deg, #1f9eff 13.42%, #1d45cf 104.5%)
}

.home-product-global {
    margin-top: 103px;
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.home-product-global__title {
    color: var(--color-text);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .9px;
    text-transform: uppercase;
    padding-bottom: 85px
}

.home-product-global__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 55px;
    width: 100%
}

.home-product-global__line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 26px;
    margin-bottom: 28px
}

.home-product-global__line .line {
    width: 200px;
    height: 2px;
    background: #dddef6
}

.home-product-global__bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.home-product-global__show-more span {
    font-size: 18px
}

.home-product-global__pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.home-product-global__pagination--btn {
    margin: 0 6px;
    background: 0 0;
    border: 2px solid var(--color-grey);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-grey);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    transition: .3s linear
}

.home-product-global__pagination--btn.js-active,
.home-product-global__pagination--btn:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff
}

.home-product-global__pagination--dot {
    margin: 0 6px;
    text-align: center;
    color: var(--color-grey);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 1.6px;
    transition: .3s linear
}

.home-product-global__pagination--dot:hover {
    color: var(--color-red)
}

.home-product-item {
    position: relative;
    border-radius: 20px;
    border: 3px solid #fff;
    background: linear-gradient(134deg, rgba(255, 255, 255, 0) 4.15%, #fff 98.65%);
    box-shadow: 10px 10px 20px 0 rgba(24, 106, 169, .1);
    padding: 26px;
    padding-top: 207px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.home-product-item__img {
    position: absolute;
    width: 220px;
    height: 220px;
    left: 50%;
    top: -35px;
    transform: translateX(-50%)
}

.home-product-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.home-product-item__title {
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: .4px;
    color: var(--color-text);
    min-height: 50px
}

.home-product-item__price {
    margin-top: 22px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.home-product-item__price span {
    color: rgba(9, 51, 84, .2);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: line-through;
    margin-right: 30px
}

.home-product-item__price strong {
    color: var(--color-red);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.home-product-item__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.home-product-item__count {
    display: flex;
    align-items: center;
    justify-content: center
}

.home-product-item__count--btn {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.home-product-item__count--btn svg {
    width: 100%;
    height: 100%;
    fill: #cad3dc;
    transition: .3s linear
}

.home-product-item__count--btn.active svg {
    fill: #7d94ba
}

.home-product-item__count--btn:hover svg {
    fill: var(--color-blue)
}

.home-product-item__count--input {
    margin: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center
}

.home-product-item__count--input input {
    margin-right: 3px;
    width: 27px;
    color: #7d94ba;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0
}

.home-product-item__count--input span {
    color: #7d94ba;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.home-product-item__btn {
    padding: 0 12px
}

.home-product-item__btn-info {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    color: var(--color-blue);
    padding-top: 24px;
    transition: .3s linear
}

.home-product-item__btn-info:hover {
    color: var(--color-red)
}

.catalog-page__title {
    color: var(--color-blue);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .9px;
    text-transform: uppercase
}

.catalog-page__content {
    margin-top: 50px
}

.product-card-block {
    margin-top: 45px
}

.product-card-block__row {
    display: flex;
    align-items: stretch;
    border-bottom: 5px solid #dddef6;
    padding-bottom: 50px;
    margin-bottom: 50px
}

.product-card-block__img {
    margin-left: 18px;
    padding: 20px;
    width: 413px;
    min-width: 413px;
    height: 413px;
    border-radius: 20px;
    border: 3px solid #fff;
    background: #fff;
    box-shadow: 10px 10px 20px 0 rgba(24, 106, 169, .1)
}

.product-card-block__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.product-card-block__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 50px;
    max-width: 448px;
    padding: 15px 0
}

.product-card-block__title {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .66px;
    text-transform: uppercase;
    color: var(--color-text)
}

.product-card-block__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text);
    padding: 20px 0
}

.product-card-block__price {
    margin-top: auto;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.product-card-block__price span {
    color: rgba(9, 51, 84, .2);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: line-through
}

.product-card-block__price strong {
    margin-top: 10px;
    color: var(--color-red);
    font-style: normal;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .66px;
    text-transform: uppercase
}

.product-card-block__row--bottom {
    margin-top: 24px;
    display: flex;
    align-items: center
}

.product-card-block__row--bottom .home-product-item__count {
    margin-left: 50px
}

.product-card-block__char-product {
    margin-bottom: 50px
}

.product-card-block__char-product--title {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .66px;
    text-transform: uppercase;
    color: var(--color-blue);
    padding-bottom: 30px
}

.product-card-block__char-product--row {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--color-text)
}

.product-card-block__char-product--row:last-child {
    margin-bottom: 0
}

.product-card-block__char-product--row span {
    min-width: 93px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-right: 50px
}

.product-card-block__char-product--row strong {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.product-card-block__description {
    padding-bottom: 100px;
    margin-bottom: 50px;
    border-bottom: 5px solid #dddef6
}

.product-card-block__description--text {
    max-width: 870px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text)
}

.product-card-block__description--text p {
    margin-bottom: 12px
}

.product-card-block__description--text p:last-child {
    margin-bottom: 0
}

.swiper-gallery-img {
    height: 100%
}

.swiper-gallery-img__btn {
    width: 24px;
    height: 24px
}

.swiper-gallery-img__btn svg {
    fill: #000;
    width: 100%;
    height: 100%;
    transition: .3s linear
}

.swiper-gallery-img__btn.prev svg {
    transform: rotate(-180deg)
}

.swiper-gallery-img__btn:hover svg {
    fill: var(--color-blue)
}

.recommended-products {
    padding-bottom: 45px
}

.recommended-products__title {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: var(--color-text);
    padding-bottom: 85px
}

.recommended-products__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px
}

.recommended-products__bottom {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center
}

.delivery-page__wrapper {
    padding-top: 50px
}

.delivery-page__title {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: var(--color-blue)
}

.delivery-page__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding-top: 18px;
    color: var(--color-text)
}

.delivery-page__content {
    padding-top: 50px
}

.delivery-page__content--line {
    height: 5px;
    width: 100%;
    background: #dddef6;
    margin: 50px 0
}

.delivery-block {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.delivery-block.two .delivery-block__img {
    max-height: 400px;
    margin-right: 15px;
    margin-left: 0
}

.delivery-block__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 500px
}

.delivery-block__img {
    margin-left: 15px;
    border: 3px solid #fff;
    width: 100%;
    max-width: 500px;
    max-height: 350px;
    border-radius: 20px
}

.delivery-block__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden
}

.delivery-block__title {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .66px;
    text-transform: uppercase;
    color: var(--color-text)
}

.delivery-block__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding-top: 20px;
    padding-bottom: 13px;
    color: var(--color-text)
}

.delivery-block__text b {
    display: block
}

.delivery-block__row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px
}

.delivery-block__row.mb {
    margin-bottom: 0
}

.delivery-block__row--icon {
    width: 22px;
    height: 22px;
    margin-right: 20px
}

.delivery-block__row--icon svg {
    width: 100%;
    height: 100%;
    fill: var(--color-text)
}

.delivery-block__row--text b {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-top: 12px;
    color: var(--color-text)
}

.delivery-block__schedule {
    padding-top: 12px
}

.delivery-block__schedule--row {
    display: flex;
    align-items: center
}

.delivery-block__schedule--row>svg {
    width: 22px;
    height: 22px;
    margin-right: 15px
}

.delivery-block__schedule--row>svg svg {
    width: 100%;
    height: 100%;
    fill: var(--color-text)
}

.delivery-block__schedule--row span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text);
    padding-right: 30px
}

.delivery-block__schedule--row span:first-child {
    min-width: 65px;
    padding-right: 30px
}

.delivery-of-orders {
    padding-top: 20px;
    border-top: 5px solid rgba(221, 222, 246, .5);
    margin-top: 20px
}

.delivery-of-orders__title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: .54px;
    color: var(--color-text)
}

.delivery-of-orders__text {
    padding-top: 12px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text)
}

.delivery-of-orders__text p {
    margin-bottom: 10px
}

.delivery-of-orders__text p:last-child {
    margin-bottom: 0
}

.delivery-of-orders__time {
    margin-top: 14px;
    display: flex;
    align-items: center
}

.delivery-of-orders__time span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: var(--color-text);
    margin-right: 50px
}

.delivery-of-orders__time span:last-child {
    margin-right: 0
}

.payment-methods__wrapper {
    padding-top: 50px
}

.payment-methods__title {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: var(--color-blue);
    max-width: 790px
}

.payment-methods__text {
    color: var(--color-text);
    font-size: 16px;
    font-style: normal;
    line-height: 150%;
    max-width: 790px;
    padding-top: 18px
}

.payment-methods__content {
    padding-top: 50px
}

.payment-methods__content .payment-methods__row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.payment-methods__content .payment-methods__row:last-child .payment-methods__row--content {
    max-width: 640px
}

.payment-methods__row {
    display: flex;
    /* align-items: center; */
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 5px solid #dddef6
}

.payment-methods__row--icon {
    margin-right: 50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 3px solid #fff;
    background: var(--White-gradient, linear-gradient(134deg, rgba(255, 255, 255, 0) 4.15%, #fff 98.65%));
    box-shadow: 10px 10px 20px 0 rgba(24, 106, 169, .1)
}

.payment-methods__row--icon img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain
}

.payment-methods__row--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 490px
}

.payment-methods__row--title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: .54px;
    color: var(--color-text)
}

.payment-methods__row--text {
    
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-text)
}
.payment-methods__row--text:first-child{
    padding-top: 24px;
}
.price-unit{
    margin-top: 5px;
}

.contact-page {
    padding-bottom: 0
}

.contact-page__wrapper {
    padding-top: 50px
}

.contact-page__title {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: var(--color-blue);
    max-width: 790px
}

.contact-page__map {
    margin-top: 50px;
    position: relative;
    height: 740px;
    left: -50px;
    overflow: hidden;
    width: calc(100% + 115px)
}

.contact-page__map:before {
    content: '';
    left: -50px;
    width: calc(100% + (((100vw - var(--with-container))/ 2) + 127px));
    background: linear-gradient(180deg, #f2f4fc 0, rgba(242, 244, 252, 0) 100%);
    height: 150px;
    position: absolute;
    top: 0;
    z-index: 10
}

.contact-page__map:after {
    content: '';
    left: -50px;
    width: calc(100% + (((100vw - var(--with-container))/ 2) + 127px));
    background: linear-gradient(0deg, #f2f4fc 20%, rgba(242, 244, 252, 0) 100%);
    height: 250px;
    position: absolute;
    bottom: -1px;
    z-index: 10
}

.contact-page__map iframe {
    position: relative;
    width: 200%;
    left: -70%;
    height: 100%
}

.contact-page__map--grey {
    right: 0;
    width: calc(100% + (((100vw - var(--with-container))/ 2) + 127px));
    background: linear-gradient(-90deg, #f2f4fc 20%, rgba(242, 244, 252, 0) 100%);
    height: 100%;
    width: 250px;
    position: absolute;
    bottom: -1px;
    top: 0;
    z-index: 10
}

.contact-block {
    position: absolute;
    top: 0;
    right: 65px;
    border-radius: 20px;
    border: 3px solid #fff;
    background: #fff;
    z-index: 10;
    box-shadow: 10px 10px 20px 0 rgba(24, 106, 169, .1);
    max-width: 438px;
    width: 100%
}

.contact-block__header {
    height: 174px;
    background: url(../img/contact-bg.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 60px;
    border-radius: 20px 20px 0 0
}

.contact-block__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: .4px;
    color: #fff;
    text-align: center
}

.contact-block__content {
    padding: 52px;
    padding-top: 46px
}

.contact-block__phone {
    display: flex;
    align-items: center;
    margin-bottom: 14px
}

.contact-block__phone svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: var(--color-red)
}

.contact-block__phone span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text)
}

.contact-block__email {
    display: flex;
    align-items: center
}

.contact-block__email svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: var(--color-red)
}

.contact-block__email span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text)
}

.contact-block__work-schedule {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.contact-block__work-schedule.geo {
    margin-bottom: 0
}

.contact-block__work-schedule strong {
    padding-bottom: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--color-text)
}

.contact-block__work-schedule--row {
    display: flex;
    align-items: center
}

.contact-block__work-schedule--row span {
    margin-right: 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text)
}

@media (min-width:650px) {
    .select__checkboxs {
        max-height: 299px
    }
}

@media (max-width:1600px) {
    .btn {
        min-height: 44px
    }

    .header {
        left: calc(((100vw - var(--with-container))/ 2) + 355px);
        width: calc(100% - (((100vw - var(--with-container))/ 2) + 355px));
        padding: 22px 15px;
        padding-right: calc((100vw - var(--with-container))/ 2 + 15px)
    }

    .header-add-menu {
        padding: 0 15px
    }

    .header-add-menu__wrapper {
        min-height: 70px
    }

    .header-add-menu__link {
        font-size: 18px
    }

    .home-page {
        padding-left: 15px;
        padding-right: 0
    }

    .home-product-item {
        padding: 15px;
        padding-top: 160px
    }

    .home-product-item__img {
        width: 180px;
        height: 180px
    }

    .home-product-item__content {
        flex-direction: column
    }

    .home-product-item__count {
        padding-bottom: 30px
    }

    .product-card-block__row--bottom .home-product-item__count {
        padding-bottom: 0;
        margin-left: 25px
    }

    .contact-page__map {
        left: -15px;
        width: calc(100% + 30px)
    }
}

@media (max-width:1405px) {
    .header {
        padding-right: 15px
    }
}

@media (max-width:1199.98px) {
    .main {
        padding-top: 165px
    }

    .main__wrapper {
        flex-direction: column
    }

    .header {
        width: 100%;
        background: #fff;
        left: 0;
        right: 0;
        padding: 10px 15px
    }

    .header .header-add-menu {
        display: none
    }

    .header__logo {
        display: block;
        width: 200px
    }

    .header__logo img {
        width: 100%
    }

    .header__phone {
        display: none
    }

    .header__btn-quick-order {
        display: none
    }

    .header-phone {
        flex-wrap: wrap;
        padding: 15px;
        box-shadow: none;
        background: 0 0
    }

    .header-phone__icon {
        width: 32px;
        height: 32px
    }

    .header-phone__icon svg {
        width: 16px;
        height: 16px
    }

    .header-phone__item {
        margin-right: 0
    }

    .header-phone__schedule {
        width: 100%
    }

    .header-add-menu {
        display: block;
        position: static;
        background: 0 0;
        padding-right: 0;
        padding-top: 15px;
        padding-left: 0
    }

    .header-add-menu__wrapper {
        flex-direction: column;
        align-items: flex-start
    }

    .header-add-menu__item {
        margin-bottom: 15px
    }

    .header-add-menu__link {
        color: var(--color-text)
    }

    .footer .container-m {
        padding: 0 15px
    }

    .footer__logo {
        display: none
    }

    .footer__menu {
        padding-right: 0
    }

    .sidebar-global {
        background: #fff;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        transition: .3s linear;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 120
    }

    .sidebar-global.js-active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0)
    }

    .sidebar-global__btn-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px
    }

    .sidebar-global__btn-close svg {
        fill: var(--color-text);
        width: 100%;
        height: 100%;
        transition: .3s linear
    }

    .sidebar-global__btn-close:hover svg {
        fill: var(--color-red)
    }

    .sidebar-global__wrapper {
        align-items: center;
        padding: 20px 15px
    }

    .sidebar-global__wrapper .header-phone {
        display: flex
    }

    .sidebar-global__logo {
        margin-left: 0;
        width: 100px;
        height: 180px
    }

    .sidebar-category {
        margin-top: 15px
    }

    .sidebar-category__title {
        font-size: 18px
    }

    .sidebar-category__title:before {
        max-width: 100%
    }

    .sidebar-category__menu-item>ul li a {
        font-size: 14px
    }

    .sidebar-category__menu-link span {
        font-size: 16px
    }

    .home-page {
        width: 100%;
        padding-top: 0;
        padding-left: 0;
        padding-bottom: 80px
    }

    .catalog-page__title {
        font-size: 24px
    }

    .contact-page__map:before {
        width: 100%;
        left: 0
    }

    .contact-page__map:after {
        width: 100%;
        left: 0;
        height: 0
    }
}

@media (max-width:991.98px) {
    .footer__wrapper {
        flex-wrap: wrap
    }

    .footer__contact {
        order: 1
    }

    .footer__quick-order {
        order: 3;
        width: 100%;
        padding-top: 15px
    }

    .footer__menu {
        order: 2
    }

    .modal-quick-order {
        max-width: 500px
    }

    .modal-quick-order__wrapper {
        padding: 48px 50px
    }

    .modal-quick-order__succeful {
        padding: 48px 50px
    }

    .modal-cart-global {
        max-width: 600px
    }

    .modal-cart-global__header {
        padding: 50px 25px;
        padding-bottom: 25px
    }

    .modal-cart-global__list {
        padding: 0 25px
    }

    .modal-cart-global__form {
        padding: 0 25px
    }

    .modal-cart-global__bottom {
        padding: 25px
    }

    .modal-cart-global__bottom--row {
        padding-bottom: 25px
    }

    .home-product-global {
        margin-top: 50px
    }

    .home-product-global__title {
        font-size: 24px
    }

    .home-product-global__line {
        display: none
    }

    .home-product-global__show-more span {
        font-size: 16px
    }

    .home-product-item__img {
        width: 160px;
        height: 160px
    }

    .home-product-item__title {
        font-size: 18px
    }

    .home-product-item__price {
        margin: 20px 0
    }

    .home-product-item__price span {
        font-size: 14px
    }

    .home-product-item__price strong {
        font-size: 18px
    }

    .home-product-item__count--input input {
        font-size: 16px
    }

    .home-product-item__count--input span {
        font-size: 16px
    }

    .home-product-item__btn-info {
        font-size: 14px;
        padding-top: 15px
    }

    .product-card-block__img {
        min-width: 300px;
        width: 300px;
        margin-left: 0
    }

    .recommended-products {
        padding-bottom: 0
    }

    .delivery-page__wrapper {
        padding-top: 0
    }

    .delivery-page__content--line {
        margin: 25px 0
    }

    .delivery-block {
        flex-direction: column-reverse
    }

    .delivery-block.two {
        flex-direction: column
    }

    .delivery-block__content {
        max-width: 100%;
        margin-top: 20px
    }

    .delivery-block__img {
        max-width: 500px;
        max-height: initial;
        margin: 0 !important
    }

    .delivery-of-orders__time span {
        margin-right: 25px
    }

    .payment-methods__wrapper {
        padding-top: 0
    }

    .contact-page__wrapper {
        padding-top: 0
    }
}

@media (max-width:759.98px) {
    .home-product-global__content {
        grid-template-columns: repeat(2, 1fr)
    }

    .home-product-global__bottom {
        margin-top: 35px
    }

    .recommended-products__content {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 50px
    }
}

@media (max-width:649.98px) {
    .main {
        padding-top: 130px
    }

    .input-grey input,
    .input-grey textarea {
        min-height: 40px
    }

    .modal__close {
        width: 24px;
        height: 24px;
        top: 15px;
        right: 15px
    }

    .select__checkboxs {
        padding: 8px 16px
    }

    .select__checkbox {
        margin: 0;
        padding-top: 10px;
        padding-bottom: 10px
    }

    .header__logo {
        width: 160px
    }

    .header__cart-btn {
        width: 32px;
        height: 32px
    }

    .header__btn-burger {
        width: 32px;
        height: 32px
    }

    .footer {
        background: var(--color-text)
    }

    .footer__quick-order {
        display: flex;
        align-items: center;
        justify-content: center
    }

    .footer__menu {
        padding-top: 30px
    }

    .footer-contact__content {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-contact__col.one {
        margin-right: 0;
        margin-bottom: 30px
    }

    .footer-bottom {
        flex-direction: column;
        min-height: initial;
        padding-bottom: 15px
    }

    .footer-bottom__link-personal {
        padding-bottom: 15px
    }

    .sidebar-global {
        min-width: initial;
        max-width: 100%;
        width: 100%
    }

    .modal-quick-order {
        max-width: 300px
    }

    .modal-quick-order__wrapper {
        padding: 50px 15px;
        background: url(../img/bg-form.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 300%;
        min-height: inherit
    }

    .modal-quick-order__succeful {
        padding: 50px 15px;
        background: url(../img/bg-form.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 300%;
        min-height: inherit
    }

    .modal-quick-order__title {
        font-size: 18px
    }

    .modal-quick-order__subtext {
        padding: 30px 0
    }

    .modal-cart-global {
        max-width: 100%
    }

    .modal-cart-global__header {
        padding-right: 15px;
        padding-left: 15px
    }

    .modal-cart-global__list {
        height: calc(100vh - 113px - 148px)
    }

    .modal-cart-global__list {
        padding: 0 15px
    }

    .modal-cart-global__form {
        height: calc(100vh - 113px - 148px)
    }

    .modal-cart-global__form {
        padding: 0 15px
    }

    .modal-cart-global__item {
        margin-bottom: 15px;
        padding-bottom: 15px
    }

    .modal-cart-global__bottom {
        padding-right: 15px;
        padding-left: 15px
    }

    .modal-cart-item__img {
        width: 70px;
        height: 70px;
        min-width: 70px;
        padding: 5px
    }

    .modal-cart-item__content {
        padding: 0 15px
    }

    .modal-cart-item__content strong {
        padding-bottom: 15px;
        font-size: 16px
    }

    .modal-cart-item__content .home-product-item__count--input input,
    .modal-cart-item__content .home-product-item__count--input span {
        font-size: 16px
    }

    .modal-cart-item__right {
        min-width: 80px
    }

    .modal-cart-item__right strong {
        padding-bottom: 15px;
        font-size: 16px
    }

    .modal-cart-succeful__logo {
        height: 150px;
        width: 100px
    }

    .modal-cart-succeful__title {
        font-size: 22px;
        padding: 25px 0
    }

    .modal-cart-succeful__subtitle {
        padding-bottom: 15px
    }

    .modal-cart-succeful__check {
        width: 50px;
        height: 50px
    }

    .modal-cart-succeful__btn {
        bottom: 25px
    }

    .home-page {
        padding-bottom: 50px
    }

    .home-global-slider__pagination .swiper-pagination-bullet {
        width: 16px;
        height: 16px
    }

    .home-product-global {
        margin-top: 30px
    }

    .home-product-global__title {
        font-size: 20px;
        padding-bottom: 60px
    }

    .home-product-global__content {
        grid-template-columns: repeat(1, 1fr)
    }

    .home-product-global__bottom {
        flex-direction: column-reverse
    }

    .home-product-global__show-more {
        width: 100%;
        margin-top: 15px
    }

    .product-card-block__row {
        flex-direction: column;
        align-items: center
    }

    .product-card-block__img {
        min-width: initial;
        width: 100%;
        height: initial;
        max-width: 300px;
        margin-bottom: 20px
    }

    .product-card-block__content {
        margin-left: 0;
        max-width: 100%
    }

    .product-card-block__price {
        align-items: center;
        padding-left: 0
    }

    .product-card-block__row--bottom {
        flex-direction: column-reverse
    }

    .product-card-block__row--bottom .home-product-item__count {
        margin-left: 0;
        margin-bottom: 24px
    }

    .product-card-block__description {
        padding-bottom: 50px
    }

    .recommended-products__title {
        font-size: 22px
    }

    .recommended-products__content {
        grid-template-columns: repeat(1, 1fr)
    }

    .contact-page {
        padding-bottom: 0
    }

    .contact-page__map {
        display: flex;
        height: inherit;
        flex-direction: column-reverse;
        align-items: center
    }

    .contact-page__map iframe {
        left: 0;
        width: 100%;
        height: 300px;
        min-height: 300px;
        margin-top: 50px
    }

    .contact-page__map--grey {
        display: none
    }

    .contact-block {
        position: static;
        max-width: 300px
    }

    .contact-block__header {
        height: initial;
        background: url(../img/contact-bg.svg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 15px
    }

    .contact-block__title {
        font-size: 14px;
        line-height: 20px
    }

    .contact-block__content {
        padding: 25px
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important
    }
}

.radio-custom, .radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.radio-custom-label {
    position: relative;
}

.radio-custom + .radio-custom-label:before {
    content: '';
    background: #fff;
    border: 2px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 10px;
    text-align: center;
    transition: .3s linear;
}

.radio-custom + .radio-custom-label:after {
    content: '';
    background: var(--color-blue);
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 50%;
    margin-right: 10px;
    text-align: center;
    transition: .3s linear;
    opacity: 0;
}

.radio-custom + .radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked + .radio-custom-label:before {
    
    border-color: var(--color-blue);
}
.radio-custom:checked + .radio-custom-label:after {
    opacity: 1;
} 

 
.radio-group {
    margin: 20px 0;
}

.radio-group__item {
    display: block;
    position: relative;
    margin: 10px 0;

}

.radio-group__item input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}