@charset "UTF-8";
:root {
  --font-family: "Open Sans", sans-serif;
  --content-width: 1200px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */
@font-face {
  font-family: "Muller";
  src: url("../fonts/../fonts/MullerRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  font-family: Tahoma, Geneva, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 13px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

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

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

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

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

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

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.breadcrumbs {
  margin-bottom: 20px;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumbs__item + .breadcrumbs__item::before {
  color: #aeaeae;
  content: "/ ";
}
.breadcrumbs__link {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
  color: #5e5e5e;
}
.breadcrumbs__link:hover {
  text-decoration: underline;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #dedede;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.pagination__link {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
  color: #959595;
  text-transform: uppercase;
}
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.pagination__item-link {
  font-family: Tahoma, Geneva, sans-serif;
  color: #959595;
  font-size: 13px;
  padding: 3px 10px;
  min-width: 12px;
  text-align: center;
  border-radius: 3px;
  display: block;
}
.pagination__item-link--active {
  color: #fff;
  background: #3b5999;
}
.btn-style-1 {
  padding: 7px 17px;
  background-color: #22b14c;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  text-wrap: nowrap;
}

.btn-style-2 {
  padding: 7px 17px;
  background-color: #bb3737;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  text-wrap: nowrap;
}

.header {
  margin-bottom: 30px;
}

.header__top {
  background-color: #22b14c;
  padding: 10px 0;
}

.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  position: relative;
  gap: 20px;
}
@media (max-width: 1024px) {
  .header__navigation {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .header__navigation {
    padding: 20px 0 0 0;
  }
}

.header__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .header__top-row {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.header__top-link {
  color: black;
  font-size: 15px;
}
.header__top-link span {
  color: white;
}

.header__logo {
  max-width: 357px;
}

.header__logo-link {
  font-size: 48px;
  font-weight: 700;
  color: black;
}
@media (max-width: 768px) {
  .header__logo-link {
    font-size: 36px;
  }
}
.header__logo-link .red {
  color: #ed1c24;
}
.header__logo-link .yellow {
  color: #ffc90e;
}

.header__catalog-btn {
  text-transform: uppercase;
  background-color: #22b14c;
  border-radius: 30px;
  padding: 15px 30px;
  color: white;
  font-weight: 700;
  line-height: normal;
}

.header__search-label {
  border: 2px solid #22b14c;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 30%;
}
.header__search-label form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.header__search-label .header__search-input {
  outline: none;
  width: 100%;
}
@media (max-width: 1024px) {
  .header__search-label {
    width: 100%;
  }
}

.header__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.header__cart-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.header__cart-value {
  color: #22b14c;
  font-weight: 700;
}

.burger {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
}

@media (max-width: 576px) {
  .header__catalog-menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.header__catalog-menu:hover .header__catalog-wrapper {
  display: -ms-grid;
  display: grid;
}
.header__catalog-btn {
  cursor: pointer;
  text-align: center;
}
.header__catalog-wrapper {
  padding-top: 25px;
  position: absolute;
  left: 0;
  display: none;
  right: 0;
}
@media (max-width: 768px) {
  .header__catalog-wrapper {
    padding-top: 10px;
  }
}
@media (max-width: 576px) {
  .header__catalog-wrapper {
    position: static;
    left: unset;
    right: unset;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
  }
}
.header__catalog {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  row-gap: 20px;
  padding: 20px;
  z-index: 2;
  background-color: white;
  border: 1px solid #e8ebf6;
}
@media (max-width: 1024px) {
  .header__catalog {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .header__catalog {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .header__catalog {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
}
.header__catalog-link {
  color: #333;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
  display: block;
}
@media (max-width: 576px) {
  .header__catalog-link {
    padding: 5px 15px 5px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    background-color: #ededed;
  }
}
.header__catalog-link-arrow {
  display: none;
}
@media (max-width: 576px) {
  .header__catalog-link-arrow {
    display: block;
    padding: 3px;
  }
}
.header__catalog-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 576px) {
  .header__catalog-item-list {
    display: none;
  }
}
.header__catalog-item-list--active {
  display: block;
}
.header__catalog-item-list-link {
  color: #333;
}
@media (max-width: 576px) {
  .header__catalog-item-list-link {
    padding: 13px 15px 13px 50px;
    display: block;
    width: 100%;
    background-color: #ededed;
    border-bottom: 1px solid #d8d8d8;
  }
}

.hero {
  margin-bottom: 50px;
}
.products__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .products__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .products__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.products__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.products__img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 18px 0;
  border: 1px solid #ebebeb;
  background: #fff;
  text-align: center;
  min-height: 50px;
}
.products__img {
  height: 150px;
  width: 150px;
}
.products__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.products__name {
  font-size: 15px;
  color: #252424;
}
.products__price {
  font-weight: 700;
  font-size: 15px;
  color: #bb3737;
}

.hero-info__title {
  margin: 0;
  margin-bottom: 10px;
  font-size: 36px;
}
.hero-info__subtitle {
  font-size: 16px;
}
.hero-info__subtitle a {
  color: #2d4474;
}



.product__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .product__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product__img-wrapper {
  padding: 10px;
  border: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 282px;
  width: 282px;
}
@media (max-width: 1024px) {
  .product__img-wrapper {
    width: 100%;
  }
}
.product__img {
  height: 100%;
  width: 100%;
  display: block;
}
.product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product__info-title {
  font-size: 20px;
  color: #333;
  word-wrap: break-word;
  margin: 0;
  margin-bottom: 20px;
}

.product__info-title-rus {
  font-size: 14px;
  color: #333;
  word-wrap: break-word;
  margin: 0;
  margin-bottom: 20px;
}

.product__info-price {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  color: #bb3737;
  margin-bottom: 40px;
}
.product__info-price span {
  font-family: ALSRubl-Arial, Arial, sans-serif;
  font-size: inherit;
}
.product__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.product__info-block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.product__info-block-name {
  min-width: 110px;
  color: #1a1a1a;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
}
.product__info-block-value {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
}
.product__info-block-value--red {
  color: #bb3737;
  font-weight: 700;
}
.product__arrange {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.product__specifications {
  margin-bottom: 50px;
}
.product__specifications-top {
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 10px;
}
.product__specifications-title {
  padding: 8px 21px 8px 21px;
  color: #7c7e80;
  text-decoration: none;
  margin: 0;
  font-size: 13px;
  color: white;
  font-family: Tahoma, Geneva, sans-serif;
  background-color: #bbb;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 400;
}
.product__specification {
  padding: 10px;
  font-family: Tahoma, Geneva, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.product__specification:nth-child(even) {
  background-color: #f8f8f8;
}
.product__specification-name {
  min-width: 240px;
}
@media (max-width: 1024px) {
  .product__specification-name {
    min-width: 150px;
  }
}
.counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.counter__input {
  width: 36px;
  height: 30px;
  text-align: center;
  padding: 4px 8px;
  border: 1px solid #c8c8c8;
  background: #fff;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 13px;
}
.counter__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}
.counter__up-btn {
  border: 1px solid #c8c8c8;
  position: relative;
  float: right;
  width: 14px;
  height: 14px;
  border: 1px solid #c8c8c8;
  color: #c8c8c8;
  font-size: 16px;
  line-height: 13px;
  cursor: pointer;
  background: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-size: 13px;
}
.counter__down-btn {
  border: 1px solid #c8c8c8;
  position: relative;
  float: right;
  width: 14px;
  height: 14px;
  border: 1px solid #c8c8c8;
  color: #c8c8c8;
  font-size: 16px;
  line-height: 13px;
  cursor: pointer;
  background: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-size: 13px;
}

.products .products__link {
  height: auto;
}
.products__title {
  font-size: 25px;
  margin: 0;
  margin-bottom: 10px;
}
.products__name-title {
  font-family: Tahoma, Geneva, sans-serif;
  font-weight: bold;
  color: #a1a6aa;
  margin-bottom: 10px;
  display: block;
}
.products__tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 10px;
  margin-bottom: 30px;
}
.products__tags-link {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  outline: none;
  color: #3b5999;
}
.products__list--stroke {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.products__list--stroke .products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding-left: 50px;
  border-bottom: 1px solid #dfdfdf;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .products__list--stroke .products__item {
    padding-bottom: 20px;
    padding-left: 0;
  }
}
.products__list--stroke .products__item:last-child {
  border-bottom: none;
}
.products__list--stroke .products__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 45px;
}
.products__list--stroke .products__img-wrapper {
  border: none;
}
.products__list--stroke .products__img-wrapper img {
  width: 60px;
  height: 60px;
}
.products__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.products__btn-cart {
  padding: 7px 17px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
}
.products__btn-request {
  padding: 7px 17px;
  background-color: #bb3737;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
}
.products__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  padding-left: 15px;
  background: #eee;
  margin-bottom: 20px;
}
.products__sort-data-wrapper {
  padding: 10px 0;
}
.products__sort-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  row-gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.products span {
  color: #151d25;
}
.products__sort-data-link {
  color: #587da1;
}
.products__sort-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.products__sort-grid-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
}
.products__sort-grid-link--active {
  background-color: #e1e1e1;
}
.products__sort-grid-link svg {
  width: 15px;
  height: 15px;
}
.products__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.products__form .products__form-label-req {
  color: #ea7162;
}
.products__form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}
.products__form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  font-weight: 700;
}
.products__form-label input, .products__form-label textarea {
  padding: 8px;
  border: 1px solid #c8c8c8;
  background: #fff;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
}
.products__form-label-checkbox a {
  text-decoration: underline;
}
.products__form-btn-submit {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.cart {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #364364;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  cursor: pointer;
  position: fixed; /* Фиксированное расположение */
  top: 50px; /* в правом верхнем углу */
  right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 15px;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Увеличиваем кнопку при наведении на нее */
.cart:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Стилизуем счетчик товаров */
.cart__num {
  position: absolute;
  background-color: #d62240;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  top: -5px;
  right: -5px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.33); /* Небольшое затемнение на фоне */
  z-index: 1000; /* Поверх всех окон */
  width: 100%;
  height: 100%;
  display: none; /* По умолчанию скрываем окно */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-y: scroll;
}

/* Стилизация контейнера окна */
.popup__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; /* Распределяем элементы внутри равномерно */
  width: 100%;
  max-width: 800px;
  min-height: 300px;
  background-color: #fff;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
}

/* Элементы окна (заголовок, список товаров, вывод стоимости) */
.popup__item {
  border-bottom: 1px solid #ddd;
  padding: 20px;
}

.popup__item:last-of-type {
  border-bottom: none;
}

.popup__title {
  font-size: 20px;
}

/* Стили для вывода товара */
.popup__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}
@media (max-width: 576px) {
  .popup__product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

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

.popup__product-image {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 10px;
}
@media (max-width: 576px) {
  .popup__product-image {
    width: 75px;
    height: 75px;
  }
}

.popup__product-title {
  max-width: 300px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .popup__product-title {
    font-size: 16px;
  }
}

.popup__product-price {
  font-size: 18px;
  margin-right: 15px;
  width: 65px;
}

/* Стили для кнопки удаления товара */
.popup__product-delete {
  font-size: 12px;
  padding: 5px;
  cursor: pointer;
  color: #d62240;
}

/* Стили для вывода стоимости товаров */
.popup__cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.popup__cost-title {
  margin-right: 15px;
  font-size: 20px;
  color: #364364;
  text-align: right;
}

.popup__cost-value {
  font-size: 20px;
}

/* Стили для кнопки закрытия окна */
.popup__close {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  padding: 20px;
  color: rgba(54, 67, 100, 0.7);
  font-size: 20px;
}

.popup__close:hover {
  color: rgb(54, 67, 100);
}

.popup--open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#popup_product_list {
  height: 500px;
  overflow: auto;
}

.popup__item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.popup__item-bottom-text {
  max-width: 360px;
}
@media (max-width: 576px) {
  .popup__item-bottom-text {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.popup__product-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-right: 30px;
}

.quantity-input {
  width: 50px;
  text-align: center;
}

.footer {
  margin-top: 40px;
  background-color: #f2f4f8;
  padding: 20px 0;
}
.footer__content {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 300px));
  gap: 20px;
}
.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__item-name {
  color: #a3aaaf;
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 20px;
}
.footer__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.footer__item-link {
  color: #333;
  font-size: 13px;
  font-style: normal;
  font-weight: normal;
}

.logo-img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}