@font-face {
  font-family: 'Gotham Pro';
  src: url('/resource_1/fonts/gotham-pro-regular.woff2') format('woff2');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('/resource_1/fonts/gotham-pro-bold.woff2') format('woff2');
  font-style: normal;
  font-weight: bold;
  font-display: swap;
}

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

ul,
ol {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
}

a {
  text-decoration-skip-ink: none;
}

button,
input,
select,
textarea,
a {
  outline: none;
}

input::placeholder,
textarea::placeholder {
  line-height: inherit;
  transition: opacity .3s ease;
  color: #999;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

html,
body {
  margin: 0;
}

html {
  scroll-padding-top: 56px;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 79px;
  }
}

@media (min-width: 1080px) {
  html {
    scroll-padding-top: 100px;
  }
}

html.html--window-modal-open {
  scroll-padding-top: 0;
}

body {
  font-family: "Gotham Pro", sans-serif;
  color: #303031;
  background-color: #f6f7f9;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 1080px) {
  body {
    font-size: 14px;
  }
}

body.body--mobile-menu-open,
body.body--header-search-open,
body.body--cart-open,
body.body--preloader-open,
html.html--window-modal-open body {
  overflow: hidden;
}

main {
  flex-grow: 1;
  padding-top: 8px;
  padding-bottom: 32px;
}

@media (min-width: 1080px) {
  main {
    padding-top: 16px;
    padding-bottom: 60px;
  }
}

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

.reset-swiper-container {
  z-index: 0 !important;
}

.reset-swiper-wrapper {
  z-index: 0 !important;
}

.swiper-slide--hidden {
  display: none;
}

.swiper-slide--product {
  width: 0;
  height: auto;
  overflow: hidden;
}

:root {
  /* stylelint-disable-next-line length-zero-no-unit */
  --header-banner-top: 0px; /* px нужно для calc */
}

.page-title {
  font-size: 18px;
  line-height: 18px;
  margin: 0 0 .75em;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (min-width: 1080px) {
  .page-title {
    font-size: 34px;
  }
}

/* =========================== */

.custom-select {
  display: grid;
  align-items: center;
  grid-gap: 8px;
  color: #303031;
}

@media (min-width: 1200px) {
  .custom-select {
    grid-template-columns: 1fr 3fr;
  }
}

.custom-select__title {
  font-size: 14px;
}

.custom-select__title-required {
  color: #bc191d;
}

.custom-select__wrapper-select {
  position: relative;
}

.custom-select__select {
  color: inherit;
  font-family: inherit;
  padding: 0 64px 0 17px;
  border: 1px solid #edeff2;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  cursor: pointer;
  border-radius: 10px;
  appearance: none;
  width: 100%;
  font-size: 14px;
}

@media (min-width: 1080px) {
  .custom-select__select {
    height: 48px;
    line-height: 48px;
  }
}

.custom-select--hidden {
  display: none;
}

.custom-select__select--invalid {
  border-color: #bc191d;
}

.custom-select__img {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  stroke: #b2bac7;
  transform: translateY(-50%) rotate(180deg);
  transition-property: stroke, transform;
  transition-duration: .3s;
  pointer-events: none;
}

.custom-select__select:active + .custom-select__img {
  stroke: #bc191d;
  transform: translateY(-50%) rotate(0deg);
}

/* =========================== */

.custom-checkbox {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  user-select: none;
}

.custom-checkbox__input {
  width: 28px;
  height: 28px;
  appearance: none;
  border: 1px solid #edeff2;
  border-radius: 3px;
  margin: 0 8px 0 0;
  flex-shrink: 0;
  cursor: inherit;
  background-color: #fff;
}

.custom-checkbox__check-img {
  position: absolute;
  width: 15px;
  left: 8px;
  height: 100%;
  fill: #bc191d;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

.custom-checkbox__input:checked + .custom-checkbox__check-img {
  opacity: 1;
}

/* ============================== */

.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  user-select: none;
}

.custom-radio__input {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #b2bac7;
  border-radius: 50%;
  margin: 0 8px 0 0;
  flex-shrink: 0;
  cursor: inherit;
  background-color: #fff;
}

.custom-radio__input::before {
  content: '';
  position: absolute;
  width: 15px;
  left: 50%;
  height: 15px;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #bc191d;
  opacity: 0;
  border-radius: 50%;
  transition: opacity .3s;
}

.custom-radio__input:checked::before {
  opacity: 1;
}

/* ============================== */

.custom-text-input {
  display: grid;
  align-items: center;
  grid-gap: 8px;
}

@media (min-width: 1080px) {
  .custom-text-input {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 8px;
  }
}

@media (min-width: 1200px) {
  .custom-text-input {
    grid-template-columns: 1fr 3fr;
  }
}

.custom-text-input--hidden {
  display: none;
}

.custom-text-input__title {
  font-size: 14px;
}

.custom-text-input__title-required {
  color: #bc191d;
}

.custom-text-input__input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border: 1px solid #edeff2;
  padding: 0 24px;
  font-weight: 500;
  font-size: 14px;
  color: #303031;
  border-radius: 10px;
  font-family: inherit;
}

@media (min-width: 1080px) {
  .custom-text-input__input {
    height: 48px;
    line-height: 48px;
  }
}

.custom-text-input__input--invalid {
  border-color: #bc191d;
}

.header-search {
  flex-grow: 1;
  position: relative;
  margin-right: 8px;
}

@media (min-width: 768px) {
  .header-search {
    margin-right: 16px;
  }
}

@media (min-width: 1080px) {
  .header-search {
    margin-right: 32px;
  }
}

.body--mobile-menu-open .header-search {
  display: none;
}

@media (min-width: 768px) {
  .body--mobile-menu-open .header-search {
    display: block;
  }
}

.header-search__input {
  position: relative;
  z-index: 1;
}

.header-search__input-input {
  width: 100%;
  height: 30px;
  line-height: 30px;
  background-color: #fff;
  font-size: 12px;
  padding: 0 74px 0 10px;
  border: 1px solid #edeff2;
  border-radius: 6px;
  color: inherit;
  font-family: inherit;
}

@media (min-width: 768px) {
  .header-search__input-input {
    padding-left: 26px;
    font-size: 16px;
    height: 48px;
    line-height: 48px;
  }
}

@media (min-width: 1080px) {
  .header-search__input-input {
    font-size: 14px;
  }
}

.header-search__input-input::placeholder {
  line-height: inherit;
  color: #aaa;
  transition:
    opacity .3s ease,
    visibility .3s ease;
}

.header-search__input-input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.header-search__input-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 768px) {
  .header-search__input-btn {
    width: 48px;
    height: 48px;
  }
}

.header-search__input-btn-img {
  width: 9px;
  height: 9px;
  stroke: currentColor;
}

@media (min-width: 768px) {
  .header-search__input-btn-img {
    width: 18px;
    height: 18px;
  }
}

.header-search__backdrop {
  position: fixed;
  top: var(--header-bottom);
  visibility: hidden;
  opacity: 0;
  left: 0;
  height: calc(100% - var(--header-bottom));
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  cursor: pointer;
  transition-property: visibility, opacity;
  transition-duration: .3s;
}

.body--header-search-open .header-search__backdrop {
  opacity: 1;
  visibility: visible;
}

.header-search__wrapper-drop {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition-property: visibility, opacity, height;
  transition-duration: .3s;
  position: absolute;
  top: calc(100% - 30px);
  left: 0;
  width: 100%;
  height: 30px;
  border: 1px solid transparent;
  border-radius: 6px 6px 6px 6px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .header-search__wrapper-drop {
    top: calc(100% - 48px);
    height: 48px;
  }
}

.body--header-search-focus .header-search__wrapper-drop {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0 6px rgba(48, 48, 49, .1);
}

.body--header-search-open .header-search__wrapper-drop {
  height: var(--height);
  border-radius: 6px 6px 10px 10px;
  border-color: #edeff2;
}

.header-search__drop {
  padding: 38px 8px 8px;
}

@media (min-width: 768px) {
  .header-search__drop {
    padding: 64px 16px 16px;
  }
}

.header-search__catalogs {
  overflow: auto scroll;
  max-height: 100px;
  border-bottom: 1px solid #edeff2;
  scrollbar-color: #303031;
  scrollbar-width: thin;
  margin-bottom: 16px;
}

.header-search__catalogs-item {
  display: grid;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-column-gap: 8px;
  align-items: center;
  padding-bottom: 16px;
  line-height: 1;
  text-decoration: none;
}

.header-search__catalogs-item-search {
  display: flex;
  align-items: center;
  color: #bc191d;
}

@media (min-width: 1680px) {
  .header-search__catalogs-item-search {
    font-size: 14px;
  }
}

.header-search__catalogs-item-search-img {
  stroke: currentColor;
  width: 16px;
  height: 20px;
  margin-right: 4px;
}

.header-search__catalogs-item-img-arrow {
  width: 6px;
  height: 10px;
  fill: #b2bac7;
}

.header-search__catalogs-item-title,
.header-search__catalogs-item-value {
  font-size: 12px;
  color: #303031;
}

.header-search__catalogs-item-value {
  font-weight: bold;
}

.header-search__catalogs-item-value--0 {
  padding-right: 8px;
}

.header-search__products {
  overflow-y: scroll;
  max-height: 200px;
  border-bottom: 1px solid #edeff2;
  scrollbar-color: #303031;
  scrollbar-width: thin;
  margin-bottom: 16px;
}

.header-search__catalogs::-webkit-scrollbar-track,
.header-search__products::-webkit-scrollbar-track {
  background-color: #edeff2;
  width: 3px;
  margin: 10px 0;
}

.header-search__catalogs::-webkit-scrollbar-thumb,
.header-search__products::-webkit-scrollbar-thumb {
  background-color: #303031;
}

.header-search__catalogs::-webkit-scrollbar,
.header-search__products::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.header-search__products-item:not(:last-child) {
  border-bottom: 1px solid #edeff2;
}

.header-search__products-item-link {
  display: grid;
  align-items: center;
  grid-gap: 4px;
  padding: 8px 8px 8px 0;
  text-decoration: none;
  grid-template-columns: max-content 1fr;
  grid-template-areas:
    'image name'
    'image price';
}

@media (min-width: 1080px) {
  .header-search__products-item-link {
    align-items: flex-start;
    grid-template-columns: max-content 1fr max-content;
    grid-gap: 8px;
    padding: 16px 0;
    margin-right: 16px;
    grid-template-areas: 'image name price';
  }
}

.header-search__products-item-link-img {
  grid-area: image;
  width: 60px;
}

.header-search__products-item-link-name {
  grid-area: name;
  color: #303031;
  font-size: 12px;
  height: 36px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1080px) {
  .header-search__products-item-link-name {
    height: 60px;
  }
}

.header-search__products-item-link-name::after {
  content: '';
  position: absolute;
  height: 18px;
  background: linear-gradient(rgba(255, 255, 255, 0) -32.56%, #fff 100%);
  width: 100%;
  bottom: 0;
  left: 0;
}

.header-search__products-item-link-price {
  display: flex;
  align-items: flex-end;
}

@media (min-width: 1080px) {
  .header-search__products-item-link-price {
    align-items: flex-start;
  }
}

.header-search__products-item-link-price-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 4px;
}

.header-search__products-item-link-price-current {
  grid-area: price;
  display: flex;
  align-items: flex-end;
  font-size: 12px;
  color: #303031;
}

@media (min-width: 1080px) {
  .header-search__products-item-link-price-current {
    flex-direction: column;
  }
}

.header-search__products-item-link-price-uah {
  font-size: 14px;
  margin-right: 4px;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .header-search__products-item-link-price-uah {
    margin-right: 0;
  }
}

.header-search__result {
  border: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  margin-left: auto;
  display: flex;
  align-items: center;
  color: #bc191d;
  text-decoration: underline;
  cursor: pointer;
  transition: text-decoration-color .3s;
}

.header-search__result:hover {
  text-decoration-color: transparent;
}

.header-search__result-img {
  margin-left: 8px;
  stroke: currentColor;
  width: 16px;
  height: 18px;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 23px;
  height: 23px;
  overflow-x: auto;
  scrollbar-width: none;
}

.breadcrumbs::-webkit-scrollbar {
  height: 0;
}

.breadcrumbs__item {
  color: #aaa;
  white-space: nowrap;
}

.breadcrumbs__item:not(:last-child) {
  background-image: url(/resource_1/images/breadcrumbs-arrow.svg);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
  margin-right: 8px;
  background-size: 6px 10px;
}

.breadcrumbs__btn-mobile {
  border: none;
  background-color: transparent;
  letter-spacing: 3px;
  text-align: center;
  padding: 0 0 0 3px;
  color: inherit;
}

@media (min-width: 1080px) {
  .breadcrumbs__item--mobile {
    display: none;
  }
}

.breadcrumbs__item--desktop {
  display: none;
}

@media (min-width: 1080px) {
  .breadcrumbs__item--desktop {
    display: block;
  }
}

.breadcrumbs__link {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: #aaa;
}

.breadcrumbs__img-home {
  height: 16px;
  width: 17px;
  fill: currentColor;
}

/* --------------- */

.modal-window-breadcrumbs {
  line-height: 21px;
  text-align: center;
  margin-top: -50px;
}

.modal-window-breadcrumbs__item--link {
  padding-bottom: 16px;
  position: relative;
}

.modal-window-breadcrumbs__item--link:not(:first-child) {
  padding-top: 16px;
}

.modal-window-breadcrumbs__item--link:not(:last-child)::before {
  content: '';
  transform: rotate(90deg) translateY(50%);
  bottom: -5px;
  left: 50%;
  height: 10px;
  width: 6px;
  background-image: url(/resource_1/images/breadcrumbs-arrow.svg);
  position: absolute;
}

.modal-window-breadcrumbs__item--active {
  padding-top: 16px;
  color: #999;
}

.modal-window-breadcrumbs__link {
  text-decoration: none;
  color: #303031;
}

.header {
  position: sticky;
  background-color: #f6f7f9;
  top: calc(-1 * var(--header-banner-top));
  z-index: 2;
}

@media (min-width: 1080px) {
  .header {
    top: calc(-1 * var(--header-banner-top) - 37px);
  }
}

.body--mobile-menu-open .header {
  background: #fff;
}

@media (min-width: 768px) {
  .body--mobile-menu-open .header {
    background-color: #f6f7f9;
  }
}

.header-banner {
  display: flex;
  justify-content: center;
  height: 25px;
  background-color: #bc191d;
  align-items: center;
}

@media (min-width: 768px) {
  .header-banner {
    height: 30px;
    background-image:
      url(/resource_1/images/lines-left.svg),
      url(/resource_1/images/lines-right.svg);
    background-repeat: no-repeat;
    background-position: left, right;
  }
}

.header-banner__img {
  max-height: 100%;
  max-width: 100%;
}

.header-top {
  display: none;
}

@media (min-width: 1080px) {
  .header-top {
    display: block;
    background-color: #edeff2;
    font-size: 12px;
  }
}

@media (min-width: 1280px) {
  .header-top {
    font-size: 14px;
  }
}

@media (min-width: 1080px) {
  .container--header-top {
    display: flex;
    align-items: center;
    height: 37px;
  }
}

.header-menu {
  display: flex;
  margin-right: auto;
}

.header-menu__item:not(:last-child) {
  margin-right: 26px;
}

@media (min-width: 1280px) {
  .header-menu__item:not(:last-child) {
    margin-right: 32px;
  }
}

.header-menu__item:hover {
  color: #bc191d;
}

.header-menu__link {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease;
}

.header-download {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  min-height: 20px;
  margin-right: 32px;
  transition: color .3s ease;
}

.header-download:hover {
  color: #bc191d;
}

.header-download__img {
  width: 18px;
  height: 20px;
  margin-right: 8px;
  stroke: currentColor;
}

.header-exchange {
  display: flex;
  align-items: center;
  min-height: 18px;
  margin-right: 32px;
}

.header-exchange__img {
  width: 9px;
  height: 18px;
  margin-right: 8px;
  stroke: currentColor;
}

.header-languages {
  display: flex !important;
  /* display: none; */
  font-size: 12px;
}

.header-languages__item {
  position: relative;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  transition: color .3s ease;
}

.header-languages__item--active {
  color: #bc191d;
  font-weight: bold;
}

.header-languages__item:hover {
  color: #bc191d;
}

.header-languages__item:not(:last-child) {
  margin-right: 16px;
}

.header-languages__item:nth-child(n+2)::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -8px;
  width: 1px;
  height: calc(100% + 2px);
  background-color: #b2bac7;
}

.header-bottom {
  display: flex;
  align-items: center;
  height: 56px;
}

@media (min-width: 768px) {
  .header-bottom {
    height: 79px;
  }
}

@media (min-width: 1080px) {
  .header-bottom {
    height: 100px;
  }
}

.btn-mobile-menu {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  margin-right: 16px;
  color: inherit;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

@media (min-width: 1080px) {
  .btn-mobile-menu {
    display: none;
  }
}

.body--mobile-menu-open .btn-mobile-menu {
  margin: 0 -8px 0 auto;
  order: 1;
}

@media (min-width: 768px) {
  .body--mobile-menu-open .btn-mobile-menu {
    order: initial;
    margin-right: 16px;
  }
}

.btn-mobile-menu__img {
  stroke: currentColor;
  fill: currentColor;
  pointer-events: none;
}

.btn-mobile-menu__img--open {
  width: 22px;
  height: 18px;
}

.body--mobile-menu-open .btn-mobile-menu__img--open {
  display: none;
}

.btn-mobile-menu__img--close {
  display: none;
  width: 18px;
  height: 18px;
}

.body--mobile-menu-open .btn-mobile-menu__img--close {
  display: block;
}

.header-logo {
  display: none;
}

.body--mobile-menu-open .header-logo {
  display: block;
  width: 91px;
}

@media (min-width: 768px) {
  .header-logo,
  .body--mobile-menu-open .header-logo {
    display: block;
    width: 110px;
    margin-right: 45px;
  }
}

@media (min-width: 1080px) {
  .header-logo,
  .body--mobile-menu-open .header-logo {
    width: 180px;
    margin-right: 57px;
  }
}

.body--header-search-focus .header-logo {
  display: none;
}

@media (min-width: 1080px) {
  .body--header-search-focus .header-logo {
    display: block;
  }
}

.btn-header-menu {
  display: none;
}

@media (min-width: 1080px) {
  .btn-header-menu {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    line-height: 1;
    font-weight: bold;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid #bc191d;
    background-color: #bc191d;
    padding: 0 18px;
    min-height: 48px;
    border-radius: 10px;
    margin-right: 32px;
  }
}

.body--header-search-focus .btn-header-menu {
  display: none;
}

@media (min-width: 1440px) {
  .body--header-search-focus .btn-header-menu {
    display: flex;
  }
}

.btn-header-menu__img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  stroke: #fff;
  pointer-events: none;
}

.header-action-bar {
  display: grid;
  grid-gap: 8px;
  grid-auto-flow: column;
  justify-content: start;
}

.btn-header-action {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fff;
  color: inherit;
  border: 1px solid #edeff2;
  width: 40px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-header-action:hover {
  color: #bc191d;
}

.btn-header-action:not(:last-child) {
  margin-right: 8px;
}

@media (min-width: 768px) {
  .btn-header-action {
    width: 64px;
    height: 48px;
    border-radius: 10px;
  }
}

.btn-header-action--favorites,
.btn-header-action--user {
  display: none;
}

@media (min-width: 768px) {
  .btn-header-action--favorites,
  .btn-header-action--user {
    display: flex;
  }
}

.btn-header-action--user,
.btn-header-action--cart {
  position: relative;
}

.body--header-search-focus .btn-header-action--favorites,
.body--header-search-focus .btn-header-action--user {
  display: none;
}

@media (min-width: 1080px) {
  .body--header-search-focus .btn-header-action--favorites,
  .body--header-search-focus .btn-header-action--user {
    display: flex;
  }
}

.body--mobile-menu-open .btn-header-action--cart,
.body--header-search-focus .btn-header-action--cart {
  display: none;
}

@media (min-width: 768px) {
  .body--mobile-menu-open .btn-header-action--cart {
    display: flex;
  }
}

@media (min-width: 1080px) {
  .body--header-search-focus .btn-header-action--cart {
    display: flex;
  }
}

.btn-header-action__img {
  width: 12.5px;
  height: 20px;
  stroke: currentColor;
}

@media (min-width: 768px) {
  .btn-header-action__img {
    width: auto;
  }
}

.btn-header-action__counter {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #bc191d;
  color: #fff;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 7px;
  line-height: 16px;
}

@media (min-width: 768px) {
  .btn-header-action__counter {
    top: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 11px;
  }
}

.btn-header-action__counter--user {
  padding: 4px 3px 4px 5px;
  fill: #fff;
  stroke: transparent;
  transition: stroke .3s ease;
}

.btn-header-action--user:hover .btn-header-action__counter--user {
  stroke: #bc191d;
}

.btn-header-action__counter--hidden {
  display: none;
}

.footer {
  background: #303031;
  color: #fff;
  position: relative;
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 1080px) {
  .footer {
    font-size: 14px;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px auto;
}

@media (min-width: 768px) {
  .footer-top {
    display: grid;
    margin: 25px auto;
    row-gap: 24px;
    align-items: flex-start;
  }
}

@media (min-width: 1080px) {
  .footer-top {
    column-gap: 32px;
    margin: 40px auto;
    row-gap: 0;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1440px) {
  .footer-top {
    column-gap: 64px;
  }
}

.footer-informations {
  display: grid;
  align-content: start;
  grid-gap: 31px;
  margin: 0 0 24px;
  width: 272px;
}

@media (min-width: 768px) {
  .footer-informations {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    margin: 0;
    width: auto;
  }
}

@media (min-width: 1080px) {
  .footer-informations {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px;
  }
}

.footer-logo {
  display: none;
}

@media (min-width: 768px) {
  .footer-logo {
    display: block;
    grid-column: 1 / 3;
    max-width: 110px;
  }
}

@media (min-width: 1080px) {
  .footer-logo {
    grid-column: 1 / 2;
    max-width: 191px;
  }
}

.footer-schedule {
  margin-bottom: 8px;
}

@media (min-width: 1080px) {
  .footer-schedule {
    margin-top: 8px;
  }
}

.footer-schedule__title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .footer-schedule__title {
    margin-bottom: 16px;
  }
}

.footer-schedule__title-img {
  width: 27px;
  height: 24px;
  fill: #fff;
  margin-right: 8px;
}

@media (min-width: 768px) {
  .footer-schedule__title-img {
    margin-right: 16px;
  }
}

.footer-schedule__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-gap: 8px 16px;
}

@media (min-width: 768px) {
  .footer-schedule__list {
    grid-gap: 8px 24px;
  }
}

.footer-actions {
  display: none;
}

@media (min-width: 768px) {
  .footer-actions {
    display: grid;
    grid-gap: 24px;
  }
}

.footer__actions__btn {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: bold;
  border: none;
  background-color: transparent;
  font-family: inherit;
  padding: 0;
  cursor: pointer;
}

.footer__actions__btn-img {
  stroke: #fff;
  margin-right: 12px;
  width: 20px;
  height: 22px;
}

.footer-payments {
  display: none;
}

@media (min-width: 768px) {
  .footer-payments {
    grid-row: 4 / 5;
    display: flex;
    align-items: center;
    width: auto;
  }
}

@media (min-width: 1080px) {
  .footer-payments {
    margin-top: -36px;
  }
}

.footer-payments__item:not(:last-child) {
  margin-right: 16px;
}

.footer-payments__img--apple {
  height: 29px;
  width: 58px;
}

.footer-payments__img--google {
  height: 24px;
  width: 58px;
}

.footer-payments__img--mastercard {
  height: 28px;
  width: 36px;
}

.footer-payments__img--visa {
  height: 20px;
  width: 66px;
}

.footer-menu {
  display: none;
}

@media (min-width: 768px) {
  .footer-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    grid-gap: 24px;
    height: 100%;
    width: auto;
    margin: 24px 0 0;
  }
}

@media (min-width: 1080px) {
  .footer-menu {
    grid-column: 2 / 4;
    border-right: 1px solid rgba(255, 255, 255, .1);
    grid-column-gap: 32px;
    margin: 0;
  }
}

@media (min-width: 1440px) {
  .footer-menu {
    grid-column-gap: 64px;
  }
}

.footer-menu__list {
  padding-right: 16px;
}

.footer-menu ul:first-child {
  grid-row: 1 / 3;
}

@media (min-width: 1080px) {
  .footer-menu__list:first-child {
    border-right: 1px solid rgba(255, 255, 255, .1);
  }
}

.footer-menu__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-menu__item:not(:last-child) {
  margin-bottom: 10px;
}

.footer-menu__link {
  color: #999;
  text-decoration: none;
}

.footer-contacts {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-contacts {
    grid-row: 2 / 3;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    width: auto;
  }
}

@media (min-width: 1080px) {
  .footer-contacts {
    grid-row: 1 / 2;
    grid-column: 4;
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer-contacts__item {
  position: relative;
  width: 272px;
}

@media (min-width: 768px) {
  .footer-contacts__item {
    width: auto;
  }
}

.footer-contacts__item-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .footer-contacts__item-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.footer-contacts__item-title-img {
  width: 18px;
  height: 30px;
  fill: #fff;
  margin: 0 16px 8px 0;
}

@media (min-width: 768px) {
  .footer-contacts__item-title-img {
    margin-bottom: 0;
  }
}

.footer-contacts__item-viber {
  position: absolute;
  left: 283px;
}

@media (min-width: 768px) {
  .footer-contacts__item-viber {
    left: 259px;
  }
}

@media (min-width: 1080px) {
  .footer-contacts__item-viber {
    left: 142px;
    margin-top: 28px;
  }
}

@media (min-width: 1440px) {
  .footer-contacts__item-viber {
    left: auto;
    right: 0;
    margin-top: 0;
  }
}

.footer-contacts__item-viber-img {
  fill: #7360f2;
  width: 24px;
  height: 24px;
}

.footer-contacts__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-gap: 8px 24px;
}

@media (min-width: 1080px) {
  .footer-contacts__list {
    grid-template-columns: repeat(1, max-content);
  }
}

@media (min-width: 1440px) {
  .footer-contacts__list {
    grid-template-columns: repeat(2, max-content);
  }
}

.footer-contacts__link {
  color: #fff;
  text-decoration: none;
}

.footer-contacts__social-list {
  display: grid;
  grid-column-gap: 20px;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-contacts__social-list {
    justify-content: start;
  }
}

.footer-contacts__social-img {
  height: 24px;
  fill: #999;
  transition: all .3s ease;
}

.footer-contacts__social-img:hover {
  fill: #fff;
}

.footer-contacts__social-img--facebook {
  width: 13px;
}

.footer-contacts__social-img--telegram {
  width: 28px;
}

.footer-contacts__social-img--instagram {
  width: 24px;
}

.footer-contacts__social-img--viber {
  width: 23px;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .footer-bottom {
    justify-content: space-between;
    padding-top: 26px;
    padding-bottom: 26px;
  }
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  height: 1px;
  width: calc(100% - 30px);
  background-color: rgba(255, 255, 255, .1);
}

.footer-copyright {
  color: #999;
}

/* ==================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  width: 100%;
  overflow: hidden;
  background-color: rgba(33, 33, 33, .46);
}

.preloader--open {
  height: 100%;
}

.preloader__inner {
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader__inner div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #fff;
  animation: preloader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.preloader__inner div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}

.preloader__inner div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}

.preloader__inner div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}

@keyframes preloader {
  0% {
    top: 8px;
    height: 64px;
  }

  50%, 100% {
    top: 24px;
    height: 32px;
  }
}

.interseptor-hide-footer-btn-scroll-to-top {
  position: absolute;
  top: 0;
  height: 0;
}

.interseptor-dock-footer-btn-scroll-to-top {
  content: '';
  position: absolute;
  top: 24px;
  height: calc(100% - 24px);
}

.footer-btn-scroll-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -24px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  color: #bc191d;
  border: 1px solid currentColor;
  cursor: pointer;
  transition-property: opacity, visibility;
  transition-delay: .3s;
}

.footer-btn-scroll-to-top--hidden {
  opacity: 0;
  visibility: hidden;
}

.footer-btn-scroll-to-top--float {
  position: fixed;
  top: auto;
  bottom: 20px;
}

.footer-btn-scroll-to-top__img {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.nav-catalog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 12px;
  line-height: 21px;
  transform: translateX(0);
}

@media (min-width: 1080px) {
  .nav-catalog {
    position: static;
    width: 307px;
  }
}

.nav-catalog__list {
  background-color: #fff;
  overflow-y: auto;
}

.nav-catalog__list--main {
  border-radius: 10px 0 0 10px;
}

.nav-catalog__list--child {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1080px) {
  .nav-catalog__list--child {
    left: 100%;
    width: 307px;
    border-left: 1px solid #edeff2;
    overflow-y: auto;
  }

  .nav-catalog__list--child::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 12px;
  }

  .nav-catalog__list--child::-webkit-scrollbar-thumb {
    height: 60px;
    background: #b2bac7;
    border-radius: 10px;
    border: 2px solid #fff;
  }

  .nav-catalog__list--child-2 {
    left: 614px;
    background-color: #fafafa;
    border-radius: 0 10px 10px 0;
  }
}

.nav-catalog__list--is-visible {
  display: block;
}

.nav-catalog__item {
  display: flex;
  min-height: 44px;
  padding: 0 7px 0 15px;
}

.nav-catalog__item--main:not(:last-child) {
  border-bottom: 1px solid #edeff2;
}

@media (min-width: 1080px) {
  .nav-catalog__item--parent {
    display: none;
  }

  .nav-catalog__item--child:hover {
    background-color: #edeff2;
  }
}

.nav-catalog__link {
  color: #303031;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 4px 0;
  flex-grow: 1;
  transition: color .3s ease;
}

.nav-catalog__item:hover > .nav-catalog__link {
  color: #bc191d;
}

.nav-catalog__link-img {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  stroke: #b2bac7;
  fill: #b2bac7;
  transition-property: stroke, fill;
  transition-duration: .3s;
}

.nav-catalog__link-img--arrow {
  margin-left: auto;
  height: 10px;
}

.nav-catalog__item:hover > .nav-catalog__link > .nav-catalog__link-img {
  stroke: currentColor;
  fill: currentColor;
}

/* .nav-catalog__btn-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #b2bac7;
  transition: color .3s ease;
} */

/* .nav-catalog__item:hover > .nav-catalog__btn-nav {
  color: #bc191d;
} */

/* .nav-catalog__btn-nav-img {
  pointer-events: none;
  width: 6px;
  height: 10px;
  fill: currentColor;
} */

.mobile-menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
  cursor: pointer;
  transition-property: visibility, opacity;
  transition-duration: .3s;
}

.body--mobile-menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1080px) {
  .mobile-menu__container {
    position: fixed;
    top: var(--header-bottom);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1630px;
    z-index: 2;
  }
}

.mobile-menu__drop {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  transition: top .3s ease-out;
  display: grid;
  align-content: start;
  grid-template-rows: max-content 1fr;
}

@media (min-width: 1080px) {
  .mobile-menu__drop {
    top: 16px;
    width: auto;
    visibility: hidden;
    opacity: 0;
    transition-property: visibility, opacity;
    transition-duration: .3s;
    border-radius: 10px 0 0 10px;
  }
}

.body--mobile-menu-open .mobile-menu__drop {
  top: var(--header-bottom);
  height: calc(100% - var(--header-bottom));
}

@media (min-width: 1080px) {
  .body--mobile-menu-open .mobile-menu__drop {
    top: 16px;
    height: auto;
    visibility: visible;
    opacity: 1;
  }
}

.mobile-menu__wrapper-btn-catalog {
  border-top: 1px solid #edeff2;
  border-bottom: 1px solid #edeff2;
  color: #bc191d;
  position: relative;
}

@media (min-width: 1080px) {
  .mobile-menu__wrapper-btn-catalog {
    display: none;
  }
}

.mobile-menu__btn-catalog {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 56px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-weight: bold;
  font-family: inherit;
  color: inherit;
  padding: 0;
}

.mobile-menu__btn-catalog-img {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

@media (min-width: 768px) {
  .mobile-menu__btn-catalog-img {
    display: block;
  }
}

.mobile-menu__btn-catalog-img--menu {
  margin-right: 14px;
}

.body--mobile-menu-catalog-open .mobile-menu__btn-catalog-img--menu {
  display: none;
}

.mobile-menu__btn-catalog-img--arrow {
  width: 20px;
  height: 16px;
  margin-left: auto;
  transform: rotate(90deg);
}

.body--mobile-menu-catalog-open .mobile-menu__btn-catalog-img--arrow {
  margin: 0 14px 0 0;
  transform: rotate(-90deg);
  order: -1;
}

.mobile-menu__btn-back {
  position: absolute;
  top: 0;
  right: 0;
  height: 56px;
  width: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  border: none;
  color: inherit;
  padding: 0;
  visibility: hidden;
}

.body--mobile-menu-catalog-open .mobile-menu__btn-back {
  visibility: visible;
}

.mobile-menu__btn-back-img {
  transform: rotate(-90deg);
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.mobile-menu__nav-catalog {
  transform: translate(0);
  display: none;
}

@media (min-width: 1080px) {
  .mobile-menu__nav-catalog {
    display: block;
  }
}

.body--mobile-menu-catalog-open .mobile-menu__nav-catalog {
  display: block;
}

.mobile-menu__content {
  overflow-y: scroll;
}

.body--mobile-menu-catalog-open .mobile-menu__content {
  display: none;
}

@media (min-width: 1080px) {
  .mobile-menu__content {
    display: none;
  }
}

.mobile-menu__menu {
  display: grid;
  grid-row-gap: 16px;
  border-bottom: 1px solid #eaecf1;
  padding: 16px 0;
}

.mobile-menu__menu-link {
  color: #231f20;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.mobile-menu__action-bar {
  display: grid;
  grid-row-gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid #eaecf1;
  width: 100%;
}

.mobile-menu__action-bar-btn {
  font-size: 14px;
  color: #303031;
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border: none;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.mobile-menu__action-bar-btn-wrapper-img {
  position: relative;
}

.mobile-menu__action-bar-btn-img {
  margin-right: 19px;
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.mobile-menu__action-bar-btn-counter {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #bc191d;
  position: absolute;
  top: -8px;
  right: 8px;
  padding: 2px 2px 2px 3px;
  fill: #fff;
}

.mobile-menu__btn-contact {
  color: #fff;
  background: #bc191d url(/resource_1/images/lines-right.svg) right center no-repeat;
  font-size: 12px;
  font-family: inherit;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #bc191d;
  height: 48px;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 16px;
}

.mobile-menu__btn-contact:active,
.mobile-menu__btn-contact:hover {
  background-color: #af161a;
}

.mobile-menu__btn-contact-img {
  width: 18px;
  height: 30px;
  fill: #fff;
  margin-right: 8px;
}

.wrapper-mobile-menu-contacts {
  height: var(--height, 0);
  overflow: hidden;
  transition: height .3s ease;
}

.mobile-menu-contacts {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 12px 16px;
  grid-row-gap: 16px;
}

.mobile-menu-contacts__item {
  border-bottom: 1px solid #edeff2;
  padding-bottom: 16px;
}

.mobile-menu-contacts__item-title {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-weight: bold;
}

.mobile-menu-contacts__item-title-img {
  margin-right: 8px;
  width: 18px;
  height: 30px;
  fill: #bc191d;
}

.mobile-menu-contacts__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 130px);
  grid-gap: 8px 16px;
}

.mobile-menu-contacts__link {
  font-size: 14px;
  color: #303031;
  text-decoration: none;
}

.mobile-menu-languages {
  display: flex;
  /* display: none; */
  justify-content: center;
  margin-bottom: 20px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .mobile-menu-languages {
    justify-content: flex-start;
  }
}

.mobile-menu-languages__item {
  position: relative;
}

.mobile-menu-languages__item--active {
  color: #bc191d;
  font-weight: bold;
}

.mobile-menu-languages__item:hover {
  color: #bc191d;
}

.mobile-menu-languages__item:not(:last-child) {
  margin-right: 16px;
}

.mobile-menu-languages__item:nth-child(n+2)::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -8px;
  width: 1px;
  height: calc(100% + 2px);
  background-color: #b2bac7;
}

.mobile-menu-languages__link {
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  transition: color .3s ease;
}

.modal-window {
  --modal-window--ident: 16px;
  --modal-window--max-width: 530px;

  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  cursor: pointer;
  display: flex;
  transition-property: visibility, opacity;
  transition-duration: .3s;
  padding: 15px;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .modal-window {
    --modal-window--ident: 20px;

    padding: 40px 15px;
  }
}

@media (min-width: 1080px) {
  .modal-window {
    --modal-window--ident: 24px;
  }
}

.modal-window--open {
  visibility: visible;
  opacity: 1;
}

.modal-window__content {
  margin: auto;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #edeff2;
  width: 100%;
  max-width: var(--modal-window--max-width);
  cursor: auto;
}

.modal-window__header {
  overflow: hidden;
  margin-bottom: var(--modal-window--ident);
}

.modal-window__title {
  padding: var(--modal-window--ident) var(--modal-window--ident) 0;
  font-weight: bold;
  color: #303031;
  font-size: 18px;
  line-height: 18px;
}

@media (min-width: 768px) {
  .modal-window__title {
    font-size: 26px;
    line-height: 26px;
    text-align: center;
  }
}

@media (min-width: 1080px) {
  .modal-window__title {
    font-size: 30px;
    line-height: 30px;
  }
}

.modal-window__btn-close {
  float: right;
  color: #aaa;
  height: 50px;
  width: 50px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 10px 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.modal-window__btn-close-img {
  fill: currentColor;
  pointer-events: none;
  width: 18px;
  height: 18px;
}

.modal-window__body {
  padding: 0 var(--modal-window--ident) var(--modal-window--ident);
}

.modal-window__form {
  display: grid;
  grid-gap: var(--modal-window--ident);
}

.modal-window__form--hidden {
  display: none;
}

.form-input {
  display: block;
  color: #303031;
}

.form-input__title {
  font-size: 14px;
  margin-bottom: 8px;
}

@media (min-width: 1080px) {
  .form-input__title {
    margin-bottom: 16px;
  }
}

.form-input__title-required {
  color: #bc191d;
}

.form-input__wrapper-input-password {
  position: relative;
}

.form-input__input {
  width: 100%;
  font-family: inherit;
  height: 40px;
  line-height: 40px;
  border: 1px solid #edeff2;
  padding: 0 var(--modal-window--ident);
  font-size: 14px;
  border-radius: 10px;
  color: inherit;
}

@media (min-width: 1080px) {
  .form-input__input {
    height: 48px;
    line-height: 48px;
  }
}

.form-input__input--password {
  display: block;
  padding-right: 50px;
}

.form-input__input::placeholder,
.form-input__textarea::placeholder {
  line-height: inherit;
  transition: opacity .3s ease;
  color: #999;
}

.form-input__input:focus::placeholder,
.form-input__textarea:focus::placeholder {
  opacity: 0;
}

.form-input__btn-visible-password {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  background-color: transparent;
  border: none;
  color: #999;
  cursor: pointer;
}

.form-input__btn-visible-password-img {
  width: 18px;
  height: 100%;
  fill: currentColor;
}

.form-input__btn-visible-password-line {
  content: '';
  height: 2px;
  background-color: currentColor;
  position: absolute;
  width: calc(100% - 16px);
  left: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  opacity: 0;
  transition: opacity .3s;
}

.form-input__btn-visible-password--active .form-input__btn-visible-password-line,
.form-input__btn-visible-password:hover .form-input__btn-visible-password-line {
  opacity: 1;
}

/* .form-ckeckbox {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.form-ckeckbox__input {
  width: 28px;
  height: 28px;
  appearance: none;
  border: 1px solid #edeff2;
  border-radius: 3px;
  margin: 0 8px 0 0;
  flex-shrink: 0;
  cursor: inherit;
}

.form-ckeckbox__check-img {
  position: absolute;
  width: 15px;
  left: 8px;
  height: 100%;
  fill: #bc191d;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

.form-ckeckbox__input:checked + .form-ckeckbox__check-img {
  opacity: 1;
} */

.form-input__textarea {
  padding: 17px 12px;
  padding: 12px var(--modal-window--ident);
  font-size: 14px;
  line-height: 21px;
  font-family: inherit;
  border-radius: 10px;
  border: 1px solid #edeff2;
  color: inherit;
  resize: vertical;
  height: 200px;
  width: 100%;
}

.form-btn {
  color: #fff;
  background: #bc191d url(/resource_1/images/lines-right.svg) right center no-repeat;
  background-color: #bc191d;
  font-size: 14px;
  font-family: inherit;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #bc191d;
  padding: 0 18px;
  height: 48px;
  border-radius: 10px;
}

.form-btn:hover {
  background-color: #af161a;
}

.form-btn:disabled {
  cursor: auto;
  border-color: #edeff2;
  background-color: #fff;
  color: #b2bac7;
  background-image: none;
}

.form-note {
  font-size: 12px;
  line-height: 21px;
  text-align: center;
}

.modal-window__response {
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  padding-right: calc(50px - var(--modal-window--ident));
}

.modal-window__response--success {
  color: #303031;
}

.modal-window__response--error {
  color: #bc191d;
}

.modal-window-login__tabs {
  text-align: center;
  margin-top: -50px;
  margin-bottom: var(--modal-window--ident);
}

.modal-window-login__tab {
  background-color: transparent;
  border: none;
  font-family: inherit;
  font-size: 14px;
  padding: 0 0 4px;
  margin: 0 16px;
  border-bottom: 2px solid transparent;
  transition-property: color, border-color;
  transition-duration: .3s;
}

.modal-window-login__tab:not(.modal-window-login__tab--active) {
  cursor: pointer;
  color: #999;
}

.modal-window-login__tab--active,
.modal-window-login__tab:hover {
  color: #bc191d;
  border-color: currentColor;
}

.modal-window-login__wrapper-btn-forgotten {
  text-align: center;
}

.modal-window-login__btn-forgotten {
  background-color: transparent;
  border: none;
  color: #bc191d;
  text-decoration: underline;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.modal-window-login__btn-forgotten:hover {
  text-decoration: none;
}

.modal-window-login__recaptcha {
  overflow: hidden;
}

.modal-window-login__recaptcha--error {
  border: 1px solid #bc191d;
}

.modal-window-login__term-to-agree {
  font-size: 14px;
}

.modal-window-login__term-to-link {
  color: #bc191d;
}

.modal-window-recovery__title {
  font-size: 14px;
  text-align: center;
}

.modal-window-favorite__list {
  display: grid;
  grid-row-gap: 8px;
}

.modal-window-favorite__item {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid #edeff2;
}

.modal-window-favorite__item-title {
  font-size: 16px;
  font-weight: bold;
  margin-right: auto;
  word-break: break-all;
}

.modal-window-favorite__item-btn {
  margin-left: 8px;
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  height: 100%;
  font-size: 14px;
  font-family: inherit;
  color: #bc191d;
  cursor: pointer;
  padding: 0;

}

.modal-window-favorite__item-btn-img {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  margin-right: 8px;
  fill: currentColor;
  pointer-events: none;
}

.modal-window-favorite__item-btn-img--plus {
  padding: 3px;
}

.modal-window-favorite__item-btn-img--minus {
  padding: 5px;
}

.modal-window-favorite__error-link {
  color: #bc191d;
}

.cart {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  top: var(--header-bottom);
  left: 0;
  height: calc(100% - var(--header-bottom));
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  cursor: pointer;
  transition-property: visibility, opacity;
  transition-duration: .3s;
  overflow-y: auto;
}

.body--cart-open .cart {
  visibility: visible;
  opacity: 1;
}

.cart__container {
  width: 100%;
  overflow: hidden;
  height: 0;
  transition: height .3s;
}

@media (min-width: 768px) {
  .cart__container {
    position: absolute;
    width: calc(100% - 30px);
    max-width: 1600px;
    left: 50%;
    transform: translateX(-50%);
    margin: 5px 0;
  }
}

.body--cart-open .cart__container {
  height: calc(var(--height) + 2px);
}

.cart__wrapper {
  width: 100%;
  border: 1px solid #edeff2;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 16px;
  cursor: default;
}

@media (min-width: 768px) {
  .cart__wrapper {
    margin-left: auto;
    border-radius: 10px;
    max-width: 741px;
    box-shadow: 0 0 6px rgb(48, 48, 49, .1);
  }

  .cart__wrapper--empty {
    max-width: 300px;
  }
}

.cart__header {
  display: flex;
  align-items: center;
  padding: 0 0 16px;
  border-bottom: 1px solid #edeff2;
}

.cart__title {
  margin-right: 16px;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .cart__title {
    font-size: 24px;
    line-height: 34px;
  }
}

.cart__clear {
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px dashed currentColor;
  color: #bc191d;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

.cart__btn-close {
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.cart__btn-close-img {
  width: 15px;
  height: 15px;
  stroke: #303031;
  pointer-events: none;
}

.cart__content {
  padding: 0 16px 0 0;
  max-height: 285px;
  overflow-y: scroll;
  scrollbar-color: #303031;
  scrollbar-width: thin;
}

.cart__content::-webkit-scrollbar {
  width: 3px;
}

.cart__content::-webkit-scrollbar-track {
  background-color: #edeff2;
  width: 3px;
  margin: 10px 0;
}

.cart__content::-webkit-scrollbar-thumb {
  background-color: #303031;
}

.cart__item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 2fr 16px;
  grid-gap: 8px;
  padding-bottom: 16px;
  grid-template-areas:
    "image name  name  remove"
    "image code  code  code"
    "input input price price";
}

@media (min-width: 768px) {
  .cart__item {
    grid-template-columns: 90px 1fr 120px 200px 16px;
    grid-template-areas:
      "image name name  name  remove"
      "image code input price price";
  }
}

.cart__item:first-child {
  padding-top: 16px;
}

.cart__item:not(:last-child) {
  border-bottom: 1px solid #edeff2;
  margin-bottom: 16px;
}

.cart__item-wrapper-image {
  grid-area: image;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #edeff2;
  border-radius: 10px;
  overflow: hidden;
}

.cart__item-image {
  width: 100%;
}

.cart__item-name {
  grid-area: name;
  height: 54px;
  position: relative;
  font-size: 12px;
  color: #303031;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
}

.cart__item__name::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 18px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, .32));
}

.cart__item-code {
  grid-area: code;
  font-size: 12px;
  color: #999;
  align-self: end;
}

.cart__item-quantity {
  grid-area: input;
  display: flex;
  align-items: center;
  background-color: #fff;
  max-width: 150px;
}

.cart__item-quantity-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1px solid #edeff2;
  padding: 0;
  border-radius: 25px;
  flex-shrink: 0;
  transition: color .3s;
}

.cart__item-quantity-btn:enabled {
  cursor: pointer;
}

.cart__item-quantity-btn:disabled {
  color: #aaa;
}

.cart__item-quantity-btn--minus {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  color: #303031;
}

.cart__item-quantity-img-minus {
  width: 7px;
  height: 3px;
  fill: currentColor;
  pointer-events: none;
}

.cart__item-quantity-btn--plus {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  color: #bc191d;
}

.cart__item-quantity-img-plus {
  width: 10px;
  height: 10px;
  fill: currentColor;
  pointer-events: none;
}

.cart__item-quantity-input {
  text-align: center;
  width: 100%;
  font-size: 18px;
  height: 30px;
  color: #303031;
  border: none;
  border-top: 1px solid #edeff2;
  border-bottom: 1px solid #edeff2;
  font-family: inherit;
}

.cart__item-price {
  grid-area: price;
  display: flex;
  justify-content: flex-end;
}

.cart__item-price-old {
  margin-right: 8px;
  text-decoration: line-through;
  font-size: 14px;
  color: #999;
}

.cart__item-price-uah {
  font-size: 18px;
  font-weight: bold;
}

.cart__item-remove {
  grid-area: remove;
  height: 16px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

.cart__item-remove-img {
  fill: #b2bac7;
  width: 10px;
  height: 10px;
}

.cart__footer {
  border-top: 1px solid #edeff2;
  padding-top: 16px;
}

.cart__total {
  display: flex;
  margin-bottom: 16px;
}

.cart__total-title {
  font-size: 14px;
  font-weight: bold;
  margin-right: auto;
}

.cart__total-sum {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .cart__total-sum {
    flex-direction: row;
    align-items: center;
  }
}

.cart__total-sum-uah {
  font-size: 24px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .cart__total-sum-uah {
    margin-right: 8px;
  }
}

.cart__total-sum-usd {
  font-size: 18px;
}

.cart__link-checkout {
  color: #fff;
  background: #bc191d url(/resource_1/images/lines-right.svg) right center no-repeat;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #bc191d;
  width: 100%;
  height: 38px;
  border-radius: 10px;
  text-decoration: none;
  padding: 0 18px;
  transition: background-color .3s;
}

.cart__link-checkout:hover {
  background-color: #af161a;
}

.cart__empty {
  margin-top: 16px;
  font-size: 14px;
}

.cart-toast {
  position: fixed;
  top: calc(var(--header-bottom) + 5px);
  right: 20px;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 0 6px rgba(48, 48, 49, .1);
  border-radius: 10px;
  display: flex;
  padding: 8px;
  align-items: center;
  transition-property: opacity, visibility, top;
  transition-duration: .3s;
}

.cart-toast--open {
  opacity: 1;
  visibility: visible;
}

.cart-toast__image {
  border: 1px solid #edeff2;
  display: flex;
  border-radius: 5px;
  width: 50px;
  margin-right: 10px;
}

.cart-toast__text {
  font-size: 14px;
  margin-right: auto;
}

.cart-toast__text-link {
  color: #bc191d;
}

.cart-toast__btn-close {
  align-self: start;
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.cart-toast__btn-close-icon {
  fill: #aaa;
  width: 15px;
  height: 15px;
}

.pagination {
  display: grid;
  grid-column-gap: 8px;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, 34px);
  justify-content: center;
  height: 34px;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  width: 100%;
}

@media (min-width: 768px) {
  .pagination {
    grid-template-columns: repeat(auto-fit, 40px);
    height: 40px;
    line-height: 44px;
  }
}

.pagination__item {
  border-radius: 10px;
  overflow: hidden;
}

.pagination__arrow {
  color: #b2bac7;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.pagination__arrow:not(.pagination__arrow--disabled):hover {
  color: #bc191d;
}

.pagination__arrow--disabled {
  opacity: .4;
  cursor: default;
}

.pagination__arrow__img {
  width: 6px;
  height: 10px;
  fill: currentColor;
  transition: fill .3s ease;
  pointer-events: none;
}

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

.pagination__button {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  background-color: transparent;
  border: none;
  color: #303031;
  transition-property: background-color, color;
  transition-duration: .3s;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}

.pagination__button:hover,
.pagination__active {
  color: #fff;
  background-color: #bc191d;
}

.pagination__active {
  height: 100%;
  width: 100%;
}

.btn-load-more {
  display: flex;
  align-items: center;
  color: #bc191d;
  font-size: 12px;
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid currentColor;
  background-color: transparent;
  padding: 0 18px;
  min-height: 48px;
  border-radius: 10px;
  height: 48px;
  margin: 0 auto;
  transition-property: background-color, color, opacity, visibility;
  transition-duration: .3s;
}

.btn-load-more:hover {
  background-color: #bc191d;
  color: #fff;
}

.btn-load-more__img {
  width: 26px;
  height: 22px;
  stroke: currentColor;
  margin-right: 8px;
}

/*# sourceMappingURL=shared.min.css.map */
