html, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
}

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

body {
  background-color: #fff;
  color: #424242;
  display: -webkit-box;
  display: -ms-flexbox;
/*  display: flex;*/
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.swiper-wrapper {
  align-items: stretch;
  height: auto;
}
.swiper-slide {
  display: flex;
  height: auto;
  flex-grow: 1;
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  top: 50%;
  width: 31px;
  height: 31px;
  padding: 0;
  background: rgb(184, 28, 41);
  z-index: 10;
  outline: none;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 0;
  transform: translateY(-50%);
  transition: background-color 0.4s, opacity 0.4s;
}
.swiper-button-next:focus-visible, .swiper-button-prev:focus-visible {
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: #242424;
}
.swiper-button-next:before, .swiper-button-prev:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../icons/arrow-next.svg");
}
.swiper-button-next:after, .swiper-button-prev:after {
  content: "";
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden, .swiper-button-next.swiper-button-lock.swiper-button-disabled, .swiper-button-prev.swiper-button-hidden, .swiper-button-prev.swiper-button-lock.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev {
  left: -14px;
}
.swiper-button-prev:before {
  transform: rotate(180deg);
}
.swiper-button-next {
  right: -14px;
}
.swiper-button--light {
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}
.swiper-button--light:hover {
  background-color: #ffffff;
}
.swiper-button--light::before {
  background-image: url("../icons/arrow-next-light.svg");
}
.swiper-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  list-style: none;
}
.swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #242424;
  border-radius: 50%;
  padding: 0;
  transition: background-color 0.4s;
  outline: none;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  background-color: rgb(184, 28, 41);
}
.swiper-pagination-bullet:focus-visible {
  outline: 1px auto rgba(204, 204, 204, 0.75);
}
.swiper-pagination-lock {
  opacity: 0;
}

.popup {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s all;
}
.popup.popup-is-opened {
  opacity: 1;
  visibility: visible;
}
.popup.popup-is-opened .popup__dialog {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.popup::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
  vertical-align: middle;
}
.popup__backdrop {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(26, 26, 29, 0.35);
  transition: 0.2s;
}
.popup__text {
  text-align: center;
  font-size: 14px;
  line-height: 19px;
}
.popup__icon {
  text-align: center;
  margin-bottom: 10px;
}
.popup__buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
}
.popup__buttons button {
  margin-bottom: 10px;
  margin-right: 15px;
}
.popup__dialog {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  color: #2b2e38;
  background: #ffffff;
  max-width: 500px;
  transition: 0.25s all;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 50px);
  display: inline-block;
  vertical-align: middle;
  min-height: 50px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 4px 25px 0px rgba(185, 185, 185, 0.05);
}
.popup__carousel {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  position: relative;
}
.popup__carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  background: transparent;
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup__carousel-button:hover {
  color: #459b87;
}
.popup__carousel-button svg {
  width: 15px;
}
.popup__carousel-button.is-next {
  right: 10px;
}
.popup__carousel-button.is-prev {
  left: 10px;
}
.popup__viewport {
  cursor: default;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.popup__track {
  display: flex;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.popup__slide {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  padding: 10px;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 50px 10px;
}
.popup__slide img {
  max-width: 100%;
  max-height: 100%;
}
.popup__content {
  font-size: 16px;
  line-height: normal;
  text-align: left;
  min-height: 1px;
}
.popup__footer {
  padding: 10px 15px;
  background: #f5f5f5;
}
.popup__footer.sticky {
  z-index: 10001;
  opacity: 1;
  bottom: 0;
  position: absolute;
  width: 100%;
}
.popup__footer button {
  margin-right: 10px;
}
.popup__footer button:last-child {
  margin-right: 0;
}
.popup__title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  font-family: "Gilroy", arial;
  text-align: left;
}
.popup__head {
  margin-bottom: 20px;
}
.popup__caption {
  color: #ffffff;
  margin-top: 10px;
}
.popup__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  top: 20px;
  right: 20px;
  position: absolute;
  color: rgb(26, 26, 29);
  cursor: pointer;
  z-index: 10;
}
.popup__close:hover {
  color: rgb(184, 28, 41);
}
.popup__close svg {
  width: 14px;
  height: 14px;
}
.popup__form {
  max-width: 320px;
  margin: 0 auto;
}
.popup__container {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.popup__container::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
  vertical-align: middle;
}
@media (min-width: 768px) {
  .popup__title {
    font-size: 30px;
  }
  .popup__buttons .button {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .popup__title {
    font-size: 32px;
    font-weight: 700;
  }
  .popup__dialog {
    padding: 20px;
  }
}

.popup-slider {
  width: 100%;
  height: 100%;
  min-width: 1px;
  position: relative;
  padding: 20px 0;
  display: none;
}
.popup-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-slider__item img {
  max-width: 100%;
  max-height: 100%;
}
.popup-slider__pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.popup-slider__prev {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.popup-slider__next {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (min-width: 992px) {
  .popup-slider__pagination {
    display: none;
  }
  .popup-slider__body {
    height: 100%;
  }
}

.popup-arrow {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
}
.popup-arrow--disabled {
  opacity: 0.4;
}
.popup-arrow:hover {
  color: #ffffff;
  transition: 0.2s;
}

.popup-gallery {
  padding: 0;
}
.popup-gallery .popup__footer {
  position: relative !important;
}
.popup-gallery .popup__content {
  flex: 1;
  max-width: 100% !important;
}
.popup-gallery .popup__dialog {
  height: 100%;
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  display: inline-flex;
  flex-direction: column;
  background: transparent;
  transform: none;
  padding: 0;
  margin: 0 !important;
}
.popup-gallery .popup__close {
  color: #ffffff;
}
.popup-gallery .popup__slide.is-active img {
  transform: scale(0.4);
  transition: 0.3s;
}
.popup-gallery.popup-is-opened .popup__slide.is-active img {
  transform: scale(1);
}

.popup-is-locked {
  overflow: hidden;
}

.success-popup .popup__title {
  margin-bottom: 20px;
}
.success-popup .popup__content {
  text-align: center;
  font-family: "Roboto", arial;
  font-size: 14px;
  line-height: 19px;
}

.popup-confirm .popup__buttons {
  margin-left: -8px;
  margin-right: -8px;
  flex-wrap: nowrap;
}
.popup-confirm .popup__buttons button {
  width: 50%;
  margin: 0 8px;
}

html {

}

* {
  box-sizing: border-box;
  outline: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

body {
  font-family: "Roboto", arial;
  font-size: 14px;
  line-height: normal;
  color: #242424;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, html {
  height: 100%;
}
.catalog__body.subcategories-boxes {
    width: calc(100% - 190px);
    flex: none;
}
.catalog-cards__item {
  cursor: pointer;
}
.subcategories-boxes .catalog-cards__item {
  width: 150px;
  height: 150px;
}
.subcategories .catalog-cards__item {
    height: 260px;
}
.subcategories-boxes-parent .catalog-cards__item {
  height: 100px;
}
.subcategories-boxes .catalog-cards__item .prod-card {
  flex-direction: unset;
  display: block;
  text-align: center;
  position: relative;
}
.subcategories-boxes .catalog-cards__item .prod-card .prod-card__main {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.subcategories .catalog-cards__item .prod-card .prod-card__main {
  transform: translate(-50%, 0%);
  top: auto !important;
  bottom: 10px;
}
.subcategories-boxes .catalog-cards__item .prod-card .prod-card__title {
  margin-bottom: 0;
}
.subcategories-boxes a {
  font-size: 16px;
}
.subcategories-boxes .catalog-cards__item .prod-card .subicon {
  width: 150px;
  height: 1px;
}
.locked {
  overflow: hidden;
}

a {
  color: rgb(184, 28, 41);
}

h1, .h1 {
  font-size: 22px;
  line-height: normal;
  font-family: "Gilroy", arial;
  margin-top: 0;
}

h2, .h2 {
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  font-family: "Gilroy", arial;
  margin-top: 0;
  margin-bottom: 10px;
}

h3, .h3 {
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  font-family: "Gilroy", arial;
  margin-top: 0;
  margin-bottom: 10px;
}

h4, .h4 {
  font-size: 15px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 10px;
}

h5, .h5 {
  font-size: 14px;
  line-height: normal;
  margin-top: 0;
}

h6, .h6 {
  font-size: 12px;
  line-height: normal;
  margin-top: 0;
}

p {
  margin: 0;
}
p:not(:last-child) {
  margin-bottom: 20px;
}

ul {
  margin: 0;
  margin-bottom: 20px;
  padding-left: 25px;
}
.page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.header-submenu.header-submenu--active {
    max-height: 1000px;
    overflow-y: auto;
    overflow-x: hidden;
}
.page__crumbs {
  margin-top: 15px;
}
.page__head {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.page__head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.page__title {
  font-family: "Gilroy", arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  flex: 1;
  margin: 0;
}
.page__title span {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  font-family: "Roboto", arial;
  color: rgb(109, 111, 124);
}
.page__title--center {
  text-align: center;
}
.page__subtitle {
  margin-top: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgb(109, 111, 124);
}
.page__sidebar {
  flex: 0 0 auto;
  width: 290px;
  margin-right: 60px;
}
.page__block {
  flex-grow: 1;
  width: 100%;
}
.page__block:not(:last-child) {
  margin-bottom: 60px;
}

.block {
  padding: 40px 0;
}
.block--gray {
  background: #F8F8F8;
}
.block__title {
  font-family: "Gilroy", arial;
  font-size: 20px;
  font-weight: 500;
  color: rgb(184, 28, 41);
  line-height: normal;
}
.block__controls {
  position: relative;
  display: inline-flex;
}
.block__controls .swiper-button-prev, .block__controls .swiper-button-next {
  position: relative;
}
.block__controls .swiper-button-disabled {
  opacity: 0.7;
}
.block__controls .swiper-button-next {
  right: 0;
}
.block__head {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .block__title {
    font-size: 32px;
  }
  .block__head {
    margin-bottom: 30px;
  }
}

.page-block__footer {
  margin-top: 40px;
}

.main {
  flex: 1 0 auto;
}

.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 570px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1000px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}

.tabs {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.tabs__nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.tabs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 380px;
  margin-right: 30px;
}
.tabs__tab, .tabs__tab-product {
  position: relative;
  font-size: 16px;
}
.tabs__pane {
  display: none;
  flex-direction: column;
}
.tabs__pane.active {
  display: flex;
}
.tabs__content {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  flex: 1;
}

.socials__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}
.socials__item {
  margin: 0 10px;
}
.socials__link {
  color: rgb(255, 255, 255);
  transition: 0.2s linear;
}
.socials__link:hover {
  opacity: 0.8;
}
.socials__link:focus {
  color: rgb(184, 28, 41);
}
.socials__icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.socials__icon .icon {
  height: 16px;
}

.home-menu {
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.12);
}
.home-menu__head {
  background: rgb(184, 28, 41);
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  padding: 10px 30px;
}
.home-menu__body {
  padding: 7px 30px 15px 30px;
}
.home-menu__footer {
  margin-top: 10px;
}
.home-menu__search {
  margin-bottom: 10px;
}
.home-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.home-menu__item {
  margin-bottom: 10px;
  display: flex;
}
.home-menu__icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.home-menu__icon .icon {
  width: 100%;
  height: 100%;
}
.home-menu__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  transition: 0.2s linear;
}
.home-menu__link:hover {
  color: rgb(184, 28, 41);
}
.home-menu__all {
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.home-menu__all:hover {
  opacity: 0.8;
}
.home-menu__all-icon {
  width: 8px;
  height: 8px;
  display: inline-flex;
  margin-left: 5px;
  color: #242424;
}
.home-menu__all-icon .icon {
  width: 100%;
  height: 100%;
}
@media (max-width: 991.9px) {
  .home-menu {
    display: none;
  }
}
@media (min-width: 992px) {
  .home-menu {
    width: 219px;
  }
  .home-menu__body {
    padding: 7px 10px;
  }
}
@media (min-width: 1200px) {
  .home-menu {
    width: 296px;
  }
  .home-menu__body {
    padding: 7px 30px 15px 30px;
  }
}

.home {
  margin-top: 20px;
}
.home__carousel {
  display: flex;
}
.home__wrap {
  display: flex;
}
@media (min-width: 992px) {
  .home {
    margin-top: 45px;
  }
  .home__menu {
    margin-right: 25px;
  }
}

.home-carousel {
  display: flex;
}
.home-carousel__slide {
  display: flex;
  align-items: center;
}
.home-carousel__pagination.swiper-pagination {
  display: flex;
  justify-content: flex-start;
  padding: 22px;
}
.home-carousel__pagination.swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  margin: 0 7.5px;
}
@media (max-width: 767.9px) {
  .home-carousel__pagination.swiper-pagination {
    display: none;
  }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
}
.pagination__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-right: 10px;
  color: #696969;
}
.pagination__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.pagination__item {
  margin: 0 4px;
}
.pagination__item .icon {
  width: 20px;
  height: 20px;
}
.pagination__link {
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  transition: color 0.4s, background-color 0.4s;
  color: rgb(26, 26, 29);
  text-decoration: none;
}
.pagination__link.active, span.pagination__link {
  color: rgb(184, 28, 41);
}
.pagination__link:hover {
  color: rgb(184, 28, 41);
}
.pagination__link--arrow:hover:not(.pager__link--disabled) {
  color: rgb(26, 26, 29);
}
.pagination__link--disabled {
  color: rgb(234, 234, 234);
  pointer-events: none;
}

.pager {
  display: flex;
  flex-wrap: wrap;
}
.pager__item {
  margin: 0 4px;
}
.pager__item .icon {
  width: 18px;
  height: 18px;
}
.pager__current, .pager__link {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  padding: 0 12px;
  border: 1px solid #696969;
  color: #242424;
}
.pager__link {
  transition: color 0.4s, background-color 0.4s;
  width: 33px;
  padding: 0;
}
.pager__link.active {
  color: rgb(184, 28, 41);
}
.pager__link:hover {
  color: rgb(184, 28, 41);
}
.pager__count {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
}
.pager.disabled {
  color: rgb(234, 234, 234);
  pointer-events: none;
}

.page-count {
  display: inline-flex;
  align-items: center;
}
.page-count__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-right: 10px;
}
.page-count__input .nice-select {
  height: 33px;
  border: 1px solid #696969;
  padding-left: 10px;
  line-height: 33px;
  border-radius: 0;
}

.breadcrumbs__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 12px;
  padding-right: 12px;
  position: relative;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  opacity: 0.75;
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumbs__link {
  text-decoration: none;
  color: rgb(109, 111, 124);
  transition: 0.2s;
  display: inline-block;
  color: #696969;
}
.breadcrumbs__current {
  color: #242424;
}

.product-reviews__more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.review-carousel {
  position: relative;
}
@media (min-width: 992px) {
  .review-carousel__swiper {
    margin: 0 -10px;
  }
  .review-carousel__slide {
    width: 50%;
    padding: 0 10px;
  }
}

.review-item {
  border: 1px solid #EFEFEF;
  background: rgb(255, 255, 255);
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.04);
  padding: 20px 24px;
}
.review-item__head {
  margin-bottom: 20px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.review-item__name {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.review-item__info {
  margin-right: auto;
}
.review-item__date {
  font-size: 14px;
  line-height: 19px;
  font-style: normal;
  font-weight: 400;
  color: #696969;
  margin-top: 5px;
}
.review-item__text {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
}
.review-item__answer {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .review-item__text {
    font-size: 14px;
    line-height: 19px;
  }
}
@media (min-width: 992px) {
  .review-item__name {
    font-size: 20px;
    font-weight: 700;
  }
  .review-item__text {
    font-size: 16px;
    line-height: 24px;
  }
}

.review-answer {
  background: #EFEFEF;
  padding: 20px 24px;
}
.review-answer__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 15px;
}
.review-answer__text {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
}
@media (min-width: 576px) {
  .review-answer__text {
    font-size: 14px;
    line-height: 19px;
  }
}
@media (min-width: 992px) {
  .review-answer__name {
    font-size: 20px;
    font-weight: 700;
  }
}

.rating {
  position: relative;
  width: 108px;
  height: 18px;
  font-size: 10px;
  text-align: center;
}
.rating__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #696969;
  margin-bottom: 3px;
}
.rating__blank {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background-size: 22px 18px;
  background-image: url("../icons/star-gray.svg");
}
.rating__votes {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  background-size: 22px 18px;
  background-image: url("../icons/star-yellow.svg");
}

.rating-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 5px;
  color: #696969;
}

.banner-carousel {
  position: relative;
}

.range-price__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 20px;
}
.range-price__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.range-price__field {
  display: inline-flex;
  flex-direction: column;
}
.range-price__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 5px;
}
.range-price__input {
  height: 30px;
  border: 1px solid #696969;
  background: #EFEFEF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  padding: 0 10px;
  width: 57px;
}
.range-price__divider {
  height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
}
.range-price__slider {
  margin-top: 20px;
}

.noUi-horizontal {
  height: 6px;
  border-radius: 12px;
  border-radius: 12px;
  border: 1px solid #E1E1E1;
  background: #E1E1E1;
  box-shadow: none;
}
.noUi-horizontal .noUi-connect {
  background: rgb(184, 28, 41);
}
.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid;
  top: -9px;
  right: -10px;
}
.noUi-horizontal .noUi-handle::before, .noUi-horizontal .noUi-handle::after {
  content: none;
}

.sort-filter {
  display: inline-flex;
  position: relative;
}
.sort-filter.active .sort-filter__list {
  opacity: 1;
  visibility: visible;
  top: 23px;
}
.sort-filter__icon {
  width: 10px;
  height: 10px;
}
.sort-filter__icon .icon {
  width: 100%;
  height: 100%;
}
.sort-filter__field {
  display: inline-flex;
  cursor: pointer;
}
.sort-filter__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid;
}
.sort-filter__list {
  position: absolute;
  background: rgb(255, 255, 255);
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.12);
  padding: 20px;
  top: 40px;
  right: 0;
  width: 200px;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.sort-filter__item:not(:last-child) {
  margin-bottom: 10px;
}
.sort-filter__selected {
  margin-right: 10px;
  font-weight: 500;
}
.sort-filter__link {
  text-decoration: none;
  color: #242424;
}
.sort-filter__link:hover {
  color: rgb(184, 28, 41);
}
@media (max-width: 767.9px) {
  .sort-filter__list {
    width: 100%;
  }
}

.sale-filter {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.sale-filter__count {
  padding: 0 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  border: 1px solid #E1E1E1;
  background: #E1E1E1;
  margin-left: 8px;
}

.modal {
  z-index: 10;
}
.modal__container {
  padding: 0;
  border-radius: 0;
  width: 100%;
  max-width: 380px;
}
.modal__container > div {
  padding: 30px;
}
.auth__tabs .tabs__nav {
  flex-wrap: nowrap;
  margin: 0 -5px;
}
.auth__tabs .tabs__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  color: rgb(255, 255, 255);
  background: #c4c4c4;
  width: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.auth__tabs .tabs__tab.active {
  background: rgb(184, 28, 41);
}

.login-socials__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  color: #696969;
  text-align: center;
  margin-bottom: 10px;
}
.login-socials__text {
  text-align: center;
  color: #696969;
}
.login-socials__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.login-socials__item {
  margin: 0 10px;
}
.login-socials__link {
  color: rgb(184, 28, 41);
  transition: 0.2s linear;
}
.login-socials__link:hover {
  color: #242424;
}
.login-socials__link:focus {
  color: rgb(184, 28, 41);
}
.login-socials__icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.login-socials__icon .icon {
  height: 100%;
  width: 100%;
}

.login .restore-link {
  text-decoration: none;
  font-size: 16px;
}
.login .restore-link:hover {
  opacity: 0.7;
}
.login__text {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.login__devider {
  height: 2px;
  width: 100px;
  background: rgb(255, 255, 255);
}
.login__form {
  padding-bottom: 30px;
  text-align: center;
}
.login__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #EFEFEF;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: -30px;
}

.registration__button {
  text-align: center;
}

.callback__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 25px;
  color: rgb(184, 28, 41);
  text-align: center;
}
.callback__button {
  text-align: center;
}

.restore__info {
  background: #EFEFEF;
  padding: 22px 30px;
  margin-top: -30px;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 25px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  color: #696969;
}
.restore__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgb(184, 28, 41);
  text-align: center;
}
.restore__button {
  text-align: center;
}

.view-mode {
  align-self: center;
  display: inline-flex;
}
.view-mode__item {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  display: inline-flex;
}
.view-mode__item.active {
  color: rgb(184, 28, 41);
}
.view-mode__item:hover {
  cursor: pointer;
}
.view-mode__item:hover {
  color: rgb(184, 28, 41);
}

.logo {
  display: inline-flex;
  transition: 0.2s;
}
.logo__image {
  height: 25px;
}
@media (min-width: 992px) {
  .logo__image {
    height: 46px;
  }
}

.header__main {
  height: 160px;
}
.header__submenu {
  position: relative;
}
.header__bottom {
  position: relative;
}
@media (min-width: 992px) {
  .header__main {
    height: auto;
  }
}

.h-main {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}
.h-main__burgers {
  margin-right: 28px;
}
.h-main__burgers .menu-button {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 2;
}
.h-main__logo {
  margin-right: auto;
}
.h-main__wrap {
  display: flex;
  align-items: center;
  position: relative;
}
.h-main__search {
  flex: 1;
}
.h-main__extra {
  display: flex;
  margin-left: auto;
}
@media (max-width: 991.9px) {
  .h-main {
    background: #ffffff;
    height: 99px;
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .h-main__logo {
    position: absolute;
    top: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .h-main__search {
    position: absolute;
    top: 90px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .h-main {
    display: flex;
    padding-top: 20px;
    padding-bottom: 17px;
  }
  .h-main__logo {
    margin-right: 35px;
  }
  .h-main__search {
    margin-right: 12px;
  }
  .h-main__burgers .menu-button {
    display: none;
  }
}
@media (min-width: 1440px) {
  .h-main__search {
    margin-right: 58px;
  }
}

.h-submenu__wrap {
  position: relative;
}

.h-bottom {
  position: relative;
}
.h-bottom__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.9px) {
  .h-bottom {
    opacity: 0;
    visibility: hidden;
    transform-origin: 0 0;
    left: 0;
    top: -61px;
    width: 100%;
    position: absolute;
    z-index: 10;
    background: rgb(255, 255, 255);
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 20px 0;
  }
  .h-bottom__callback {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgb(184, 28, 41);
  }
  .h-bottom__wrap {
    flex-direction: column;
    align-items: initial;
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .h-bottom {
    padding: 8px 0;
  }
}
@media (min-width: 1440px) {
  .h-bottom--gray {
    background: rgb(248, 248, 248);
  }
}

.menu-opened .h-bottom {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0);
}

.h-phone {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.h-phone--active .h-phone__list {
  opacity: 1;
  visibility: visible;
  top: 33px;
}
.h-phone--active .h-phone__angle {
  transform: rotate(60deg);
}
.h-phone a {
  text-decoration: none;
}
.h-phone__current {
  font-size: 14px;
  color: #242424;
  margin-right: 5px;
}
.h-phone__current a {
  color: inherit;
}
.h-phone__angle {
  width: 16px;
  height: 16px;
  cursor: pointer;
  color: rgb(184, 28, 41);
  transition: 0.2s;
}
.h-phone__angle .icon {
  width: 100%;
  height: 100%;
}
.h-phone__list {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  margin: 0;
  list-style: none;
  position: absolute;
  background: var(--ui-white, #FFF);
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.12);
  top: 50px;
  width: 210px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.h-phone__item:not(:last-child) {
  margin-bottom: 10px;
}
.h-phone__link {
  font-size: 14px;
  color: #242424;
  transition: 0.2s linear;
}
.h-phone__link:hover {
  color: rgb(184, 28, 41);
}
@media (min-width: 992px) {
  .h-phone__current {
    font-size: 20px;
  }
  .h-phone__link {
    font-size: 20px;
  }
}

.header-user, .header-favorite, .header-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 10px;
  text-decoration: none;
  color: #242424;
}
.header-user:hover, .header-favorite:hover, .header-cart:hover {
  color: #696969;
}
.header-user__icon, .header-favorite__icon, .header-cart__icon {
  width: 16px;
  height: 16px;
}
.header-user__icon .icon, .header-favorite__icon .icon, .header-cart__icon .icon {
  width: 100%;
  height: 100%;
}
.header-user__main, .header-favorite__main, .header-cart__main {
  position: relative;
  height: 26px;
}
.header-user__badge, .header-favorite__badge, .header-cart__badge {
  width: 16px;
  height: 16px;
  border-radius: 12px;
  color: rgb(255, 255, 255);
  background: #B81C29;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  display: block;
  position: absolute;
  top: -2px;
  right: -6px;
  text-align: center;
}
.header-user__text, .header-favorite__text, .header-cart__text {
  font-size: 14px;
  display: none;
}
@media (min-width: 992px) {
  .header-user, .header-favorite, .header-cart {
    margin-left: 12px;
  }
  .header-user__icon, .header-favorite__icon, .header-cart__icon {
    width: 26px;
    height: 26px;
  }
  .header-user__text, .header-favorite__text, .header-cart__text {
    display: block;
    margin-top: 5px;
  }
}
@media (min-width: 1440px) {
  .header-user, .header-favorite, .header-cart {
    margin-left: 43px;
  }
}

.header-favorite.active .header-favorite__icon .icon, .header-favorite:active .header-favorite__icon .icon {
  fill: rgb(184, 28, 41);
  stroke-width: 1;
}
.header-favorite:hover .header-favorite__icon .icon {
  stroke: #696969;
}
.header-favorite__icon .icon {
  fill: transparent;
  stroke-width: 1.5px;
  stroke: #242424;
}

.header-cart:hover .header-cart__icon .icon {
  fill: #696969;
}
.header-cart.active .header-cart__icon, .header-cart:active .header-cart__icon {
  color: rgb(184, 28, 41);
}
.header-cart__icon {
  color: transparent;
}

.search {
  border: 2px solid #E1E1E1;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.12);
}
.search__filter {
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  background: rgb(239, 239, 239);
}
.search__filter:hover {
  cursor: pointer;
  color: rgb(184, 28, 41);
}
.search__filter-text {
  margin-right: 5px;
}
.search__filter-icon {
  display: inline-flex;
  width: 10px;
  height: 10px;
}
.search__filter-icon .icon {
  width: 100%;
  height: 100%;
}
.search__form {
  display: flex;
}
.search__field {
  display: flex;
  flex: 1;
}
.search__button {
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  margin-right: 10px;
  cursor: pointer;
}
.search__input {
  width: 100%;
  height: 46px;
  background: transparent;
  border: none;
  padding: 0 10px;
}
.search__input:focus {
  outline: none;
}
.search__icon {
  width: 26px;
  height: 26px;
}

.burger-button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 37px;
  height: 37px;
  border-radius: 4px;
  background: rgb(184, 28, 41);
}
.burger-button--black {
  background: #242424;
}
.burger-button__item {
  transition: all 0.3s ease 0s;
  height: 2px;
  width: 23px;
  margin-bottom: 5px;
  background: rgb(255, 255, 255);
}
.burger-button__item:last-child {
  margin-bottom: 0;
}
.burger-button.active .burger-button__item:nth-child(1) {
  transform: translateY(8px) translateZ(0) rotate(-45deg);
}
.burger-button.active .burger-button__item:nth-child(2) {
  transform: translateY(1px) rotate(45deg);
}
.burger-button.active .burger-button__item:nth-child(3) {
  transform: translateY(-6px) rotate(45deg);
}
.burger-button:hover .burger-button__item {
  background: #EEE5E9;
}
@media (min-width: 1200px) {
  .burger-button {
    width: 43px;
    height: 43px;
  }
}

.header-submenu {
  display: flex;
  z-index: 2;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  background: #FFF;
  box-shadow: 0px 30px 30px 10px rgba(0, 0, 0, 0.2);
}
.header-submenu--active {
  opacity: 1;
  visibility: visible;
}
.header-submenu__icon {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  display: inline-flex;
}
.header-submenu__icon .icon {
  width: 100%;
  height: 100%;
}
.header-submenu__sidebar {
  background: #E1E1E1;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.12);
  width: 335px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 40px;
}
.header-submenu__content {
  flex: 1;
  padding: 30px;
}
.header-submenu__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-submenu__item {
  display: flex;
}
.header-submenu__item:not(:last-child) {
  margin-bottom: 17px;
}
.header-submenu__link {
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
  color: #242424;
}

.submenu {
  margin-bottom: 40px;
}
.submenu__wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -10px;
}
.submenu__column {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  padding: 0 10px;
  margin-bottom: 30px;
}
.submenu__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.submenu__item:not(:last-child) {
  margin-bottom: 10px;
}
.submenu__item--sub:not(:last-child) {
  margin-bottom: 20px;
}
.submenu__item--sub .submenu__link {
  font-weight: 400;
  font-size: 16px;
}
.submenu__link {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  color: #242424;
  text-decoration: none;
}

.menu__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.menu__link {
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  line-height: normal;
  color: #696969;
  text-decoration: none;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.menu__link:hover {
  color: #B81C29;
}
@media (max-width: 991.9px) {
  .menu__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .menu__link {
    font-size: 18px;
  }
  .menu__item {
    margin-right: 24px;
  }
  .menu__list {
    flex-direction: row;
  }
}
@media (min-width: 1440px) {
  .menu__item {
    margin-right: 45px;
  }
  .menu__link {
    font-size: 20px;
  }
}

.footer__main {
  background: #242424;
  padding: 27px 0;
}
.footer__bottom {
  background: rgb(26, 26, 29);
  padding: 16px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 20px;
}
@media (min-width: 992px) {
  .footer__main {
    background: #242424;
    padding: 27px 0;
  }
  .footer__bottom {
    background: rgb(26, 26, 29);
    padding: 16px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 20px;
  }
}

.footer-main__menu {
  display: none;
}
.footer-main__wrap {
  display: flex;
  flex-direction: column;
}
.footer-main__logo {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 991.9px) {
  .footer-main__callback {
    margin-top: 20px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .footer-main__wrap {
    display: flex;
  }
  .footer-main__wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0 -10px;
  }
  .footer-main__menu {
    display: flex;
    padding-top: 22px;
    border-top: 1px solid rgb(184, 28, 41);
  }
  .footer-main__column {
    flex: 1;
    padding: 0 10px;
  }
  .footer-main__column:nth-child(1) {
    flex: 1;
    padding: 0 10px;
    width: 20%;
    flex: 0 0 20%;
  }
  .footer-main__column:nth-child(2) {
    width: 20%;
    flex: 0 0 20%;
  }
  .footer-main__column:nth-child(3) {
    width: 60%;
    flex: 0 0 60%;
  }
  .footer-main__extra {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
}

.footer-bottom__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.9px) {
  .footer-bottom {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .footer-bottom__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-logo {
  display: inline-flex;
  transition: 0.2s;
}
.footer-logo__image {
  height: 27px;
}
@media (min-width: 992px) {
  .footer-logo__image {
    height: 51px;
  }
}

.footer-links__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-links__item {
  text-align: center;
}
.footer-links__item:not(:last-child) {
  margin-bottom: 5px;
}
.footer-links__link {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.2s linear;
}
.footer-links__link:focus {
  color: rgb(184, 28, 41);
}
.footer-links__link:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .footer-links__item {
    text-align: left;
  }
  .footer-links__link {
    font-size: 16px;
  }
}

.footer-menu {
  flex: 1;
}
.footer-menu__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-menu__item:not(:last-child) {
  margin-right: 15px;
}
.footer-menu__link {
  font-size: 16px;
  line-height: normal;
  color: rgb(255, 255, 255);
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s linear;
}
.footer-menu__link:hover {
  color: rgba(255, 255, 255, 0.5);
}
.footer-menu__link:focus {
  color: rgb(184, 28, 41);
}
.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}
.footer-contacts__item {
  display: flex;
  justify-content: center;
}
.footer-contacts__item:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 991.9px) {
  .footer-contacts {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(184, 28, 41);
  }
}
@media (min-width: 992px) {
  .footer-contacts {
    flex-direction: column;
  }
  .footer-contacts__item {
    display: flex;
    justify-content: flex-start;
  }
  .footer-contacts__item:not(:last-child) {
    margin-bottom: 10px;
  }
}

.footer-contact {
  display: flex;
  color: rgb(255, 255, 255);
  opacity: 0.8;
}
.footer-contact__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  margin-right: 10px;
}
.footer-contact__main {
  font-size: 16px;
}
.footer-contact__main a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s linear;
}
.footer-contact__main a:hover {
  color: rgb(184, 28, 41);
}

.form__footer {
  margin-top: 40px;
}
.form__footer .button {
  margin-right: 20px;
}

input::placeholder, textarea::placeholder {
  transition: 0.2s;
  opacity: 1;
}

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

textarea {
  resize: vertical;
}
textarea.form-input {
  padding-top: 10px;
  height: auto;
  min-height: 40px;
}

.tabbar {
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  padding: 4px;
  height: 48px;
  border-radius: 24px;
}
.tabbar__item {
  height: 40px;
  width: 166px;
  border-radius: 24px;
  color: rgb(109, 111, 124);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.tabbar__item:nth-child(1).active {
  color: rgb(255, 255, 255);
}
.tabbar__item:nth-child(1).active ~ .tabbar__slider {
  transform: translateX(0);
}
.tabbar__item:nth-child(2).active {
  color: rgb(255, 255, 255);
}
.tabbar__item:nth-child(2).active ~ .tabbar__slider {
  transform: translateX(100%);
}
.tabbar__items {
  position: relative;
}
.tabbar__slider {
  height: 40px;
  width: 166px;
  border-radius: 24px;
  background: rgb(247, 127, 16);
  position: absolute;
  transition: 0.2s all;
  top: 0;
  left: 0;
}

.file-upload {
  position: relative;
  height: 40px;
  border: 1px solid #E1E2E1;
  border-radius: 5px;
  cursor: pointer;
}
.file-upload__icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
}
.file-upload__icon svg {
  height: 100%;
  width: 100%;
}
.file-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.file-upload__name {
  position: absolute;
  left: 0;
  top: 0;
  right: 40px;
  line-height: 40px;
  bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.has-error .form-input, .has-error input[type=text] {
  border-color: #ff6262;
}

.required-field {
  display: inline-block;
  color: red;
}

.form-group {
  position: relative;
}
.form-group:not(:last-child) {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row .col, .form-row [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgb(109, 111, 124);
}
.form-label span {
  color: rgb(184, 28, 41);
}

.form-input {
  background: rgb(255, 255, 255);
  border: 1px solid rgba(196, 196, 196, 0.5);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  transition: 0.2s;
  width: 100%;
  padding: 0 10px;
  height: 36px;
  transition: box-shadow 0.4s, border-color 0.4s;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.24) inset;
}
.form-input::placeholder {
  color: rgb(109, 111, 124);
}
.form-input:focus {
  outline: none;
  border-color: rgb(184, 28, 41);
}
.form-input:disabled {
  background: rgb(245, 245, 245);
  border-color: rgba(26, 26, 29, 0.1);
  color: rgb(109, 111, 124);
  opacity: 0.5;
}
.form-input.error {
  border-color: #ff6262;
}

.form-input:focus + .focus-input {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.field__button {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.field__button:hover {
  background-color: #AC8484;
  color: #ffffff;
}
.field__button svg {
  width: 5px;
  height: 11px;
}
.field__icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 13px;
  right: 10px;
}
.field__icon .icon {
  width: 100%;
  height: 100%;
}

.password-field__show, .password-field__hide {
  cursor: pointer;
}
.password-field__show:hover, .password-field__hide:hover {
  color: #AC8484;
}
.password-field__show {
  display: none;
}
.password-field__hide {
  display: block;
}
.password-field--active .password-field__hide {
  display: none;
}
.password-field--active .password-field__show {
  display: block;
}

.date-field {
  position: relative;
}
.date-field__icon {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 13px;
  color: rgb(26, 26, 29);
}
.date-field__icon .icon {
  width: 100%;
  height: 100%;
}

.radio {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}
.radio--block {
  display: flex;
}
.radio__input {
  position: absolute;
  opacity: 0;
  top: 50%;
  height: 0;
  margin: 0;
}
.radio__input:checked + .radio__text {
  color: rgb(26, 26, 29);
}
.radio__input:checked + .radio__checkmark {
  border-color: rgb(184, 28, 41);
}
.radio__input:checked + .radio__checkmark::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgb(184, 28, 41);
  border-radius: 50%;
}
.radio__checkmark {
  position: relative;
  border: 2px solid #F5F5F6;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
  transition: all 250ms cubic-bezier(0.4, 0, 0.23, 1);
}
.radio__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-left: 10px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.checkbox--block {
  display: flex;
}
.checkbox--disabled {
  cursor: no-drop;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
  top: 50%;
  height: 0;
  margin: 0;
}
.checkbox__input:disabled + .checkbox__checkmark {
  background: #f3f3f3;
  border-color: #e1e1e1;
  cursor: no-drop;
}
.checkbox__input:disabled ~ .checkbox__text {
  cursor: no-drop;
}
.checkbox__input:checked + .checkbox__checkmark {
  background: rgb(184, 28, 41);
}
.checkbox__input:checked + .checkbox__checkmark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='9' viewBox='0 0 13 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.00472 9.00014L0.761719 4.75714L2.17572 3.34314L5.00472 6.17214L10.6607 0.515137L12.0757 1.92914L5.00472 9.00014Z' fill='white'/%3E%3C/svg%3E%0A");
}
.checkbox__input:focus + .checkbox__checkmark {
  border-color: rgb(184, 28, 41);
}
.checkbox__checkmark {
  position: relative;
  border: 2px solid rgb(184, 28, 41);
  border-radius: 3px;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
}
.checkbox__checkmark + .checkbox__text {
  margin-left: 10px;
}

@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #363789;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.3em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.3em;
    height: 0.8em;
    border-color: #363789;
    transform: translate3d(0, -0.8em, 0) rotate(45deg);
  }
}
.text-button {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgb(109, 111, 124);
  font-size: 12px;
}
.text-button:hover {
  color: rgb(26, 26, 29);
}
.text-button__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.text-button__icon .icon {
  width: 100%;
  height: 100%;
}
.text-button__text + .text-button__icon {
  margin-left: 5px;
}
.text-button__icon + .text-button__text {
  margin-left: 5px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  cursor: pointer;
  outline: none;
  padding: 9px 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.button__text + .button__icon {
  margin-left: 8px;
}
.button__icon + .button__text {
  margin-left: 8px;
}
.button__icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}
.button__icon .icon {
  width: 100%;
  height: 100%;
}
.button--block {
  display: flex;
  width: 100%;
}
.button--small {
  height: 36px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.button--red:not(:disabled):not(.button--disabled) {
  background: rgb(184, 28, 41);
  border: 1px solid rgb(184, 28, 41);
  color: rgb(255, 255, 255);
}
.button--red:not(:disabled):not(.button--disabled):focus:not(:hover) {
  background: rgba(184, 28, 41, 0.75);
  border: 1px solid rgba(184, 28, 41, 0.75);
}
.button--red:not(:disabled):not(.button--disabled):hover {
  color: rgb(255, 255, 255);
  background: rgb(184, 28, 41);
  border: 1px solid rgb(184, 28, 41);
}
.button--gray:not(:disabled):not(.button--disabled) {
  background: #C4C4C4;
  border: 1px solid #C4C4C4;
  color: rgb(255, 255, 255);
}
.button--gray:not(:disabled):not(.button--disabled):focus {
  border: 1px solid rgb(184, 28, 41);
}
.button--gray:not(:disabled):not(.button--disabled):hover {
  background: rgb(184, 28, 41);
  border: 1px solid rgb(184, 28, 41);
}
.button--primary:not(:disabled):not(.button--disabled) {
  background: transparent;
  border: 1px solid rgb(184, 28, 41);
  color: rgb(184, 28, 41);
}
.button--primary:not(:disabled):not(.button--disabled):focus:not(:hover) {
  border: 1px solid #242424;
  background: transparent;
}
.button--primary:not(:disabled):not(.button--disabled):hover {
  color: #ffffff;
  background: rgb(184, 28, 41);
}
.button--secondary:not(:disabled):not(.button--disabled) {
  background: transparent;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}
.button--secondary:not(:disabled):not(.button--disabled):hover {
  color: rgb(26, 26, 29);
  background: rgb(255, 255, 255);
}
.button--secondary:not(:disabled):not(.button--disabled):active {
  background: rgba(255, 255, 255, 0.75);
}
.button--text {
  padding: 5px 0;
  color: rgb(47, 92, 156);
  border: none;
  height: auto;
  background: transparent;
}
.button--text:hover {
  color: rgb(184, 28, 41);
}
.button--icon {
  width: 34px;
  padding: 5px;
}
.button:disabled, .button--disabled {
  background: #C4C4C4;
  border-color: #C4C4C4;
  color: rgb(255, 255, 255);
  border: none;
}
.button:disabled:hover, .button--disabled:hover {
  background: #C4C4C4;
  border-color: #C4C4C4;
  color: rgb(255, 255, 255);
}
@media (min-width: 992px) {
  .button {
    font-size: 20px;
  }
}

.icon-button {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.icon-button:hover {
  color: rgb(184, 28, 41);
}
.icon-button .icon {
  width: 24px;
  height: 24px;
}

.focus-input {
  display: block;
  position: absolute;
  border-radius: 10px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0 0;
  color: rgb(184, 28, 41);
}

.switch {
  position: relative;
  display: inline-block;
}
.switch__slider {
  width: 40px;
  height: 20px;
  margin: 0;
  vertical-align: top;
  background: #ffffff;
  border: 1px solid rgb(184, 28, 41);
  border-radius: 20px;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}
.switch__input {
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  position: absolute;
}
.switch__slider::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background-color: rgb(184, 28, 41);
  border-radius: 50%;
  transform: translateX(0);
  transition: all 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}
.switch__input:checked + .switch__slider {
  background-color: rgb(184, 28, 41);
}
.switch__input:checked + .switch__slider::before {
  transform: translateX(calc(100% + 6px));
  background-color: #fff;
}

.dropdown {
  position: relative;
}

.dropdown-toggle + .dropdown-menu {
  top: 50px;
  width: auto;
}
.dropdown-toggle.active + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 30px;
}
.dropdown-toggle.active + .dropdown-menu._right {
  right: 0;
  top: -20px;
}

.dropdown-button {
  background: rgb(245, 245, 245);
  border: 1px solid rgba(26, 26, 29, 0.1);
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  transition: 0.2s;
  width: 100%;
  padding: 0 10px;
  height: 44px;
  transition: box-shadow 0.4s, border-color 0.4s;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}
.dropdown-button__text {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  flex: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgb(26, 26, 29);
}
.dropdown-button__text svg {
  width: 16px;
  height: 16px;
  margin-left: 10px;
}
.dropdown-button__icon {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  transition: 0.2s all;
}
.dropdown-button__icon .icon {
  width: 100%;
  height: 100%;
}
.dropdown-button + .dropdown-menu {
  width: 100%;
}
.dropdown-button.active .dropdown-button__text {
  color: rgb(184, 28, 41);
}
.dropdown-button.active .dropdown-button__icon {
  color: rgb(184, 28, 41);
  transform: rotate(180deg);
}
.dropdown-button.active + .dropdown-menu {
  opacity: 1;
  top: 50px;
  visibility: visible;
}

.dropdown-menu {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 2;
  border-radius: 20px;
  padding: 10px 0;
  transition: 0.2s;
  border: 1px solid rgb(245, 245, 245);
  background: rgb(255, 255, 255);
  opacity: 0;
  visibility: hidden;
}
.dropdown-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-menu__link {
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: rgb(26, 26, 29);
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 9.5px 12px;
  min-height: 40px;
}
.dropdown-menu__link:hover {
  background: rgb(240, 247, 249);
}
.dropdown-menu._right {
  width: auto;
  top: -20px;
  right: -20px;
  transform: translate(100%, 0);
}
.dropdown-menu__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: rgb(184, 28, 41);
}
.dropdown-menu__icon .icon {
  width: 100%;
  height: 100%;
}
.dropdown-menu--second .dropdown-menu__link {
  padding: 10px 20px;
  min-height: auto;
}
.dropdown-menu--second .dropdown-menu__link:hover {
  background: rgb(245, 245, 245);
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0 0 70px 40px;
    opacity: 0;
  }
}
@keyframes anim-shadow {
  to {
    box-shadow: 0 0 70px 25px;
    opacity: 0;
  }
}
.prod-cards__more {
  display: flex;
  justify-content: center;
}
.prod-cards__item {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .prod-cards__wrap {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -10px;
  }
  .prod-cards__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
    margin-bottom: 20px;
    display: flex;
  }
}
@media (min-width: 768px) {
  .prod-cards__item {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
  }
}
@media (min-width: 992px) {
  .prod-cards__more {
    margin-top: 40px;
  }
  .prod-cards__item {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 1440px) {
  .prod-cards__item {
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
  }
}

.prod-card {
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.12);
  padding: 16px 14px;
  display: flex;
  align-items: flex-start;
}
.prod-card__visual {
  width: 67px;
  margin-right: 13px;
}
.prod-card__main {
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
}
.prod-card__title {
  font-size: 12px;
  line-height: normal;
  font-weight: 300;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.prod-card__title a {
  text-decoration: none;
  color: inherit;
}
.prod-card__price {
  margin-bottom: 5px;
  text-align: right;
}
.prod-card__price-current {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
}
@media (min-width: 576px) {
  .prod-card {
    padding: 10px;
    flex-direction: column;
  }
  .prod-card--horizontal {
    flex-direction: row;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.12);
    padding: 36px 14px;
  }
  .prod-card--horizontal .prod-card__visual {
    width: 108px;
    margin-right: 13px;
  }
  .prod-card__visual {
    width: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .prod-card__price {
    text-align: left;
  }
  .prod-card__price-current {
    font-size: 16px;
    font-weight: 400;
  }
}

.catalog-sections__item {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .catalog-sections__wrap {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -10px;
  }
  .catalog-sections__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
    margin-bottom: 20px;
    display: flex;
  }
}
@media (min-width: 768px) {
  .catalog-sections__item {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
  }
}
@media (min-width: 992px) {
  .catalog-sections__item {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 1440px) {
  .catalog-sections__item {
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
  }
}

.catalog-section {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(263deg, rgb(255, 255, 255), rgba(251, 251, 251, 0.87) 35.56%);
}
.catalog-section:hover .catalog-section__title {
  color: rgb(184, 28, 41);
}
.catalog-section__visual {
  width: 100px;
}
.catalog-section__title {
  color: #242424;
  text-shadow: 0px 16px 24px rgba(50, 50, 71, 0.08), 0px 12px 12px rgba(50, 50, 71, 0.08);
  font-family: "Gilroy", arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  padding: 10px;
  transition: 0.2s linear;
}
@media (min-width: 576px) {
  .catalog-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog-section__visual {
    width: 100%;
    margin-bottom: 7px;
  }
  .catalog-section__title {
    padding: 0;
  }
}

.search-catalog {
  display: flex;
  position: relative;
}
.search-catalog__input {
  background: #ffffff;
  height: 25px;
  border: 2px solid #EFEFEF;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.12);
  width: 100%;
}
.search-catalog__button {
  background: transparent;
  border: none;
  width: 25px;
  height: 25px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}
.search-catalog__button .icon {
  width: 17px;
  height: 16px;
}

.products-carousel__swiper {
  margin: 0 -10px;
}
.products-carousel__slide {
  padding: 20px 10px;
}
.products-carousel__slide .prod-card {
  flex: 1;
}
.products-carousel__slide .prod-card--horizontal {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
}
@media (min-width: 576px) {
  .products-carousel__slide {
    width: 50% !important;
    flex: 0 0 50%;
  }
}
@media (min-width: 992px) {
  .products-carousel__slide {
    width: 25% !important;
    flex: 0 0 25%;
  }
}

.product {
  margin: 40px 0;
}
.product__tabs .tabs__tab, .tabs__tab-product {
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  color: #000000;
  cursor: pointer;
}
.product__tabs .tabs__tab:not(:last-child), .tabs__tab-product:not(:last-child) {
  margin-right: 10px;
}
.product__tabs .tabs__tab:not(:last-child)::before, .tabs__tab-product:not(:last-child)::before {
  content: "|";
  color: rgb(184, 28, 41);
  position: absolute;
  right: -8px;
}
.product__tabs .tabs__tab:hover, .tabs__tab-product:hover {
  color: rgb(184, 28, 41);
}
.product__tabs .tabs__tab:active, .product__tabs .tabs__tab.active, .tabs__tab-product:active, .tabs__tab-product.active {
  color: rgb(184, 28, 41);
}
.product__tags {
  margin-top: 40px;
}
@media (min-width: 576px) {
  .product__tabs .tabs__tab:not(:last-child), .tabs__tab-product:not(:last-child) {
    margin-right: 50px;
  }
  .product__tabs .tabs__tab:not(:last-child)::before, .tabs__tab-product:not(:last-child)::before {
    right: -30px;
  }
  .product__tabs .tabs__content {
    font-size: 14px;
    line-height: 19px;
  }
}
@media (min-width: 992px) {
  .product__tabs .tabs__tab {
    font-size: 18px;
  }
  .product__tabs .tabs__tab:not(:last-child) {
    margin-right: 114px;
  }
  .product__tabs .tabs__tab:not(:last-child)::before {
    right: -60px;
  }
  .product__tabs .tabs__content {
    font-size: 16px;
    line-height: 24px;
  }
}

.product-card__visual {
  margin-bottom: 50px;
}
.product-card__main {
  flex: 1;
}
.product-card__head {
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 17px;
  margin-bottom: 22px;
}
.product-card__title {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", arial;
}
.product-card__articul {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
  margin-top: 10px;
}
.product-card__articul span {
  display: inline-block;
  margin-right: 7px;
}
.product-card__variant, .product-card__params {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .product-card__columns {
    display: flex;
  }
  .product-card__info {
    width: 50%;
    margin-right: 20px;
  }
  .product-card__buy {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .product-card__wrap {
    display: flex;
  }
  .product-card__visual {
    width: 39%;
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .product-card__visual {
    width: 41%;
  }
}

.product-gallery {
  position: relative;
}
.product-gallery__fullscreen {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 22px;
  cursor: pointer;
  z-index: 2;
  color: #c4c4c4;
  transition: 0.2s linear;
}
.product-gallery__fullscreen:hover {
  color: rgb(184, 28, 41);
}
.product-gallery__fullscreen .icon {
  width: 100%;
  height: 100%;
}

.product-thumbs {
  position: relative;
}
.product-thumbs__pagination {
  bottom: -20px !important;
}
.product-thumbs__slide {
  padding: 0 5px;
}

.product-thumb {
  padding: 2px;
  border-radius: 3px;
  border: 2px solid #C4C4C4;
}
@media (min-width: 768px) {
  .product-thumb {
    padding: 8px;
  }
}
@media (min-width: 1200px) {
  .product-thumb {
    padding: 10px;
  }
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  flex: 1;
}

.product-variant__head {
  margin-bottom: 12px;
}
.product-variant__title {
  font-size: 14px;
  font-weight: 400;
  margin-right: 2px;
}
.product-variant__name {
  font-size: 14px;
  font-weight: 500;
}
.product-variant__list {
  display: flex;
  flex-wrap: wrap;
}
.product-variant__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  margin-bottom: 4px;
  position: relative;
  width: 60px;
  height: 73px;
  background-color: #fff;
  border: 2px solid #E1E1E1;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
}
.product-variant__item.active {
  border-color: rgb(184, 28, 41);
}
.product-variant__image {
  width: 38px;
  height: 38px;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.product-params__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-params__item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.product-params__item:not(:last-child) {
  margin-bottom: 12px;
}
.product-params__name {
  font-weight: 400;
  position: relative;
  flex: 1;
}
.product-params__name span {
  display: inline-flex;
  background: #ffffff;
  z-index: 2;
  position: relative;
}
.product-params__name::before {
  content: "";
  display: block;
  border-bottom: 1px dashed #d3d9df;
  position: absolute;
  bottom: 4px;
  width: 100%;
}
.product-params__value {
  font-weight: 500;
}

@media (min-width: 768px) {
  .product-binfo {
    display: flex;
  }
  .product-binfo__top {
    width: 65%;
    margin-right: 10px;
  }
  .product-binfo__bottom {
    width: 35%;
  }
}
@media (min-width: 992px) {
  .product-binfo__top {
    width: 70%;
    margin-right: 20px;
  }
  .product-binfo__bottom {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .product-binfo__top {
    width: 71.8%;
  }
  .product-binfo__bottom {
    width: 28.2%;
  }
}

.vendor__favorite {
  margin-top: 20px;
}

.vendor-info__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.vendor-info__item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.vendor-info__item:not(:last-child) {
  margin-bottom: 12px;
}
.vendor-info__name {
  font-weight: 400;
  position: relative;
  flex: 1;
}
.vendor-info__name span {
  display: inline-flex;
  background: #ffffff;
  z-index: 2;
  position: relative;
}
.vendor-info__name::before {
  content: "";
  display: block;
  border-bottom: 1px dashed #d3d9df;
  position: absolute;
  bottom: 4px;
  width: 100%;
}
.vendor-info__value {
  font-weight: 500;
}

.vendor-favorite {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.vendor-favorite.active .vendor-favorite__icon .icon {
  fill: rgb(184, 28, 41);
}
.vendor-favorite__icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.vendor-favorite__icon .icon {
  width: 100%;
  height: 100%;
  stroke-width: 1.5px;
  fill: transparent;
  stroke: rgb(184, 28, 41);
}

.product-buy {
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}
.product-buy__head {
  background: #F8F8F8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
}
.product-buy__description {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.product-buy__description span {
  color: rgb(184, 28, 41);
  display: inline-block;
  margin-right: 3px;
}
.product-buy__body {
  padding: 10px;
}
.product-buy__button:not(:last-child) {
  margin-bottom: 16px;
}
.product-buy__block {
  padding: 16px 0;
}
.product-buy__block:not(:last-child) {
  border-bottom: 1px solid #EFEFEF;
}
@media (min-width: 768px) {
  .product-buy__head {
    padding: 12px 16px;
  }
  .product-buy__body {
    padding: 10px 20px 20px 20px;
  }
}

.product-sold {
  display: flex;
}
.product-sold__visual {
  width: 25px;
  margin-right: 18px;
}
.product-sold__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.product-sold__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #696969;
}

.product-minimum {
  display: flex;
}
.product-minimum__visual {
  width: 25px;
  margin-right: 18px;
}
.product-minimum__head {
  display: flex;
  align-items: center;
}
.product-minimum__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.product-minimum__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 2px solid #c4c4c4;
  cursor: pointer;
  vertical-align: baseline;
  color: #696969;
  margin-left: 7px;
}
.product-minimum__icon:hover {
  color: rgb(184, 28, 41);
}
.product-minimum__icon .icon {
  width: 8px;
  height: 8px;
}
.product-minimum__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #696969;
}
.product-minimum__available {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  margin-right: 10px;
}
.product-minimum__count {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}
.product-minimum__bottom {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}

.product-sizes__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: rgb(184, 28, 41);
  margin-bottom: 12px;
}
.product-sizes__list {
  display: flex;
  flex-wrap: wrap;
}
.product-sizes__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 29px;
  border: 2px solid #C4C4C4;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-right: 4px;
  margin-bottom: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.product-sizes__item:hover {
  background: rgba(184, 28, 41, 0.15);
}
.product-sizes__item.active, .product-sizes__item:focus, .product-sizes__item:active {
  background: rgb(184, 28, 41);
  color: rgb(255, 255, 255);
  border-color: rgb(184, 28, 41);
}

.product-price {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  color: rgb(184, 28, 41);
}

.product-available {
  border: 1px solid #C4C4C4;
  background: rgb(255, 255, 255);
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.product-available__icon {
  width: 14px;
  height: 14px;
  margin-right: 7px;
  color: #2CB670;
}
.product-available__icon .icon {
  width: 100%;
  height: 100%;
}

.product-thumbs__slide {
  width: 14.285%;
}
.product-thumbs__slide.swiper-slide-thumb-active .product-thumb {
  border-color: rgb(184, 28, 41);
}

.product-tags {
  background: #EFEFEF;
  padding: 8px 9px;
  display: flex;
  align-items: center;
}
.product-tags__head {
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
}
.product-tags__icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.product-tags__icon .icon {
  width: 100%;
  height: 100%;
}
.product-tags__label {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
}
.product-tags__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-tags__item {
  margin-right: 5px;
}
.product-tags__link {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  color: rgb(184, 28, 41);
  text-decoration: none;
}
.product-tags__link.active {
  font-size: 14px;
  font-weight: 500;
}
.product-tags__link:hover {
  opacity: 0.8;
}
@media (min-width: 576px) {
  .product-tags {
    padding: 16px 20px;
  }
  .product-tags__label {
    font-size: 16px;
    font-weight: 500;
  }
  .product-tags__link {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
  }
  .product-tags__link.active {
    font-size: 16px;
  }
}

.vproducts-grid__item {
  margin-bottom: 20px;
}
.vproducts-grid__wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -10px;
}
.vendor-products-container {
  padding: 50px 0 0 0;
}
.vproducts-grid__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
  display: flex;
}
@media (min-width: 576px) {
  .vproducts-grid__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .vproducts-grid__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    display: flex;
  }
}
@media (min-width: 992px) {
  .vproducts-grid__item {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 1440px) {
  .vproducts-grid__item {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.vproducts-list {
  display: flex;
}
.vproducts-list .checkbox__checkmark {
  border-color: #C4C4C4;
}
.vproducts-list .checkbox__input:checked + .checkbox__checkmark {
  background: #C4C4C4;
  border-color: #C4C4C4;
}
.vproducts-list__left {
  width: 81px;
  margin-right: 20px;
  flex: 0 0 auto;
}
.vproducts-list__item:not(:last-child) {
  margin-bottom: 20px;
}
.vproducts-list__main {
  flex: 1;
}
.vproducts-list__table table {
  width: 100%;
  border-collapse: collapse;
  vertical-align: top;
  border-color: #dee2e6;
}
.vproducts-list__table table tbody {
  background: #F8F8F8;
  box-shadow: 0px -1px 0px 0px #DFE2E9 inset;
}
.vproducts-list__table table td {
  border-bottom: 1px solid #c4c4c4;
  padding: 12px 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}
.vproducts-list__table table input[type=text] {
  width: 100%;
  border: none;
  height: 34px;
  background: transparent;
}
.vproducts-list__table table .nice-select {
  padding-left: 0;
  background: transparent;
  border: none;
  height: 34px;
}
.vproducts-list__table table .nice-select::after {
  margin-top: -2px;
}
.vproducts-list__bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767.9px) {
  .vproducts-list .pager, .vproducts-list .page-count {
    display: none;
  }
}
@media (max-width: 575.9px) {
  .vproducts-list .checkbox__checkmark {
    width: 14px;
    height: 14px;
  }
  .vproducts-list__table table input[type=text] {
    font-size: 12px;
  }
  .vproducts-list__table table .nice-select {
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    padding-right: 21px;
  }
  .vproducts-list__table table td {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    padding: 2px;
  }
  .vproducts-list .pager, .vproducts-list .page-count {
    display: none;
  }
  .vproducts-list .prod-mini {
    padding: 5px;
    position: relative;
  }
  .vproducts-list .prod-mini__actions {
    position: absolute;
    top: 6px;
    right: 5px;
  }
  .vproducts-list .prod-mini__image {
    margin-bottom: 7px;
  }
  .vproducts-list .prod-mini__eye {
    width: 15px;
    height: 10px;
  }
  .vproducts-list .prod-mini__favorite {
    width: 10px;
    height: 10px;
    margin-left: 5px;
  }
  .vproducts-list .prod-mini__price {
    font-size: 14px;
    font-weight: 500;
  }
}
@media (min-width: 576px) {
  .vproducts-list__left {
    width: 140px;
  }
}
@media (min-width: 992px) {
  .vproducts-list__left {
    width: 190px;
  }
}

.prod-mini {
  background: rgb(255, 255, 255);
  padding: 8px 5px;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.12);
}
.prod-mini__image {
  margin-bottom: 10px;
}
.prod-mini__image img {
  width: 100%;
}
.prod-mini__main {
  display: flex;
  justify-content: space-between;
}
.prod-mini__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.prod-mini__eye {
  width: 18px;
  height: 14px;
}
.prod-mini__eye .icon {
  width: 100%;
  height: 100%;
}
.prod-mini__favorite {
  width: 14px;
  height: 14px;
  margin-left: 7px;
}
.prod-mini__favorite.active .icon {
  fill: rgb(184, 28, 41);
  stroke-width: 0.5px;
}
.prod-mini__favorite .icon {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke-width: 1.5px;
  stroke: #242424;
}
.prod-mini__actions {
  display: flex;
}
@media (min-width: 576px) {
  .prod-mini {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding: 8px 12px;
  }
  .prod-mini__eye {
    width: 25px;
    height: 18px;
  }
  .prod-mini__favorite {
    width: 18px;
    height: 18px;
    margin-left: 12px;
  }
}

.category-menu__submenu {
  position: absolute;
  width: calc(100% - 209px);
  background: #ffffff;
  padding: 30px;
  top: 0;
  z-index: 4;
  border: 1px solid rgb(184, 28, 41);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.12);
  left: 209px;
  display: none;
}
.category-menu__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.category-menu__item:not(:last-child) {
  margin-bottom: 15px;
}
.category-menu__link {
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  color: #242424;
}
.category-menu__link:hover {
  color: rgb(184, 28, 41);
}
.category-menu__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
@media (min-width: 992px) {
  .category-menu__item._sub {
    margin-right: -20px;
  }
  .category-menu__item._sub:hover .category-menu__link {
    position: relative;
    padding-right: 20px;
    display: flex;
    display: flex;
    align-items: center;
  }
  .category-menu__item._sub:hover .category-menu__link::after {
    content: "";
    width: 100%;
    display: block;
    height: 1px;
    background: rgb(184, 28, 41);
    flex: 1 0;
    right: -20px;
    position: relative;
  }
  .category-menu__item._sub:hover .category-menu__submenu {
    display: block;
  }
}

.catalog {
  margin-top: 20px;
}
.catalog__head {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.catalog__title {
  font-family: "Gilroy", arial;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  color: rgb(184, 28, 41);
  margin-bottom: 20px;
}
.catalog__body {
  flex: 1;
}
.catalog__wrap {
  display: flex;
  position: relative;
}
.catalog__bottom {
  display: flex;
  justify-content: space-between;
}
.catalog__pagination {
  flex: 1;
}
.catalog__more {
  flex: 1;
  text-align: center;
}
.catalog__count {
  font-size: 14px;
  line-height: 19px;
  font-style: normal;
  font-weight: 400;
  flex: 1;
  text-align: right;
}
.catalog__count span {
  font-weight: 500;
  color: rgb(184, 28, 41);
  display: inline-block;
  margin-right: 10px;
}
.catalog__sidebar {
  display: none;
}
.catalog__filter {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
@media (max-width: 767.9px) {
  .catalog__pagination {
    display: block;
  }
  .catalog__more {
    text-align: left;
  }
  .catalog__filter .sale-filter {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .catalog {
    margin-top: 40px;
  }
  .catalog__title {
    margin-bottom: 0;
  }
  .catalog__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .catalog__filter {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .catalog__filter .sale-filter {
    margin-left: 100px;
  }
  .catalog__sidebar {
    display: block;
    margin-right: 20px;
  }
}
@media (min-width: 992px) {
  .catalog__sidebar {
    width: 215px;
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .catalog__sidebar {
    width: 189px;
  }
}

.catalog-sidebar__block:not(:last-child) {
  margin-bottom: 40px;
}

.catalog-cards__item {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .catalog-cards__wrap {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -10px;
  }
  .catalog-cards__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
    margin-bottom: 20px;
    display: flex;
  }
}
@media (max-width: 576px) {
.catalog-cards__wrap {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -10px;
}
  .catalog-cards__item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
    display: flex;
  }
  .prod-card__visual {
    width: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
}
@media (min-width: 768px) {
  .catalog-cards__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    display: flex;
  }
}
@media (min-width: 992px) {
  .catalog-cards__item {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 1200px) {
  .catalog-cards__item {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
/*# sourceMappingURL=maps/style.css.map */

.micromodal-slide.is-open {
    display: block;
    z-index: 111;
    position: relative;
}
.product__tabs {
    margin-top: 50px;
}
.product-gallery__carousel .product-image {
  width: 508px;
  max-width: 100%;
}
.product-thumbs__slide {
  cursor: pointer;
}
.profile-page table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.profile-page table td {
  padding: 5px 10px;
}
.profile-page table td:last-child {
  text-align: center;
}
.profile-tabs {
    white-space: nowrap;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.profile-tabs .ajax_link {
  text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    color: rgb(255, 255, 255);
    background: #c4c4c4;
    width: calc(33% - 10px);
    margin: 0 5px;
    cursor: pointer;
}
.profile-tabs .ajax_link.active {
    background: rgb(184, 28, 41);
}