@charset "UTF-8";

section {
    padding: 20px 0
}

hr {
    border: none;
    background: linear-gradient(90deg, transparent, #b5b5b5, transparent);
    height: 1px
}

.table_wrapper {
    overflow: scroll;
    width: 100%
}

table.table {
    border-spacing: 0
}

table.table thead tr th:last-child {
    border-right: 1px solid #000
}

table.table thead th {
    line-height: normal;
    padding: 10px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000
}

table.table tbody tr:nth-child(2n) {
    background-color: #eee
}

table.table tbody tr td {
    border-bottom: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    font-size: 12px;
    line-height: normal;
    padding: 10px
}

table.table tbody tr td:last-child {
    border-right: 1px solid #d9d9d9
}

.count_wrapper {
    display: flex;
    align-items: center
}

.count_wrapper input[type=text] {
    width: 50px;
    text-align: center;
    border: none;
    height: 30px;
    margin: 0
}

.count_wrapper button {
    border: none;
    background: none;
    width: 23px;
    height: 23px;
    border-radius: 100%;
    border: 1px solid rgba(0, 0, 0, .2)
}

.design {
    display: none
}

.design .d1,
.design .d2,
.design .d3,
.design .d4 {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center
}

.design .d1 img,
.design .d2 img,
.design .d3 img,
.design .d4 img {
    width: 320px;
    transform: translateX(1px) translateY(-1px)
}

.swiper-button-next:after {
    font-size: 18px;
    color: #252525
}

.swiper-button-prev:after {
    font-size: 18px;
    color: #252525
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 5px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 5px))
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #252525
}

.swiper-horizontal>.swiper-scrollbar {
    height: 3px
}

.accent_text {
    color: #252525
}

button {
    cursor: pointer
}

body {
    height: 100%;
    font-family: ProximaNova
}

body,
ul {
    margin: 0;
    padding: 0
}

ul {
    list-style-type: none
}

.grid {
    width: 100%;
    display: flex
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 150%;
    font-size: 16px
}

@media (min-width:320px) {
    html {
        font-size: 16px
    }
}

@media (min-width:1170px) {
    html {
        font-size: 16px
    }
}

#app {
    display: flex;
    flex-direction: column;
    height: 100%
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

* {
    box-sizing: border-box
}

.bold {
    font-weight: 700
}

.uppercase {
    text-transform: uppercase
}

.btn {
    display: flex;
    height: 50px;
    line-height: 50px;
    background: #252525;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border: none;
    padding: 0 20px;
    font-size: 15px;
    font-family: ProximaNova;
    border-radius: 25px;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

.btn.accent2 {
    background: #000
}

.btn.accent2:hover {
    background: #000;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

.btn:hover {
    background: #0c0c0c;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

.btn:disabled {
    background: grey
}

.btn.linear {
    background: none;
    border: 2px solid #252525;
    color: #252525;
    font-weight: 600
}

.btn.linear:hover {
    background: #252525;
    border: 2px solid #252525;
    color: #fff
}

a {
    color: #252525
}

textarea {
    height: 50px;
    line-height: 50px;
    border: 2px solid #dadada;
    border-radius: 25px;
    display: flex;
    width: 100%;
    font-size: 14px;
    margin: 15px 0;
    padding: 0 15px;
    -webkit-appearance: none;
    min-height: 140px;
    outline: none;
    font-family: ProximaNova
}

input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=text] {
    height: 50px;
    line-height: 50px;
    border: 2px solid #dadada;
    border-radius: 25px;
    display: flex;
    width: 100%;
    font-size: 14px;
    margin: 15px 0;
    padding: 0 15px;
    -webkit-appearance: none;
    outline: none;
    font-family: ProximaNova;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus {
    box-shadow: 0 0 15px rgba(37, 37, 37, .3);
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

input[type=submit] {
    border: none;
    background: #252525;
    color: #fff;
    text-align: center;
    justify-content: center;
    -webkit-appearance: none;
    font-size: 15px;
    font-family: ProximaNova;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

input[type=submit]:hover {
    background: #0c0c0c;
    cursor: pointer;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

input[type=submit]:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(37, 37, 37, .8)
}

.cta_mx .form_wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .6s cubic-bezier(.76, 0, .24, 1);
    overflow: hidden
}

.cta_mx .form_wrapper .form {
    transform: translateX(100%) scale(3.7);
    background: #fff;
    border-radius: 5px;
    margin: 20px;
    width: 300px;
    max-height: 100%;
    overflow-y: visible;
    padding: 20px;
    position: relative;
    transition: all .6s cubic-bezier(.76, 0, .24, 1)
}

.cta_mx .form_wrapper .form .close {
    border: none;
    background: url(../img/close.svg) no-repeat 50%;
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
    top: 20px;
    font-size: 0;
    background-size: contain
}

.cta_mx .form_wrapper .form .h1 {
    margin: 0 0 10px;
    font-weight: 700;
    padding-right: 30px;
    font-size: 24px
}

.cta_mx .form_wrapper.on {
    transform: translateX(0);
    opacity: 1
}

.cta_mx .form_wrapper.on .form {
    transform: translateX(0) scale(1)
}

.cta_mx .input_wrapper {
    position: relative
}

.cta_mx .input_wrapper.required:before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 5px;
    height: 5px;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background: #252525
}

.cta_mx .responce {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, .9);
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100vw);
    opacity: 0;
    z-index: 1;
    transition: all .6s cubic-bezier(.76, 0, .24, 1)
}

.cta_mx .responce.on {
    transform: translateX(0);
    opacity: 1
}

.cta_mx .responce .innerWrapper {
    background: #fff;
    position: relative;
    border-radius: 5px;
    padding: 30px 20px 20px
}

.cta_mx .responce .innerWrapper .close {
    background: url(../img/close.svg) no-repeat 50%;
    background-size: contain;
    border: none;
    font-size: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px
}

.mxform {
    width: 100%
}

.mxform .input_wrapper {
    position: relative
}

.mxform .input_wrapper.required:before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 5px;
    height: 5px;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background: #252525
}

.mxform .input_wrapper label {
    line-height: 100%;
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
    padding-right: 20px
}

.mxform .input_wrapper label input {
    margin-right: 15px
}

.mxform .input_wrapper.checkbox>div {
    display: flex;
    gap: 10px;
    margin-bottom: 10px
}

.mxform .input_wrapper.checkbox>div label {
    display: block;
    margin-bottom: 0;
    padding-right: 22px
}

.mxform .responce {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, .9);
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100vw);
    opacity: 0;
    z-index: 1;
    transition: all .6s cubic-bezier(.76, 0, .24, 1)
}

.mxform .responce.on {
    opacity: 1;
    transform: translateX(0)
}

.mxform .responce .innerWrapper {
    background: #fff;
    position: relative;
    border-radius: 5px;
    padding: 30px 20px 20px;
    width: 300px
}

.mxform .responce .innerWrapper .close {
    background: url(../img/close.svg) no-repeat 50%;
    background-size: contain;
    border: none;
    font-size: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0
}

[class*=col-] {
    width: 100%
}

p {
    margin: 0 0 20px;
    line-height: 150%
}

.h1,
h1 {
    margin: 20px 0 10px;
    font-size: 24px;
    width: 100%
}

@media (min-width:320px) {

    .h1,
    h1 {
        font-size: calc(17.97647px + 1.88235vw)
    }
}

@media (min-width:1170px) {

    .h1,
    h1 {
        font-size: 40px
    }
}

.h2,
h2 {
    font-size: 1.5em;
    font-size: 20px;
    width: 100%
}

@media (min-width:320px) {

    .h2,
    h2 {
        font-size: calc(16.23529px + 1.17647vw)
    }
}

@media (min-width:1170px) {

    .h2,
    h2 {
        font-size: 30px
    }
}

.h3,
h3 {
    font-size: 1.17em;
    font-size: 15px;
    width: 100%
}

@media (min-width:320px) {

    .h3,
    h3 {
        font-size: calc(10.85882px + 1.29412vw)
    }
}

@media (min-width:1170px) {

    .h3,
    h3 {
        font-size: 26px
    }
}

.h4,
h4 {
    font-size: 1.12em;
    font-size: 14px;
    width: 100%
}

@media (min-width:320px) {

    .h4,
    h4 {
        font-size: calc(10.23529px + 1.17647vw)
    }
}

@media (min-width:1170px) {

    .h4,
    h4 {
        font-size: 24px
    }
}

.h5,
h5 {
    font-size: .83em;
    font-size: 12px;
    width: 100%
}

@media (min-width:320px) {

    .h5,
    h5 {
        font-size: calc(8.98824px + .94118vw)
    }
}

@media (min-width:1170px) {

    .h5,
    h5 {
        font-size: 20px
    }
}

.h6,
h6 {
    font-size: .75em;
    font-size: 11px;
    width: 100%
}

@media (min-width:320px) {

    .h6,
    h6 {
        font-size: calc(8.36471px + .82353vw)
    }
}

@media (min-width:1170px) {

    .h6,
    h6 {
        font-size: 18px
    }
}

.my-slider-wrapper {
    width: 100%;
    display: block
}

.img_wrapper {
    width: 100%;
    height: 100%;
    flex-shrink: 0
}

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

.img_wrapper.fixed_height {
    height: 200px;
    overflow: hidden;
    position: relative
}

.img_wrapper.fixed_height img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%
}

.menu {
    position: fixed;
    background: #fff;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    left: 0;
    top: 0;
    padding: 90px 20px;
    transform: translateX(-100vw);
    transition: all .4s cubic-bezier(.76, 0, .24, 1)
}

#burger {
    display: none
}

#burger~.burger {
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 7px 4px
}

#burger~.burger span {
    flex-shrink: 0;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background: #252525;
    position: relative;
    display: block;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

#burger:checked~.burger span:first-child {
    transform: rotate(-45deg)
}

#burger:checked~.burger span:nth-child(2) {
    transform: translateX(4px)
}

#burger:checked~.burger span:nth-child(3) {
    transform: rotate(45deg)
}

#burger:checked~.menu {
    transform: translateX(0)
}

@media (min-width:610px) {
    section {
        padding: 30px 0
    }

    .design {
        display: block
    }

    .col-1 {
        width: 8.33333%
    }

    .col-offset-1 {
        margin-left: 8.33333%
    }

    .col-2 {
        width: 16.66667%
    }

    .col-offset-2 {
        margin-left: 16.66667%
    }

    .col-3 {
        width: 25%
    }

    .col-offset-3 {
        margin-left: 25%
    }

    .col-4 {
        width: 33.33333%
    }

    .col-offset-4 {
        margin-left: 33.33333%
    }

    .col-5 {
        width: 41.66667%
    }

    .col-offset-5 {
        margin-left: 41.66667%
    }

    .col-6 {
        width: 50%
    }

    .col-offset-6 {
        margin-left: 50%
    }

    .col-7 {
        width: 58.33333%
    }

    .col-offset-7 {
        margin-left: 58.33333%
    }

    .col-8 {
        width: 66.66667%
    }

    .col-offset-8 {
        margin-left: 66.66667%
    }

    .col-9 {
        width: 75%
    }

    .col-offset-9 {
        margin-left: 75%
    }

    .col-10 {
        width: 83.33333%
    }

    .col-offset-10 {
        margin-left: 83.33333%
    }

    .col-11 {
        width: 91.66667%
    }

    .col-offset-11 {
        margin-left: 91.66667%
    }

    .col-12 {
        width: 100%
    }

    .col-offset-12 {
        margin-left: 100%
    }

    .col {
        width: 8.33333%;
        flex-basis: 0;
        flex-grow: 1
    }

    .container {
        width: 600px
    }

    .btn {
        width: auto;
        padding: 0 40px
    }

    .popup_wrapper .popup {
        width: 400px;
        height: auto;
        position: relative;
        overflow: visible
    }

    .popup_wrapper .popup .close {
        right: -50px;
        top: 0
    }

    .popup_wrapper .popup .close svg path {
        stroke: #fff
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px
    }

    .cta_mx .form_wrapper .form {
        width: 350px;
        padding: 30px;
        overflow: visible
    }
}

@media (min-width:1170px) {
    #burger~.burger {
        display: none
    }

    .menu {
        position: relative;
        transform: none;
        padding: 0;
        left: auto;
        top: auto;
        width: auto;
        height: auto
    }

    .menu ul {
        display: flex;
        gap: 20px
    }

    .container {
        width: 1170px
    }

    section {
        padding: 50px 0
    }
}

@media (min-width:1600px) {
    .container {
        width: 1400px
    }

    section {
        padding: 100px 0
    }
}

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

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

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

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

[v-cloak] {
    display: none
}

#header {
    position: fixed;
    z-index: 12;
    width: 100%;
    background: #fff;
    flex: 0 0 auto
}

#header .search_bar {
    position: absolute;
    z-index: 6;
    background-color: #fff;
    box-shadow: 0 100px 80px rgba(0, 0, 0, .03), 0 41.7776px 33.4221px rgba(0, 0, 0, .0215656), 0 22.3363px 17.869px rgba(0, 0, 0, .0178832), 0 12.5216px 10.0172px rgba(0, 0, 0, .015), 0 6.6501px 5.32008px rgba(0, 0, 0, .0121168), 0 2.76726px 2.21381px rgba(0, 0, 0, .00843437);
    top: 0;
    padding: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

#header .search_bar,
#header .search_bar form {
    width: 100%;
    display: flex;
    justify-content: space-between
}

#header .search_bar form {
    position: relative
}

#header .search_bar form input {
    width: 100%;
    margin: 0;
    border: none;
    padding-left: 40px;
    border-radius: 0
}

#header .search_bar form input:focus {
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, .073)
}

#header .search_bar form button {
    position: absolute;
    left: 0;
    top: 11px
}

#header .search_bar button {
    background: none;
    border: none
}

#header .search_bar.open {
    transform: translateY(0);
    opacity: 1
}

#header .orders {
    position: fixed;
    z-index: 6;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 20px;
    transform: translateX(150%);
    opacity: 0;
    overflow: scroll;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

#header .orders.open {
    transform: translateX(0);
    opacity: 1
}

#header .orders .close_orders {
    background: none;
    border: none;
    position: absolute;
    right: 20px;
    top: 20px
}

#header .orders .inner .h2 {
    margin-bottom: 20px
}

#header .orders .inner ul {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding-top: 20px;
    display: grid;
    gap: 20px
}

#header .orders .inner ul li {
    position: relative;
    display: flex
}

#header .orders .inner ul li .img_wrapper {
    width: 70px;
    height: 70px;
    margin-right: 15px
}

#header .orders .inner ul li .in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 20px;
    justify-content: space-between
}

#header .orders .inner ul li .in .title {
    font-weight: 700;
    padding-right: 40px
}

#header .orders .inner ul li .delete {
    background: none;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 100%;
    padding: 7px;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0
}

#header .orders .inner ul li .delete img {
    width: 100%;
    height: 100%
}

#header .orders .inner .total {
    text-align: right;
    font-weight: 700;
    font-size: 18px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    margin-top: 20px;
    padding-top: 20px
}

#header .orders .inner .order_form .input_wrapper.grided {
    display: flex;
    flex-wrap: wrap
}

#header .orders .inner .order_form .input_wrapper.grided label {
    width: 50%
}

#header .orders .inner .order_form .input_wrapper .title {
    font-size: 12px;
    display: block;
    width: 100%
}

#header .orders .inner .order_form .input_wrapper input,
#header .orders .inner .order_form .input_wrapper textarea {
    margin-top: 0
}

#header .orders .inner .order_form .input_wrapper .btn {
    width: 100%
}

#header .logo {
    margin-left: 40px;
    display: flex;
    align-items: center
}

#header .logo img {
    height: 26px
}

#header .logo .subtitle {
    display: none;
    line-height: normal
}

#header .row {
    justify-content: space-between;
    align-items: center
}

#header .rs {
    display: flex
}

#header .rs .order button,
#header .rs .search button {
    background: none;
    border: none;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

#header .rs .order button .count {
    position: absolute;
    background-color: red;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100%;
    margin-top: 20px
}

#header .menu {
    display: flex;
    flex-direction: column;
    overflow-y: scroll
}

#header .menu .btn.bag {
    display: none
}

#header .menu .ts {
    transform: translateY(180px);
    position: absolute;
    font-size: 16px
}

#header .menu .ts .addr {
    width: 240px;
    margin: 10px 0
}

#header .menu .ts .phones {
    margin: 10px 0
}

#header .menu .ts .phones a {
    text-decoration: none;
    color: #000;
    display: block
}

#header .menu .ts .mail {
    margin: 5px 0
}

#header .menu .ts .mail a {
    text-decoration: none;
    color: #000;
    display: block
}

#header .menu .ts .socs a img {
    width: 34px
}

#header .menu .inner_wrapper {
    display: flex;
    flex-direction: column-reverse
}

#header .menu .inner_wrapper .new_lk_button {
    background: none;
    font-family: ProximaNova;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #000;
    padding: 4px 40px;
    color: #000
}

#header .menu .top_menu {
    display: grid;
    gap: 0;
    margin-bottom: 15px
}

#header .menu .top_menu li {
    border-bottom: 1px solid #e4e4e4;
    padding: 3px 0
}

#header .menu .top_menu li a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #000
}

#header .menu .top_menu li .scroll_wrapper>ul {
    display: none
}

#header .menu .top_menu li .scroll_wrapper>ul li {
    border: none
}

#header .menu .top_menu li>ul {
    display: none
}

#header .menu .top_menu li>ul li {
    border: none
}

#header .menu .top_menu li.has_children>a,
#header .menu .top_menu li.menu_navigation>a {
    position: relative;
    display: block;
    width: 100%
}

#header .menu .top_menu li.has_children>a:after,
#header .menu .top_menu li.menu_navigation>a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 15px;
    height: 15px;
    transform: translate(-50%, -50%);
    background: url(../img/arrow-list.svg) no-repeat 50%;
    background-size: contain;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

#header .menu .top_menu li.has_children.open>a {
    color: #fc4f3b
}

#header .menu .top_menu li.has_children.open>a:after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

#header .menu .top_menu li.has_children.open>.scroll_wrapper>ul {
    display: grid;
    margin: 15px 0;
    padding-left: 20px
}

#header .menu .top_menu li.has_children.open>.scroll_wrapper>ul li {
    padding: 4px 0
}

#header .menu .top_menu li.has_children.open>ul {
    display: grid;
    margin: 15px 0;
    padding-left: 20px
}

#header .menu .top_menu li.has_children.open>ul li {
    padding: 4px 0
}

#fav_tab_trigger {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 100%;
    position: fixed;
    top: 90px;
    left: auto;
    right: 0;
    transform: translateX(-50%);
    opacity: .8;
    display: flex;
    align-items: center;
    justify-content: center
}

#fav_tab_trigger svg {
    width: 28px
}

#fav_tab_trigger svg path {
    stroke-width: 1.6
}

#fav_tab_trigger .count {
    background-color: red;
    color: #fff;
    position: absolute;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    bottom: -5px;
    left: 2px
}

.favor_tab {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 12;
    overflow-y: scroll;
    transform: translateX(-100vw);
    transition: all .4s cubic-bezier(.76, 0, .24, 1)
}

.favor_tab .inner {
    background: #fff;
    height: 100%;
    padding: 20px;
    overflow-y: scroll
}

.favor_tab .inner .h2 {
    font-weight: 700;
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 20px;
    padding-bottom: 20px
}

.favor_tab .inner #close_fav_tab {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 25px;
    height: 25px;
    transform: rotate(45deg);
    background: none;
    border: none
}

.favor_tab .inner #close_fav_tab:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 100%;
    transform: translate(-50%, -50%);
    background: #000
}

.favor_tab .inner #close_fav_tab:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 1px;
    transform: translate(-50%, -50%);
    background: #000
}

.favor_tab .inner ul {
    display: grid;
    gap: 20px
}

.favor_tab .inner ul li {
    position: relative
}

.favor_tab .inner ul li .delete_from_fav {
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    background: none;
    border: 1px solid #000;
    border-radius: 100%
}

.favor_tab .inner ul li .delete_from_fav:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 80%;
    transform: translate(-50%, -50%);
    background: #000
}

.favor_tab .inner ul li .delete_from_fav:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    height: 1px;
    transform: translate(-50%, -50%);
    background: #000
}

.favor_tab .inner ul li a {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none
}

.favor_tab .inner ul li .img_wrapper {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.favor_tab .inner ul li .wr {
    width: calc(100% - 80px);
    padding-left: 10px
}

.favor_tab .inner ul li .wr .title {
    font-weight: 700;
    text-decoration: underline;
    padding-right: 30px
}

.favor_tab .inner ul li .wr .id {
    text-align: right
}

.favor_tab .inner ul li .price {
    width: 100%;
    text-align: right;
    padding-left: 10px
}

.favor_tab .shop_from_favs {
    margin: 20px auto auto
}

.favor_tab .success_message {
    display: none
}

.favor_tab .success_message.on {
    display: block;
    font-size: 14px
}

.favor_tab.opened {
    transform: translateX(0)
}

.loging_wrapper {
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(-100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
    transition: all .4s cubic-bezier(.76, 0, .24, 1)
}

.loging_wrapper.open {
    transform: translateX(0)
}

.loging_wrapper .popup {
    background: #fff;
    width: calc(100% - 30px);
    padding: 30px;
    border-radius: 10px;
    position: relative
}

.loging_wrapper .popup .close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none
}

.loging_wrapper .popup .close img {
    width: 100%;
    height: 100%
}

.loging_wrapper .popup .tabs .tab {
    display: none
}

.loging_wrapper .popup .tabs .tab.current {
    display: block
}

.loging_wrapper .popup .tabs .tab .h1 {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px
}

.loging_wrapper .popup .tabs .tab p {
    text-align: center
}

.loging_wrapper .popup .tabs .tab .input_wrapper input {
    margin: 0
}

.loging_wrapper .popup .tabs .tab .input_wrapper input[type=submit] {
    margin: 20px auto auto
}

.loging_wrapper .popup .btm_changer button {
    width: 100%;
    background: none;
    border: none;
    text-decoration: underline;
    opacity: .7;
    color: #252525
}

.loging_wrapper .popup .btm_changer button.current {
    display: none
}

.messangers_popup {
    position: fixed;
    z-index: 5;
    right: 30px;
    bottom: 30px
}

.messangers_popup button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    z-index: 4;
    border: none;
    width: 50px;
    padding: 12px;
    height: 50px;
    border-radius: 100%;
    background: #fc4f3b;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .09), 0 4px 2px rgba(0, 0, 0, .09), 0 8px 4px rgba(0, 0, 0, .09), 0 16px 8px rgba(0, 0, 0, .09), 0 32px 16px rgba(0, 0, 0, .09)
}

.messangers_popup button svg path {
    fill: #fff
}

.messangers_popup button:hover {
    background: #fff
}

.messangers_popup button:hover svg path {
    fill: #fc4f3b
}

/* .messangers_popup button:hover~.socs a {
    opacity: 1;
    transform: translateY(0);
    transition: all .5s cubic-bezier(.76, 0, .24, 1)
} */

.messangers_popup .socs {
    display: grid;
    gap: 5px;
    position: absolute;
    bottom: 55px;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    justify-content: center;
    transition: all .4s cubic-bezier(.76, 0, .24, 1)
}

.messangers_popup .socs a {
    display: flex;
    
    transform: translateY(0)
}

.messangers_popup .socs a:first-child {
    transition: all 1s cubic-bezier(.76, 0, .24, 1);
    opacity: 1;
}

.messangers_popup .socs a:nth-child(2) {
    transition: all 1s cubic-bezier(.76, 0, .24, 1);
    opacity: 1;
}

.messangers_popup .socs a:nth-child(3) {
    transition: all 1s cubic-bezier(.76, 0, .24, 1);
    opacity: 1;
}

.messangers_popup .socs a:nth-child(4) {
    transition: all 1s cubic-bezier(.76, 0, .24, 1);
    opacity: 1;
}

.messangers_popup .socs a:nth-child(5) {
    transition: all 1s cubic-bezier(.76, 0, .24, 1);
    opacity: 1;
}

.messangers_popup .socs.open {
    max-height: 200px
}

main {
    flex: 1 0 auto;
    padding-top: 80px
}

#hero {
    position: relative;
    padding: 0
}

#hero .hero_slider {
    width: 100%;
    overflow: hidden
}

#hero .hero_slider .swiper-slide .img_wrapper {
    height: auto
}

#hero .hero_slider .swiper-slide .img_wrapper img:first-child {
    display: block
}

#hero .hero_slider .swiper-slide .img_wrapper img:last-child {
    display: none
}

#itemtype .h1 {
    text-transform: uppercase;
    font-weight: 700;
    text-align: center
}

#itemtype .grid {
    display: grid;
    gap: 20px
}

#itemtype .grid .img_wrapper {
    display: flex
}

#itemtype .grid .img_wrapper img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

#itemtype .grid a {
    text-decoration: none;
    display: block
}

#itemtype .grid .title {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 30px;
    margin-top: 5px;
    position: relative
}

#itemtype .grid .title:before {
    content: "";
    position: absolute;
    right: -37px;
    top: 5px;
    width: 17px;
    height: 21px;
    background: url(../img/arrow-for-types.svg) no-repeat 50%;
    background-size: contain
}

#banner {
    padding: 0
}

#banner .img_wrapper {
    display: flex;
    height: 150px;
    position: relative;
    overflow: hidden
}

#banner .img_wrapper img {
    position: absolute;
    width: auto;
    height: auto
}

#banner .img_wrapper img:first-child {
    width: 100%;
    height: auto;
    z-index: 1
}

#banner .img_wrapper img:nth-child(2) {
    width: 1200px;
    height: auto
}

.items_section_general {
    padding: 40px 0
}

.items_section_general.alt {
    background-color: #f1f1f1
}

.items_section_general .h1 {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase
}

.items_section_general .grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr)
}

.items_section_general .btn {
    margin: 20px auto auto
}

.item {
    display: block;
    text-decoration: none;
    position: relative
}

.item .img_wrapper {
    position: relative;
    height: 43vw
}

.item .img_wrapper img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover
}

.item .img_wrapper img:first-child {
    display: block;
    z-index: 1
}

.item .img_wrapper img:last-child {
    display: block;
    z-index: 0
}

.item:hover .img_wrapper img:first-child {
    z-index: 0
}

.item:hover .price {
    color: #fc4f3b
}

.item.alone .img_wrapper img {
    display: block
}

.item.alone:hover .img_wrapper img:first-child {
    display: block
}

.item .title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px
}

.item .price {
    font-size: 16px;
    margin-top: 10px
}

.item .fav {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    background: url(../img/star-usual.svg) no-repeat 50%;
    background-size: contain;
    z-index: 1
}

.item .fav.infav {
    background: url(../img/star-hovered.svg) no-repeat 50%
}

.news_section_general .h1 {
    text-transform: uppercase;
    font-weight: 700;
    text-align: center
}

.news_section_general .grid {
    display: grid;
    gap: 40px
}

.news_section_general .grid a {
    display: block;
    text-decoration: none
}

.news_section_general .grid a:hover .title {
    color: #fc4f3b
}

.news_section_general .grid a .img_wrapper {
    height: auto
}

.news_section_general .grid a .date {
    opacity: .5;
    font-size: 12px;
    margin: 10px 0
}

.news_section_general .grid a .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px
}

.news_section_general .grid a .pretitle {
    font-size: 14px;
    opacity: .8
}

.news_section_general .btn {
    margin: 20px auto auto
}

.ceo_general {
    background-color: #f1f1f1
}

.ceo_general .h1 {
    text-transform: uppercase;
    font-weight: 700
}

.ceo_general .list_benefits {
    margin-top: 20px
}

.ceo_general .list_benefits ul {
    display: grid;
    gap: 20px
}

.ceo_general .list_benefits ul li {
    background: url(../img/arrow-list.svg) no-repeat left top 5px;
    padding-left: 20px
}

footer {
    flex: 0 0 auto;
    background: #252525;
    padding: 40px 0
}

footer .row>.ls {
    width: 100%
}

footer .row>.ls .logo {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center
}

footer .row>.ls .logos_list {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px
}

footer .row>.ms {
    width: 100%
}

footer .row>.ms .grid {
    margin-top: 30px
}

footer .row>.ms .grid>li {
    margin-top: 10px;
    text-align: center
}

footer .row>.ms .grid>li.opened ul {
    display: grid
}

footer .row>.ms .grid>li .title {
    font-weight: 600;
    color: #fff;
    font-size: 16px
}

footer .row>.ms .grid>li a {
    color: #b1b1b1;
    text-decoration: none;
    font-size: 14px
}

footer .row>.ms .grid>li ul {
    display: none
}

footer .row>.rs {
    color: #fff;
    margin-top: 40px;
    width: 100%;
    text-align: center
}

footer .row>.rs a {
    color: #fff;
    text-decoration: none
}

footer .row>.rs .title {
    font-weight: 600;
    color: #fff;
    font-size: 16px
}

footer .row>.rs p {
    margin: 0
}

footer .row>.rs .h1_mx {
    margin: 0 0 10px;
    font-weight: 700;
    padding-right: 30px;
    font-size: 24px;
    text-align: left;
    color: #000
}

footer .row>.rs .pretitle_mx {
    text-align: left;
    color: #000
}

footer .row>.rs .addr {
    width: 100%;
    display: grid;
    font-size: 14px;
    opacity: .7
}

footer .row>.rs .socs {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 3px
}

footer .row>.rs .socs a {
    display: flex;
    align-items: center;
    justify-content: center
}

footer .row>.rs .btn {
    border: 2px solid #fff;
    margin: 20px auto
}

footer .row>.bs {
    color: #a7a7a7;
    font-size: 12px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px
}

footer .row>.bs p {
    margin: 0;
    width: 100%
}

footer .row>.bs a {
    color: #fff;
    text-decoration: none
}

#bredcrumbs {
    padding: 0
}

#bredcrumbs .inner {
    width: 100%;
    display: flex;
    justify-content: center
}

#bredcrumbs .inner a {
    font-size: 14px;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center
}

#bredcrumbs .inner a:first-child {
    font-weight: 700;
    color: #3e3e3e
}

#bredcrumbs .inner a:last-child:after {
    display: none
}

#bredcrumbs .inner a:after {
    content: "→";
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px
}

.catalog_view {
    width: 100%
}

.catalog_view .filter {
    width: 100%;
    margin-bottom: 20px
}

.catalog_view .filter .show_filters_mobile {
    display: flex;
    align-items: center;
    border: none;
    background: none;
    margin: 10px 0;
    padding: 0
}

.catalog_view .filter .show_filters_mobile img {
    margin-right: 10px;
    width: 20px
}

.catalog_view .filter .filter_type {
    display: block
}

.catalog_view .filter .filter_type.show .title {
    border-bottom: none
}

.catalog_view .filter .filter_type.show .title img {
    transform: rotate(90deg)
}

.catalog_view .filter .filter_type.show .filter_items {
    display: grid;
    padding-bottom: 10px;
    border-bottom: 1px solid #dad9d9;
    max-height: 150px;
    overflow: scroll
}

.catalog_view .filter .filter_type:first-child .title {
    border-top: 1px solid #dad9d9
}

.catalog_view .filter .filter_type .title {
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dad9d9;
    height: 40px;
    font-size: 14px
}

.catalog_view .filter .filter_type .title img {
    width: 15px;
    height: 15px;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

.catalog_view .filter .filter_type .filter_items {
    display: none;
    gap: 5px
}

.catalog_view .filter .filter_type .filter_items .input_wrapper {
    margin: 0
}

.catalog_view .filter .filter_type .filter_items input {
    display: none
}

.catalog_view .filter .filter_type .filter_items input:checked~label:after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    border-radius: 3px;
    border: 2px solid #fc4f3b;
    transform: scale(.3);
    background: #fc4f3b
}

.catalog_view .filter .filter_type .filter_items label {
    display: block;
    position: relative;
    padding-left: 25px;
    font-size: 14px
}

.catalog_view .filter .filter_type .filter_items label:before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    border-radius: 3px;
    background: #fff;
    border: 2px solid #d7d7d7
}

.catalog_view .filter.show .filter_type {
    display: block
}

.catalog_view .h1 {
    text-align: center;
    font-weight: 700;
    margin-top: 0
}

.catalog_view .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.pagging {
    padding: 30px 0
}

.pagging ul {
    width: 100%;
    gap: 5px
}

.pagging ul,
.pagging ul li a {
    display: flex;
    align-items: center;
    justify-content: center
}

.pagging ul li a {
    text-decoration: none;
    min-width: 28px
}

.pagging ul li.current a {
    border: 1px solid #252525;
    border-radius: 3px
}

.pagging ul li.right img {
    transform: rotate(180deg)
}

.catalog_description {
    text-align: center
}

.catalog_description .h1 {
    font-weight: 700
}

.catalog_description ul {
    list-style-type: disc
}

.catalog_description ol {
    display: grid;
    gap: 10px;
    padding-left: 20px
}

.catalog_description ol li {
    text-align: left
}

.catalog_description ol li::marker {
    margin-left: 20px;
    left: 20px;
    position: relative
}

.section_items_short.alt {
    background: #f1f1f1
}

.item_view .ls {
    width: 100%
}

.item_view .ls .item_gallery {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
    position: relative
}

.item_view .ls .item_gallery .swiper-button-prev {
    background: #e8e8e8;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    top: auto;
    bottom: 0;
    left: calc(50% - 54px)
}

.item_view .ls .item_gallery .swiper-button-next {
    background: #e8e8e8;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    top: auto;
    bottom: 0;
    left: calc(50% + 10px)
}

.item_view .ls .item_gallery .img_wrapper {
    height: 92vw
}

.item_view .ls .item_gallery .img_wrapper iframe {
    width: 100%;
    height: 100%
}

.item_view .rs .ts h1 {
    display: block;
    margin-bottom: 20px
}

.item_view .rs .ts .raiting {
    display: flex;
    margin-bottom: 20px
}

.item_view .rs .ts .raiting .star {
    width: 14px;
    height: 14px;
    background: url(../img/star-yellow.svg) no-repeat 50%;
    background-size: contain
}

.item_view .rs .ts .raiting .star.gray {
    background: url(../img/star-gray.svg) no-repeat 50%;
    background-size: contain
}

.item_view .rs .parametrs .table {
    width: 100%
}

.item_view .rs .parametrs .table .r {
    display: flex;
    font-size: 14px;
    width: 100%;
    justify-content: space-between;
    position: relative
}

.item_view .rs .parametrs .table .r:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 1px;
    transform: translate(-50%, -50%);
    border-bottom: 1px dotted #d7d7d7;
    z-index: -1
}

.item_view .rs .parametrs .table .r>div {
    background-color: #fff
}

.item_view .rs .parametrs .table .r>div:first-child {
    font-weight: 700;
    padding-right: 10px
}

.item_view .rs .parametrs .table .r>div:last-child {
    padding-left: 10px
}

.item_view .rs .price_wrapper {
    margin: 20px 0;
    display: flex;
    justify-content: space-between
}

.item_view .rs .price_wrapper .get_cheaper {
    opacity: .6
}

.item_view .rs .price {
    font-size: 24px;
    font-weight: 600
}

.item_view .rs .buttons_wrapper .btn {
    width: 100%;
    margin-bottom: 20px
}

.item_view .rs .bottom_prescription {
    font-size: 14px;
    padding: 0;
    margin-bottom: 20px
}

.item_view .rs .bottom_prescription p {
    margin: 0
}

.item_view .baidges {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.item_view .baidges li .img_wrapper {
    width: 27px;
    height: 27px;
    margin: auto auto 5px
}

.item_view .baidges li p {
    font-size: 13px;
    line-height: normal;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center
}

.item_view .item_description {
    width: 100%
}

.item_view .item_description button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-family: ProximaNova;
    padding: 20px 0;
    text-transform: uppercase;
    border: 1px solid #d7d7d7;
    border-right: none;
    border-left: none;
    background: none;
    margin-top: -1px;
    color: #252525
}

.item_view .item_description button img {
    transition: all .4s cubic-bezier(.76, 0, .24, 1)
}

.item_view .item_description .inner_text {
    display: none
}

.item_view .item_description li.show button {
    border-bottom: none
}

.item_view .item_description li.show button img {
    transform: rotate(-180deg)
}

.item_view .item_description li.show .inner_text {
    display: block
}

.item_view .item_description li.show .inner_text p {
    font-size: 14px;
    color: #424242
}

.sizes_table_wrapper {
    position: fixed;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 15;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transform: translateX(-100vw);
    transition: all .4s cubic-bezier(.76, 0, .24, 1)
}

.sizes_table_wrapper.open {
    transform: translateX(0)
}

.sizes_table_wrapper .inner {
    background-color: #fff;
    padding: 20px;
    width: calc(100% - 40px);
    max-height: 100vh;
    overflow: scroll;
    max-width: 400px;
    position: relative
}

.sizes_table_wrapper .inner::-webkit-scrollbar {
    width: 5px
}

.sizes_table_wrapper .inner::-webkit-scrollbar-track {
    background: #f1f1f1
}

.sizes_table_wrapper .inner::-webkit-scrollbar-thumb {
    background: #888
}

.sizes_table_wrapper .inner::-webkit-scrollbar-thumb:hover {
    background: #555
}

.sizes_table_wrapper .inner button {
    position: absolute;
    width: 30px;
    height: 30px;
    border: none;
    padding: 0;
    background: none;
    right: 20px;
    top: 20px
}

.sizes_table_wrapper .inner button img {
    width: 100%;
    height: 100%
}

.sizes_table_wrapper .inner .h2 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-right: 50px
}

.sizes_table_wrapper .inner p {
    font-size: 14px
}

.sizes_table_wrapper .inner table {
    width: 100% !important;
    text-align: center;
    border-collapse: collapse;
    font-size: 13px
}

.sizes_table_wrapper .inner table thead tr th {
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    padding: 10px
}

.sizes_table_wrapper .inner table tbody tr {
    width: auto !important
}

.sizes_table_wrapper .inner table tbody tr:nth-child(odd) {
    background: #eee
}

.sizes_table_wrapper .inner table tbody tr td {
    width: auto !important;
    padding: 10px
}

#get_cheaper {
    position: fixed;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100vw);
    transition: all .4s cubic-bezier(.76, 0, .24, 1)
}

#get_cheaper.open {
    transform: translateX(0)
}

#get_cheaper .inner {
    background-color: #fff;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 400px;
    position: relative
}

#get_cheaper .inner button {
    position: absolute;
    width: 30px;
    height: 30px;
    border: none;
    padding: 0;
    background: none;
    right: 20px;
    top: 20px
}

#get_cheaper .inner button img {
    width: 100%;
    height: 100%
}

#get_cheaper .inner .h2 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-right: 50px
}

#get_cheaper .inner p {
    font-size: 14px
}

.section_items_short .h2 {
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    font-size: 30px;
    line-height: 100%;
    margin-bottom: 20px
}

.section_items_short .grid {
    display: grid;
    gap: 20px
}

.template_page {
    padding-top: 0
}

.template_page h1 {
    text-align: center
}

.template_page.about p {
    font-size: 14px
}

.template_page.contacts {
    padding-bottom: 0
}

.template_page.contacts h1 {
    text-align: left
}

.template_page.contacts .ls a {
    display: block
}

.template_page.contacts .ls a.insta {
    background: url(../img/insta-icon.svg) no-repeat 0;
    background-size: 20px;
    padding-left: 30px
}

.template_page.contacts .ls a.vk {
    background: url(../img/vk.png) no-repeat 0;
    background-size: 20px;
    padding-left: 30px
}

.template_page.contacts .ls a.telegram {
    background: url(../img/tme.png) no-repeat 0;
    background-size: 20px;
    padding-left: 30px
}

.template_page.contacts .map {
    margin-top: 40px;
    display: flex
}

.template_page.faq_page ul {
    width: 100%
}

.template_page.faq_page ul li {
    border-top: 1px solid #d7d7d7;
    padding: 20px 0
}

.template_page.faq_page ul li.open {
    padding-bottom: 20px
}

.template_page.faq_page ul li.open button img {
    transform: rotate(-180deg) scale(.7)
}

.template_page.faq_page ul li.open .answer {
    display: block
}

.template_page.faq_page ul li button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: ProximaNova;
    text-align: left;
    font-size: 16px;
    align-items: center;
    padding: 0;
    background: none;
    border: none
}

.template_page.faq_page ul li button img {
    margin-left: 20px;
    transform: scale(.7);
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

.template_page.faq_page ul li .answer {
    margin-top: 20px;
    display: none;
    color: #7d7d7d
}

.template_page.repl_page .repl_slider {
    padding-bottom: 50px;
    position: relative;
    overflow: hidden
}

.template_page.repl_page .repl_slider .swiper-slide {
    text-align: center
}

.template_page.repl_page .repl_slider .swiper-slide .ts .title {
    font-size: 28px;
    margin-bottom: 10px
}

.template_page.repl_page .repl_slider .swiper-slide .ts .soc {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .5
}

.template_page.repl_page .repl_slider .swiper-slide .ts .soc img {
    margin-right: 5px;
    width: 20px;
    height: 20px
}

.template_page.repl_page .repl_slider .swiper-slide .ts .subscribers {
    opacity: .5
}

.template_page.repl_page .repl_slider .swiper-slide .video {
    margin: 20px 0
}

.template_page.repl_page .repl_slider .swiper-slide .video a {
    position: relative;
    display: flex
}

.template_page.repl_page .repl_slider .swiper-slide .video a:hover:before {
    transform: translate(-50%, -50%) scale(1.1)
}

.template_page.repl_page .repl_slider .swiper-slide .video a:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    background: url(../img/play-video.svg) no-repeat 50%;
    background-size: contain;
    transition: all .3s cubic-bezier(.76, 0, .24, 1)
}

.template_page.repl_page .repl_slider .swiper-slide .message {
    opacity: .5
}

.template_page.repl_page .repl_slider .swiper-slide .bag {
    margin-top: 10px
}

.template_page.repl_page .repl_slider .swiper-slide .bag .title {
    font-weight: 700;
    margin-bottom: 10px
}

.template_page.repl_page .repl_slider .swiper-slide .bag .item {
    opacity: .5
}

.template_page.repl_page .repl_slider .swiper-button-next,
.template_page.repl_page .repl_slider .swiper-button-prev {
    top: 55px
}

.template_page.repl_page .repl_slider .img_wrapper {
    width: 280px;
    margin: auto
}

.template_page.blog_list_page .grid,
.template_page.sale_list_page .grid {
    display: grid;
    gap: 40px;
    margin-top: 20px
}

.template_page.blog_list_page .grid a,
.template_page.sale_list_page .grid a {
    text-decoration: none
}

.template_page.blog_list_page .grid a.ended,
.template_page.sale_list_page .grid a.ended {
    opacity: .4
}

.template_page.blog_list_page .grid a.ended .img_wrapper img,
.template_page.sale_list_page .grid a.ended .img_wrapper img {
    -webkit-filter: saturate(0);
    filter: saturate(0)
}

.template_page.blog_list_page .grid a:hover .title,
.template_page.sale_list_page .grid a:hover .title {
    color: #fc4f3b
}

.template_page.blog_list_page .grid a .date,
.template_page.sale_list_page .grid a .date {
    opacity: .5;
    font-size: 12px;
    margin: 5px 0
}

.template_page.blog_list_page .grid a .title,
.template_page.sale_list_page .grid a .title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px
}

.template_page.blog_list_page .grid a .pretitle,
.template_page.sale_list_page .grid a .pretitle {
    font-size: 14px;
    opacity: .8
}

.template_page.blog_list_page .grid .img_wrapper,
.template_page.sale_list_page .grid .img_wrapper {
    height: auto
}

.template_page.blog_view_page h1,
.template_page.sales_view_page h1 {
    text-align: left;
    line-height: 100%
}

.template_page.blog_view_page .blog_page_slider,
.template_page.sales_view_page .blog_page_slider {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px
}

.template_page.blog_view_page .blog_page_slider img,
.template_page.sales_view_page .blog_page_slider img {
    width: 100%
}

.template_page.blog_view_page .date,
.template_page.sales_view_page .date {
    font-size: 12px;
    opacity: .5
}

.template_page.sales_view_page .date {
    color: #fc4f3b;
    opacity: 1;
    margin-bottom: 20px;
    font-size: 16px
}

.template_page.profile_page .order {
    margin-top: 20px;
    display: grid;
    gap: 20px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .07), 0 2px 4px rgba(0, 0, 0, .07), 0 4px 8px rgba(0, 0, 0, .07), 0 8px 16px rgba(0, 0, 0, .07), 0 16px 32px rgba(0, 0, 0, .07), 0 32px 64px rgba(0, 0, 0, .07);
    border-radius: 10px
}

.template_page.profile_page .order .item {
    display: flex
}

.template_page.profile_page .order .item img {
    width: 70px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 15px
}

.template_page.profile_page .order .item .rs .title {
    margin: 0
}

.template_page.profile_page .order .item .rs .count span:first-child {
    font-weight: 700
}

.template_page.profile_page .order .item .rs .price {
    margin: 0
}

.template_page.profile_page .order .item .rs .price span:first-child {
    font-weight: 700
}

.template_page.profile_page .order .date {
    text-align: center;
    font-size: 14px;
    opacity: .5;
    border-top: 1px solid rgba(0, 0, 0, .409);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    line-height: normal
}

.template_page.profile_page .controls {
    display: flex;
    justify-content: space-around
}

.template_page.profile_page .controls button {
    background: none;
    border: none;
    font-family: ProximaNova;
    font-size: 16px
}

.template_page.profile_page .controls button.current {
    font-weight: 700;
    border-bottom: 1px solid #000
}

.template_page.profile_page .tabs .tab {
    display: none
}

.template_page.profile_page .tabs .tab.current {
    display: block
}

.template_page.sizes_page table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    font-size: 13px
}

.template_page.sizes_page table thead tr th {
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    padding: 10px
}

.template_page.sizes_page table tbody tr:nth-child(odd) {
    background: #eee
}

.template_page.sizes_page table tbody tr td {
    padding: 10px
}

.template_page.search_page form {
    position: relative
}

.template_page.search_page form input[type=search] {
    width: 100%;
    margin: 0;
    border: none;
    padding-left: 20px;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .07), 0 2px 4px rgba(0, 0, 0, .07), 0 4px 8px rgba(0, 0, 0, .07), 0 8px 16px rgba(0, 0, 0, .07), 0 16px 32px rgba(0, 0, 0, .07), 0 32px 64px rgba(0, 0, 0, .07)
}

.template_page.search_page form button[type=submit] {
    border: none;
    background: #fff;
    position: absolute;
    right: 10px;
    top: 14px
}

.template_page.search_page .search_results .desc {
    font-size: 12px;
    margin: 20px 0
}

.template_page.search_page .search_results .items .item {
    position: relative;
    padding-left: 115px;
    min-height: 100px
}

.template_page.search_page .search_results .items .item .img_wrapper {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0
}

.template_page.search_page .search_results .items .item .img_wrapper img {
    -o-object-fit: cover;
    object-fit: cover
}

.template_page.F0F .page_data p {
    text-align: center
}

.template_page.F0F .page_data .btn {
    margin: auto
}

.item .bages {
    position: absolute;
    padding: 5px;
    font-size: 12px;
    height: 35vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    align-content: flex-start
}

.item .bages div {
    display: inline-block;
    flex-shrink: 0;
    padding: 0 10px;
    border-radius: 5px;
    font-weight: 700;
    height: 15px;
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    z-index: 3
}

.item .bages .topselling {
    border: 1px solid orange;
    background: orange
}

.item .bages .new {
    background: linear-gradient(45deg, #00c6ff, #a903ff);
    color: #fff
}

.item .bages .sale {
    background: linear-gradient(45deg, #f05, red);
    color: #fff
}

.grid {
    display: block
}

.page_data {
    margin-top: 20px;
    width: 100%
}

.page_data img {
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: auto !important;
    height: auto !important
}

.input_wrapper {
    margin: 10px 0
}

.input_wrapper select {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    padding: 0 15px;
    border: 2px solid #dadada
}

body.repl .fancybox__content {
    height: calc(100vh - 30px) !important
}

@media (min-width:610px) {
    .grid {
        display: flex
    }

    #burger:checked~.menu {
        background: rgba(0, 0, 0, .2);
        backdrop-filter: blur(3px)
    }

    #header .logo {
        margin-left: auto;
        margin-right: auto
    }

    #header .logo img {
        padding-left: 72px
    }

    #header .menu {
        width: 100%;
        padding: 0;
        background: transparent
    }

    #header .menu .inner_wrapper {
        padding: 100px 15px 200px calc(50vw - 300px);
        box-shadow: 0 1px 2px rgba(0, 0, 0, .07), 0 2px 4px rgba(0, 0, 0, .07), 0 4px 8px rgba(0, 0, 0, .07), 0 8px 16px rgba(0, 0, 0, .07), 0 16px 32px rgba(0, 0, 0, .07), 0 32px 64px rgba(0, 0, 0, .07);
        background: #fff;
        height: auto;
        width: 50%;
        overflow: visible
    }

    #header .orders {
        background: transparent;
        width: 100vw;
        padding: 0;
        position: fixed
    }

    #header .orders .inner_wrapper {
        background: #fff;
        box-shadow: 0 100px 80px rgba(0, 0, 0, .07), 0 41.7776px 33.4221px rgba(0, 0, 0, .07), 0 22.3363px 17.869px rgba(0, 0, 0, .0178832), 0 12.5216px 10.0172px rgba(0, 0, 0, .015), 0 6.6501px 5.32008px rgba(0, 0, 0, .0121168), 0 2.76726px 2.21381px rgba(0, 0, 0, .00843437);
        width: 50%;
        height: 100%;
        position: absolute;
        left: 50%;
        padding: 30px;
        overflow: scroll
    }

    #header .orders.open {
        background: rgba(0, 0, 0, .2);
        backdrop-filter: blur(3px)
    }

    .loging_wrapper .popup {
        width: 400px
    }

    .sizes_table_wrapper {
        align-items: center
    }

    .sizes_table_wrapper .inner {
        height: 100vh;
        max-height: 600px
    }

    footer .row>.ms .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 0
    }

    footer .row>.ms .grid>li {
        text-align: left
    }

    footer .row>.ms .grid>li ul {
        display: block
    }

    footer .row>.rs {
        width: 50%;
        text-align: left
    }

    footer .row>.rs .btn {
        width: -moz-fit-content;
        width: fit-content;
        margin: 20px 0 0
    }

    footer .row>.bs {
        width: 50%;
        margin-top: 40px;
        text-align: left;
        display: block
    }

    footer .row>.bs a {
        display: block
    }

    #hero {
        position: relative;
        padding: 0;
        z-index: 0
    }

    #hero .hero_slider {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        overflow: hidden
    }

    #hero .hero_slider .swiper-slide .img_wrapper {
        height: auto
    }

    #hero .hero_slider .swiper-slide .img_wrapper img:first-child {
        display: block
    }

    #hero .hero_slider .swiper-slide .img_wrapper img:last-child {
        display: none
    }

    #itemtype {
        width: 100%
    }

    #itemtype .h1 {
        text-transform: uppercase;
        font-weight: 700;
        text-align: center
    }

    #itemtype .grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    #itemtype .grid .img_wrapper {
        display: flex
    }

    #itemtype .grid .img_wrapper img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    #itemtype .grid a {
        text-decoration: none;
        display: block
    }

    #itemtype .grid .title {
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 25px;
        margin-top: 5px;
        position: relative
    }

    #itemtype .grid .title:before {
        content: "";
        position: absolute;
        right: -27px;
        top: 4px;
        width: 17px;
        height: 21px;
        background: url(../img/arrow-for-types.svg) no-repeat 50%;
        background-size: contain
    }

    #banner {
        padding: 0
    }

    #banner .img_wrapper {
        display: flex;
        height: 200px;
        position: relative;
        overflow: hidden
    }

    #banner .img_wrapper img {
        position: absolute;
        width: auto;
        height: auto
    }

    #banner .img_wrapper img:first-child {
        width: 400px;
        left: calc(50% - 200px);
        height: auto;
        z-index: 1
    }

    #banner .img_wrapper img:nth-child(2) {
        width: 1200px;
        height: auto
    }

    .items_section_general .grid,
    .news_section_general .grid {
        margin-top: 20px;
        grid-template-columns: repeat(2, 1fr)
    }

    .ceo_general .h1 {
        line-height: 150%
    }

    .pagging {
        padding: 40px 0
    }

    #bredcrumbs {
        padding: 20px 0
    }

    .item_view .rs .ts h1 {
        text-align: center
    }

    .item_view .rs .ts .raiting {
        justify-content: center
    }

    .item_view .rs .price_wrapper {
        display: flex;
        justify-content: space-between
    }

    .item_view .rs .buttons_wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px
    }

    .item_view .baidges {
        justify-content: center;
        width: 100%;
        margin: 10px 0
    }

    .section_items_short .grid {
        width: 100%;
        grid-template-columns: repeat(3, 1fr)
    }

    .template_page {
        padding-top: 0
    }

    .template_page h1 {
        text-align: center;
        line-height: normal
    }

    .template_page.about p {
        font-size: 16px
    }

    .template_page.repl_page .repl_slider {
        padding-bottom: 50px;
        position: relative;
        overflow: hidden
    }

    .template_page.repl_page .repl_slider .swiper-slide {
        text-align: left;
        padding-left: 200px
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts .title {
        font-size: 28px;
        margin-bottom: 10px
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts .soc {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        opacity: .5
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts .soc img {
        margin-right: 5px;
        width: 20px;
        height: 20px
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts .subscribers {
        opacity: .5;
        margin-bottom: 20px
    }

    .template_page.repl_page .repl_slider .swiper-slide .video {
        position: absolute;
        margin: 0;
        height: 100%;
        top: 0;
        left: 0;
        width: 200px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .template_page.repl_page .repl_slider .swiper-slide .video a {
        position: relative;
        display: flex;
        max-height: 100%;
        width: 100%
    }

    .template_page.repl_page .repl_slider .swiper-slide .video a:hover:before {
        transform: translate(-50%, -50%) scale(1.1)
    }

    .template_page.repl_page .repl_slider .swiper-slide .video a:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 50px;
        height: 50px;
        transform: translate(-50%, -50%);
        background: url(../img/play-video.svg) no-repeat 50%;
        background-size: contain;
        transition: all .3s cubic-bezier(.76, 0, .24, 1)
    }

    .template_page.repl_page .repl_slider .swiper-slide .video a .img_wrapper {
        height: auto
    }

    .template_page.repl_page .repl_slider .swiper-slide .message {
        opacity: .5
    }

    .template_page.repl_page .repl_slider .swiper-slide .bag {
        margin-top: 10px
    }

    .template_page.repl_page .repl_slider .swiper-slide .bag .title {
        font-weight: 700;
        margin-bottom: 10px
    }

    .template_page.repl_page .repl_slider .swiper-slide .bag .item {
        opacity: .5
    }

    .template_page.repl_page .repl_slider .swiper-button-next,
    .template_page.repl_page .repl_slider .swiper-button-prev {
        top: auto;
        bottom: 0
    }

    .template_page.profile_page .container {
        width: 600px
    }

    .template_page.F0F .page_data .btn {
        width: -moz-fit-content;
        width: fit-content;
        margin: auto
    }

    .custom_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .custom_grid .img_wrapper {
        display: flex;
        height: 300px
    }

    .custom_grid .img_wrapper img {
        -o-object-fit: cover;
        object-fit: cover
    }

    .item .bages {
        height: 240px;
        gap: 5px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 100%;
        align-content: flex-start
    }

    .item .bages div {
        height: 19px
    }

    .item .img_wrapper {
        height: 260px
    }

    body.repl .fancybox__content {
        height: auto !important;
        min-height: 300px !important
    }
}

@media (min-width:1170px) {
    .h1 {
        margin-bottom: 40px
    }

    #header {
        padding: 20px 0 0;
        position: fixed
    }

    #header:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 120px;
        background: #fff;
        box-shadow: 0 2px 4px 0 hsla(0, 0%, 65.9%, .2);
        top: 0;
        left: 0
    }

    #header .container .row {
        position: relative
    }

    #header .logo {
        position: absolute;
        display: grid;
        top: 0;
        text-decoration: none;
        width: 155px;
        z-index: 2
    }

    #header .logo img {
        padding: 0;
        width: 100%;
        height: auto;
        margin-bottom: 5px
    }

    #header .logo .subtitle {
        display: block;
        font-size: 12px;
        width: 100%;
        color: #000;
        text-align: center
    }

    #header .rs {
        position: absolute;
        right: 0;
        z-index: 2;
        top: 36px
    }

    #header .rs .search {
        position: absolute;
        top: -40px
    }

    #header .menu {
        width: 100%;
        height: auto;
        display: block;
        position: relative;
        overflow: visible;
        z-index: 1
    }

    #header .menu .inner_wrapper {
        height: auto;
        padding: 0;
        width: auto;
        overflow: visible;
        background: none;
        box-shadow: none;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    #header .menu .inner_wrapper .new_lk_button {
        position: absolute;
        z-index: 2;
        right: 150px;
        top: -2px;
        font-size: 14px;
        padding: 4px 10px
    }

    #header .menu .inner_wrapper .new_lk_button:hover {
        background: #000;
        color: #fff
    }

    #header .menu .top_menu {
        display: flex;
        align-items: center;
        padding: 0 100px;
        gap: 20px
    }

    #header .menu .top_menu>li {
        border-top: none;
        border-bottom: none
    }

    #header .menu .top_menu>li a {
        font-size: 14px
    }

    #header .menu .top_menu>li>a {
        padding-top: 10px;
        padding-bottom: 10px
    }

    #header .menu .top_menu>li>ul {
        position: absolute;
        margin: 0
    }

    #header .menu .top_menu>li:hover>ul {
        display: block;
        background: #fff;
        box-shadow: -3px 4px 15px 4px hsla(0, 0%, 65.9%, .2);
        margin: 0 0 0 -20px;
        padding: 10px 20px 20px
    }

    #header .menu .top_menu>li:hover>ul li a {
        font-size: 14px
    }

    #header .menu .top_menu>li:first-child>ul {
        width: 100%;
        transform: translateX(-50%);
        left: calc(50% + 20px);
        min-height: 300px;
        padding: 30px 20px
    }

    #header .menu .top_menu>li:first-child>ul:before {
        content: "";
        position: absolute;
        left: 0;
        top: -40px;
        width: 450px;
        height: 50px;
        background: none
    }

    #header .menu .top_menu>li:first-child>ul>li>a {
        width: 200px
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper {
        border-left: 1px solid #bebebe;
        width: calc(100% - 250px);
        position: absolute;
        left: 250px;
        top: 0;
        padding: 15px;
        background: #fff;
        height: 300px;
        overflow-y: scroll;
        display: none
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper::-webkit-scrollbar {
        width: 3px;
        height: 10px
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom right, #1b1b1b 0, #101010);
        border-radius: 5px
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper::-webkit-scrollbar-track {
        background-color: #ebebeb
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper::-webkit-scrollbar-button {
        background-color: #4e4e4e;
        border-radius: 5px
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper>ul {
        width: 100%;
        height: auto;
        -moz-columns: 200px;
        columns: 200px;
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: block
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper>ul>li {
        -moz-column-break-inside: avoid;
        break-inside: avoid;
        padding: 0;
        margin: 0 0 30px
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper>ul>li a:hover {
        color: #fc4f3b
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper>ul>li>a:after {
        display: none
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper>ul>li>ul {
        display: block
    }

    #header .menu .top_menu>li:first-child>ul>li>.scroll_wrapper>ul>li>ul>li>a {
        font-weight: 400;
        font-size: 13px
    }

    #header .menu .top_menu>li:first-child>ul>li.selected>.scroll_wrapper {
        display: block
    }

    #header .menu .top_menu>li:first-child>ul>li:hover>a {
        text-decoration: underline
    }

    #header .menu .top_menu>li:first-child>ul>li:hover>.scroll_wrapper {
        display: block
    }

    #header .menu .top_menu>li:first-child>ul>li:hover>.scroll_wrapper>ul {
        display: block
    }

    #header .menu .top_menu>li.has_children>a {
        padding-right: 20px
    }

    #header .menu .top_menu>li.has_children>a:after {
        transform: translateY(-50%);
        background-image: url(../img/arrow-menu-desktop.svg);
        width: 10px;
        height: 10px
    }

    #header .menu .top_menu>li.has_children>ul {
        min-width: 200px
    }

    #header .menu .top_menu>li.has_children:hover>ul {
        padding: 15px
    }

    #header .menu .bottom_menu {
        display: flex;
        gap: 20px;
        margin-top: -15px
    }

    #header .menu .bottom_menu>li {
        border-top: none;
        border-bottom: none
    }

    #header .menu .bottom_menu>li:first-child {
        border-top: none;
        border-bottom: none
    }

    #header .menu .bottom_menu>li a img {
        display: none
    }

    #header .menu .bottom_menu>li>ul {
        position: absolute;
        margin: 0
    }

    #header .menu .bottom_menu>li:hover>ul {
        display: block;
        background: #fff;
        box-shadow: 0 2px 4px 0 hsla(0, 0%, 65.9%, .2);
        margin: 0 0 0 -20px;
        padding: 10px 20px 20px
    }

    #header .menu .bottom_menu>li:hover>ul li a {
        font-size: 14px
    }

    #header .menu .ts {
        position: absolute;
        width: 100%;
        z-index: 1;
        top: 0;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        padding-left: 273px;
        padding-right: 40px;
        gap: 40px;
        transform: none;
        line-height: normal;
        font-size: 12px
    }

    #header .menu .ts .addr {
        margin: 0;
        width: 190px;
        flex-shrink: 0
    }

    #header .menu .ts .phones {
        margin: 0;
        flex-shrink: 0;
        display: flex;
        gap: 30px
    }

    #header .menu .ts .phones a {
        flex-shrink: 0
    }

    #header .menu .ts .mail {
        margin: 0
    }

    #header .menu .ts .socs {
        margin-left: 120px
    }

    #header .menu .ts .socs a img {
        width: 24px
    }

    #header .orders .inner_wrapper {
        width: 500px;
        left: auto;
        right: 0
    }

    #fav_tab_trigger {
        bottom: auto;
        top: 59px;
        left: calc(50% + 526px);
        background-size: 26px;
        z-index: 4;
        width: 30px;
        height: 30px;
        background: none;
        opacity: 1
    }

    #fav_tab_trigger:before {
        display: none
    }

    #fav_tab_trigger svg {
        left: 0;
        top: 3px;
        position: absolute;
        width: 24px;
        height: 24px
    }

    #fav_tab_trigger svg path {
        stroke-width: 2
    }

    main {
        padding-top: 130px
    }

    footer .row>.ls {
        width: 20%
    }

    footer .row>.ls .logo {
        justify-content: flex-start
    }

    footer .row>.ls .logo img {
        width: 130px
    }

    footer .row>.ls .logos_list {
        gap: 10px;
        display: grid;
        justify-content: flex-start;
        margin: 40px 0 0
    }

    footer .row>.ls .logos_list.alt {
        display: flex
    }

    footer .row>.ms {
        width: 60%
    }

    footer .row>.ms .grid>li {
        margin: 0
    }

    footer .row>.ms .grid>li .title {
        margin-bottom: 20px
    }

    footer .row>.rs {
        width: 20%;
        margin: 0
    }

    footer .row>.rs .title {
        margin-bottom: 20px
    }

    footer .row>.rs .addr {
        grid-template-rows: repeat(5, 26px)
    }

    footer .row>.bs {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px
    }

    footer .row>.bs p {
        width: auto
    }

    #hero {
        padding-top: 20px
    }

    #hero .hero_slider .swiper-slide .img_wrapper {
        height: auto
    }

    #hero .hero_slider .swiper-slide .img_wrapper img:first-child {
        display: block
    }

    #hero .hero_slider .swiper-slide .img_wrapper img:last-child {
        display: none
    }

    #itemtype {
        width: 100%
    }

    #itemtype .h1 {
        text-transform: uppercase;
        font-weight: 700;
        text-align: center
    }

    #itemtype .grid {
        margin-top: 10px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }

    #itemtype .grid .img_wrapper {
        display: flex
    }

    #itemtype .grid .img_wrapper img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    #itemtype .grid a {
        text-decoration: none;
        display: block
    }

    #itemtype .grid .title {
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 30px;
        margin-top: 25px;
        position: relative
    }

    #itemtype .grid .title:before {
        content: "";
        position: absolute;
        right: -35px;
        top: 7px;
        width: 21px;
        height: 21px;
        background: url(../img/arrow-for-types.svg) no-repeat 50%;
        background-size: contain
    }

    #banner {
        padding: 0
    }

    #banner .img_wrapper {
        display: flex;
        height: 200px;
        position: relative;
        overflow: hidden
    }

    #banner .img_wrapper img {
        position: absolute;
        width: auto;
        height: auto
    }

    #banner .img_wrapper img:first-child {
        width: 600px;
        left: calc(50% - 300px);
        height: auto;
        z-index: 1
    }

    #banner .img_wrapper img:nth-child(2) {
        width: 100%;
        height: auto
    }

    .pagging {
        padding: 60px 0
    }

    .items_section_general .grid {
        margin-top: 20px;
        grid-template-columns: repeat(3, 1fr)
    }

    .items_section_general .item .img_wrapper {
        height: 370px
    }

    .news_section_general .grid {
        margin-top: 20px;
        grid-template-columns: repeat(2, 1fr)
    }

    .ceo_general .h1 {
        line-height: 100%
    }

    .ceo_general .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        margin-bottom: 20px
    }

    .ceo_general .grid .img_wrapper {
        height: auto;
        margin-top: 30px
    }

    .ceo_general .list_benefits {
        margin-bottom: 20px
    }

    .ceo_general .list_benefits ul {
        display: block;
        -moz-columns: 2;
        column-count: 2;
        gap: 60px
    }

    .ceo_general .list_benefits ul li {
        margin-bottom: 40px
    }

    .catalog_view .filter {
        width: 25%;
        padding-right: 40px
    }

    .catalog_view .filter .filter_type {
        display: block;
        margin-bottom: 20px
    }

    .catalog_view .filter .filter_type.show .title {
        border-bottom: 1px solid #dad9d9
    }

    .catalog_view .filter .filter_type.show .filter_items {
        border-bottom: none
    }

    .catalog_view .filter .filter_type .title {
        margin-bottom: 10px;
        height: 30px;
        border-bottom: 1px solid #dad9d9
    }

    .catalog_view .filter .filter_type .title img {
        display: none
    }

    .catalog_view .filter .filter_type .filter_items {
        display: grid;
        max-height: 150px;
        overflow: scroll
    }

    .catalog_view .grid {
        width: 75%;
        grid-template-columns: repeat(3, 1fr)
    }

    .item_view {
        padding: 0
    }

    .item_view .ls {
        width: 50%
    }

    .item_view .ls .item_gallery .img_wrapper {
        height: 570px
    }

    .item_view .rs {
        width: 50%;
        padding-left: 40px
    }

    .item_view .rs .ts {
        display: flex
    }

    .item_view .rs .ts h1 {
        text-align: left;
        line-height: normal;
        margin-top: 0;
        font-size: 26px
    }

    .item_view .rs .ts .raiting {
        align-items: center
    }

    .item_view .rs .ts .raiting .star {
        width: 20px;
        height: 20px
    }

    .item_view .rs .parametrs .table {
        display: grid;
        gap: 4px;
        margin-bottom: 20px
    }

    .item_view .rs .parametrs .table .r {
        font-size: 16px
    }

    .item_view .baidges {
        margin: 40px 0
    }

    .item_view .item_description button img {
        width: 10px
    }

    .item_view .item_description li.show .inner_text p {
        font-size: 16px
    }

    .template_page {
        padding-top: 0
    }

    .template_page h1 {
        text-align: center
    }

    .template_page.about p {
        font-size: 18px
    }

    .template_page.contacts .page_data {
        display: flex;
        gap: 40px;
        width: 70%;
        margin: auto
    }

    .template_page.contacts .mxform,
    .template_page.contacts p {
        padding-right: 100px
    }

    .template_page.contacts .ls,
    .template_page.contacts .rs {
        width: 50%
    }

    .template_page.repl_page .repl_slider {
        width: calc(100% - 100px);
        margin: 50px auto auto
    }

    .template_page.repl_page .repl_slider .swiper-slide {
        padding-left: 420px;
        padding-top: 100px;
        padding-bottom: 100px
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts .title {
        font-size: 48px;
        margin-top: 20px;
        width: 100%
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts .subscribers {
        margin-bottom: 0
    }

    .template_page.repl_page .repl_slider .swiper-slide .video {
        width: 500px
    }

    .template_page.repl_page .repl_slider .swiper-slide .message {
        padding-right: 200px
    }

    .template_page.repl_page .repl_slider .swiper-button-next,
    .template_page.repl_page .repl_slider .swiper-button-prev {
        top: 50%
    }

    .template_page.blog_list_page .grid,
    .template_page.sale_list_page .grid {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 20px
    }

    .template_page.blog_list_page .grid a,
    .template_page.sale_list_page .grid a {
        text-decoration: none
    }

    .template_page.blog_list_page .grid a .date,
    .template_page.sale_list_page .grid a .date {
        opacity: .5;
        font-size: 12px;
        margin: 5px 0
    }

    .template_page.blog_list_page .grid a .title,
    .template_page.sale_list_page .grid a .title {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px
    }

    .template_page.blog_list_page .grid a .pretitle,
    .template_page.sale_list_page .grid a .pretitle {
        font-size: 14px;
        opacity: .8
    }

    .template_page.blog_list_page .grid .img_wrapper,
    .template_page.sale_list_page .grid .img_wrapper {
        height: auto
    }

    .template_page.blog_list_page .grid .img_wrapper {
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .template_page.blog_list_page .grid .img_wrapper img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .template_page.blog_view_page .container,
    .template_page.podlinnost_page .container,
    .template_page.sales_view_page .container {
        width: 800px
    }

    .template_page.blog_view_page h1,
    .template_page.podlinnost_page h1,
    .template_page.sales_view_page h1 {
        text-align: left;
        line-height: 100%
    }

    .template_page.blog_view_page .blog_page_slider,
    .template_page.podlinnost_page .blog_page_slider,
    .template_page.sales_view_page .blog_page_slider {
        overflow: hidden;
        position: relative
    }

    .template_page.blog_view_page .date,
    .template_page.podlinnost_page .date,
    .template_page.sales_view_page .date {
        font-size: 12px;
        opacity: .5
    }

    .template_page.sales_view_page .date {
        color: #fc4f3b;
        opacity: 1;
        margin-bottom: 20px;
        font-size: 16px
    }

    .template_page.profile_page .container {
        width: 600px
    }

    .template_page.profile_page .order {
        margin-top: 20px;
        display: grid;
        gap: 20px;
        background: #fff;
        padding: 15px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .07), 0 2px 4px rgba(0, 0, 0, .07), 0 4px 8px rgba(0, 0, 0, .07), 0 8px 16px rgba(0, 0, 0, .07), 0 16px 32px rgba(0, 0, 0, .07), 0 32px 64px rgba(0, 0, 0, .07);
        border-radius: 10px
    }

    .template_page.profile_page .order .item {
        display: flex;
        width: 100%
    }

    .template_page.profile_page .order .item img {
        width: 70px;
        -o-object-fit: contain;
        object-fit: contain;
        margin-right: 15px
    }

    .template_page.profile_page .order .item .rs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px
    }

    .template_page.profile_page .order .item .rs .title {
        margin: 0;
        width: 100%
    }

    .template_page.profile_page .order .item .rs .count span:first-child {
        font-weight: 700
    }

    .template_page.profile_page .order .item .rs .price {
        margin: 0
    }

    .template_page.profile_page .order .item .rs .price span:first-child {
        font-weight: 700
    }

    .template_page.profile_page .order .date {
        text-align: center;
        font-size: 14px;
        opacity: .5;
        border-top: 1px solid rgba(0, 0, 0, .409);
        padding-top: 15px
    }

    .template_page.profile_page .controls {
        display: flex;
        justify-content: space-around
    }

    .template_page.profile_page .controls button {
        background: none;
        border: none;
        font-family: ProximaNova;
        font-size: 16px
    }

    .template_page.profile_page .controls button.current {
        font-weight: 700;
        border-bottom: 1px solid #000
    }

    .template_page.profile_page .tabs .tab {
        display: none
    }

    .template_page.profile_page .tabs .tab.current {
        display: block
    }

    .template_page.search_page .search_results .desc {
        font-size: 14px;
        margin: 20px 0
    }

    .template_page.search_page .search_results .items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px
    }

    .template_page.search_page .search_results .items .item {
        position: relative;
        padding-left: 115px;
        min-height: 100px
    }

    .template_page.search_page .search_results .items .item .img_wrapper {
        width: 100px;
        height: 100px;
        position: absolute;
        left: 0;
        top: 0
    }

    .custom_grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px
    }

    .custom_grid .img_wrapper {
        display: flex;
        height: 280px
    }

    .custom_grid .img_wrapper img {
        -o-object-fit: cover;
        object-fit: cover
    }

    .favor_tab {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 12;
        overflow-y: scroll;
        transform: translateX(100vw);
        background: rgba(0, 0, 0, .3);
        backdrop-filter: blur(3px);
        transition: all .4s cubic-bezier(.76, 0, .24, 1)
    }

    .favor_tab .inner {
        background: #fff;
        height: 100%;
        width: 350px;
        padding: 20px;
        position: absolute;
        right: 0;
        top: 0
    }

    .favor_tab .inner .h2 {
        font-weight: 700;
        border-bottom: 1px solid #d7d7d7;
        margin-bottom: 20px;
        padding-bottom: 20px
    }

    .favor_tab .inner #close_fav_tab {
        position: absolute;
        right: 20px;
        top: 20px;
        width: 25px;
        height: 25px;
        transform: rotate(45deg);
        background: none;
        border: none
    }

    .favor_tab .inner #close_fav_tab:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 1px;
        height: 100%;
        transform: translate(-50%, -50%);
        background: #000
    }

    .favor_tab .inner #close_fav_tab:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        height: 1px;
        transform: translate(-50%, -50%);
        background: #000
    }

    .favor_tab .inner ul {
        display: grid;
        gap: 20px
    }

    .favor_tab .inner ul li {
        position: relative
    }

    .favor_tab .inner ul li .delete_from_fav {
        position: absolute;
        right: 0;
        top: 0;
        width: 15px;
        height: 15px;
        transform: rotate(45deg);
        background: none;
        border: 1px solid #000;
        border-radius: 100%
    }

    .favor_tab .inner ul li .delete_from_fav:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 1px;
        height: 80%;
        transform: translate(-50%, -50%);
        background: #000
    }

    .favor_tab .inner ul li .delete_from_fav:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 80%;
        height: 1px;
        transform: translate(-50%, -50%);
        background: #000
    }

    .favor_tab .inner ul li a {
        display: flex;
        flex-wrap: wrap;
        text-decoration: none
    }

    .favor_tab .inner ul li .img_wrapper {
        width: 80px;
        height: 80px;
        border-radius: 5px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .favor_tab .inner ul li .wr {
        width: calc(100% - 80px);
        padding-left: 10px
    }

    .favor_tab .inner ul li .wr .title {
        font-weight: 700;
        text-decoration: underline;
        padding-right: 30px
    }

    .favor_tab .inner ul li .wr .id {
        text-align: right
    }

    .favor_tab .inner ul li .price {
        width: 100%;
        text-align: right;
        padding-left: 10px
    }

    .favor_tab.opened {
        transform: translateX(0)
    }
}

@media (min-width:1600px) {

    #header .menu .bottom_menu,
    #header .menu .top_menu {
        gap: 50px
    }

    #header .menu .ts {
        padding-left: 393px
    }

    #header .menu .ts .socs {
        margin-left: 227px
    }

    #fav_tab_trigger {
        left: calc(50% + 640px)
    }

    .catalog_view {
        padding-top: 30px
    }

    .catalog_view .row {
        flex-wrap: nowrap
    }

    .catalog_view .filter {
        width: 300px;
        padding-right: 40px
    }

    .catalog_view .grid {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px
    }

    .pagging {
        padding: 10px 0 100px
    }

    #bredcrumbs {
        padding: 40px 0
    }

    .template_page.faq_page ul {
        width: 100%
    }

    .template_page.faq_page ul li {
        border-top: 1px solid #d7d7d7;
        padding: 30px 0
    }

    .template_page.faq_page ul li.open {
        padding-bottom: 20px
    }

    .template_page.faq_page ul li.open button img {
        transform: rotate(-180deg) scale(.7)
    }

    .template_page.faq_page ul li.open .answer {
        display: block
    }

    .template_page.faq_page ul li button {
        width: 100%;
        display: flex;
        justify-content: space-between;
        font-family: ProximaNova;
        text-align: left;
        font-size: 16px;
        align-items: center;
        padding: 0;
        background: none;
        border: none
    }

    .template_page.faq_page ul li button img {
        margin-left: 20px;
        transform: scale(.7);
        transition: all .3s cubic-bezier(.76, 0, .24, 1)
    }

    .template_page.faq_page ul li .answer {
        margin-top: 20px;
        display: none;
        color: #7d7d7d
    }

    .template_page.repl_page .repl_slider {
        width: calc(100% - 100px);
        margin: 50px auto auto
    }

    .template_page.repl_page .repl_slider .swiper-slide {
        padding-left: 50%;
        padding-top: 100px;
        padding-bottom: 100px
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts .title {
        font-size: 48px;
        margin-top: 20px;
        width: 100%
    }

    .template_page.repl_page .repl_slider .swiper-slide .ts .subscribers {
        margin-bottom: 0
    }

    .template_page.repl_page .repl_slider .swiper-slide .video {
        width: 50%;
        padding-left: 200px
    }

    .template_page.repl_page .repl_slider .swiper-slide .message {
        padding-right: 200px
    }

    .template_page.repl_page .repl_slider .swiper-button-next,
    .template_page.repl_page .repl_slider .swiper-button-prev {
        top: 50%
    }

    .template_page.blog_list_page .grid,
    .template_page.sale_list_page .grid {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 40px
    }

    .custom_grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px
    }

    .custom_grid .img_wrapper {
        display: flex;
        height: 330px
    }

    .custom_grid .img_wrapper img {
        -o-object-fit: cover;
        object-fit: cover
    }

    .items_section_general .item .img_wrapper {
        height: 440px
    }
}

/* #header .logo img {
    height: 37px;
    margin-top: -14px;
    margin-left: -7px;
} */

.item_view .baidges {
    width: 100%;
}

.item_view .ls {
    position: relative;
}

.item_view .ls .fav {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    background: url(../img/star-usual.svg) no-repeat 50%;
    background-size: contain;
    z-index: 5;
}

.item_view .item_gallery .img_wrapper img {
    height: auto;
}

.item_view .ls .item_gallery .img_wrapper {
    height: auto;
}

#header .menu .ts .ur_addr {
    max-width: 290px;
    font-size: 16px;
    opacity: 1;
}

.item_view .fav.infav {
    background: url(../img/star-hovered.svg) no-repeat 50%;
}

#header .rs {
    gap: 40px;
}

#header .menu .ts {
    transform: translateY(230px);
}

#burger~.burger {
    transform: scale(1) translateX(0px);

}

#burger:checked~.burger {
    transform: scale(.7) translateX(-12px);
}

input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}


input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
    display: none;
}

input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.form_wrapper .rs {
    width: inherit;
    max-width: 100%;
    padding-left: 0;
}

.form_wrapper .rs .h1_mx {
    font-weight: bold;
    font-size: 24px;
}

@media (min-width: 610px) {
    #header .menu .inner_wrapper {
        padding: 100px 15px 250px calc(50vw - 300px);
    }
}

#fav_tab_trigger {
    width: 45px;
    height: 45px;
    opacity: 1;
    position: absolute;
    top: 17px;
    right: 28px;
    background: none;
}

#fav_tab_trigger .count {
    bottom: 4px;
    left: 12px;
}

@media (min-width: 610px) {
    #fav_tab_trigger {
        width: 45px;
        height: 45px;
        border: none;
        border-radius: 100%;
        position: fixed;
        top: 90px;
        left: auto;
        right: 0;
        transform: translateX(-50%);
        opacity: .8;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eeeeee;
    }

    #header .rs {
        gap: 0px;
    }

    #fav_tab_trigger .count {
        bottom: 1px;
        left: -1px;
    }

    #fav_tab_trigger svg {
        left: 10px;
        top: 12px;
        position: absolute;
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 1170px) {
    #header .menu .inner_wrapper {
        padding: 0;
    }

    #header .menu .ts {
        transform: none;
    }

    footer .row>.rs .addr {
        grid-template-rows: repeat(5, auto);
    }

    #header .menu .top_menu>li.has_children:hover>ul {
        padding: 15px;
        max-height: calc(100vh - 120px);
        overflow: scroll;
    }

    #header .menu .ts .ur_addr {
        display: none;
    }






    #header .menu .top_menu {
        display: flex;
        align-items: center;
        padding: 0 100px;
        gap: 20px;
    }

    #header .menu .inner_wrapper .new_lk_button {
        position: absolute;
        z-index: 2;
        right: 6px;
        top: -2px;
        font-size: 14px;
        padding: 4px 10px;
    }

    #header .rs .search {
        position: absolute;
        top: 2px;
        left: -70px;
    }

    #fav_tab_trigger {
        width: 45px;
        height: 45px;
        border: none;
        border-radius: 100%;
        position: absolute;
        top: 52px;
        left: calc(50% + 530px);
        right: 0;
        transform: translateX(-50%);
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eeeeee00;
    }

    #header .menu .ts .socs {
        margin-left: 12px;
        display: flex;
        gap: 9px;
    }

    #header:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 104px;
        background: #fff;
        box-shadow: 0 2px 4px 0 hsla(0, 0%, 65.9%, .2);
        top: 0;
        left: 0;
    }

    #header .menu .inner_wrapper {
        margin-top: 28px;
    }

    #fav_tab_trigger .count {
        bottom: 3px;
        left: 12px;
    }
}

@media (min-width: 1599px) {
    #fav_tab_trigger {
        left: calc(50% + 645px);
    }

    #header .menu .ts .socs {
        margin-left: 115px;
    }
}

/*# sourceMappingURL=style.css.map */