:root {
  /*Colors*/
  --primary-color: #0c9f4e;
  --secondary-color: #a2cc44;
  --dark-green: #157c44;
  --text-color: #333333;
  --light-text: #4f4f4f;
  --light-grey: #f2f2f2;
  --light-grey-1: #f5f5f5;
  --promotion-color: #9858a2;
  --orange: #f9a21b;
  --white: #ffffff;
  --error-color: #ff453a;
  --font1: 'Proxima Nova', sans-serif;
  --font2: 'Fira Sans', sans-serif;
  --fz18: 18px;
  --box-shadow-default: 0 4px 20px rgba(0, 0, 0, 0.1);
  /*Animate*/
  --cubic-1: cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

/*Custom selectors*/

/*Custom breakpoints*/

.wrapper {
  max-width: var(--wrapper-width, 1204px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.fz12 {
  font-size: 12px;
}

.fz14 {
  font-size: 14px;
}

.fz15 {
  font-size: 15px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fw7 {
  font-weight: 700;
}

.fw3 {
  font-weight: 300;
}

.green-arrow {
  position: relative;
}

.green-arrow::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border: 2px solid var(--primary-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.green-arrow--top::before {
  transform: rotate(225deg);
}

.big-arrow {
  display: block;
  position: relative;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  text-decoration: none;
}

.big-arrow::before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid var(--primary-color);
  border-top: none;
  border-right: none;
  transform: rotate(45deg);
  top: -6px;
}

.link-hover:hover,
.link-hover:active {
  transition: 0.2s;
  color: var(--primary-color);
}

.link-rect-hover:hover,
.link-rect-hover:active {
  transition: 0.2s;
  background-color: var(--secondary-color);
}

.slideLeft_b {
  -webkit-animation-name: slideLeft;
  animation-name: slideLeft;
}

.slideLeftReturn_b {
  -webkit-animation-name: slideLeftReturn;
  animation-name: slideLeftReturn;
}

@keyframes slideLeft {
  0% {
    transform-origin: 0 0;
    transform: translateX(0%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateX(-100%);
  }
}

.slideLeft_goods {
  -webkit-animation-name: slideLeft;
  animation-name: slideLeft;
}

.slideLeft_goods-return {
  -webkit-animation-name: slideLeftReturn;
  animation-name: slideLeftReturn;
}

@keyframes slideLeftReturn {
  0% {
    transform-origin: 0 0;
    transform: translateX(-100%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateX(0%);
  }
}

@-webkit-keyframes popup_hidden {
  0% {
    visibility: hidden;
    margin: 0;
    transform: translateY(0);
    opacity: 1;
  }

  99% {
    margin: 0;
    transform: translateY(10px);
  }

  100% {
    visibility: hidden;
    margin: -9999px 0 0 -9999px;
    opacity: 0;
  }
}

@keyframes popup_hidden {
  0% {
    visibility: hidden;
    margin: 0;
    transform: translateY(0);
    opacity: 1;
  }

  99% {
    margin: 0;
    transform: translateY(10px);
  }

  100% {
    visibility: hidden;
    margin: -9999px 0 0 -9999px;
    opacity: 0;
  }
}

@-webkit-keyframes popup_visible {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popup_visible {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/*!
 * Magic - https://www.minimamente.com
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 * Copyright (c) 2019 Christian Pucci
 */

.vanishIn {
  -webkit-animation-name: vanishIn;
  animation-name: vanishIn;
}

@-webkit-keyframes vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
    filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}

@keyframes vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
    filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}

.vanishOut {
  -webkit-animation-name: vanishOut;
  animation-name: vanishOut;
}

@-webkit-keyframes vanishOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }

  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }
}

@keyframes vanishOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }

  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }
}

.magic {
  -webkit-animation-name: magic;
  animation-name: magic;
}

@-webkit-keyframes magic {
  0% {
    opacity: 1;
    transform-origin: 100% 200%;
    transform: scale(1, 1) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform-origin: 200% 500%;
    transform: scale(0, 0) rotate(270deg);
  }
}

@keyframes magic {
  0% {
    opacity: 1;
    transform-origin: 100% 200%;
    transform: scale(1, 1) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform-origin: 200% 500%;
    transform: scale(0, 0) rotate(270deg);
  }
}

.swap {
  -webkit-animation-name: swap;
  animation-name: swap;
}

@-webkit-keyframes swap {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: scale(0, 0) translate(-700px, 0px);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 100%;
    transform: scale(1, 1) translate(0px, 0px);
  }
}

@keyframes swap {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: scale(0, 0) translate(-700px, 0px);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 100%;
    transform: scale(1, 1) translate(0px, 0px);
  }
}

.slideLeft {
  -webkit-animation-name: slideLeft;
  animation-name: slideLeft;
}

@-webkit-keyframes slideLeft {
  0% {
    transform-origin: 0 0;
    transform: translateX(0%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateX(-100%);
  }
}

@keyframes slideLeft {
  0% {
    transform-origin: 0 0;
    transform: translateX(0%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateX(-100%);
  }
}

.slideLeftReturn {
  -webkit-animation-name: slideLeftReturn;
  animation-name: slideLeftReturn;
}

@-webkit-keyframes slideLeftReturn {
  0% {
    transform-origin: 0 0;
    transform: translateX(-100%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateX(0%);
  }
}

@keyframes slideLeftReturn {
  0% {
    transform-origin: 0 0;
    transform: translateX(-100%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateX(0%);
  }
}

.slideUp {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

@-webkit-keyframes slideUp {
  0% {
    transform-origin: 0 0;
    transform: translateY(0%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateY(-100%);
  }
}

@keyframes slideUp {
  0% {
    transform-origin: 0 0;
    transform: translateY(0%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateY(-100%);
  }
}

.slideUpReturn {
  -webkit-animation-name: slideUpReturn;
  animation-name: slideUpReturn;
}

@-webkit-keyframes slideUpReturn {
  0% {
    transform-origin: 0 0;
    transform: translateY(-100%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateY(0%);
  }
}

@keyframes slideUpReturn {
  0% {
    transform-origin: 0 0;
    transform: translateY(-100%);
  }

  100% {
    transform-origin: 0 0;
    transform: translateY(0%);
  }
}

.magictime {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-container-multirow>.swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform,height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear,right top, left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
  background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
  background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear,left top, right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
  background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
  background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear,left bottom, left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
  background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
  background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
  background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
  background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color,var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none!important;
  letter-spacing: 0;
  text-transform: none;
  font-feature-settings: normal,;
  font-variant: normal;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px,-50%,0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform,.2s top;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0,0,0,.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0,0,0,.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0,0,0,.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: 0;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices [hidden] {
  display: none!important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}

.choices[data-type*=select-one] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: .5;
}

.choices[data-type*=select-one] .choices__button:focus,
.choices[data-type*=select-one] .choices__button:hover {
  opacity: 1;
}

.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}

.choices[data-type*=select-one] .choices__item[data-value=''] .choices__button {
  display: none;
}

.choices[data-type*=select-one]:after {
  content: '';
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*=select-one].is-open:after {
  border-color: transparent transparent #333;
  margin-top: -7.5px;
}

.choices[data-type*=select-one][dir=rtl]:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin: 0 -4px 0 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: .75;
  border-radius: 0;
}

.choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=select-multiple] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}

.choices__list--dropdown.is-active {
  visibility: visible;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: .25rem .25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir=rtl] .choices__list--dropdown .choices__item {
  text-align: right;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: .5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: .5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus,
.choices__input:focus {
  outline: 0;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: .5;
}

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

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

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

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

.content-box-component {
  box-sizing: content-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Proxima Nova", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-color);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.open-nav--body {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.js-focus-visible .focus-visible {
  outline: 3px solid rgba(12, 159, 78, 0.25);
  outline-offset: 3px;
  box-shadow: 0 0 0 0.2rem #fff;
}

.js-focus-visible input.focus-visible {
  box-shadow: 0 2px var(--primary-color);
  border-color: var(--primary-color);
  outline: none;
}

input {
  outline: none;
}



.accordeon-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

/*
.accordeon-body--open {
  max-height: initial;
}
*/

.addToCart {
  position: relative;
  max-width: 160px;
  width: 100%;
  height: 44px;
  background-color: var(--white);
  border-radius: 55px;
  overflow: hidden;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  grid-template-columns: 22% 1fr 22% 30%;
  justify-content: center;
  border: 1px solid var(--secondary-color);
}

.addToCart::before {
  display: none;
  content: '';
  position: absolute;
  width: 44px;
  height: 80px;
  background-color: var(--secondary-color);
  right: 0;
  top: 0;
  z-index: 1;
}

.addToCart__login {
  display: none;
}

.addToCart--guest .addToCart__login {
  display: block;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--secondary-color);
  text-decoration: none;
  color: var(--white);
  font-family: var(--font2);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 43px;
  border: none;
  padding: 0;
}

.addToCart__btn {
  position: relative;
  border: none;
  background-color: var(--white);
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  height: 100%;
  transition: 0.2s ease-out;
}

.addToCart__btn::before {
  width: 10px;
  border-radius: 1px;
  content: '';
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.addToCart__btn:hover {
  background-color: var(--secondary-color);
}

.addToCart__btn:hover::before {
  background-color: var(--white);
}

.addToCart__btn--minus {
  padding-right: 10px;
}

.addToCart__btn--plus {
  margin-right: 1px;
}

.addToCart__btn--plus:hover::after {
  background-color: var(--white);
}

.addToCart__btn--plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 10px;
  border-radius: 1px;
  width: 2px;
  background-color: var(--secondary-color);
}

.addToCart__input {
  width: 100%;
  height: 100%;
  text-align: center;
  border: none;
  justify-self: center;
  font-size: 15px;
  padding: 5px;
  font-family: var(--font2);
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}

.addToCart__input:invalid {
  border: 1px solid rgba(255,0,0, 0.2);
}

.addToCart__input-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.addToCart__basket-btn {
  position: relative;
  height: 100%;
  z-index: 2;
  background-color: var(--secondary-color);
  border: none;
  cursor: pointer;
  padding: 0;
}

.addToCart__basket-icon {
  fill: var(--white);
}

.admin-page__row {
  padding: 20px 0;
  max-width: 870px;
  font-family: var(--font2);
}

.admin-page__row--width {
  max-width: none;
  max-width: initial;
}

.admin-page__txt {
  max-width: 600px;
}

.admin-page p {
  font-size: 14px;
  margin: 15px 0;
}

.admin-page h4 {
  font-size: 18px;
  margin: 30px 0 10px;
}

.admin-page a {
  font-size: 14px;
  color: var(--primary-color);
  display: block;
  line-height: 1.4;
}

.admin-page .delivery-slider__card-wrapper {
  padding: 20px;
  box-shadow: var(--box-shadow-default);
}

.admin-page__block--flex {
  margin-bottom: 10px;
}

.all-goods__list {
  display: none;
}

.all-goods__item-desc {
  font-size: 16px;
  color: var(--white);
  font-family: var(--font2);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.all-goods__item-desc:hover {
  color: var(--text-color);
}

.all-goods__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.all-goods__btn {
  background-color: var(--primary-color);
  border: none;
  font-size: 14px;
  color: var(--white);
  width: 140px;
  padding: 20px;
  font-weight: 600;
  font-family: var(--font2);
  cursor: pointer;
  transition: 0.3s;
}

.all-goods__btn:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.all-goods__btn:hover .all-goods__open-icon {
  fill: var(--white);
}

.all-goods__open-icon {
  fill: var(--white);
}

.all-goods__btn--open {
  background-color: var(--white);
  color: var(--primary-color);
}

.all-goods__btn--open .all-goods__open-icon {
  fill: var(--primary-color);
}





.authorization {
  padding: 100px 0;
}

.authorization .checkout-item {
  border-bottom: none;
}

.authorization .tabs__btn-wrapper {
  max-width: 335px;
  justify-content: flex-end;
  width: auto;
  width: initial;
}

.breadcrumb-section .breadcrumb {
  display: none;
}

.breadcrumb-section__row {
  padding: 40px 0;
}

.breadcrumb-section__back {
  padding: 10px 0;
  display: block;
  margin-right: auto;
  width: 30px;
}

.breadcrumb {
  color: var(--text-color);
}

.breadcrumb__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 30px;
}

.breadcrumb__link {
  text-decoration: none;
  font-weight: 300;
  font-size: 15px;
  color: inherit;
}

.breadcrumb__link::before {
  right: -20px;
  top: 6px;
  transform: rotate(-45deg);
}



.cabinet-greetings__item {
  box-shadow: var(--box-shadow-default);
  padding: 25px 20px;
}

.cabinet-greetings__desc {
  font-size: 16px;
  margin: 0 0 25px;
}

.cabinet-greetings__desc-name {
  font-weight: 700;
}

.cabinet-info__desc {
  font-size: 30px;
  font-family: var(--font2);
}

.cabinet-order-list {
  display: grid;
  grid-gap: 40px;
}

.cabinet-parts {
  padding: 45px 0;
}

.cart-header {
  display: none;
  font-size: 16px;
  padding: 20px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.cart-header__desc {
  margin: 0;
  font-weight: 600;
}

.cart-header__desc--first {
  margin-left: 290px;
}

.cart-header__desc--last {
  margin-right: 75px;
}

.cart-info__user-agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}

.cart-info__agreement-desc {
  margin: 0;
}

.cart-info__agreement-link {
  color: var(--primary-color);
}

.cart-info__agreement-checkbox {
  margin-right: 10px;
}

.cart-info__button-wrapper {
  display: grid;
  grid-gap: 10px;
  padding: 10px 0;
  max-width: 370px;
  margin: 0 auto;
}

.cart-info__button-wrapper .cart-info__order-button {
  width: 100%;
}

.cart-info__button-wrapper .cart-info__order-button--disabled {
  pointer-events: none;
  opacity: 0.4;
}

.cart-info__button-wrapper .cart-info__create-template {
  width: 100%;
}

.cart-info__attention {
  max-width: 370px;
  margin: 0 auto;
}

.cart-info__inner-wrapper {
  padding-bottom: 34px;
}

.cart-info__total-price {
  margin-bottom: 20px;
}

.cart-item {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  min-height: 200px;
  position: relative;
  color: var(--text-color);
  padding: 30px 20px 10px;
  display: grid;
  grid-gap: 0 20px;
  grid-template-columns: 1fr 1fr 1fr;
}

.cart-item .addToCart {
  grid-template-columns: 1fr 1fr 1fr;
  width: 150px;
}

.cart-item .addToCart::before {
  display: none;
}

.cart-item .addToCart__basket-btn {
  display: none;
}

.cart-item .addToCart__btn--plus {
  margin-right: -2px;
}

.cart-item__img-wrapper {
  max-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}

/*  @media (--m) {
      justify-content: start;
    }*/

.cart-item__img {
  max-height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

.cart-item__title-wrapper {
  grid-column: 2/4;
}

.cart-item__name {
  font-size: 14px;
  line-height: 17px;
  margin: 0;
}

.cart-item__name a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.cart-item__name a:hover {
  color: var(--primary-color);
}

.cart-item__manufacturer {
  padding: 0;
}

.cart-item__unit {
  display: none;
  pointer-events: none;
}

.my-address__item.cart-item--delete,
.cart-item.cart-item--delete,
.favorites__item.cart-item--delete {
  min-height: 0;
  min-height: initial;
  -webkit-animation: removed-item-animation 0.5s ease-in forwards;
  animation: removed-item-animation 0.5s ease-in forwards;
}

@-webkit-keyframes removed-item-animation {
  from {
    opacity: 1;
    transform: scale(1);
    max-height: 200px;
  }

  to {
    opacity: 0;
    transform: scale(0.7);
    max-height: 0;
    padding: 0;
  }
}

@keyframes removed-item-animation {
  from {
    opacity: 1;
    transform: scale(1);
    max-height: 200px;
  }

  to {
    opacity: 0;
    transform: scale(0.7);
    max-height: 0;
    padding: 0;
  }
}

.cart-item__counter {
  grid-column: 2/4;
  grid-row: 2/3;
  justify-self: center;
  align-self: center;
}

.cart-item__hidden-total-price,
.cart-item__hidden-price {
  display: none;
}

.cart-item__total-price {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 14px;
  justify-self: center;
  align-self: center;
}

.cart-item__total-price span {
  font-size: 21px;
  font-weight: 700;
}

.cart-item__price {
  font-size: 14px;
  display: none;
}

.cart-item__price span {
  font-size: 21px;
  font-weight: 700;
}

.cart-item__delete-btn.green-cross {
  position: absolute;
  top: 10px;
  right: 10px;
}



.cart__row {
  padding: 0 0 50px;
}

.cart__list-items {
  display: grid;
  grid-gap: 10px;
}

.checkout-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--light-grey);
}

.checkout-item .tabs__btn-wrapper {
  width: auto;
  border: none;
  padding: 0;
}

.checkout-item .tabs__btn {
  color: var(--primary-color);
  text-decoration: underline;
  font-size: 14px;
  display: block;
  padding: 0;
  font-weight: 400;
}

.checkout-item .tabs__btn--active {
  display: none;
}

.checkout-item .tabs-info__row {
  min-height: 270px;
}

.checkout-item__wrapper {
  display: grid;
  grid-gap: 10px;
}

.checkout-item__title {
  font-size: 16px;
  font-family: var(--font2);
  margin: 0 0 10px;
}

.checkout-item__date {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  border: none;
  background-color: transparent;
}

.checkout-item__radio-group,
#orderform-paymethod,
#deliveryform-method {
  display: grid;
  grid-gap: 10px;
}

.checkout-item__pay-way .pay-list {
  justify-content: start;
}

.checkout-item__save-address-wrapper {
  display: grid;
  grid-gap: 10px;
  max-height: 270px;
  overflow-y: scroll;
}

.checkout-item__textarea {
  border: 1px solid var(--light-grey);
  padding: 15px;
  max-width: 335px;
  resize: none;
}

.checkout-item__save-address-wrapper::-webkit-scrollbar {
  width: 12px;
}

.checkout-item__save-address-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

.checkout-product {
  width: calc(100% + 32px);
  margin-left: -16px;
}

.checkout-product__header {
  background-color: var(--light-grey-1);
  padding: 20px;
}

.checkout-product__desc {
  display: none;
  margin: 0;
  font-size: 14px;
  font-family: var(--font2);
}

.checkout-product__desc--mobile {
  display: block;
}

.checkout-product__body {
  padding: 20px;
  max-height: none;
  max-height: initial;
}

.checkout-product__item-name {
  margin: 0;
  font-size: 16px;
}

.checkout-product__info-desc {
  margin: 0;
  display: grid;
  grid-gap: 5px;
}

.checkout-product__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.checkout-product__item {
  display: grid;
  grid-gap: 12px;
  border-bottom: 1px solid var(--light-grey-1);
  padding: 20px 0;
}

.checkout-product__item:last-child {
  border-bottom: none;
}

.checkout-product__price-wrapper {
  padding: 15px 20px;
  background-color: var(--light-grey-1);
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-logo__img {
  height: 26px;
}

.contact-info__form-wrapper {
  display: grid;
  grid-gap: 5px;
}

.contacts .contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: initial;
}

.contacts .social__item {
  margin-right: 40px;
}

.contacts .social__item:last-child {
  margin-right: 0;
}

.contacts__title {
  font-size: 30px;
  font-family: var(--font2);
  margin: 50px 0;
}

.contacts__info-container {
  padding: 50px 16px;
  box-shadow: var(--box-shadow-default);
  width: calc(100% + 32px);
  margin-left: -16px;
}

.contacts__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-gap: 50px;
  margin-bottom: 50px;
}

.contacts__link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: inherit;
}

.contacts__desc-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}

.contacts__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contacts__map-container {
  width: calc(100% + 32px);
  margin-left: -16px;
}

.contacts__map-container iframe {
  width: 100%;
}

.contacts__row {
  padding-bottom: 50px;
}

.custom-checkbox__visual {
  position: relative;
  display: block;
  cursor: pointer;
  width: 15px;
  height: 15px;
  border: 1px solid var(--text-color);
}

.custom-checkbox__checkbox:checked ~ .custom-checkbox__visual {
  background-color: var(--primary-color);
  border: none;
}

.custom-checkbox__checkbox:checked ~ .custom-checkbox__visual::before {
  content: '';
  position: absolute;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: translate(-50%, -60%) rotate(45deg);
  left: 50%;
  top: 50%;
  width: 5px;
  height: 9px;
}

.custom-input {
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
}

.custom-input label {
  width: 100%;
}

.custom-input__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column-reverse;
  max-width: 335px;
  position: relative;
}

.custom-input__text {
  font-size: 14px;
  position: absolute;
  top: 0;
  margin-bottom: 0;
  transition: 0.3s;
  opacity: 0.7;
}

.custom-input .custom-input__text--arrow::before {
  right: 10px;
  top: 25px;
  z-index: -1;
}

.custom-input__input {
  border: none;
  position: relative;
  border-bottom: 1px solid #b2b2b2;
  max-width: 335px;
  font-size: 14px;
  padding: 5px 10px 5px 0;
  font-weight: 300;
  background-color: transparent;
  z-index: 5;
  transition: 0.3s;
}

.custom-input__input--active ~ .custom-input__text,
.custom-input__input:focus ~ .custom-input__text {
  font-size: 12px;
  top: -12px;
  opacity: 0.4;
}

.custom-select--2 ~ .custom-input__text,
.custom-select--2:focus .custom-input__text,
.custom-input__input--active.custom-select--2 .custom-input__text {
  all: revert;
  opacity: 0.7;
}

.custom-input__text--arrow::before {
  width: 5px;
  height: 5px;
}

.custom-input__error {
  position: absolute;
  color: var(--error-color);
  bottom: -20px;
  font-size: 12px;
  display: none;
}

.show-error .custom-input__error {
  display: block;
}



.custom-message {
  width: 230px;
  border: 1px solid var(--secondary-color);
  padding: 15px 25px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}

.custom-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.custom-radio__btn-wrapper {
  margin-right: 10px;
}

.custom-radio__visual {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.custom-radio__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: 0.3s;
}

.custom-radio__radio:checked ~ .custom-radio__visual::before {
  transform: translate(-50%, -50%) scale(1);
}

.custom-radio__desc {
  font-size: 14px;
  font-weight: 300;
}

.custom-rect-radio {
  min-height: 75px;
}

.custom-rect-radio__info {
  min-height: 75px;
  width: 100%;
  max-width: 330px;
  padding: 10px 35px 10px 15px;
  border: 1px solid var(--light-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.custom-rect-radio__name {
  font-size: 16px;
  font-weight: 700;
}

.custom-rect-radio__desc {
  font-size: 14px;
  font-weight: 300;
}

.custom-rect-radio__btn:checked ~ .custom-rect-radio__info {
  border: 1px solid var(--primary-color);
}

.custom-rect-radio__btn:checked ~ .custom-rect-radio__info::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 20px;
  border-bottom: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  right: 15px;
  top: 30%;
  border-radius: 1px;
  transform: rotate(45deg);
}

.custom-select--product .choices::after {
  display: none;
}

.custom-select--product .choices::before {
  top: 43%;
  right: 20px;
}

.custom-select--product .choices.is-open::before {
  transform: rotate(225deg);
}

.custom-select--product .choices__item {
  line-height: 1.4;
}

.custom-select--product .choices__inner {
  border-radius: 55px;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font2);
  color: var(--text-color);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
}

.custom-select--product .choices__placeholder {
  opacity: 1;
  line-height: 1.5;
}

.custom-select--product .choices__list--dropdown .choices__item--selectable {
  padding-right: 20px;
}

.custom-select--product .choices__list {
  border-radius: 4px;
  border: none;
  font-size: 14px;
}

.custom-select--product .choices__list--dropdown {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  font-weight: 600;
}

.custom-select--product .choices__item:hover {
  color: var(--primary-color);
  background-color: var(--light-grey);
}

.custom-select--2 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select--2:focus ~ .custom-input__text--arrow::before {
  transform: rotate(225deg);
}

.decorative-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.decorative-title__desc {
  font-family: var(--font2);
  position: relative;
  padding: 10px 20px;
  text-align: center;
  width: auto;
  font-weight: 700;
  z-index: 2;
  font-size: 28px;
}

.decorative-title__desc::before {
  content: '';
  position: absolute;
  width: 65%;
  height: 50%;
  right: 0;
  bottom: 0;
  background-color: var(--secondary-color);
  z-index: -1;
}

.decorative-title--red {
  --secondary-color: #f3848b;
}

.decorative-title--orange {
  --secondary-color: #f9a21b;
}

.delivery-slider {
  min-height: 500px;
  background-size: 100%;
  background-image: url(../img/popular-category/popular_pattern_desc.jpg);
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
  content-visibility: auto;
}

.delivery-slider__card-wrapper {
  padding-left: 22px;
  padding-right: 22px;
  max-width: 375px;
  margin: 0 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.delivery-slider__card {
  background-color: var(--white);
  min-height: 272px;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  padding: 10px 15px;
  border-radius: 4px;
}

.delivery-slider__card-desc {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 25px;
  margin-top: auto;
}

.delivery-slider__card-name {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: var(--orange);
}

.delivery-slider__card-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: auto;
  margin-bottom: 20px;
}

.delivery-slider__card-icon {
  margin-right: 20px;
}

.delivery-slider__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  width: 92px;
  margin-left: auto;
}

.delivery-slider-prev {
  transform: rotate(180deg);
}

.delivery-swiper {
  width: 100%;
  margin-bottom: 30px;
}

.delivery-swiper .swiper-slide {
  max-width: 450px;
}

.dropdown-nav {
  list-style-type: none;
  padding: 10px 0 0 20px;
  margin: 0;
  display: grid;
  grid-gap: 10px;
  visibility: hidden;
  position: absolute;
  top: -100px;
}

.dropdown-nav--open ~ .dropdown-nav {
  visibility: visible;
  position: static;
}

.dropdown-nav__link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 300;
  font-size: 16px;
}

.goods-list__item .dropdown-nav {
  visibility: hidden;
  position: absolute;
}

.goods-list__item .dropdown-list--open {
  visibility: visible;
  position: static;
}

.goods-list__item .dropdown-nav__link {
  display: inline-block;
  width: auto;
  margin-right: auto;
  padding: 10px 17px;
  transition: background-color 0.2s;
  font-weight: 300;
  font-size: 14px;
}

.goods-list__item .dropdown-nav__link:hover {
  background-color: var(--secondary-color);
}

.goods-list__item .dropdown-nav__item {
  border-top: 1px solid var(--light-grey);
}

.goods-list__item .dropdown-nav {
  grid-gap: 0;
}

.aside-category .goods-list__items-container--aside .dropdown-nav {
  visibility: hidden;
  position: absolute;
}

.aside-category .goods-list__items-container--aside .dropdown-list--open {
  visibility: visible;
  position: static;
}

.aside-category .goods-list__items-container--aside .dropdown-nav__link {
  padding: 10px 32px;
  font-family: var(--font2);
  font-weight: 400;
}

.aside-category .goods-list__items-container--aside .dropdown-nav__link:hover,
.aside-category .goods-list__items-container--aside .dropdown-nav__link--active {
  background-color: var(--primary-color);
  color: var(--white);
}



.error-page__row {
  padding: 50px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.error-page__title {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font2);
  margin: 0 0 60px;
}

.error-page__desc-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-page__desc {
  margin: 0;
  font-size: 16px;
  max-width: 540px;
  text-align: center;
}

.error-page__back-link {
  color: var(--primary-color);
}

.favorites {
  display: grid;
  grid-gap: 10px;
}

.favorites .favorites__img {
  max-height: 80px;
}

.favorites .favorites__img-wrapper {
  max-height: 80px;
  margin-right: 0;
  justify-content: center;
}

.favorites__item {
  position: relative;
  padding: 25px 15px;
  box-shadow: var(--box-shadow-default);
  display: grid;
  grid-template-columns: 30% 42% auto;
  grid-auto-flow: column;
  align-items: center;
  grid-gap: 15px;
  min-height: 115px;
}

.favorites__item a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.favorites__item a:hover {
  color: var(--primary-color);
}

.product-item .favorites__item-delete {
  position: absolute;
  right: 10px;
  top: 10px;
}

.favorites__article {
  align-self: end;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.favorites__title {
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 5px;
  font-weight: 700;
}

.favorites__desc {
  margin: 0;
  font-size: 14px;
}

.footer {
  background-color: var(--light-grey);
  margin-top: auto;
}

.footer .second-navigation {
  display: unset;
  margin-bottom: 40px;
}

.footer .second-navigation__list {
  grid-auto-flow: unset;
  justify-items: center;
  grid-gap: 13px;
}

.footer .second-navigation__link {
  font-size: 20px;
}

.footer__social {
  margin-bottom: 30px;
}

.footer .social {
  grid-auto-flow: column;
  grid-gap: 30px;
}

.footer .main-search {
  display: unset;
  background-color: var(--white);
  border-radius: 20px;
  width: 180px;
  padding: 5px 10px 5px 19px;
  margin-bottom: 35px;
}

.footer__copyright {
  margin: 0 0 20px;
}

.footer__row {
  display: grid;
  justify-items: center;
  padding: 35px 20px 70px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo .company-logo__img {
  width: 176px;
  height: 56px;
}

.footer__developers {
  margin-bottom: 45px;
}

.footer__developers-link {
  text-decoration: none;
  color: inherit;
}

.footer__second-navigation {
  grid-column: 1 / -1;
  grid-row: 2 / span 1;
}

.goods-list {
  visibility: hidden;
  transform: translateY(-10000px);
  /*display: none;*/
  position: fixed;
  font-family: var(--font2);
  width: 100%;
  overflow: auto;
  transition: visibility 0.1s;
  transition-duration: 0.4s;
  top: 0;
  left: 0;
  z-index: 15;
  background-color: var(--white);
  height: 110vh;
  height: calc(var(--vh, 1vh) * 100);
}

.goods-list--open {
  visibility: visible;
  transform: translateY(0);
}

/*display: block;*/

.goods-list__wrapper {
  padding: 0;
}

.goods-list__header {
  background-color: var(--light-grey);
  padding: 15px 20px;
  display: grid;
  width: 100%;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
}

.goods-list__title {
  margin: 0;
  color: var(--text-color);
  font-size: 20px;
}

.goods-list__items-container {
  padding: 40px 15px;
  display: grid;
  grid-gap: 30px;
}

.goods-list__items-container--aside {
  display: none;
}

.goods-list__items-container--aside .goods-list__item {
  grid-area: initial;
}

.goods-list__items-container--aside .goods-list__icon {
  display: block;
  position: absolute;
  left: 0;
}

.goods-list__items-container--aside .goods-list__link {
  color: var(--text-color);
  padding-left: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.goods-list__items-container--aside .goods-list__link:hover {
  transition: 0.3s;
  color: var(--primary-color);
}

.goods-list__items-container--aside .goods-list__link--active {
  color: var(--primary-color);
}

.goods-list__items-container--aside .goods-list__item-btn {
  display: block;
}

.goods-list__items-container--aside .dropdown-nav {
  visibility: hidden;
  position: absolute;
}

.goods-list__items-container--aside .dropdown-list--open {
  visibility: visible;
  position: static;
}

.goods-list__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.goods-list__link {
  color: var(--text-color);
  padding-left: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.goods-list__link:hover {
  transition: 0.3s;
  color: var(--primary-color);
}

.goods-list__icon {
  position: absolute;
  left: 0;
  stroke: var(--primary-color);
  fill: transparent;
}

.goods-list__item-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.goods-list__item-btn::before {
  right: 5px;
  top: 5px;
}

/*.goods-list--overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.41);
  z-index: 2;
  display: none;
}

.goods-list--overlay-open {
  display: block;
}*/

.goodsList-page__row .popular-goods__product-container {
  padding: 10px;
}

.goodsList-page__wrapper {
  padding-left: 0;
  padding-right: 0;
}

.green-cross {
  border: none;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  display: block;
  padding: 10px;
}

.green-cross::before,
.green-cross::after {
  content: '';
  position: absolute;
  width: 16px;
  top: 50%;
  left: 50%;
  height: 2px;
  background-color: var(--primary-color);
}

.green-cross::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.green-cross::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.main-header {
  position: relative;
  z-index: 10;
}

.main-header__top-menu {
  width: 100%;
  background-color: var(--light-grey);
  position: relative;
}

.main-header__inner-container {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  padding: 10px 0;
  align-items: center;
}

.main-header__logo {
  justify-self: center;
}

.main-header__icon-container {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 25px 25px 25px;
}

.main-header__cart {
  display: none;
  justify-self: end;
  position: relative;
}

.main-header__cart-link {
  text-decoration: none;
}

.main-header__cart-count,
.main-header__fav-count {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-header__navigation {
  position: absolute;
  top: 47px;
  left: 0;
  background-color: var(--white);
  z-index: 2;
  width: 100%;
  visibility: hidden;
  overflow: auto;
  transition: visibility 0.1s;
  transition-duration: 0.4s;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.main-header__nav-container {
  display: grid;
  grid-template-rows: auto 2fr auto minmax(30px, 1fr) auto;
  padding: 60px 20px 55px;
  margin: 0 auto;
  min-height: 568px;
}

.main-header__navigation--open {
  visibility: visible;
}

.main-header__social {
  grid-row: 3/span 1;
}

.main-header__phone-number {
  position: relative;
  color: var(--primary-color);
  font-family: var(--font2);
  font-weight: 700;
  grid-row: 5/ -1;
  text-decoration: none;
  padding-left: 30px;
}

.main-header__phone-number::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 18px;
  height: 18px;
  background-image: url(../img/icon/icon-phone.svg);
}

.main-header__favorites {
  justify-self: center;
  position: relative;
}

.main-header__wishlist-desktop {
  display: none;
}

.magictime.slideLeftReturn,
.magictime.slideLeft,
.magictime.slideLeftReturn_b,
.magictime.slideLeft_b,
.magictime.slideLeft_goods,
.magictime.slideLeft_goods-return {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

.magictime.slideUp,
.magictime.slideUpReturn {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
}

/*Размер шрифта названий языков*/

/*Размер треугольника*/

/*Насыщенность шрифта*/

/*Падинги названий языков*/

.language {
  position: relative;
  padding-right: 20px;
  z-index: 10;
}

.language--open .language__current::before {
  transform: rotate(225deg);
}

.language--open .language__list {
  visibility: visible;
}

.language__current {
  cursor: pointer;
  padding: 0;
  font-weight: 400;
  font-size: 15px;
  border: none;
  background-color: transparent;
}

.language__current::before {
  right: -20px;
  top: 3px;
}

.language__current:hover,
.language__current:active {
  opacity: 0.9;
  outline: none;
}

.language__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 17px;
  left: 1px;
  visibility: hidden;
  transition: visibility 0.6s;
}

.language__link {
  padding: 3px 0;
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 15px;
}

.magictime.vanishOut,
.magictime.vanishIn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.liqpay-btn {
  max-width: 305px;
  margin: 0 auto 20px;
}

.liqpay-btn .rect-btn {
  max-width: 305px;
  width: 100%;
}

.login .login__submit {
  width: 100%;
  max-width: 335px;
  margin-top: auto;
}

.login .custom-input__input {
  width: 100%;
  max-width: none;
  max-width: initial;
}

.login__input-wrapper {
  display: grid;
  grid-gap: 20px;
  min-height: 180px;
}

.login__title {
  font-family: var(--font2);
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px;
}

.main-cart-link {
  position: relative;
}

.main-cart-link .main-header__cart-count {
  top: -20px;
}

.main-login {
  display: none;
}

.main-login-btn {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.main-login--second-header {
  display: block;
}

.main-search {
  display: none;
}

.main-search__input {
  border: none;
  background-color: transparent;
  width: 125px;
  font-size: 16px;
}

.main-search__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.main-search--second-header {
  display: block;
  width: auto;
}

.main-search--second-header .main-search__btn {
  padding: 0;
  background-color: transparent;
  border: none;
}

.main-search__submit {
  padding: 0;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.my-address {
  display: grid;
  grid-gap: 20px;
}

.my-address .custom-input {
  max-width: 400px;
}

.my-address__item {
  border: 1px solid var(--light-grey);
}

.my-address__title {
  font-size: 16px;
  margin: 0 0 7px;
}

.my-address__desc {
  font-size: 14px;
  margin: 0;
}

.my-address__header {
  padding: 20px;
  background-color: var(--light-grey);
}

.my-address__mobile-edit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.my-address__mobile-edit::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 60%;
  left: 50%;
  top: 12px;
  background-color: var(--light-grey);
}

.my-address__edit-btn {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45%;
}

.my-address__edit-text {
  margin-left: 10px;
}

.my-address__body {
  padding: 20px;
}

.my-address__form-wrapper {
  display: grid;
  grid-gap: 15px;
}

.my-address__form-wrapper .my-address__form-submit {
  max-width: 335px;
  width: 100%;
}

.my-address__edit-btn-wrapper {
  display: none;
}

.nav-widget {
  max-width: 50px;
  width: 100%;
  height: 160px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 20;
  background-color: rgba(247, 247, 247, 0.75);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 3px 13px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(55px);
  backdrop-filter: blur(55px);
  border-radius: 10px;
  display: none;
}

.nav-widget__wrapper {
  height: 100%;
}

.nav-widget__row {
  padding: 15px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-widget__item {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.nav-widget__item:hover {
  transform: scale(1.2);
}



.notification {
  max-width: 440px;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  z-index: 20;
  background-color: rgba(247, 247, 247, 0.75);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 3px 13px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(55px);
  backdrop-filter: blur(55px);
  border-radius: 10px;
  display: none;
}

.notification a {
  color: inherit;
}

.notification__wrapper {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
}

.notification__icon {
  margin-right: 15px;
  width: 30px;
  height: 30px;
}

.notification__desc {
  margin: 0;
  font-size: 14px;
}

.notification--show {
  display: block;
  -webkit-animation: fadeOut 3.5s ease-in-out forwards;
  animation: fadeOut 3.5s ease-in-out forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }

  99% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }

  99% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  100% {
    opacity: 0;
  }
}



.order-form__aside-wrapper {
  margin-bottom: 25px;
}

.order-form__submit-wrapper {
  padding: 10px 0;
}

.order-form__submit-wrapper .rect-btn {
  width: 100%;
}

.order-form__submit-btn {
  margin-bottom: 10px;
}

.order-form__item--delivery-only {
  display: none;
}

.order-item {
  border: 1px solid var(--light-grey);
}

.order-item .order-item__card-pay {
  width: 65%;
  max-width: 265px;
  justify-self: center;
}

.order-item__header-row {
  padding: 15px;
  background-color: var(--light-grey);
  display: grid;
  grid-template-columns: 30px 1fr 1fr;
  grid-template-rows: auto auto;
  grid-gap: 10px 0;
}

.order-item__header-button {
  padding: 0;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.order-item__header-button.green-arrow::before {
  left: 7px;
  top: 5px;
}

.order-item__header-number {
  min-width: 80px;
  font-size: 20px;
  font-family: var(--font2);
  font-weight: 700;
  margin-right: 10px;
}

.order-item__header-label.round-btn {
  width: auto;
  padding: 2px 5px;
  grid-row: 2/-1;
  justify-self: center;
  grid-column: 1/-1;
}

.order-item__header-label--new.round-btn {
  background-color: var(--secondary-color);
}

.order-item__header-label--take.round-btn {
  background-color: #9858A2;
}

.order-item__header-label--done.round-btn {
  background-color: #F79E1B;
}

.order-item__header-label--cancel.round-btn {
  background-color: #ED2D47;
}

.order-item__total-price {
  margin-left: auto;
}

.order-item__total-price {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font2);
}

.order-item__total-price span {
  font-size: 20px;
}

.order-item__repeat-order {
  display: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  position: relative;
  padding: 15px 15px 15px 45px;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--light-grey);
}

.order-item__repeat-order::before {
  content: '';
  position: absolute;
  width: 13px;
  height: 12px;
  background-image: url(../img/icon/rotate-icon.svg);
  background-size: cover;
  left: 20px;
  top: 12px;
}

.order-item__repeat-order--mobile {
  display: block;
}

.order-item__service-info {
  display: grid;
  grid-gap: 20px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--light-grey);
  padding: 20px;
}

.order-item__service-info .order-item__card-pay {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-item__service-title {
  margin: 0;
  line-height: 1.4;
}

.order-item__service-desc {
  margin: 0;
  font-weight: 400;
}

.order-item__product {
  padding: 20px;
  border-bottom: 1px solid var(--light-grey);
}

.order-item__product:last-child {
  border-bottom: none;
}

.order-item__product .cart-item {
  padding: 0;
  box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.order-item__product .cart-item__img-wrapper {
  width: 40%;
  margin-bottom: 20px;
}

.order-item__product .cart-item__title-wrapper {
  width: 50%;
}

.order-item__product .cart-item__delete-btn {
  display: none;
}

.order-item__product .order-item__unit {
  width: 70px;
}

.order-item__product .cart-item__total-price span {
  font-size: 16px;
}

.order-template .rect-btn {
  width: 100%;
}

.order-template .order-template__create-btn {
  margin-bottom: 10px;
}

.order-template__header {
  padding: 50px 0;
}

.order-template__list {
  display: grid;
  grid-gap: 10px;
  padding: 20px 0;
}

.order-template__list .cart-item {
  grid-template-rows: 1fr 1fr auto;
}

.order-template__list .cart-item__unit {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
  width: 100%;
  grid-row: 3/4;
  grid-column: 2/4;
  justify-self: center;
  max-width: 160px;
}

.order-template__list .templates__item--cabinet .cart-item__unit {
  max-width: 80px;
}

.order-template__list .units-good {
  width: 100%;
}

.order-template__list .units-good__btn {
  max-width: 85px;
}

.order-template__list .addToCart {
  width: 100%;
}

.order-template__list .cart-item__total-price {
  grid-row: 2/4;
  align-self: center;
}

.order-template__price-row {
  background-color: var(--light-grey);
  padding: 15px 20px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.order-template__price {
  font-size: 26px;
  color: var(--primary-color);
  font-weight: 700;
}

.order-template__price sub {
  bottom: 0;
  right: -0.25em;
  font-size: 14px;
}

.order-template__price sup {
  font-size: 14px;
}

.order-template__hidden-price {
  display: none;
}

.order-template__btn-row {
  padding-bottom: 100px;
}

.order-thank__wrapper {
  box-shadow: var(--box-shadow-default);
  padding: 20px 25px 35px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-thank__name {
  font-weight: 300;
  align-self: center;
}

.order-thank__desc {
  font-weight: 700;
  margin: 0;
  align-self: center;
}

.order-thank__list {
  margin: 0 0 45px;
  display: grid;
  grid-template-columns: 170px 170px;
  grid-gap: 10px;
  justify-content: space-between;
  width: 100%;
}

.order-thank__print-btn {
  position: relative;
  padding: 5px 5px 5px 30px;
  display: block;
  border: none;
  color: var(--primary-color);
  font-size: 14px;
  background-color: transparent;
  text-transform: capitalize;
  cursor: pointer;
}

.order-thank__print-btn::before {
  position: absolute;
  content: '';
  width: 22px;
  height: 22px;
  background-image: url(../img/icon/printer-icon.svg);
  left: 0;
  top: 2px;
}



.order-top__row {
  padding: 30px 0 50px;
}

.order-top__title {
  font-family: var(--font2);
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 35px;
}

.order-top__back-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font2);
  display: block;
  margin-left: 15px;
}

.order-top__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.page-item {
  width: 100%;
}

.page-item__container {
  padding: 100px 0;
}

.page-item__header {
  padding: 50px 0;
}

.page-item__title {
  font-family: var(--font2);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.page-list__row {
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  grid-gap: 20px;
  width: 100%;
}

.page-list__item {
  height: 200px;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.page-list__item a {
  font-size: 40px;
  text-decoration: none;
  font-weight: 700;
  color: var(--secondary-color);
  transition: 0.3s;
}

.page-list__item a:hover {
  color: var(--primary-color);
}

.page-list__item--disable {
  opacity: 0.4;
}

.page-list__item--disable a {
  color: #777;
  cursor: default;
}

.page-list__item--disable a:hover {
  color: #777777;
}



.page-title__row {
  padding: 60px 0 50px;
}

.page-title__title {
  text-align: center;
  font-size: 30px;
  font-family: var(--font2);
  font-weight: 700;
  margin: 0;
}

.pagination {
  padding: 50px 30px;
  display: grid;
  grid-gap: 50px;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
}

.pagination .pagination__btn {
  background-color: var(--light-grey-1);
}

.pagination .pagination__btn::before {
  border-color: var(--primary-color);
}

.pagination__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
}

.pagination__link {
  text-decoration: none;
  color: inherit;
  font-family: var(--font2);
  font-size: 20px;
  font-weight: 400;
}

.pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.pagination__link--current {
  color: var(--primary-color);
}

.pagination__btn {
  background-color: var(--light-grey-1);
}

.pagination__btn--prev {
  transform: rotate(180deg);
}

.pagination__btn--prev,
.pagination__btn--next {
  pointer-events: none;
}

.pagination__btn--prev a,
.pagination__btn--next a {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}

.partners-slider {
  padding-bottom: 50px;
}

.partners-slider .delivery-slider__card {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80% 80%;
}

.pay-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
  justify-content: center;
}

.popular-category {
  background-image: url(../img/popular-category/popular_pattern_mob.jpg);
  width: 100%;
  background-repeat: repeat-y;
  background-size: 100%;
}

.popular-category__row {
  padding: 40px 0;
}

.popular-category__wrapper {
  max-width: 1810px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.category-button-next,
.category-button-prev {
  display: none;
}

.popular-category__swiper {
  overflow: unset;
}

.popular-category__swiper .swiper-wrapper {
  display: grid;
  grid-gap: 20px;
}

.popular-goods {
  width: 100%;
  background-color: var(--white);
  padding-bottom: 100px;
  content-visibility: auto;
}

.popular-goods__product-container {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  justify-content: start;
}

.popular-item {
  width: 100%;
  height: 230px;
  background-size: cover;
  background-position: center;
  display: grid;
  align-content: end;
}

.popular-item__container {
  padding-bottom: 20px;
}

.popular-item__link {
  position: relative;
  width: 83%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 5px;
  margin: 0 auto;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  padding: 0 15px;
  transition: 0.3s;
}

.popular-item__link::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  right: 15px;
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
}

.popular-item__link:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.popular-item__link:hover::before {
  border-color: var(--primary-color);
}

.popular-item__link:hover .popular-item__icon {
  stroke: var(--primary-color);
}

.popular-item__icon {
  margin-right: 10px;
  stroke: var(--white);
  fill: transparent;
  transition: 0.3s;
}

.popup-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.41);
  z-index: 100;
  display: none;
}

.popup-gallery .swiper-container {
  max-height: 500px;
  background-color: var(--white);
  margin-bottom: 10px;
}

.popup-gallery .swiper-wrapper {
  align-items: center;
  padding: 30px 10px;
}

.popup-gallery .swiper-slide {
  max-height: 500px;
  background-color: var(--white);
}

.popup-gallery .swiper-slide img {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 450px;
}

.popup-gallery--open {
  display: block;
}

.popup-gallery__row {
  width: 95%;
  max-width: 1204px;
  margin: 100px auto;
  min-height: 415px;
}

.popup-gallery__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-gallery__btn-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
}

.popup-gallery-prev {
  transform: rotate(180deg);
}

.popup-gallery__pagination {
  display: grid;
  grid-gap: 5px;
  grid-auto-flow: column;
}

.popup-gallery__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--white);
  opacity: 1;
}

.popup-gallery__pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
}

.popup-gallery__close-btn {
  right: 10px;
  top: 10px;
  position: absolute;
  z-index: 20;
}

.product-card {
  background-color: var(--light-grey-1);
}

.product-card__row {
  padding: 40px 0;
}

.product-card__title-container {
  display: grid;
  grid-template-columns: 85% 11%;
}

.product-card__title-wrapper h2 {
  font-size: 30px;
  line-height: 36px;
  margin: 10px 0;
  color: var(--text-color);
}

.product-card__title-wrapper p {
  margin: 10px 0;
  font-weight: 300;
  color: var(--text-color);
}

.product-card__wishlist {
  align-self: end;
  justify-self: end;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-right: 2px;
}

.product-card__gallery {
  --status-color: #fff;
  height: 360px;
  margin-bottom: 15px;
  position: relative;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card__product-label {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font2);
  background-color: var(--status-color);
  justify-content: center;
  align-items: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-card__gallery-open {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  padding: 0;
  border: none;
  width: 95%;
  height: 90%;
  background-position: center;
  /*background-size: contain;*/
  background-size: 87%;
  background-repeat: no-repeat;
  background-color: transparent;
}

.product-card__gallery-img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 330px;
}

.product-card__select-container {
  margin-bottom: 60px;
}

.product-card__characteristic-container {
  margin-bottom: 30px;
  color: var(--text-color);
}

.product-card__desc-container {
  margin-bottom: 20px;
}

.product-card__desc-container p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  margin: 10px 0;
}

.product-card__price-container {
  margin-bottom: 40px;
}

.product-card__units-container {
  margin-bottom: 20px;
}

.product-card__units-container .units-good {
  width: 100%;
  max-width: none;
  max-width: initial;
}

.product-card__units-container .units-good__btn {
  max-width: none;
  max-width: initial;
}

.product-card__counter-container .addToCart {
  max-width: 335px;
  margin: 0 auto;
  grid-template-columns: 22% 1fr 22% 30%;
  justify-content: center;
}

.product-card__counter-container .addToCart__basket-btn {
  width: 100%;
}

.product-card__counter-container .addToCart__input {
  justify-self: center;
}

.product-card__counter-container .addToCart__btn--plus {
  margin-right: 0;
}

.product-characteristic {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  grid-gap: 30px 20px;
}

.product-characteristic__item h3 {
  margin: 7px 0;
  font-size: 16px;
  font-weight: 600;
}

.product-characteristic__item span {
  font-size: 16px;
  font-weight: 400;
}

.product-item {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
  width: 100%;
}

.product-item--none {
  position: relative;
  pointer-events: none;
  --secondary-color: #ccc;
}

.product-item--none > div {
  opacity: 0.5;
  -webkit-filter: blur(1px);
  filter: blur(1px);
}

.product-item--none::before {
  width: 100%;
  padding: 4px 9px;
  position: absolute;
  top: 77%;
  left: 50%;
  max-width: 220px;
  content: 'Очікується поставка';
  font-weight: 700;
  color: var(--error-color);
  border: 1px solid var(--error-color);
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.4);
}

.product-item--one-unit .product-price__unit-first {
  color: transparent;
}

.product-item--one-unit .product-price__price-first {
  color: transparent;
}

.product-item__wrapper-top {
  padding: 15px 12px 20px;
  position: relative;
}

.product-item__wrapper-middle {
  padding: 25px 15px;
  min-height: 106px;
}

.product-item__wrapper-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  width: 100%;
}

.product-item__title-wrapper {
  height: 90px;
}

.product-item__wishlist {
  position: absolute;
  top: 15px;
  right: 12px;
  overflow: hidden;
}

.product-item__name {
  margin: 0 auto 10px 0;
  font-size: 18px;
  font-weight: 700;
  width: 260px;
}

.product-item__name a {
  text-decoration: none;
  color: inherit;
}

.product-item__manufacturer {
  margin: 0 0 20px;
}

.product-item__img-wrapper {
  height: 185px;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
}

.product-item__img {
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 185px;
}

.product-item__signin {
  height: 40px;
  margin: 0 auto;
  background-color: var(--secondary-color);
  border-radius: 25px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  text-align: center;
}

.product-item__signin a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background-color: rgba(0,0,0,0);
}



.product-listFilter__row {
  display: grid;
  grid-template-columns: 70% 30%;
  padding: 50px 0;
  grid-gap: 50px 0;
}

.product-listFilter__title {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font2);
  margin: 0;
  grid-column: 1/-1;
}

.product-listFilter__price-sort {
  width: 90%;
  max-width: 230px;
  height: 40px;
  display: block;
  justify-self: start;
  font-family: var(--font2);
  border: none;
  background-image: url('../img/icon/select-arrow.svg');
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-color: var(--light-grey-1);
  padding: 0 40px 0 20px;
  border-radius: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
}

.product-listFilter__default-sort {
  width: 90%;
  max-width: 90px;
  height: 40px;
  display: block;
  border: none;
  border-radius: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--light-grey-1);
  font-family: var(--font2);
  font-size: 16px;
  color: transparent;
  padding: 0 20px;
  background-image: url('../img/icon/select-filter.svg'), url('../img/icon/select-arrow.svg');
  background-repeat: no-repeat;
  background-position: 10px 50%, 90% 50%;
  justify-self: end;
  margin-left: auto;
}

.product-listFilter__default-sort option {
  color: var(--text-color);
}

.product-listFilter__select-wrapper--end {
  justify-self: end;
}

.product-listFilter--cart .product-listFilter__order-template {
  display: none;
}

.product-listFilter--cart .product-listFilter__title {
  margin-right: 20px;
}

.product-price {
  display: grid;
  color: var(--text-color);
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  grid-gap: 8px 0;
}

.product-price__unit-first {
  font-size: 14px;
  font-weight: 300;
  grid-row: 1/ span 1;
  grid-column: 1 /span 1;
}

.product-price__unit-second {
  font-size: 14px;
  font-weight: 300;
  grid-row: 2/ span 1;
  grid-column: 1 /span 1;
  align-self: center;
}

.product-price--current {
  color: var(--secondary-color);
}

.product-price__price-first {
  font-size: 20px;
  font-family: var(--font2);
  grid-row: 1/ span 1;
  grid-column: 2 /span 1;
}

.product-price__price-second {
  font-size: 20px;
  font-family: var(--font2);
  grid-row: 2/ span 1;
  grid-column: 2 /span 1;
}

.product-price__total-price {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font2);
  grid-column: 3 /span 1;
  grid-row: 2/ span 1;
}

.promotion-item {
  background-color: var(--white);
}

.promotion-item--green {
  --promotion-color: var(--secondary-color);
}

.promotion-item--red {
  --promotion-color: #ed2d47;
}

.promotion-item__top {
  padding: 40px 0 0 20px;
  position: relative;
  height: 220px;
}

.promotion-item__sale {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 98px;
  height: 98px;
  color: var(--white);
  background-color: var(--promotion-color);
  border-radius: 50%;
  font-size: 35px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promotion-item__bottom {
  position: relative;
  overflow: hidden;
  padding: 30px 0 0;
  z-index: 2;
}

.promotion-item__desc-container {
  padding: 20px 15px 20px;
  display: grid;
  grid-template-columns: 170px 1fr;
  grid-gap: 0 10px;
  grid-template-rows: 40px 40px auto;
}

.promotion-item__bg {
  position: absolute;
  width: 200%;
  height: 129%;
  bottom: -73px;
  left: -50%;
  background-color: var(--promotion-color);
  border-radius: 50%;
  z-index: -1;
}

.promotion-item__name {
  color: var(--text-color);
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  grid-row: 1/3;
}

.promotion-item__date {
  font-size: 16px;
  color: var(--white);
  align-self: end;
  grid-row: 3/4;
}

.promotion-item__old-price {
  font-size: 2em;
}

.promotion-item__old-price sup {
  font-size: 0.5em;
  top: -0.7em;
  left: -5px;
}

.promotion-item__old-price--line-through {
  position: relative;
  justify-self: end;
}

.promotion-item__old-price--line-through::before {
  content: '';
  position: absolute;
  top: 29%;
  width: 90%;
  height: 2px;
  background-color: var(--white);
  transform: rotate(-28deg);
  z-index: 5;
}

.promotion-item__new-price {
  display: grid;
  grid-template-columns: auto 50px;
  grid-template-rows: auto auto;
  grid-gap: 7px;
  grid-column: 2/3;
  grid-row: 2/span 2;
  justify-self: end;
}

.promotion-item__new-price-bill {
  font-size: 34px;
  font-weight: 700;
  line-height: 0.8;
  color: var(--white);
  grid-row: 1/ -1;
}

.promotion-item__new-price-coin {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  align-self: start;
  line-height: 1;
}

.promotion-item__new-price-weight {
  grid-column: 2/span 1;
  grid-row: 2/ span;
  font-size: 18px;
  color: var(--white);
  align-self: end;
}

.promotions {
  width: 100%;
  background-color: var(--white);
}

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

.promotions__swiper {
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.promotions__swiper .swiper-wrapper {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.promotions__swiper .swiper-slide {
  max-width: 335px;
  text-decoration: none;
  color: inherit;
}

.promotions__swiper .swiper-slide--picture {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 429px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.promotions__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 92px;
  margin-left: auto;
  padding-top: 25px;
}

.promotions-button-next,
.promotions-button-prev {
  position: relative;
  width: 38px;
  height: 38px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
}

.promotions-button-next::before,
.promotions-button-prev::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -5px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
}

.promotions-button-prev:before {
  transform: rotate(135deg);
}

.promotions-button-next.swiper-button-disabled,
.promotions-button-prev.swiper-button-disabled {
  opacity: 0.7;
}

.rect-btn {
  padding: 10px;
  text-decoration: none;
  display: block;
  max-width: 330px;
  width: 100%;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font2);
  font-weight: 700;
  color: var(--primary-color);
  transition: 0.3s;
  text-align: center;
  line-height: 1.4;
}

.rect-btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.rect-btn--invert {
  background-color: var(--primary-color);
  color: var(--white);
}

.rect-btn--invert:hover {
  color: var(--primary-color);
  background-color: var(--white);
}

.round-btn {
  background-color: var(--secondary-color);
  border-radius: 55px;
  color: var(--white);
  text-decoration: none;
  width: 135px;
  display: block;
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-family: var(--font2);
}

.search-bar {
  box-shadow: var(--box-shadow-default);
  transition: all 0.3s;
  overflow: hidden;
  max-height: 200px;
}

.search-bar .green-cross {
  --primary-color: var(--secondary-color);
}

.search-bar--close {
  max-height: 0;
}

.search-bar__row {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-bar__search {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.search-bar__input {
  background-color: transparent;
  border: none;
  padding: 10px;
  width: 65%;
  text-align: center;
  font-size: 14px;
}

.search-bar__input:focus {
  outline: 3px solid rgba(12, 159, 78, 0.25);
}

.search-info {
  padding: 50px 0;
  font-family: var(--font2);
}

.search-info__title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 15px;
}

.search-info__desc {
  font-size: 14px;
  margin: 0;
}



.search-result__row {
  padding: 25px 0;
}

.second-header {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 6;
}

.second-header__wrapper {
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.2);
  padding: 0;
}

.second-header__inner-container {
  position: relative;
  display: grid;
  grid-template-columns: 140px repeat(3, 1fr);
  justify-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-right: 25px;
  align-items: center;
  background-color: var(--white);
}

.second-header__search-close {
  position: absolute;
  right: 20px;
}

.second-header__form-wrapper {
  display: none;
}

/*.no-sticky {
  .second-header--sticky ~ main {
    @media (--el) {
      padding-top: 0;
    }
  }
}*/

.second-navigation {
  display: none;
}

.second-navigation__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-gap: 20px;
  grid-auto-flow: column;
}

.second-navigation__link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
}

.see-also__row {
  padding-bottom: 50px;
}



.site-navigation {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  justify-items: start;
  grid-gap: 20px;
}

.site-navigation__btn {
  font-family: var(--font2);
  cursor: pointer;
  border: none;
  background-color: transparent;
  text-decoration: none;
  color: var(--text-color);
  padding: 0;
  font-weight: 700;
}

.site-navigation__item--first {
  display: none;
}

/*  @media (--l) {
    grid-row: 1/4;
  }*/

.site-navigation__btn--arrow {
  padding-right: 20px;
}

.site-navigation__btn--arrow::before {
  right: 0;
  top: 6px;
}

.site-navigation__btn--only-desc {
  display: none;
}



.social {
  list-style-type: none;
  display: grid;
  grid-gap: 25px;
  padding: 0;
  margin: 0;
}

.social__link {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
  justify-content: start;
  align-items: center;
  text-decoration: none;
}

.social__desc {
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font2);
  color: var(--text-color);
  font-size: var(--fz18);
}

.swiper-btn {
  position: relative;
  width: 38px;
  height: 38px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
}

.swiper-btn::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -5px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
}

.swiper-btn--orange {
  background-color: var(--orange);
}

.swiper-btn.swiper-button-disabled {
  opacity: 0.7;
}

.tabs {
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  margin-bottom: 20px;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs__btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-family: var(--font2);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

.tabs__btn--active {
  position: relative;
}

.tabs__btn--active::before {
  position: absolute;
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px;
}

.tabs__btn-wrapper {
  width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  justify-content: space-between;
  border-bottom: 2px solid var(--light-grey);
}

.tabs-info__item {
  display: none;
}

.tabs-info__item--active {
  display: block;
}

.tabs-info__item--overflow {
  position: relative;
  overflow: hidden;
}

.templates .templates__buy {
  max-width: 150px;
  margin-left: auto;
  font-size: 12px;
}

.templates .templates__buy--mobile {
  display: none;
}

.templates .my-address__edit-btn-wrapper {
  margin-left: auto;
}

.templates__item .cart-item {
  box-shadow: none;
  position: relative;
  border-bottom: 1px solid var(--light-grey);
}

.templates__item .cart-item:last-child {
  border-bottom: none;
}

.templates__item .templates__item-checkbox {
  position: absolute;
  left: 20px;
  top: 5%;
}

.templates__item .templates__price-row {
  margin: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--light-grey);
}

.templates__item .addToCart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  max-width: 100px;
}

.templates__item .addToCart__input:disabled {
  background-color: transparent;
}



.templates__bottom {
  border: 1px solid var(--light-grey);
}

.thank-info .thank-info__back {
  width: 100%;
  max-width: 305px;
  margin: 0 auto;
}

.thank-info__wrapper {
  padding: 30px 0;
  font-size: 14px;
}

.thank-info__desc {
  margin: 0 0 50px;
  max-width: 630px;
}

.thank-info__desc a {
  color: var(--primary-color);
}

.thank-info__desc-inner {
  display: block;
  margin-top: 15px;
}

.toggle-btn {
  position: relative;
  z-index: 10;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  justify-self: start;
}

.toggle-btn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  transition: transform 330ms ease-out;
}

.toggle-btn__line {
  height: 2px;
  background-color: var(--text-color);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57),
    background-color 130ms linear;
}

.toggle-btn__line-1 {
  align-self: flex-end;
  width: 50%;
  transform-origin: left;
}

.toggle-btn__line-2 {
  width: 100%;
}

.toggle-btn__line-3 {
  width: 50%;
  transform-origin: right;
}

.toggle-btn--active .toggle-btn__wrapper {
  transform: rotate(45deg);
}

.toggle-btn--active .toggle-btn__line-1 {
  transform: rotate(90deg) translateX(-3px);
}

.toggle-btn--active .toggle-btn__line-3 {
  transform: rotate(92deg) translateX(3px);
}

.total-price {
  border: 1px solid var(--light-grey);
  line-height: 1.5;
}

.total-price__delivery {
  min-height: 60px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.total-price__not-delivery {
  min-height: 60px;
  padding: 20px;
  background-color: var(--light-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.total-price__delivery--hidden {
  display: none;
}

.total-price__not-delivery--hidden {
  display: none;
}

.units-good {
  display: grid;
  grid-gap: 6px;
  grid-auto-flow: column;
  width: 50%;
  max-width: 160px;
}

.units-good__btn {
  border: 1px solid var(--secondary-color);
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 75px;
  height: 45px;
  width: 100%;
  text-align: center;
  border-radius: 55px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  cursor: pointer;
}

.units-good__radio:checked ~ .units-good__btn {
  background-color: var(--secondary-color);
  color: var(--white);
}

.units-good__radio:disabled ~ .units-good__btn {
  --secondary-color: #808080;
  cursor: default;
  opacity: 0.5;
}

.units-good__radio:disabled ~ .units-good__btn--one-price {
  --secondary-color: var(--light-grey);
  background-color: var(--secondary-color);
  cursor: not-allowed;
  opacity: 1;
}

.product-card .units-good__radio:disabled ~ .units-good__btn--one-price {
  background-color: var(--white);
}

.focus-visible.units-good__radio:focus ~ .units-good__btn {
  outline: 2px solid rgba(0, 0, 0, 0.7);
  outline-offset: 2px;
}

.units-good__btn--selected {
  background-color: var(--secondary-color);
}

.user-contact {
  border: 1px solid var(--light-grey);
  padding: 20px;
}

.user-contact--grid {
  display: grid;
  grid-gap: 20px;
}

.user-contact__top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--light-grey);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.user-contact__title {
  font-size: 20px;
  font-family: var(--font2);
  font-weight: 700;
  margin: 0;
}

.user-contact__edit {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.user-contact__bottom-wrapper {
  padding: 10px 0 0;
  display: grid;
  justify-content: start;
  grid-gap: 5px;
  font-size: 14px;
  line-height: 1.2;
}

.user-contact__reset-password {
  color: var(--primary-color);
}

.user-contact__name {
  border: none;
  background-color: transparent;
  color: inherit;
  display: block;
  width: 250px;
}

.user-contact__email {
  color: var(--primary-color);
  text-decoration: underline;
  width: 250px;
  border: none;
  background-color: transparent;
}

.user-contact__name--edit {
  border: 1px dashed currentColor;
}

.user-contact__edit-icon--done {
  display: none;
}

.user-contact__edit--edited .user-contact__edit-icon {
  display: none;
}

.user-contact__edit--edited .user-contact__edit-icon--done {
  display: block;
}

.user-contact--cabinet .user-contact__bottom-wrapper {
  display: block;
}

.wishlist {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.wishlist__add-btn {
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 20px;
}

.wishlist__add-btn ~ svg path {
  fill: #ccc;
  cursor: pointer;
}

.wishlist__add-btn:checked ~ svg path {
  fill: #ed2d47;
}

@media (min-width: 576px) {
  .breadcrumb-section .breadcrumb {
    display: block;
  }

  .breadcrumb-section__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .goodsList-page__wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .order-item__header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }

  .order-template .order-template__create-btn {
    margin-bottom: 0;
    margin-left: 10px;
  }

  .order-template__btn-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .order-thank__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: initial;
    padding: 20px 25px;
  }

  .order-thank__list {
    margin-bottom: 0;
    width: auto;
  }

  .order-thank__print-btn {
    align-self: start;
  }

  .popular-category__swiper .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .product-card__units-container .units-good {
    justify-content: center;
  }

  .product-card__units-container .units-good__btn {
    width: 260px;
  }

  .product-listFilter__row {
    grid-template-columns: 1fr 1fr;
  }

  .product-listFilter__price-sort {
    padding: 0 20px;
  }

  .product-listFilter__default-sort {
    color: var(--text-color);
    width: 90%;
    max-width: 230px;
    background-image: url('../img/icon/select-arrow.svg');
    background-position: 90% 50%;
  }

  .promotions__swiper {
    width: 100%;
  }

  .promotions__swiper .swiper-slide {
    width: 335px;
    max-width: none;
    max-width: initial;
  }

  .templates .templates__buy {
    font-size: 14px;
  }
}

@media (min-width:640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }

  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  [dir=rtl] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }

  [dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}

@media (min-width: 768px) {
  .authorization {
    width: 335px;
    margin: 0 auto;
  }

  .breadcrumb__list {
    grid-gap: 40px;
  }

  .cabinet-greetings__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cabinet-greetings__desc {
    margin: 0;
  }

  .cart-info__button-wrapper {
    max-width: none;
    max-width: initial;
  }

  .cart-info__attention {
    order: -1;
    margin: 0;
    width: 50%;
    max-width: 535px;
  }

  .cart-info__inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }

  .cart-info__container {
    width: 45%;
  }

  .cart-item {
    grid-gap: 10px 20px;
  }

  .cart-item__unit {
    display: block;
    grid-column: 2/3;
    justify-self: center;
    align-self: center;
    width: 160px;
  }

  .cart-item__counter {
    grid-column: 3/4;
  }

  .cart-item__total-price {
    justify-self: start;
    width: 150px;
    text-align: center;
  }

  .checkout-item {
    border-bottom: none;
  }

  .checkout-product {
    width: 100%;
    margin-left: 0;
    border-radius: 4px;
    display: grid;
    grid-gap: 10px;
  }

  .checkout-product__header {
    box-shadow: var(--box-shadow-default);
  }

  .checkout-product__body {
    box-shadow: var(--box-shadow-default);
    border-radius: 4px;
  }

  .checkout-product__price-wrapper {
    box-shadow: var(--box-shadow-default);
  }

  .error-page__row {
    justify-content: center;
    padding: 100px 0;
  }

  .error-page__title {
    margin: 0 0 10px;
  }

  .error-page__desc {
    font-size: 20px;
  }

  .favorites__item {
    grid-template-columns: 20% 42% auto;
  }

  .favorites__article {
    align-self: center;
    font-size: 18px;
  }

  .favorites__title {
    font-size: 18px;
    line-height: 22px;
  }

  .footer .second-navigation {
    margin-bottom: 20px;
  }

  .footer .second-navigation__list {
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    grid-gap: 13px 50px;
  }

  .footer .second-navigation__item:nth-child(even) {
    justify-self: end;
  }

  .footer__social {
    margin-bottom: 0;
  }

  .footer .main-search {
    margin-bottom: 0;
    margin-right: 0;
  }

  .footer__row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto);
    grid-gap: 20px;
  }

  .footer__logo {
    grid-column: 1 / -1;
  }

  .footer__developers {
    margin-bottom: 0;
    align-self: center;
  }

  .footer__pay {
    grid-column: 1 / -1;
  }

  .goods-list__items-container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 100px;
    padding: 40px 30px;
  }

  .main-header__nav-container {
    grid-template-columns: 1fr 1fr;
  }

  .main-header__site-navigation {
    justify-self: center;
  }

  .main-header__social {
    grid-column: 2/-1;
    grid-row: 1/ span 1;
    align-self: start;
    justify-self: center;
  }

  .main-header__phone-number {
    grid-column: 1/-1;
    justify-self: center;
  }

  .liqpay-btn {
    margin: 0 0 20px;
  }

  .notification {
    height: 60px;
  }

  .order-form__form {
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
  }

  .order-item .order-item__card-pay {
    justify-self: end;
    width: 100%;
  }

  .order-item__header-label.round-btn {
    margin-right: 60px;
  }

  .order-item__total-price {
    margin-left: 0;
    margin-left: initial;
  }

  .order-item__repeat-order {
    display: block;
    margin-left: auto;
  }

  .order-item__repeat-order--mobile {
    display: none;
  }

  .order-item__service-info {
    grid-auto-flow: column;
  }

  .order-item__product .cart-item {
    justify-content: space-between;
  }

  .order-item__product .cart-item__img-wrapper {
    width: 150px;
    margin-bottom: 0;
  }

  .order-item__product .cart-item__title-wrapper {
    width: 230px;
  }

  .order-template .order-template__create-btn {
    width: 285px;
  }

  .order-template .order-template__cancel-btn {
    width: 185px;
  }

  .order-template__list .cart-item {
    grid-template-rows: 1fr 1fr;
  }

  .order-template__list .cart-item__unit {
    grid-column: 3/4;
    grid-row: 2/3;
  }

  .order-template__list .cart-item__counter {
    grid-row: 1/2;
  }

  .order-template__list .cart-item__title-wrapper {
    grid-column: 2/3;
  }

  .order-template__list .cart-item__total-price {
    justify-self: center;
    align-self: center;
    grid-row: 2/3;
  }

  .order-template__list .cart-item__price {
    display: block;
    justify-self: center;
    align-self: center;
  }

  .order-template__btn-row {
    justify-content: flex-start;
  }

  .order-top__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .order-top__title {
    margin: 0;
  }

  .popular-category__swiper .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .product-card__wishlist {
    align-self: start;
  }

  .product-card__units-container .units-good__btn {
    max-width: 120px;
  }

  .product-card__counter-container .addToCart {
    width: 335px;
  }

  .product-card__bottom-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }

  .promotion-item__old-price {
    font-size: 2.8em;
  }

  .promotion-item__old-price--line-through::before {
    top: 41%;
  }

  .thank-info .thank-info__back {
    margin: 0;
    margin: initial;
  }

  .thank-info__desc {
    margin: 0 0 80px;
  }
}

@media (min-width: 992px) {
  body {
    min-height: 100vh;
  }

  .admin-page .delivery-slider__card-wrapper {
    width: 100%;
  }

  .admin-page__block--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }

  .cabinet-info__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-item {
    min-height: auto;
  }

  .delivery-swiper .swiper-slide {
    max-width: 365px;
  }

  .dropdown-nav {
    visibility: unset;
    position: static;
    top: 0;
    padding: 10px 0 0;
  }

  .dropdown-nav__link {
    display: block;
    padding: 10px 0;
  }

  .footer .social {
    grid-template-columns: unset;
  }

  .footer .main-search {
    justify-self: center;
  }

  .main-header__inner-container {
    grid-template-columns: repeat(4, auto);
  }

  .main-header__site-navigation {
    grid-column: 1/-1;
    justify-self: stretch;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(3, auto);
  }

  .main-header__social {
    grid-column: 1/ span 1;
    grid-row: 3/ span 1;
  }

  .main-header__phone-number {
    grid-column: 2/ span 1;
    grid-row: 3/ span 1;
    align-self: center;
    font-size: 18px;
    line-height: 22px;
  }

  .magictime.slideLeftReturn,
  .magictime.slideLeft,
  .magictime.slideLeftReturn_b,
  .magictime.slideLeft_b,
  .magictime.slideLeft_goods,
  .magictime.slideLeft_goods-return {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
  }

  .language {
    justify-self: end;
  }

  .language__link {
    padding: 0;
  }

  .main-search {
    display: block;
    border-radius: 20px;
    width: 180px;
    background-color: #fff;
    padding: 5px 10px 5px 19px;
    justify-self: end;
    margin-right: 20px;
  }

@media (min-width: 1200px) {
    .main-search {
      background-color: var(--light-grey);
      padding: 7px 10px 7px 19px;
    }
}

  .my-address__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }

  .my-address__edit-btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    width: 40%;
    max-width: 350px;
  }

  .my-address__mobile-edit {
    display: none;
  }

  .order-form__pay-delivery-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }

  .order-item__product .cart-item__title-wrapper {
    margin-right: 200px;
  }

  .order-template .order-template__input {
    max-width: 275px;
  }

  .order-template__price-row {
    padding: 15px 50px;
  }

  .page-title__title {
    text-align: left;
  }

  .popup-gallery__row {
    margin: 200px auto;
  }

  .popup-gallery__pagination {
    flex-grow: 1;
    justify-content: center;
  }

  .product-card__row {
    display: grid;
    grid-template-columns: 39% 1fr;
    grid-template-rows: repeat(5, auto);
    grid-gap: 0 40px;
  }

  .product-card__top-wrapper {
    grid-column: 1/ 2;
    grid-row: 1 / 5;
  }

  .product-card__select-container {
    margin-bottom: 10px;
  }

  .product-card__characteristic-container {
    margin-bottom: 0;
  }

  .product-card__desc-container {
    grid-column: 2/3;
  }

  .product-card__units-container {
    margin-bottom: 0;
  }

  .product-card__bottom-wrapper {
    grid-column: 1/3;
    align-items: center;
  }

  .product-listFilter__row {
    grid-template-columns: 1fr 230px 230px;
  }

  .product-listFilter__title {
    grid-column: 1/ span 1;
  }

  .product-listFilter__price-sort {
    padding: 0 25px 0 15px;
    background-position: 94% 50%;
    width: 100%;
    font-size: 14px;
  }

  .product-listFilter__default-sort {
    font-size: 14px;
    padding: 0 25px 0 15px;
    background-position: 94% 50%;
    width: 100%;
  }

  .product-listFilter--cart .product-listFilter__order-template {
    display: block;
  }

  .product-listFilter--cart .product-listFilter__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .product-listFilter--cart .product-listFilter__select-wrapper {
    margin-left: auto;
    width: 250px;
  }

  .promotion-item__desc-container {
    grid-gap: 0 30px;
  }

  .rect-btn {
    width: 250px;
  }

  .search-bar__input {
    width: 50%;
    font-size: 20px;
  }

  .site-navigation__item--second {
    grid-row: 1/3;
  }

  .site-navigation__btn--arrow {
    display: none;
  }

  .site-navigation__btn--arrow::before {
    display: none;
  }

  .site-navigation__btn--only-desc {
    display: inline;
    display: initial;
  }

  .social {
    grid-template-columns: repeat(3, minmax(115px, auto));
    grid-gap: 50px;
  }

  .tabs {
    margin-bottom: 0;
  }

  .templates .templates__buy {
    display: none;
  }

  .templates .templates__buy--mobile {
    display: block;
  }

  .templates__item .templates__price-row {
    width: 50%;
    max-width: 400px;
  }

  .templates__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-right: 50px;
  }
}

@media (min-width: 1200px) {
  .slideLeft_b {
    -webkit-animation-name: slideUp;
    animation-name: slideUp;
  }

  .slideLeftReturn_b {
    -webkit-animation-name: slideUpReturn;
    animation-name: slideUpReturn;
  }

  .slideLeft_goods {
    -webkit-animation-name: popup_hidden;
    animation-name: popup_hidden;
  }

  .slideLeft_goods-return {
    -webkit-animation-name: popup_visible;
    animation-name: popup_visible;
  }

  .addToCart {
    margin-left: 7px;
  }

  .all-goods {
    display: grid;
    grid-template-columns: auto 70px auto;
    align-items: center;
  }

  .all-goods__list {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 25px;
    padding: 0;
    margin: 0;
    list-style-type: none;
    grid-column: 3/ span 1;
  }

  .all-goods__btn-wrapper {
    justify-content: space-around;
  }

  .all-goods__btn {
    font-size: 16px;
    width: 189px;
  }

  .authorization {
    padding: 150px 0 100px;
  }

  .authorization .tabs__btn-wrapper {
    max-width: 415px;
  }

  .cart-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .cart-info__user-agreement {
    margin-bottom: 0;
    align-self: center;
  }

  .cart-info__button-wrapper {
    width: 100%;
  }

  .cart-info__button-wrapper .cart-info__create-template {
    display: none;
  }

  .cart-info__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cart-info__total-price {
    grid-column: 1/-1;
    margin-bottom: 10px;
  }

  .cart-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 25px 20px;
  }

  .cart-item__img-wrapper {
    margin-right: 30px;
    width: 150px;
    justify-content: center;
  }

  .cart-item__title-wrapper {
    width: 340px;
  }

  .cart-item__unit {
    width: 70px;
    margin-right: 30px;
  }

  .cart-item__unit .units-good {
    width: auto;
  }

  .cart-item__price {
    display: block;
    width: 100px;
  }

  .checkout-item__pay-way {
    margin-top: 7px;
  }

  .checkout-product__header {
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }

  .checkout-product__desc {
    display: block;
    font-weight: 600;
  }

  .checkout-product__desc--mobile {
    width: 190px;
  }

  .checkout-product__item-name {
    width: 220px;
    font-size: 14px;
    margin-right: 30px;
  }

  .checkout-product__info-name {
    display: none;
  }

  .checkout-product__info-desc span {
    font-size: 14px;
  }

  .checkout-product__info-desc:last-child span {
    font-weight: 700;
  }

  .checkout-product__item-info {
    flex-grow: 1;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, minmax(40px ,auto));
    justify-items: center;
  }

  .checkout-product__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }

  .company-logo__img {
    width: 176px;
    height: 41px;
  }

  .contacts__info-container {
    width: 100%;
    margin-left: 0;
    padding-left: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .contacts__map-container {
    width: 100%;
    margin-left: 0;
  }

  .contacts__map-container iframe {
    height: 572px;
    max-width: 700px;
  }

  .contacts__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
  }

  .decorative-title__desc {
    font-size: 40px;
  }

  .delivery-slider__btn-wrapper {
    display: none;
  }

  .goods-list__item .dropdown-nav {
    visibility: inherit;
    position: static;
  }

  .goods-list__item .dropdown-nav__link {
    padding: 1px 0;
  }

  .goods-list__item .dropdown-nav__item {
    border-top: none;
  }

  .footer .second-navigation {
    grid-column: 2 / span 1;
    grid-row: 2/ span 2;
    justify-self: start;
    margin-bottom: 0;
  }

  .footer .second-navigation__list {
    grid-template-columns: auto auto;
  }

  .footer .second-navigation__item:nth-child(even) {
    justify-self: start;
  }

  .footer .second-navigation__link {
    font-size: 14px;
  }

  .footer__social {
    grid-column: 1/ span 1;
    grid-row: 3/ span 1;
  }

  .footer .social {
    justify-content: start;
  }

  .footer .main-search {
    justify-self: end;
  }

  .footer .main-search {
    grid-column: 3 / span 1;
    grid-row: 2/ span 1;
    align-self: start;
    padding: 10px 15px 10px 19px;
    width: 260px;
  }

  .footer .main-search__input {
    width: 88%;
    font-size: 16px;
  }

  .footer__copyright {
    grid-column: 1/ span 1;
    grid-row: 2 / span 1;
  }

  .footer__row {
    padding: 35px 20px 20px;
    grid-template-columns: repeat(3, auto);
    justify-items: unset;
  }

  .footer__logo {
    justify-self: start;
    margin-bottom: 0;
  }

  .footer__developers {
    grid-column: 3/ span 1;
    grid-row: 4/ span 1;
    justify-self: end;
  }

  .footer__pay {
    grid-column: 3/span 1;
    grid-row: 3/ span 1;
    justify-self: end;
  }

  .goods-list {
    background-color: rgba(0, 0, 0, 0.41);
    top: 142px;
    height: auto;
  }

  .goods-list .goods-list__items-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 600px;
    padding: 20px 30px 30px;
  }

  .goods-list--open {
    height: 87vh;
  }

  .goods-list__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .goods-list__container {
    background-color: var(--white);
    max-width: 1395px;
    width: 100%;
  }

  .goods-list__header {
    background-color: var(--white);
    justify-content: flex-end;
  }

  .goods-list__title {
    display: none;
  }

  .goods-list__items-container {
    /*    grid-gap: 20px 50px;
    grid-template-rows: repeat(8, auto);
    grid-template-areas:
      'veg    freez     milk    alcohol     canned-food'
      'veg    cake      meat    alcohol-ex   canned-food'
      'fish   cake      meat    no-alcohol  grocery'
      'fish   cake      meat    .             grocery'
      'bread  cake      .       .            grocery'
      'eggs   hot-drink sausage goods       grocery'
      '.      .         .       .           grocery'
      '.      .         .       .           grocery'
  ;*/
    grid-template-columns: initial;
  }

  .goods-list__items-container--aside {
    display: grid;
    grid-template-areas: initial;
    padding: 0;
    grid-gap: 25px;
  }

  .goods-list__item--1 {
    grid-area: veg;
  }

  .goods-list__item--2 {
    grid-area: fish;
  }

  .goods-list__item--3 {
    grid-area: bread;
  }

  .goods-list__item--4 {
    grid-area: eggs;
  }

  .goods-list__item--5 {
    grid-area: freez;
  }

  .goods-list__item--6 {
    grid-area: cake;
  }

  .goods-list__item--7 {
    grid-area: hot-drink;
  }

  .goods-list__item--8 {
    grid-area: milk;
  }

  .goods-list__item--9 {
    grid-area: meat;
  }

  .goods-list__item--10 {
    grid-area: sausage;
  }

  .goods-list__item--11 {
    grid-area: alcohol;
  }

  .goods-list__item--12 {
    grid-area: alcohol-ex;
  }

  .goods-list__item--13 {
    grid-area: no-alcohol;
  }

  .goods-list__item--14 {
    grid-area: goods;
  }

  .goods-list__item--15 {
    grid-area: canned-food;
  }

  .goods-list__item--16 {
    grid-area: grocery;
  }

  .goods-list__link {
    padding-left: 0;
    font-family: var(--font1);
    color: var(--secondary-color);
    font-size: 14px;
  }

  .goods-list__icon {
    display: none;
  }

  .goods-list__item-btn {
    display: none;
  }

  .goodsList-page__row {
    display: grid;
    grid-template-columns: 240px 1fr;
    grid-gap: 40px;
  }

  .goodsList-page__row .popular-goods__product-container {
    padding: 15px;
  }

  .main-header__top-menu {
    background-color: var(--white);
    z-index: 20;
  }

  .main-header__inner-container {
    grid-template-columns: repeat(6, auto);
    justify-content: space-between;
    padding: 20px;
  }

  .main-header__cart {
    display: block;
  }

  .main-header__navigation {
    background-color: var(--light-grey-1);
    top: 81px;
    position: fixed;
    height: auto;
  }

  .main-header__nav-container {
    background-color: var(--light-grey-1);
    max-width: 1440px;
  }

  .main-header__nav-container {
    padding: 140px 120px 115px;
  }

  .main-header__favorites {
    display: none;
  }

  .main-header__wishlist-desktop {
    display: block;
    position: relative;
  }

  .main-header__overlay--active {
    transition: 0.3s ease-in;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.41);
  }

  .login .login__submit {
    max-width: 415px;
  }

  .login .custom-input__wrapper {
    max-width: 415px;
  }

  .main-cart {
    display: none;
  }

  .main-login {
    display: block;
    width: 24px;
    height: 24px;
    justify-self: end;
  }

  .main-login--second-header {
    display: none;
  }

  .main-search--second-header {
    display: none;
  }

  .nav-widget--show {
    display: block;
  }

  .notification {
    top: 60px;
    right: 20px;
    left: auto;
    left: initial;
    height: 81px;
    transform: translateX(0);
  }

  .notification__icon {
    width: 40px;
    height: 40px;
  }

  .notification--show {
    -webkit-animation: fadeOut 2.5s ease-in-out forwards;
    animation: fadeOut 2.5s ease-in-out forwards;
  }

@-webkit-keyframes fadeOut {
    0% {
      opacity: 1;
    }

    10% {
      opacity: 1;
    }

    90% {
      opacity: 1;
      transform: translateY(0px);
    }

    99% {
      opacity: 0;
      transform: translateY(-30px);
    }

    100% {
      opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
      opacity: 1;
    }

    10% {
      opacity: 1;
    }

    90% {
      opacity: 1;
      transform: translateY(0px);
    }

    99% {
      opacity: 0;
      transform: translateY(-30px);
    }

    100% {
      opacity: 0;
    }
}

  .order-form__form {
    grid-template-columns: 470px 48%;
  }

  .order-form__submit-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 5fr 3fr;
    grid-gap: 10px;
  }

  .order-item__product .cart-item__title-wrapper {
    width: 340px;
    margin-right: 210px;
  }

  .order-top__row {
    padding: 50px 0;
  }

  .partners-slider .delivery-slider__btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .popular-category {
    background-image: url(../img/popular-category/popular_pattern_desc.jpg);
  }

  .category-button-next,
  .category-button-prev {
    display: block;
  }

  .popular-item__btn-container {
    margin-left: auto;
    width: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .category-button-prev.swiper-btn {
    transform: rotate(180deg);
  }

  .popular-category__swiper {
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
  }

  .popular-category__swiper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: unset;
  }

  .popular-category__swiper .swiper-slide {
    width: 310px;
  }

  .popular-item__link {
    width: 230px;
  }

  .popular-item__link::before {
    right: 20px;
  }

  .product-card__row {
    grid-template-columns: 420px 1fr;
    grid-gap: 0 150px;
  }

  .product-card__gallery {
    height: 430px;
  }

  .product-card__top-wrapper {
    grid-row: 1 / -1;
  }

  .product-card__select-container {
    margin-bottom: 5px;
  }

  .product-card__units-container {
    margin-right: 30px;
  }

  .product-card__units-container .units-good__btn {
    max-width: 75px;
  }

  .product-card__counter-container .addToCart {
    width: 160px;
  }

  .product-card__bottom-wrapper {
    grid-column: 2/3;
    justify-content: flex-start;
  }

  .product-characteristic {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    justify-content: space-between;
  }

  .product-listFilter__title {
    padding-left: 60px;
  }

  .promotion-item {
    width: 385px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .promotion-item__top {
    width: 385px;
  }

  .promotion-item__new-price-bill {
    font-size: 50px;
  }

  .promotion-item__new-price-coin {
    font-size: 30px;
  }

  .promotions__row {
    padding: 80px 0 80px;
  }

  .promotions__swiper {
    box-shadow: none;
    padding: 1px;
  }

  .search-bar {
    background-color: var(--light-grey);
    box-shadow: none;
  }

  .second-header {
    position: static;
    background-color: var(--primary-color);
  }

  .second-header__wrapper {
    box-shadow: none;
    padding-left: 16px;
    padding-right: 16px;
  }

  .second-header__inner-container {
    grid-template-columns: auto 70px auto;
    background-color: var(--primary-color);
  }

  .second-header--sticky {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
  }

  .second-header--sticky ~ main {
    padding-top: 60px;
  }

  .second-header--sticky ~ .goods-list {
    top: 60px;
    height: 95vh;
  }

  .second-navigation {
    display: block;
  }

  .site-navigation {
    margin-bottom: 160px;
  }

  .site-navigation__item--first {
    display: inline;
    display: initial;
  }

  .templates__item {
    border: 1px solid var(--light-grey);
  }

  .templates__item .templates__item-checkbox {
    top: 46%;
  }

  .templates__item .templates__price-row {
    border-bottom: none;
  }

  .templates__item .cart-item__img-wrapper {
    margin-left: 30px;
    margin-right: 15px;
  }
}

@media (min-width: 1440px) {
  .promotions__row {
    position: relative;
  }

  .promotions-button-next::before,
  .promotions-button-prev::before {
    border-color: var(--primary-color);
    width: 20px;
    height: 20px;
    margin-top: -10px;
    left: 8px;
  }

  .promotions-button-next::after,
  .promotions-button-prev::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    width: 50px;
    height: 2px;
    border-radius: 0;
  }

  .promotions-button-next,
  .promotions-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    width: 50px;
    height: 34px;
    border-radius: 0;
  }

  .promotions-button-prev {
    left: -100px;
  }

  .promotions-button-next::before {
    left: 34px;
  }

  .promotions-button-next {
    right: -100px;
  }
}

@media (max-width: 1199px) {
  .second-header__inner-container--search {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-left: 25px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .second-header__inner-container--search .second-header__all-goods {
    display: none;
  }

  .second-header__inner-container--search .main-login--second-header {
    display: none;
  }

  .second-header__inner-container--search .main-cart {
    display: none;
  }

  .second-header__inner-container--search .main-search--second-header {
    width: 100%;
    background-color: var(--light-grey-1);
    border-radius: 20px;
    padding: 10px 20px;
  }

  .second-header__inner-container--search .main-search__btn {
    display: none;
  }

  .second-header__inner-container--search .main-search__input {
    height: 100%;
    width: 94%;
  }

  .second-header__inner-container--search .second-header__form-wrapper {
    display: block;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .cart-item__total-price span {
    font-size: 16px;
  }

  .decorative-title__desc {
    font-size: 20px;
  }

  .error-page__title {
    font-size: 24px;
    text-align: center;
  }

  .favorites__title {
    font-size: 12px;
  }

  .favorites__desc {
    font-size: 10px;
  }

  .footer .second-navigation__link {
    font-size: 14px;
  }

  .my-address__mobile-edit {
    padding: 20px 10px;
  }

  .my-address__edit-btn {
    width: auto;
  }

  .my-address__edit-text {
    margin-left: 7px;
    font-size: 10px;
  }

  .order-thank__wrapper {
    font-size: 14px;
    padding: 20px 15px 35px;
  }

  .order-thank__list {
    grid-template-columns: 1fr 1fr;
  }

  .popular-goods__product-container {
    grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  }

  .product-item__wrapper-bottom {
    flex-direction: column;
    align-items: center;
  }

  .product-item__name {
    width: 240px;
  }

  .promotion-item__desc-container {
    grid-gap: 0 10px;
  }

  .promotion-item__new-price {
    grid-template-columns: auto 1fr;
  }

  .promotion-item__new-price-bill {
    font-size: 34px;
  }

  .promotion-item__new-price-coin {
    font-size: 14px;
  }

  .promotion-item__new-price-weight {
    font-size: 14px;
  }

  .promotions__swiper .swiper-slide {
    width: 300px;
  }

  .promotions__button-wrapper {
    margin-right: 10px;
  }

  .units-good {
    margin-bottom: 10px;
    width: 70%;
  }

  .units-good__btn {
    max-width: 90px;
  }

  .user-contact__title {
    font-size: 14px;
  }
}

@media (print), (prefers-reduced-motion) {
  .magictime {
    -webkit-animation: unset !important;
    animation: unset !important;
    transition: none !important;
  }
}
/*# sourceMappingURL=maps/main.css.map */
