@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300..700&display=swap');


HTML,
BODY {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    background-image: url("/template/img/bg.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

BODY {
    background-color: #000;
    color: #fff;
}

* {
    font-family: "Mulish", sans-serif;
    box-sizing: border-box;
}

HTML {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

A {
    color: #fff;
    text-decoration: none;
}

IMG {
    vertical-align: middle;
}

A:hover {
    text-decoration: none;
    color: #7a202a;
}

.wrapper {
    position: relative;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.wrapper>.content {
    flex-grow: 1;
    padding: 160px 10px 10px 10px;
}

.wrapper>.content.home>.home>.slider {
    margin: 0 auto;
    max-width: 1520px;
}

.widther {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

/* Палитра */

.default-bg-gray {
    background-color: #1c1c1e;
    color: #fff;
}

.default-bg-gray-hover:hover {
    transition: background-color 0.3s linear;
    background-color: #3a3a3c;
}

.default-bg {
    background-color: #7a202a;
    color: #fff;
}

.default-bg-hover:hover {
    transition: background-color 0.3s linear;
    background-color: #cb1f12;
}

.default-color {
    color: #7a202a;
}

.default-padding {
    padding: 6px;
}

.default-border-radius {
    border-radius: 12px;
}

.default-shadow {
    box-shadow: -3px 8px 10px 2px rgba(0, 0, 0, 0.1);
}

.to-top {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background-image: url("/template/img/top.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28px;
    z-index: 2;
}

.to-top::after {
    font-size: 0.8em;
    font-weight: 500;
    display: block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Header */

.header .k-f {
    font-size: 1.6em;
    text-transform: uppercase;
    margin-left: 40px;
}

.header .k-f>a {
    padding: 10px;
    font-weight: bold;
}

.header .k-f>a:hover {
    text-decoration: underline;
}

.header .k-f>a.selected {
    color: #7a202a;
}

.header {
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.8);
}

.header>div.widther {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header .menu {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.header .menu ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    font-size: 1.1em;
}

.header .menu ul li {
    list-style: none;
    margin-left: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.header .cont {
    display: flex;
}

.header .cont>div {
    padding-left: 32px;
    line-height: 20px;
    background-position: left center;
    background-size: 20px;
    background-repeat: no-repeat;
}

.header .cont .phone {
    background-image: url("/template/img/phone.svg");
}

.header .cont .address {
    background-image: url("/template/img/address.svg");
    margin-left: 40px;
}

.header .logo {
    margin-top: 10px;
    width: 140px;
}

.header .logo img {
    width: 100%;
}

.header .catalogue-button {
    padding: 12px 20px 12px 40px;
    background-image: url("/template/img/menu_w.svg");
    background-position: left 16px center;
    background-size: 16px;
    background-repeat: no-repeat;
    margin: 0px 20px;
    cursor: pointer;
    text-transform: uppercase;
}

.header .catalogue-button.opened {
    background-image: url("/template/img/menu-close_w.svg");
}

.header .mobile-menu-button {
    display: none;
    background-image: url("/template/img/menu.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    width: 32px;
    min-width: 32px;
    height: 32px;
}

.header .mobile-menu-button.opened {
    background-image: url("/template/img/menu-close_w.svg");
    background-size: 22px;
}

.header>div.search-block {
    display: none;
}

.header .search {
    position: relative;
}

.header .search>form {
    position: relative;
    height: 46px;
    display: block;
}

.header .search>form>div {
    margin: 0px;
}

.header .search button {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    background-image: url("/template/img/search.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    width: 24px;
    height: 24px;
    z-index: 2;
}

.header .search input {
    padding: 12px 12px 12px 60px;
    font-size: 1em;
}

.header .search input:focus {
    position: absolute;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0px 8px 10px 2px rgba(34, 60, 80, 0.15);
}

.header .search .tip {
    background-color: #f3f6fb;
    position: absolute;
    top: 100%;
    margin-top: -9px;
    left: 0px;
    width: 100%;

    padding: 30px 20px 20px 20px;
    max-height: 600px;
    overflow-y: auto;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: 0px 8px 10px 2px rgba(34, 60, 80, 0.15);
}

.header .search .tip:empty {
    display: none;
}

.tip .search-history {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.tip .search-history:empty {
    display: none;
}

.tip .search-history>a {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
    padding-left: 26px;
}

.tip .search-history>a::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("/template/img/search.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.5;
    filter: grayscale();
}

.tip .search-items .item>div {
    background-color: transparent;
    border: 2px solid #E7EDF3;
    padding: 0px;
}

.tip .shop-items .item>div>div {
    padding: 5px 5px 2px 5px;
}

.tip .search-items .item .image {
    width: 64px;
    height: 64px;
    padding: 5px;

    min-width: auto;
    background-color: #fff;
    border-radius: 6px;
}

.tip .search-items .item .image img {
    border-radius: 6px;
}

.tip .search-items .price-cart>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tip .search-categories {
    display: flex;
    flex-wrap: wrap;
}

.tip .search-categories:empty {
    display: none;
}

.tip .search-categories>a {
    display: block;
    padding: 10px 15px;
    background-color: #E7EDF3;
    border-radius: 6px;
    margin: 0px 10px 10px 0px;
}

.tip .search-categories>a:hover {
    background-color: #e63619;
    color: #fff;
    text-decoration: none;
}

.header .icons {
    display: flex;
    align-items: center;
}

.header .sale,
.header .icons>div,
.header .icons>a {
    position: relative;
    cursor: pointer;
    display: block;
    min-width: 44px;
    height: 44px;
    margin-left: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px;
}

.country {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 44px;
}

.header .icons>div.country {
    height: 22px;
}

.country>div {
    position: absolute;
    border: 1px solid #777;
    border-radius: 2px;
    top: 0px;
    left: 0px;
}

.country>div>div {
    width: 34px;
    height: 22px;
    background-image: url("/template/img/ru.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #f8f8f8;
    display: none;
}

.country.on>div>div {
    display: block;
    opacity: 0.5;
}

.country>div>div.selected {
    display: block;
    opacity: 1;
}

.country>div>div.en {
    background-image: url("/template/img/en.svg");
}

.country>div>div:hover {
    opacity: 1;
}

.header .icons>div.currency {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.header .icons .search-icon {
    margin-left: 30px;
    background-image: url("/template/img/search-w.svg");
}

.header .icons .favorite {
    background-image: url("/template/img/favorite.svg");
}

.header .icons .header-cart {
    background-image: url("/template/img/cart.svg");
    background-size: 28px;
}

.header .icons>.favorite>div,
.header .icons>.header-cart>div {
    position: absolute;
    top: -4px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    font-size: 0.7em;
    line-height: 22px;
}

.header .icons>div>div:empty,
.header .icons>a>div:empty {
    display: none;
}

.header .icons .header-login-register,
.header .icons .header-user {
    background-image: url("/template/img/user.svg");
}

.header .icons .header-user>a {
    display: none;
}

.header .sale {
    display: flex;
    align-items: center;
    padding: 0px 0px 0px 44px;
    background-image: url("/template/img/sale.svg");
    background-position: left 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #e63619;
}

/* Home */

.title {
    margin-top: 40px;
    font-size: 48px;
    padding: 0px 10px 20px 10px;
}

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

.slider-1 .text,
.slider-3 .text {
    padding: 50px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.slider-1 .text h2,
.slider-3 .text h2 {
    margin: 30px 0px;
    font-size: 2em;
    line-height: 1em;
}

.slider-1,
.slider-3 {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.slider-1 .slick-slide,
.slider-3 .slick-slide {
    border-radius: 6px;
}

.slider-1 img,
.slider-3 img {
    max-width: 100%;
    border-radius: 6px;
}

.slider-1 .wws,
.slider-3 .wws {
    background-image: url("/template/img/global.svg");
    background-size: 48px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 60px;
    font-weight: normal;
    font-size: 1.3em;
    line-height: 48px;
}

.slider-2 .text,
.slider-4 .text {
    display: none;
}

.slider-2 .slick-slide>div,
.slider-4 .slick-slide>div {
    display: flex;
    justify-content: center;
}

.slider-2 img,
.slider-4 img {
    width: 100%;
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.slider-2 img:hover,
.slider-4 img:hover {
    filter: none;
    -webkit-filter: none;
}

.home .sale-block {
    margin: 50px 0px;
    background-color: #f8f8f8;
    padding-top: 50px;
}

.home-items {
    padding: 0px 50px;
    max-width: 1600px;
}

.home-items .category-select {
    display: flex;
    padding: 0px 10px 10px 10px;
    white-space: nowrap;
    overflow-x: auto;
}

.home-items .category-select>div {
    padding: 10px;
    margin-right: 10px;
    opacity: 0.5;
    cursor: pointer;
}

.home-items .category-select>div.selected {
    opacity: 1;
    color: #e63619;
    background-color: #F8F8F8;
    border-radius: 6px;
    font-weight: 500;
}

/* Full Menu */

.full-menu-wrapper {
    display: none;
    position: fixed;
    top: 160px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 3;
    background-color: #fff;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    overflow-y: auto;
    background-color: #000;
    display: none;
}

.mobile-menu .ccf {
    display: flex;
    margin: 20px 10px 10px 10px;
}

.mobile-menu>ul {
    width: 100%;
}

.mobile-menu ul,
.mobile-menu li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.mobile-menu>ul>li {
    padding: 10px;
}

.mobile-menu li a {
    display: block;
    font-size: 1.1em;
}

.mobile-menu .shop-menu {
    padding: 10px;
}

.full-menu .shop-menu ul ul,
.mobile-menu .shop-menu ul ul {
    display: none;
}

.full-menu .shop-menu>ul>li {
    display: none;
    position: inherit;
    width: 280px;
}

.full-menu .shop-menu>ul>li.has-child {
    display: block;
    background: none;
    padding: 0px;
}

.full-menu .shop-menu>ul>li.has-child>a {
    padding: 10px;
    display: block;
    font-size: 1.1em;
}

.full-menu .shop-menu>ul>li.has-child>ul {
    flex-wrap: wrap;
    position: absolute;
    left: 320px;
    top: 0px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.full-menu .shop-menu>ul>li.has-child.selected>a {
    background: #F8F8F8;
    color: #e63619;
    border-radius: 6px;
    text-decoration: none;
}

.full-menu .shop-menu>ul>li.selected>ul {
    display: flex;
}

.full-menu .shop-menu>ul>li.has-child>ul>li {
    margin: 20px;
}

.full-menu .shop-menu>ul>li.has-child>ul>li li {
    padding-left: 0px;
}

.full-menu .shop-menu>ul>li.has-child {
    background-position: left top 15px
}

.full-menu .shop-menu>ul>li.has-child>ul>li>a {
    font-size: 1.1em;
}

/* Item Block */

.shop-items-block {
    width: 100%;
    min-width: 100%;
}

.shop-items-block::before {
    margin: 20px 0px 10px 0px;
    font-weight: 600;
    font-size: 1.5em;
}

.shop-items.shop-items-block>.slick-list {
    width: 100%;
}

.shop-items-block .slick-slide {
    margin: 0 20px;
}

.shop-items-block .slick-track {
    margin-left: 0;
    display: flex !important;
}

.shop-items-block .slick-slide {
    height: inherit !important;
}

.shop-items-block.shop-items .item>div {
    border: none;
}

/* Shop Categories */

.shop-categories {
    display: grid;
    grid-gap: 40px;
    grid-column-gap: 50px;
    grid-template-columns: repeat(6, 1fr);
}

.shop-categories .category {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-categories img {
    max-width: 100%;
    max-height: 100%;
}

.shop-categories a {
    color: #000;
}

.shop-categories>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-categories>div:last-child {
    display: none;
}

/* Modal */

.modal {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.modal>div {
    position: relative;
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
    padding: 20px;
    background-color: #1c1c1e;
    border-radius: 0px;
    min-width: 200px;
    min-height: 50px;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
}

.modal>div>div:last-child {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.modal>div>div:last-child::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.modal>div>.close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-color: transparent;
}

.modal>div>.close:after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    /* transform: rotate(45deg); */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal>div>.close:before {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* .modal>div>.close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
}

.modal>div>.close:after {
    content: "X";
    color: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

/* Form */

.form input,
.form-input,
.form textarea {
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    border: none;
    background-color: #F8F8F8;
}

.form input[type=checkbox] {
    width: auto;
}

.form>div {
    margin: 10px 0px;
}

.form label {
    display: block;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.form button,
.form-button {
    padding: 8px 20px;
    font-size: 1em;
    font-weight: 500;
    border: none;
    background-color: #e63619;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.form button:hover {
    background-color: #da5836;
}

.form .error {
    color: #e63619;
    margin: 10px 0px;
}

/* Page */

.page {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page>a {
    color: #000;
    padding: 5px;
    margin: 5px;
    line-height: 20px;
    min-width: 30px;
    text-align: center;
}

.page>a:hover {
    text-decoration: none;
}

.page>a:first-child {
    margin-left: 0px;
}

.page .selected {
    color: #fff;
}

.page .first:before {
    content: "Первая";
}

.page .last:before {
    content: "Последняя (";
}

.page .last:after {
    content: ")";
}

/* Shop */

.shop {
    display: flex;
    align-items: flex-start;
}

.shop h1 {
    margin: 0px 10px;
}

.shop>div:first-child {
    max-width: 300px;
}

.shop>div:nth-child(2) {
    flex-grow: 1;
    overflow: hidden;
}

.filter-button {
    display: none;
}

/* Shop Menu */

.shop .shop-menu {
    min-width: 300px;
}

.shop-menu ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.shop-menu li {
    position: relative;
    padding: 5px 0px 5px 20px;
}

.shop-menu li.selected>a {
    background-color: #F8F8F8;
    padding: 5px 10px;
    border-radius: 6px;
}

.shop-menu li ul li {
    padding-bottom: 0px;
}

.shop-menu li ul li a {
    font-size: 0.9em;
    opacity: 0.5;
}

.shop-menu>ul>li {
    padding-left: 0px;
}

.shop-menu li.has-child {
    position: relative;
    cursor: pointer;
    padding-left: 20px;
    background-image: url("/template/img/right-arrow.svg");
    background-position: left top 12px;
    background-size: 10px;
    background-repeat: no-repeat;
}

.shop-menu li.has-child.opened {
    background-image: url("/template/img/bottom-arrow.svg");
}

.shop-menu li.has-child>div:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 22px;
    height: 100%;
}

.shop .shop-menu li ul {
    display: none;
}

/* Price */

.price {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.price-currency::after,
.price>div::after {
    content: "\20BD";
    margin-left: 3px;
}

.price.eur>div::after {
    content: "\20AC";
}

.price.usd>div::after {
    content: "\0024";
}

.price.zar>div::after {
    content: "\20AC";
}

.price>div:empty {
    display: none;
}

.price>div:last-child {
    color: #0B54A0;
}

.price>div:nth-child(1) {
    color: #e63619;
}

.price>div:nth-child(1)+div {
    position: relative;
    margin-left: 10px;
    padding: 0px 5px;
    color: #BACFE3;
    font-weight: normal;
    font-size: 0.8em;
}

.price>div:nth-child(1)+div::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e63619;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

.price>div:nth-child(1):empty+div {
    margin-left: 0px;
    padding-left: 0px;
    color: inherit;
    font-size: inherit;
    text-decoration: none;
    font-weight: 500;
}

.price>div:nth-child(1):empty+div::before {
    display: none;
}

/* Quantity */

.quantity:empty {
    display: none;
}

.quantity:before {
    content: "в наличии: ";
}

.quantity:after {
    content: " шт";
}

/* Shop Items */

.shop-items-header {
    margin-left: 10px;
    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-items-header .sort {
    display: none;
}

.shop-items-header .sort-list {
    display: flex;
    align-items: center;
}

.shop-items-header .sort-list>div {
    cursor: pointer;
    padding: 2px 5px 4px 5px;
    border-radius: 6px;
    margin: 0px 0px 0px 5px;
}

.shop-items-header .sort-list>div.default-bg-gray {
    color: inherit;
}

.shop-items-header .sort-list>div.sort-price {
    padding-left: 20px;
    position: relative;
}

.shop-items-header .sort-list>div.sort-price::before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url("/template/img/sort.svg");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.shop-items-header .sort-list>div.sort-price.desc::before {
    background-image: url("/template/img/sort_desc.svg");
}

.shop-items-header .view {
    display: flex;
    justify-content: flex-end;
}

.shop-items-header .view>div {
    width: 44px;
    height: 44px;
    background-image: url("/template/img/view-grid.svg");
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 0.2;
    border-radius: 6px;
}

.shop-items-header .view>div.selected {
    opacity: 1;
}

.shop-items-header .view>div.list {
    background-image: url("/template/img/view-list.svg");
}

.scroll-nav {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 115px;
    left: 0px;
    right: 0px;
    z-index: 1;
}

.scroll-nav .widther {
    padding: 0px 60px 0px 20px;
}

.scroll-nav .widther .swiper {
    position: static;
    padding: 0px 20px;
}

.scroll-nav .swiper-button-prev::after,
.scroll-nav .swiper-button-next::after {
    color: #fff;
    font-size: 24px;
}

.scroll-nav .swiper-slide {
    margin: 10px;
    white-space: nowrap;
    cursor: pointer;
    padding: 10px;
}

.scroll-nav .swiper-slide.selected {
    background-color: #1c1c1e;
    font-weight: bold;
}

.scroll-nav .swiper-slide {
    width: auto;
}

.category-name {
    font-size: 2em;
    margin: 30px 0px 10px 10px;
}

.shop-items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
}

.shop-items .item {
    position: relative;
    width: calc(25% - 20px);
    margin: 10px;
}

.shop-items .item>div {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid #1c1c1e;
    padding: 5px;
}

.shop-items .item .price-cart {
    margin: 10px 0px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-items-block .item>div {
    -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.15);
}

.shop-items .item .data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.shop-items .item .data>div {
    position: relative;
}

.shop-items .item .data .persons {
    padding-left: 30px;
}

.shop-items .item .data .persons::before {
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("/template/img/person.svg");
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
}

.shop-items .item .data .weight::after {
    content: " г";
}

.shop-items .item .data .kkal::after {
    content: " ккал";
}

.shop-items .image {
    height: 200px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shop-items .image img {
    max-width: 100%;
    max-height: 100%;
}

.shop-items .name {
    display: block;
    font-weight: bold;
    margin: 10px;
}

.shop-items .price {
    align-items: flex-end;
    margin: 5px 0px;
}

.shop-items .quick-view {
    position: absolute;
    white-space: nowrap;
    bottom: 0px;
    left: 0px;
    padding: 5px 10px 10px 10px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    font-size: 0.8em;
    z-index: 1;
}

.shop-items .quick-view:hover {
    opacity: 1;
}

.shop-items .quick-view:before {
    line-height: 10px;
    display: block;
}

.shop-items .favorite {
    position: absolute;
    top: 10px;
    right: 5px;
    height: 20px;
    width: 20px;
    margin: 0px 10px;
    background-image: url("/template/img/favorite.svg");
    background-size: 20px;
    line-height: 20px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 6px;
}

.shop-items .favorite.on {
    background-image: url("/template/img/favorite-on.svg");
}

.shop-items .item .sale {
    position: absolute;
    background-color: #e63619;
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    font-size: 0.8em;
}

.shop-items .item .sale::before {
    content: "-";
}

.shop-items .item .sale::after {
    content: "%";
}

/* List */

.shop-items.list .item {
    width: 100%;
    margin: 10px 0px 10px 10px;
}

.shop-items.list .item>div {
    flex-direction: row;
    justify-content: space-between;
}

.shop-items.list .image {
    height: 150px;
    width: 150px;
    min-width: 150px;
    margin-bottom: 0px;
}

.shop-items.list .info {
    display: flex;
}

.shop-items.list .vendor-name {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
}

.shop-items.list .price-cart {
    display: flex;
    flex-direction: column;
    min-width: 180px;
    justify-content: space-between;
}

/* Next */

.next {
    text-align: center;
    margin: 20px 0px;
    cursor: pointer;
}

/* Filter */

.filter {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 6px;
    margin-top: 20px;
    position: relative;
}

.filter>div {
    margin: 10px 0px 10px 0px;
}

.filter .group>div {
    margin-bottom: 10px;
}

.filter .group>div:first-child {
    font-weight: 500;
    text-transform: uppercase;
    display: none;
}

.filter .field-name {
    font-weight: 500;
    font-size: 1.1em;
}

.filter .field-name.co {
    background-image: url("/template/img/opened.svg");
    background-position: right center;
    background-size: 14px;
    background-repeat: no-repeat;
    cursor: pointer;
    padding: 5px 0px;
    padding-right: 20px;
}

.filter .field-name+.field-values {
    display: none;
}

.filter .field-name.opened {
    background-image: url("/template/img/top-arrow.svg");
}

.filter .field-values {
    display: flex;
    flex-direction: column;
    max-height: 130px;
    overflow-y: auto;
}

.filter .field-values.all {
    max-height: none;
}

.filter .field-values::-webkit-scrollbar {
    width: 6px;
}

.filter .field-values::-webkit-scrollbar-thumb {
    background-color: #e5ebf0;
    border-radius: 3px;
}

.filter .field-values>div {
    position: relative;
    padding: 4px 0px 5px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.filter .field-values>div>div:last-child {
    font-size: 0.8em;
    opacity: 0.6;
    margin-left: 5px;
}

.filter .field-values>div>div:last-child:before {
    content: "(";
}

.filter .field-values>div>div:last-child:after {
    content: ")";
}

.filter .field-values>div:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #E7EDF3;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.filter .field-values>div.checked:before {
    background-color: #e63619;
    background-image: url("/template/img/check_w.svg");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
}

.filter .show-other {
    margin-top: 10px;
    font-size: 0.8em;
    opacity: 0.5;
    cursor: pointer;
}

.filter .show-other:hover {
    text-decoration: underline;
}

.filter .field-min-max>div:first-child {
    width: 100%;
}

.filter .field-min-max {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.filter .field-min-max>div {
    position: relative;

}

.filter .field-min-max>div:nth-child(2),
.filter .field-min-max>div:nth-child(3) {
    width: 50%;
}

.filter .field-min-max>div:nth-child(2) {
    padding-right: 5px;
}

.filter .field-min-max>div:nth-child(3) {
    padding-left: 5px;
}

.filter .field-min-max>div:nth-child(2)::before,
.filter .field-min-max>div:nth-child(3)::before {
    content: "от";
    font-size: 12px;
    line-height: 10px;
    opacity: 0.6;
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
}

.filter .field-min-max>div:nth-child(3)::before {
    left: 13px;
    content: "до";
}

.filter .field-min-max input {
    width: 100%;

    margin: 5px 10px 5px 0px;
    padding: 5px 5px 5px 24px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.filter .field-check {
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 20px 0px;
}

.filter .field-check input {
    padding: 0px;
    position: relative;
    width: 48px;
    height: 24px;

    margin: 0px 8px 0px 0px;
    border-radius: 6px;
    border: none;
}

.filter .field-check input::before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: #E7EDF3;
}

.filter .field-check input::after {
    content: "";
    display: block;
    position: absolute;
    left: 2px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
}

.filter .field-check input:checked::before {
    background-color: #e63619;
}

.filter .field-check input:checked::after {
    left: auto;
    right: 2px;
    transition: right 0.2s linear;
}

.filter .filtered-count {
    position: absolute;
    z-index: 1;
    left: 100%;
    padding: 9px 16px;

    transform: translateY(-50%);
}

.filter .filtered-count>div {
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.filter .filtered-count>div:after {
    content: "";
    display: block;
    position: absolute;
    left: -40px;
    top: 0px;
    border: 20px solid transparent;
    border-right: 20px solid #e63619;
    display: none;
}

.filter .filtered-count:hover>div:after {
    border-right: 20px solid #e63619;
    transition: border-right 0.2s linear;
}

.filter-selected {
    display: flex;
    flex-wrap: wrap;
}

.filter-selected:empty {
    display: none;
}

.filter-selected>div {
    margin: 10px;
    padding: 3px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-selected>div::after {
    content: "+";
    font-size: 1.8em;
    line-height: 12px;
    margin-left: 10px;
    opacity: 0.5;
    transform: rotate(45deg);
}

.filter-selected .clear-all::after {
    color: #e63619;
}

/* Breadcrumb */

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9em;
    margin: 10px 0px 20px 0px;
}

.breadcrumbs>div {
    position: relative;
    padding-right: 25px;
}

.breadcrumbs>div:last-child {
    padding-right: 0px;
}

.breadcrumbs>div::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    opacity: 0.5;
}

.breadcrumbs>div:last-child::after {
    display: none;
}

.breadcrumbs a {
    opacity: 0.5;
}

/* Shop Item */

.modal .shop-item {
    max-width: 1200px;
}

.shop-item {
    display: flex;
}

.shop-item .images {
    width: 50%;
    min-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.shop-item .image {
    width: 100%;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
}

.shop-item .image>div:empty {
    width: 256px;
    height: 256px;
    background-image: url("/template/img/no-image.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.shop-item .image img {
    width: 100%;
    max-width: 600px;
    max-height: 530px;
}

.shop-item .thumbnails {
    padding: 0px 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.shop-item .thumbnails>a {
    border: 1px solid rgba(0, 0, 0, 0.5);
    display: block;
    width: 64px;
    height: 64px;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

.shop-item .thumbnails img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.shop-item .thumbnails>a.selected {
    border: 1px solid #fff
}

.shop-item .buy {
    padding: 10px;
    display: inline-flex;
}

.shop-item .price {
    font-size: 2em;
    margin-right: 20px;
}

.shop-item .cart-count input {
    font-size: 1em;
    padding: 5px 30px;
    max-width: 120px;
    background-color: transparent;
}

.shop-item .data {
    flex-grow: 1;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.shop-item .data>div {
    display: flex;
}

.shop-item .data .group {
    font-weight: 500;
    padding: 20px 10px 0px 0px;
}

.shop-item .data .values {
    flex-wrap: wrap;
    flex-direction: column;
}

.shop-item .data .values>div {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.shop-item .data .values>div>div:first-child {
    text-transform: uppercase;
    opacity: 0.5;
    font-size: 0.8em;
    margin-right: 10px;
    min-width: 80px;
}

.shop-item .data .values>div>div:first-child::after {
    content: ":";
}

.shop-item .offer-switch {
    margin-bottom: 10px;
}

.shop-item .offer-switch>div>div:first-child {
    font-weight: 500;
    margin-top: 10px;
}

.shop-item .offer-switch>div>div:last-child {
    display: flex;
    flex-wrap: wrap;
}

.shop-item .offer-switch>div>div:last-child>div {
    margin: 5px 10px 5px 0px;
    cursor: pointer;
}

.shop-item .offer-switch>div>div:last-child>div.selected {
    font-weight: 500;
    border-bottom: 2px solid #e95295;
}

.shop-item .offer-switch>div>div:last-child>div:hover {
    text-decoration: underline;
}

.shop-item .offer-switch .off {
    opacity: 0.3;
}

.shop-item .to-cart>div {
    max-width: none;
}

.shop-item h1,
.shop-item .data,
.shop-item .description {
    padding: 10px;
}

/* To Cart Message */

.to-cart-message h1 {}

.to-cart-message {
    max-width: 1024px;
    padding: 10px;
}

.to-cart-message .shop-items.list .image {
    width: 64px;
    height: 64px;
    min-width: 64px;
}

.to-cart-message .shop-items.list .item {
    margin: 20px 0px;
}

.to-cart-message>div.shop-items.list:last-child {
    justify-content: space-between;
}

.to-cart-message>div.shop-items.list:last-child .item {
    width: calc(50% - 10px);
    margin: 10px 0px;
}

.to-cart-message .price-cart>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.to-cart-message .shop-items .item>div {
    padding: 5px;
}

.to-cart-message>div:nth-child(3) {
    display: flex;
    margin-bottom: 20px;
}

.to-cart-message>div:nth-child(3)>div,
.to-cart-message>div:nth-child(3)>a {
    display: flex;
    align-items: center;
    padding: 10px 20px 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9em;
}

.to-cart-message>div:nth-child(3)>a:hover {
    text-decoration: none;
}

.to-cart-message>div:nth-child(3)>a:first-child {
    color: #fff;
    background-color: #e63619;
    margin-right: 20px;
}

.to-cart-message>div:nth-child(3)>div:last-child {
    color: #e63619;
    border: 2px solid #E7EDF3;
}

/* To Cart */

.cart-count {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0px;
}

.cart-count>div:nth-child(2) {
    flex-grow: 1;
}

.cart-count input {
    border: none;
    width: 100%;
    min-width: 100px;
    padding: 4px;
    text-align: center;
}

.cart-count>div.dec,
.cart-count>div.inc {
    position: absolute;
    left: 0px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0px;
    color: #fff;
    font-size: 1.2em;
    transition: all 0.1s ease-in-out;
}

.cart-count>div.inc {
    left: auto;
    right: 0px;
}

.cart-count>div.dec:before,
.cart-count>div.inc:before {
    font-family: Arial, Helvetica, sans-serif;
    display: block;
    content: "-";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cart-count>div.dec:before {
    padding-bottom: 2px;
}

.cart-count>div.inc:before {
    content: "+";
}

/* Cart */

.cart>div:first-child>div:first-child {
    flex-grow: 1;
}

.cart>div.cart-delivery,
.cart>div.cart-pay,
.cart>div.cart-pay+div {
    margin-right: 340px;
}

.cart .cart-items:empty {
    display: block;
}

.cart:before {
    padding: 0px 10px;
    font-size: 2em;
    font-weight: 500;
}

.cart:empty::before {
    content: "Корзина пуста";
}

.cart .cart-items:empty+div {
    display: none;
}

.cart .cart-items {
    margin-top: 20px;
}

.cart .cart-items .item {
    margin: 5px 0px;
}

.cart .cart-items .delete {
    position: relative;
    color: #e63619;
    background-image: url("/template/img/delete.svg");
    background-position: left top 4px;
    background-size: 12px;
    padding-left: 20px;
    line-height: 16px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.cart .cart-items .delete::after {
    font-size: 0.8em;
    text-transform: uppercase;
}

.cart .cart-items .price-cart,
.cart .cart-items .price-cart>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart .shop-items .item div.vendor-name-info {
    justify-content: space-between;
}

.cart .shop-items .item div.vendor-name-info>div:last-child {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}

.cart .sum {
    padding: 20px;
    font-size: 1.5em;
}

.cart .sum>div {
    display: flex;
    margin: 5px 0px;
    justify-content: flex-end;
}

.cart .sum .order-sum:before,
.cart .sum .order-sale:before {
    margin-right: 20px;
}

.cart .sum .order-sale {
    color: #e63619;
}

.cart .sum .order-sum.price>div:nth-child(1) {
    color: #000;
}

.cart .cart-delivery,
.cart .cart-pay {
    margin: 20px 0px;
}

.cart .cart-delivery>div,
.cart .cart-pay>div {
    display: flex;
    padding: 20px;
}

.cart .cart-delivery:before,
.cart .cart-pay:before {
    content: "Доставка";
    display: block;
    font-size: 1.2em;
    font-weight: 500;
    padding: 20px 10px 0px 20px;
}

.cart .cart-pay:before {
    content: "Способ оплаты";
}

.cart .cart-delivery>div>div:first-child {
    display: flex;
    flex-direction: column;
}

.cart .cart-delivery>div>div:first-child>div {
    margin-bottom: 10px;
}

.cart .cart-delivery>div>div:first-child>div,
.cart .cart-pay>div>div {
    position: relative;
    padding: 8px 20px;
    border-radius: 8px;
    background-color: #F8F8F8;
    margin-right: 10px;
    cursor: pointer;
}

.cart .cart-delivery>div>div:first-child>div.selected,
.cart .cart-pay>div>div.selected {
    background-color: #e63619;
    color: #fff;
    padding-left: 52px;
}

.cart .cart-delivery>div>div:first-child>div.selected::after,
.cart .cart-pay>div>div.selected:after {
    content: "";
    position: absolute;
    display: block;
    width: 14px;
    height: 14px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("/template/img/check.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.cart .cart-delivery>div>div:last-child {
    margin-left: 20px;
    flex-grow: 1;
}

.cart .cart-delivery>div>div:last-child>div:before {
    margin-right: 5px;
    font-weight: normal;
}

.cart .cart-delivery>div>div:last-child .price:before {
    content: "Стоимость: ";
}

.cart .cart-delivery>div>div:last-child .free-from:before {
    content: "Бесплатно от: ";
}

.cart .cart-delivery>div>div:last-child>.days {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.cart .cart-delivery>div>div:last-child>.days>div:before {
    content: ", при заказе до";
    margin-right: 5px;
    font-weight: normal;
}

.cart .cart-delivery>div>div:last-child>.days:before {
    content: "Срок, дней: ";
}

.cart .cart-delivery>div>div:last-child label {
    display: block;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 5px;
}

.cart .cart-delivery>div>div:last-child input {
    width: 100%;

    padding: 5px;
}

.cart .cart-delivery .pickup .pickup-select>div {
    position: relative;
    padding: 5px 5px 5px 24px;
    cursor: pointer;
}

.cart .cart-delivery .pickup .pickup-select>div.selected {
    font-weight: 500;
}

.cart .cart-delivery .pickup .pickup-select>div::before {
    content: "";
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #ddd;
    border-radius: 50%;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.cart .cart-delivery .pickup .pickup-select>div.selected::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.cart .cart-delivery .pickup>div:last-child>div {
    padding: 3px 0px;
    font-size: 0.9em;
}

.cart .cart-delivery .pickup>div:last-child>div:before {
    margin-right: 3px;
    opacity: 0.5;
}

.cart .cart-delivery .pickup>div:last-child .city:before {
    content: "Город: ";
}

.cart .cart-delivery .pickup>div:last-child .address:before {
    content: "Адрес: ";
}

.cart .cart-delivery .pickup>div:last-child .code:before {
    content: "Код: ";
}

.cart .cart-delivery .pickup>div:last-child .phone:before {
    content: "Телефон: ";
}

.cart .cart-delivery .pickup>div:last-child .email:before {
    content: "Электронная почта: ";
}

.cart .cart-delivery .pickup>div:last-child .days:before {
    content: "Срок, дней: ";
}

.cart .cart-delivery .pickup>div:last-child .work_time:before {
    content: "Время работы: ";
}

.cart .cart-order {
    margin: 30px 0px;
    padding: 20px;
}

.cart .cart-order .check {
    display: flex;
    align-items: center;
}

.cart .cart-order .check input {
    margin-right: 5px;
}

.cart .cart-order .check p {
    margin: 0px;
}

/* User */

.login,
.register {
    min-width: 300px;
}

.login h1,
.register h1 {}

.login button,
.register button {
    width: 100%;
}

.login button.register,
.register button.login {
    background-color: transparent;
    border: 2px solid #e63619;
    color: #e63619;
}

.register .check {
    display: flex;
    align-items: flex-start;
}

.register .check p {
    margin: 0px;
}

.register .check>input {
    margin-right: 5px;
}

.user>div>div:first-child {
    display: flex;
    align-items: center;
}

.user>div>div:first-child>div {
    padding: 0px 10px 10px 0px;
}

.user>div>div:first-child>div.selected {
    font-weight: 500;
}

.user>div>div:first-child>div.selected {
    font-weight: 500;
}

.user .logout {
    cursor: pointer;
}

.user .orders:empty::before {
    content: "Заказов пока нет";
}

.user .orders {
    display: table;
}

.user .orders>div {
    display: table-row;
    cursor: pointer;
}

.user .orders>div:hover>div {
    background-color: #f8f8f8;
}

.user .orders>div>div {
    display: table-cell;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

.user .orders>div:last-child>div {
    border-bottom: none;
}

.user .order>div {
    padding: 5px 0px;
}

.user .order>div:before {
    opacity: 0.5;
    margin-right: 3px;
}

.user .order .id:before {
    content: "ID:";
}

.user .order .date:before {
    content: "Дата:";
}

.user .order .name:before {
    content: "Имя:";
}

.user .order .phone:before {
    content: "Телефон:";
}

.user .order .email:before {
    content: "Электронная почта:";
}

.user .order .delivery-info:before {
    content: "Доставка:";
}

.user .order .comment:before {
    content: "Комментарий:";
}

.user .order .items {
    margin: 20px 0px;
    display: table;
    border-collapse: collapse;
}

.user .order .items>div {
    display: table-row;
}

.user .order .items>div>div {
    display: table-cell;
    padding: 5px;
    border: 1px solid #ddd;
}

.user .order .sum {
    font-size: 1.2em;
}

.user .order .sum:before {
    content: "Сумма заказа:";
    margin-right: 5px;
}

.footer {
    border-top: 2px solid #1c1c1e;
}

.footer>div {
    padding: 40px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer>div>div {
    padding-left: 60px;
}

.footer>div>div:first-child {
    padding-left: 0px;
}

.footer ul,
.footer li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.footer li {
    padding: 7px;
}

.footer p {
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 0.5;
}

.footer .logo img {
    width: 110px;
    margin-bottom: 20px;
}

.phone,
.email,
.address {
    padding-left: 24px;
    line-height: 24px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px;
    background-image: url("/template/img/phone.svg");
}

.email {
    background-image: url("/template/img/email.svg");
}

.address {
    background-image: url("/template/img/address.svg");
}

.footer .footer-global {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .footer-global p {
    padding: 0px;
}

.footer .footer-global>p:nth-child(2) {
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-map,
.gr-map {
    flex-grow: 1;
    filter: grayscale(1);
    -ms-filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
}

.footer-map iframe {
    border-radius: 8px;
}

/* Mobile Menu */

.mobile-shop-menu {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #fff;
    padding: 60px 20px 80px 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
    overflow-y: auto;
}

.mobile-shop-menu::before {
    content: "Каталог";
    display: block;
    position: absolute;
    top: 24px;
    left: 20px;
    font-size: 1.6em;
}

.mobile-shop-menu .mobile-menu-close {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 20px;
    right: 10px;
    background-image: url("/template/img/menu-close.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

.mobile-shop-menu .container {
    position: relative;
    flex-grow: 1;
}

.mobile-shop-menu .menu {
    border-bottom: 1px solid #E7E7E7;
}

.mobile-shop-menu .menu,
.mobile-shop-menu .menu ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.mobile-shop-menu .menu li {
    border-bottom: 1px solid #F8F8F8;
}

.mobile-shop-menu .menu li>a {
    display: block;
    padding: 12px 0px;
    line-height: 28px;
    font-size: 20px;
}

.mobile-shop-menu .menu>li>ul {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.mobile-shop-menu .menu>li.has-child {
    background-image: url("/template/img/right-arrow.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.mobile-shop-menu .exit {
    padding: 12px 26px;
    color: #1da4dd;
    background-image: url("/template/img/left-arrow.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.opf {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.opf>div {
    width: calc(50% - 20px);
}

.opf>div:nth-child(9),
.opf>div:last-child {
    width: 100%;
}

.plan-wrapper {
    width: 100%;
    overflow-x: auto;
}

.plan {
    margin: 10px;
    min-width: 1024px;
    position: relative;
}

.plan>div:first-child img {
    width: 100%;
}

.plan>div:nth-child(2) {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 5% 0px 10% 30%;
}

.plan>div:nth-child(2)>div {
    width: 20%;
    padding: 10px;
    height: 100px;
    background-image: url("/template/img/stol.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    color: pointer;
}


.plan>div:nth-child(2)>div.selected,
.plan>div:nth-child(2)>div:hover {
    color: #cb1f12;
    background-image: url("/template/img/stol-s.svg");
}

.section-kr {
    grid-area: section-kr;
}

.section-19 {
    grid-area: section-19;
    margin-left: 20px;
}

.section-20 {
    grid-area: section-20;
}

.section-21 {
    grid-area: section-21;
}

.hookah-form {
    margin: 10px;
}

.hookah-form h3 {
    font-size: 1.5em;
}

.hookah-form>div {
    display: flex;
    align-items: center;
}

.hookah-form>div>div:last-child {
    padding-left: 50px;
}

.hookah-form>div>div:first-child {
    justify-content: flex-start;
    display: grid;
    grid-gap: 20px;
    grid-template-areas:
        "section-kr section-19"
        "section-21 section-19"
        "section-20 section-19";
}

.hookah-form>div>div:first-child>div>div>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hookah-form>div>div:first-child>div>div>div>div {
    padding: 12px 0px;
}

.hookah-form .image img {
    width: 80px;
    border-radius: 50%;
    margin-right: 10px;
}

.hookah-form .image+label {
    flex-grow: 1;
}

.hookah-form label {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.hookah-form input[type=radio],
.hookah-form input[type=checkbox] {
    position: relative;
    width: 16px;
    height: 16px;
    margin-top: 0px;
    margin-right: 12px;
    border-radius: 50%;
}

.hookah-form input[type=radio]::before,
.hookah-form input[type=checkbox]::before {
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: -4px;
    bottom: -4px;
    right: -4px;
    background-color: #fff;
    border-radius: 50%;
}

.hookah-form input[type=radio]:checked::before,
.hookah-form input[type=checkbox]:checked::before {
    background-color: #cb1f12;
}

.hookah-form input[type=radio]:checked::after,
.hookah-form input[type=checkbox]:checked::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    bottom: 3px;
    right: 3px;
    background-color: #fff;
    border-radius: 50%;
}

.hookah-form button {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
}

.hookah-form button:disabled {
    filter: grayscale();
    opacity: 0.4;
}

.hookah-form>div>div:last-child .price {
    margin-bottom: 20px;
    font-size: 2em;
}

.hookah-form>div>div:last-child .price::before {
    content: "Сумма: ";
    margin-right: 10px;
}

.hookah-form .message {
    color: #cb1f12;
    font-weight: bold;
    margin: 20px 0px;
}

@media (max-width: 1024px) {

    .shop .shop-menu {
        display: none;
    }

    .shop-items .slick-dots {
        bottom: 0px;
    }

    .cart>div:first-child>div:first-child {
        padding-right: 20px;
    }

    .cart>div:first-child>div:last-child {
        min-width: 240px;
        width: 240px;
        display: flex;
        align-items: flex-end;
    }

    .cart>div.cart-delivery,
    .cart>div.cart-pay,
    .cart>div.cart-pay+div {
        margin-right: 260px;
    }

    .cart .sum {
        width: 240px;
    }

    .filter-selected {
        padding: 10px;
    }

    .title {
        font-size: 28px;
    }

    .wrapper>.content {
        padding: 120px 0px 0px 0px;
    }

    .footer {
        padding-bottom: 100px;
    }

    .header .logo {
        margin: 0px;
    }

    .header .logo img {
        width: 75px;
        min-width: 75px;
        margin-left: 40px;
    }

    .header .menu,
    .header .sale,
    .header .catalogue-button {
        display: none;
    }

    .header .mobile-menu-button {
        display: block;
    }

    .header .icons>div.country,
    .header .icons>a.favorite,
    .header .icons>div.currency {
        display: none;
    }

    .scroll-nav {
        top: 70px;
    }

    .header .k-f {
        font-size: 1.2em;
    }

    .full-menu-wrapper {
        top: 70px;
        overflow-y: auto;
    }

    .full-menu .menu {
        display: flex;
    }

    .full-menu .shop-menu>ul>li {
        width: auto;
        position: relative;
    }

    .full-menu .shop-menu>ul>li.has-child>ul {
        position: relative;
        left: auto;
        top: auto;
        border-radius: 0px;
        box-shadow: none;
    }

    .full-menu .shop-menu>ul>li.has-child>ul>li {
        margin: 0px;
    }

    .full-menu .shop-menu>ul>li.selected>ul {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .full-menu .shop-menu>ul>li.has-child>a {
        padding-left: 30px;
    }

    .full-menu .shop-menu>ul>li.has-child>ul>li>a {
        color: inherit;
        font-size: 0.9em;
        margin-left: 20px;
    }

    .shop-menu li.has-child {
        background-position: left top 15px;
    }

    .slider-1 .slick-slide>div,
    .slider-3 .slick-slide>div {
        height: 300px;
    }

    .slider-1 .text h2,
    .slider-3 .text h2 {
        margin: 20px 0px;
        font-size: 1.5em;
    }

    .slider .slick-slide>div .text {
        padding: 10px;
    }

    .slider .slick-slide>div img {
        object-fit: cover;
        height: 100%;
    }

    .breadcrumbs {
        padding: 0px 10px;
    }

    .shop-categories {
        padding: 0px 10px;
        grid-column-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-items-header .sort-list {
        display: none;
    }

    .shop-items-header .sort {
        display: block;
    }

    .shop-items-header .sort .select2-selection--single {
        background-color: #F8F8F8;
        border: none;
        height: 44px;
        border-radius: 6px;
    }

    .shop-items-header .sort .select2-selection--single .select2-selection__rendered {
        line-height: 44px;
        padding-left: 20px;
        padding-right: 40px;
    }

    .shop-items-header .sort .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        background-image: url("/template/img/bottom-arrow.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 14px;
    }

    .shop-items-header .sort .select2-container--default.select2-container--open .select2-selection__arrow {
        background-image: url("/template/img/top-arrow.svg");
    }

    .shop-items-header .sort .select2-container--default .select2-selection--single .select2-selection__arrow b {
        display: none;
    }

    .shop-items-header .view {
        flex-grow: 1;
    }

    .shop-items {
        padding: 5px;
        position: relative;
        justify-content: space-around;
    }

    .shop-items .item {
        width: calc(50% - 10px);
        margin: 5px;
        border: none;
        box-shadow: none
    }

    .shop-items .item:hover {
        box-shadow: none;
        transition: none;
    }

    .shop-items.list .item {
        margin: 0px;
        padding: 5px;
    }

    .shop-items.list .item>div {
        flex-direction: column;
        min-height: auto;
    }

    .shop {
        flex-direction: column;
    }

    .shop>div:first-child {
        max-width: none;
    }

    .shop .shop-menu {
        display: none;
    }

    .shop .filter {
        padding-right: 30px;
        display: none;
        position: fixed;
        z-index: 3;
        background-color: #fff;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        overflow-y: auto;
        padding: 10px;
    }

    .shop .filter.opened {
        display: block;
        padding-top: 40px;
        padding-bottom: 100px;
    }

    .filter-button {
        display: block;
        padding: 10px 20px 10px 40px;
        background-image: url("/template/img/filter.svg");
        background-position: left 10px center;
        background-size: 20px;
        background-repeat: no-repeat;
    }

    .filter-button.opened {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        z-index: 4;
        text-align: right;
        padding-left: 10px;
        padding-right: 40px;
        background-image: url("/template/img/menu-close.svg");
        background-position: right 10px center;
        margin-right: 0px;
        border: none;
        background-color: #fff;
    }

    .filter .filtered-count {
        position: fixed;
        top: auto !important;
        left: 50%;
        bottom: 100px;
        transform: translateX(-50%);
        z-index: 3;
    }

    .filter .filtered-count>div:after {
        display: none;
    }

    .filter-selected>div {
        margin: 0px 10px 10px 0px;
    }

    .shop-items-header {
        margin: 10px 0px 20px 10px
    }

    .shop-items-header>div {
        margin-right: 10px;
    }

    .shop-items-header>div.count {
        display: none;
    }

    .shop-item {
        flex-direction: column;
    }

    .shop-item>div:nth-child(2) {
        padding: 10px;
    }

    .shop-item .images {
        width: auto;
        min-width: auto;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .shop-item .buy {
        max-width: none;
    }

    .footer>div {
        padding: 20px;
        flex-direction: column;
    }

    .shop-item .to-cart button:before {
        content: "";
    }

    .to-cart-message>div:nth-child(3)>a:first-child {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .to-cart-message>div.shop-items.list:last-child .item {
        width: 100%;
        margin: 5px 0px;
    }

    .to-cart-message {
        padding: 0px;
    }

    .to-cart-message .shop-items.list {
        padding: 0px;
    }

    .to-cart-message>div:nth-child(3) {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart>div:first-child {
        flex-direction: column;
    }

    .cart>div:first-child>div:first-child {
        padding-right: 0px;
    }

    .cart>div:first-child>div:last-child {
        min-width: auto;
        width: auto;
        align-items: flex-start;
    }

    .cart>div.cart-delivery,
    .cart>div.cart-pay,
    .cart>div.cart-pay+div {
        margin-right: 0px;
    }

    .cart .sum {
        top: auto;
        position: relative;
        width: 100%;

        margin: 10px;
    }

    .cart .shop-items.list .item>div {
        flex-direction: row;
    }

    .cart .shop-items.list .image {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .cart .shop-items .item>div>div {
        padding: 0px;
    }

    .cart .cart-items .delete {
        height: 20px;
        padding-left: 20px;
    }

    .cart .cart-items .delete::after {
        display: none;
    }

    .shop-items.list .price-cart {
        min-width: auto;
    }

    .footer>div {
        text-align: center;
        flex-direction: column;
    }

    .footer>div>div {
        width: auto;
        padding-left: 0px;
        margin-bottom: 20px;
    }

    .opf>div {
        width: 100%;
    }

    .text {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .hookah-form>div {
        flex-direction: column;
    }

    .hookah-form>div>div:first-child {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hookah-form>div>div:last-child {
        margin-bottom: 20px;
    }

    .section-19 {
        margin: 0px;
    }
}

@media (max-width: 480px) {

    .header>div.widther {
        padding: 10px;
    }

    .header .logo img {
        margin-left: 10px;
    }

    .header .k-f {
        display: none;
        margin-left: 10px;
    }

    .mobile-menu .k-f {
        display: flex;
        flex-direction: column;
        font-size: 1.2em;
    }

    .mobile-menu .k-f>a {
        margin: 10px;
    }

    .mobile-menu .k-f>a.selected {
        color: #7a202a;
    }

    .header .icons .search-icon {
        margin-left: 0px;
    }

    .header .sale,
    .header .icons>div,
    .header .icons>a {
        min-width: 32px;
    }

    .price-cart {
        flex-wrap: wrap;
    }

    .shop-items .item .data {
        flex-wrap: wrap;
    }
}