html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  background: #F2F5FC;
  /* background: #c1c4cc; */
  touch-action: manipulation;

}

body * {
  touch-action: manipulation;

}

:root {
  --black: #000;
  --white: #fff;
  --main-blue: #1444e2;
  --star-orange: #f90;
  --main-red: #ea3323;
}

:root {
  --font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

.display-none {
  display: none;
}


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

.container {
  max-width: 1392px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}


/* header */
.header {
  padding: 6px 0 12px 0;
  background-color: white;
}

.header__top {
  position: relative;
  display: flex;
  align-items: center;
  height: 61px;
}

.header__logo {
  margin-right: 24px;
  max-width: 49px;
  width: 100%;
}

.header__catalog-btn {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 5px 16px;
  max-width: 126px;
  width: 100%;
  height: 44px;
  background-color: var(--main-blue);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  margin-right: 24px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.header__catalog-btn:hover {
  color: #1444E2;
  background-color: #F2F5FC;
  border: 1px solid #1444E2;
}

.header__catalog-btn:active {
  color: #062eb3;
  background-color: #F2F5FC;
  border: 1px solid #062eb3;
}

.header__catalog-btn svg {
  margin-right: 8px;
}

.header-search {
  display: flex;
  height: 45px;
  max-width: 911px;
  width: 100%;
  align-items: center;
  border: 2px solid var(--main-blue);
  border-radius: 8px;
  background-color: var(--main-blue);
}


.header-search-in {
  position: relative;
  height: 41px;
  max-width: 837px;
  width: 100%;
  display: flex;
  align-items: center;
}

.search-del {
  position: absolute;
  right: 5px;
  padding: 9px;
}

.header-search-in input {
  width: 100%;
  border-radius: 6px;
  padding: 10px 12px;
  outline: none;
  border: none;
  height: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: rgba(0, 0, 0, 1);
}

.header-search-btn {
  max-width: 68px;
  width: 100%;
  margin-left: 2px;
  height: 41px;
}

.header__button {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  height: 43px;
  margin-left: 36px;
  max-width: 222px;
  width: 100%;
  justify-content: space-between;
}

.header__button-main,
.header__button-favourites,
.header__button-office,
.header__button-basket {
  max-width: max-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.3s ease;
  color: rgba(0, 0, 0, 0.9);
  transition: color 0.3s ease;
}

.header__button-office:hover {
  color: #1444E2;
}

.header__button-office:active {
  color: #062eb3;
}

.header__button-favourites:hover {
  color: #1444E2;
}

.header__button-favourites:active {
  color: #062eb3;
}

.header__button-basket:hover {
  color: #1444E2;
}

.header__button-basket:active {
  color: #062eb3;
}

.header__button-main:hover {
  color: #1444E2;
  transition: color 0.3s ease;
}

.header__button-main:active {
  color: #062eb3;
  transition: color 0.3s ease;
}

.header__button-main {
  display: none;
}



.header__button-main,
.header__button-favourites,
.header__button-office,
.header__button-basket span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: inherit;
}

.header__button-favourites {
  position: relative;
}

.header__button-basket {
  position: relative;
}

.totalizer {
  position: absolute;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0px 6px;
  width: auto;
  height: 15px;
  top: -7px;
  left: 49px;
  background-color: #1444e2;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: var(--white);
}
#favorites_items {
	opacity: 0;
}
.header-btn-active #favorites_items {
	opacity: 1;
}

.js-wishlist-item-add.active path {
	fill: #EA3323;
}

.header__button-basket .totalizer {
  max-width: max-content;
  left: 43px;
}

.header__bottom ul {
  display: flex;
  justify-content: space-between;
}

.header__bottom ul li {
  height: 84px;
  border-radius: 16px;
  width: calc((100% - (12px *6)) / 7);

}

.header__bottom ul li:not(:last-child) {
  margin-right: 12px;
}

.header__bottom ul a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 110%;
  color: var(--white);
  display: block;
  height: 100%;
  width: 100%;
  padding: 8px 12px;
  display: flex;
  align-items: end;
  background-repeat: no-repeat;
  letter-spacing: 0.03em;

}



.delivery .favourites-button.btn-reset.js-wishlist-item-add.active {
  background: #1444E2;
}

.delivery  .favourites-button.btn-reset.js-wishlist-item-add.active path {
  fill: #fff !important;
}


.color-yellow {
  background: linear-gradient(207deg, #f90 0%, #ff9305 19.73%, #ff8d0b 39.45%, #f17e09 59.45%, #d56604 79.73%, #b94e00 100%);

}

.color-red {
  background: linear-gradient(211deg, #ea3323 0%, #d53121 25.5%, #c02f1f 51.5%, #ab2c1d 80%, #97291b 100%);
}

.color-blue {
  background: linear-gradient(191deg, #1444e2 0%, #1036b5 43.91%, #0b257c 100%);
}

.color-sky {
  background: linear-gradient(202deg, #33afff 0%, #0087de 43.91%, #005c97 100%);
}

.link-1 {
  background-image: url(../img/link-1.png);
  background-position: 86% 1px;
  background-size: 43%;

}

.link-2 {
  background-image: url(../img/link-2.png);
  background-position: 87% 4px;
  background-size: 40%;
}

.link-3 {
  background-image: url(../img/link-3.png);
  background-position: 93% 0px;
  background-size: 44%;
}

.link-4 {
  background-image: url(../img/link-4.png);
  background-position: 96% 0px;
  background-size: 45%;
}

.link-5 {
  background-image: url(../img/link-5.png);
  background-position: 89% 0px;
  background-size: 39%;

}

.link-6 {
  background-image: url(../img/link-6.png);
  background-position: 99% 0px;
  background-size: 60%;
}

.link-7 {
  background-image: url(../img/link-7.png);
  background-position: 99% 0px;
  background-size: 40%;
}

.header__bottom {
  margin-top: 6px;
}

.header__bottom-link span {
  max-width: min-content;
}

.header__bottom-item:hover {
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

/* section-top */
.section-top {
  padding: 16px 0 16px 0;
}

.slide-item {
  /* background-image: url(../img/banner-1.png); */
  background-repeat: no-repeat;
  height: 307px;
  width: 100%;
  padding: 48px 0 0 0;
  border-radius: 32px;
}

.slide-item h2 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 56px;
  line-height: 120%;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.04em;
}

.slide-item span {
  color: var(--main-blue);
}

.slide-item div {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  margin: 17px 0 15px 0;
}

.slide-item p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  margin: 0;
  letter-spacing: -0.01em;
}

.catalog-menu-box {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-bottom: 100px;
  padding-top: 23px;

}

.navigation-block {
  position: relative;
}

.navigation-block-2 {
  position: relative;
}

.navigation-block-3 {
  position: relative;
}

.navigation-block-4 {
  position: relative;
}

.navigation-block-5 {
  position: relative;
}

.navigation-block .slick-prev,
.navigation-block .slick-next {
  font-size: 24px;
  /* Размер стрелок */
  color: #fff;
  /* Цвет стрелок */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.navigation-block .slick-prev {
  left: 10px;
  /* Расстояние от левого края */
}

.navigation-block .slick-next {
  right: 10px;
  /* Расстояние от правого края */
}

.slick-next::before {
  content: url('../img/next-pic.svg');
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.slick-prev::before {
  content: url('../img/prev-pic.svg');
  opacity: 0.8;
  transition: opacity 0.3s ease;
}


.navigation-block .slick-prev,
.navigation-block .slick-next {
  top: -156px;
}

.navigation-block .slick-next {
  right: 28px;
  color: transparent;
}

.navigation-block .slick-prev {
  left: 26px;
  color: transparent;

}

.catalog-menu-list a svg {
  margin-right: 12px;
}

.catalog-img {
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  display: flex;
  margin-right: 3px;
}

/* base */
.advantage {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-radius: 32px;
  background-color: white;
  padding: 24px;
}

.advantage-block {
  max-width: 716px;
  width: 100%;
  margin: 0 24px;
}

.advantage-box {
  width: 100%;
  display: flex;
}

.product-cart {
  max-width: 250px;
  width: 100%;
  height: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.advantage-box .product-cart-top {
  max-width: 222px;
  background-position: 0px 0px;
  height: 240px;

}

.product-cart-top {
  position: relative;
  max-width: 225px;
  background-position: 0px 16px;
  width: 100%;
  height: 256px;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 6px;
}

.advantage-box .favourites-btn {
  top: 9px;
}

.advantage-box .product-cart-bottom {
  padding: 12px 0px 0 0px;
}

.favourites-btn {
  position: absolute;
  right: 8px;
  top: 25px;
}

.favourites-btn:hover {
  color: #ea3323;
}


.advantage-block h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.advantage-banner {
  background-repeat: no-repeat;
  max-width: 290px;
  width: 100%;
  height: auto;
  background-size: cover;
  border-radius: 32px;
}

.advantage-banner-2 {
  background-repeat: no-repeat;
  max-width: 290px;
  width: 100%;
  height: auto;
  background-size: cover;
  border-radius: 32px;
}

.advantage .product-remains {
  display: none;
}

/* 
.advantage .product-add {
  margin-top: 54px;
} */

.product-cart-bottom {
  padding: 12px 12px 0 12px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
}

.cart-scores {
  background-image: url(../img/ufo-icon.svg);
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 4px 8px;
  max-width: 115px;
  height: 28px;
  background-color: #E9ECFD;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--main-blue);
  padding-left: 28px;
  background-position: 7px 53%;
  letter-spacing: 0.04em;
}

.cart-sale {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--white);
  background: var(--main-blue);
  border-radius: 8px;
  padding: 4px 12px;
  max-width: 130px;
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  background-image: url(../img/fire-icon.svg);
  background-repeat: no-repeat;
  padding-left: 36px;
  margin-top: 4px;
  background-position: 11px 55%;
  letter-spacing: 0.04em;
}

.product-price {
	display: flex;
	align-items: baseline;
	margin-bottom: 4px;
	flex-wrap: wrap;
	min-width: 120px;
}

.product-remains div {
  height: 4px;
  width: 155px;
  background: #CFCFDB;
  border-radius: 8px;
  overflow: hidden;
}

.product-remains span {
  display: block;
  width: 120px;
  height: 100%;
  background: var(--main-blue);
}

.product-reviews-star {
  display: flex;
  align-items: center;
  margin-right: 14px;
}

.product-reviews-text {
  display: flex;

}


.product-price p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--main-blue);
  letter-spacing: 0.03em;
  margin-right: 8px;

}

.product-price span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration: line-through;
  color: #797C83;
  margin-right: 9px;
}

.product-price div {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-blue);
  letter-spacing: -0.01em;
}

.product-remains p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 5px;
}

.advantage-box .wrapper-link a {
  max-width: 207px;
  margin-top: 3px;
}

.wrapper-link .product-price + a {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: rgba(0, 0, 0, 0.9);
	margin-top: 0px;
	max-width: 100%;
	width: 100%;
	transition: color 0.3s ease;
	min-height: auto;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wrapper-link a:hover {
  color: #1444E2;
}

.slick-track {
  margin-left: 0;
}
.wrapper-link a:active {
  color: #062eb3;
}

.product-reviews-star p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
  margin-left: 4px;
}

.product-reviews {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
}

.product-reviews-text span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
  margin-left: 4px;
  letter-spacing: 0.03em;
}

.product-add {
  max-width: 198px;
}

.product-add {
  max-width: 225px;
  width: 100%;
  height: 44px;
  background: var(--main-blue);
  border-radius: 8px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;

}

.product-add:hover {
  color: #1444E2;
  background-color: #F2F5FC;
  border: 1px solid #1444E2;
}

.active.product-add:hover {
  color: #1444E2;
  background-color: white;
  border: none;
}

.product-add svg {
  margin-right: 8px;
}

.advantage .product-cart:not(:last-child) {
  margin-right: 8px;
}

.support-serv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: rgba(0, 0, 255, 0.05);
  border-radius: 100%;
  transition: background-color 0.3s ease;
  right: 19px;
  bottom: 150px;
  position: fixed;
  z-index: 20;
}




.support-serv:hover {
  background-color: rgba(76, 76, 130, 0.23);
}

.support-serv-b {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--main-red);

}

.support-serv:hover .support-serv-b {
  background-color: #e61f0e;
  transition: background-color 0.3s ease;

}

/* brends */
.brends {
  border-radius: 32px;
  padding: 24px;
  background: var(--white);
  margin-top: 17px;
}

.brends-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px
}

.brends-top-cart {
  width: calc((100% - (24px *2)) / 3);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  background-repeat: no-repeat;
  background-size: contain;
  height: 128px;
  background-size: 96px;
  background-position: center left;
  display: flex;
  align-items: center;
  padding: 0 10px 0 112px;
  letter-spacing: 0.01em;
}

.top-cart-1 {
  background-image: url(../img/brends-pic-1.png);
}

.top-cart-2 {
  background-image: url(../img/brends-pic-2.png);
}

.top-cart-3 {
  background-image: url(../img/brends-pic-3.png);
}


.brends h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}


.brends-bottom-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}


.brends-cart {
  width: calc((100% - (24px *5)) / 6);
  border-radius: 8px;
  padding: 0px 16px;
  height: 97px;
  background-color: #F2F5FC;
  background-position: center;
  background-repeat: no-repeat;
}

.brends-cart-1 {
  background-image: url(../img/brends-icon-1.svg);
}

.brends-cart-2 {
  background-image: url(../img/brends-icon-2.svg);
}

.brends-cart-3 {
  background-image: url(../img/brends-icon-3.svg);
}

.brends-cart-4 {
  background-image: url(../img/brends-icon-4.svg);
}

.brends-cart-5 {
  background-image: url(../img/brends-icon-5.svg);
}

.brends-cart-6 {
  background-image: url(../img/brends-icon-6.svg);
}

.brends-add-btn {
  border-radius: 8px;
  padding: 8px 16px;
  max-width: 231px;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #F2F5FC;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-blue);
  margin: 0 auto;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.brends-add-btn:hover {
  background-color: #1444E2;
  color: white;
}

/* suggestion */


.suggestion__container {
  margin-top: 16px;
}

.suggestion__box {
  border-radius: 32px;
  padding: 24px 12px 14px 12px;
  background-color: white;

}

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

.suggestion__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 12px;
}

.suggestion__top p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
}

.suggestion__top a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-blue);
  transition: color 0.3s ease;
}

.suggestion__top a:hover {
  color: #062eb3;

}

.discount-no .product-price p {
  color: rgba(0, 0, 0, 0.9);
}

.discount-no .product-price span {
  display: none;
}

.discount-no .product-price div {
  display: none;
}

.sale-no .cart-sale {
  display: none;
}

.suggestion .product-reviews {
  display: none;
}

.suggestion .product-remains {
  display: none;
}

.favourites-add path {
  fill: #ea3323;
}

.suggestion__block .product-cart {
  width: calc((100% - (24px *4)) / 5);
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(204, 214, 228, .6);
}

.suggestion__block .product-cart:not(:last-child) {
  margin-right: 0;
}

.advertisement-block {
  border-radius: 32px;
  padding: 24px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.advertisement-item {
  width: calc((100% - (24px *1)) / 2);
  /* height: 180px; */
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 3.64;
}

/* sales-hit */

.sales-hit {
  border-radius: 32px;
  padding: 24px 12px 16px 12px;
  background-color: white;
  margin-top: 16px;
}

.sales-hit__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.sales-hit__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 12px;
}

.sales-hit__top p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
}

.sales-hit__top a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-blue);
  transition: color 0.3s ease;
}

.sales-hit__top a:hover {
  color: #062eb3;
}



.sales-hit__block .product-cart {
  width: calc((100% - (0px *4)) / 5);
  margin-bottom: 8px;
  max-width: max-content;
}

.sales-hit__block .product-cart:nth-child(n+6) {
  display: none;
}

.promo-codes {
  display: flex;
  padding: 24px;
  border-radius: 32px;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  margin: 16px 0;
}

.promo-codes div {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  color: var(--white);
  max-width: 500px;
  width: 100%;
  margin-right: 48px;
  letter-spacing: 0.01em;

}


.promo-codes p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  border-radius: 24px;
  padding: 10px 24px;
  max-width: 124px;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

/* Footer */
.footer__container {
  display: flex;
  padding: 48px 0px;
}

.footer__info p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 9px;
  letter-spacing: 0.03em;
}

.footer__help p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 9px;
  letter-spacing: 0.03em;
}

.footer__payments p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.footer__payments-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 0 0 7px;
}

.footer a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #1444E2;
}

.footer a:active {
  color: #062eb3;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;

}

.footer__payments span {
  color: #797C83;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.035em;
  margin-top: 5px;
  display: block;
}

.footer__info,
.footer__help,
.footer__payments {
  max-width: 251px;
  width: 100%;
}

.footer__info {
  margin-right: 24px;
}

.footer__help {
  margin-right: 24px;
}

.footer__logo {
  max-width: 566px;
  width: 100%;
  margin-right: 24px;
  display: flex;
  justify-content: center;
}

.footer__info li {
  margin-bottom: 4px;
}

.footer__help li {
  margin-bottom: 4px;
}

.footer__payments-box img {
  margin-right: 20px;
  margin-bottom: 2px;
  width: 35px;
}


.footer__logo-link img {
  /* min-width: 316px; */
  width: 143px;
}


/* Каталог */
/* .header__catalog-menu {
  position: absolute;
  background: #f1f1f1;
  border: 1px solid #ccc;
  padding: 34px;
  transition: left 0.3s;
  transform: translateX(-500%);
  transition: transform 0.3s ease;
  top: 60px;
  left: 0px;
  z-index: 3;
  width: 500px;
  height: 100vh;
}

.header__catalog-menu.active {
  transform: translateX(0);
} */


.header__catalog-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 400px;
  z-index: 1010;
  padding: 24px;
  background: white;
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition: 0.3s;

}

.header__catalog-menu.active {
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1009;
}

/* Когда меню активно, показывайте затемняющий фон */
.header__catalog-menu.active+.overlay {
  display: block;
}

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

.catalog-menu-list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  /* border-bottom: 1px solid rgba(204, 214, 228, .6); */

}

.catalog-menu-list a {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;

}

.catalog-menu-list a:hover {
  color: #1444E2;
  background-color: #F2F5FC;
  border-radius: 12px;

}

.menu-soclinks {
  width: 30px;
  margin-top: 38px;
  margin: 38px 0 0 9px;
}

.svg-close {
  display: none;
}

.catalog-menu-close {
  background-color: #e3e3e3;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-soclinks a:hover {
  color: #3F66E6;
  transition: color 0.3s ease;
}

.catalog-menu-close:hover {
  color: #1444E2;
}

.active-btn .svg-close {
  display: block;
}

.active-btn .svg-catalog {
  display: none;
}

.catalog-menu-text {
  font-weight: bold;
  margin-bottom: 24px;
}

.advantage-title {
  display: none;
}


.suggestion__block .product-cart {
  width: calc((100% - (0px *4)) / 5);
  max-width: max-content;
}

.suggestion__block {
  justify-content: start;
}

/* Категории */

.category__block {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin: 0 -12px;

}

.category__block .product-cart {
  width: calc((100% - (0px *4)) / 5);
  max-width: max-content;
  border-bottom: 1px solid rgba(204, 214, 228, .6);
  padding: 12px 12px 35px 12px;
  margin-bottom: 8px;
}

.category__block .wrapper-link a {
  margin-bottom: 4px;
}

.category__block .product-add {
  max-width: 240px;
}

/* Хлебные крошки */
.breadcrumbs {
  padding-top: 16px;
}

.breadcrumbs__info {
  position: relative;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-blue);
  margin-bottom: 8px;
}

.breadcrumbs__info li {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.breadcrumbs__info li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../img/arrow-right-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: -1px 0;
  margin-left: 0px;
  margin-right: 10px;
  width: 8px;
  height: 18px;
}

.breadcrumbs__info li:first-child::before {
  background-image: none;
  display: none;
}


.category__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}


/* Пагинация */
.category__bottom-box {
  max-width: 220px;
  width: 100%;
  height: 20px;
}

.pagination-block {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 10px;
  padding-bottom: 40px; */
}

.arrow-pagination {
  cursor: pointer;
  margin: 0 17px;
  border: 1px solid black;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border 0.2s ease, stroke 0.2s ease;
}

.page-item {
  padding: 0 5px;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #797C83;
}

.page-item:hover {
  color: #1444e2;
  transition: color 0.3s ease;
}

.page-item:active {
  color: #062eb3;
  transition: color 0.3s ease;
}

.page-item-active {
  opacity: 1;
  color: #1444E2;
}

.arrow-pagination:hover {
  border: 1px solid #1444E2;
  color: #1444E2;
  transition: color 0.3s ease, border 0.3s ease;
}

.category__top {
  display: flex;
  align-items: baseline;
  margin-bottom: 36px;
}

.category__top h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
  margin-right: 9px;
}

.category__top p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
  letter-spacing: 0.02em;
}

.category__description {
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 120%;
  padding-bottom: 40px;
}

.category__description b {
  color: rgba(0, 0, 0, 0.9);
  margin: 5px 0;
  display: inline-block;
}

.category__description h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.category__description p {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
  margin: 8px 0;
}

.category__description li {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.category__description ul {
  margin: 0;
}




.category__bottom-back {
  border-radius: 8px;
  padding: 8px 19px;
  max-width: 220px;
  height: 44px;
  display: flex;
  width: 100%;
  align-items: center;
  background-color: #F2F5FC;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-blue);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.category__bottom-back svg {
  margin-right: 10px;
}

.category__bottom-back:hover {
  color: white;
  background-color: #1444E2;
}


.counter {
  display: flex;
  align-items: center;
}

.counter .btn {
  padding: 5px;
  cursor: pointer;
}

.counter .quantity {
  margin: 0 10px;
}

.product-add.active {
  background-color: white;
  color: black;
  display: flex;
  justify-content: space-between;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
}

.product-add .minus,
.product-add .plus {
  border-radius: 8px;
  padding: 10px 24px;
  width: 44px;
  background-color: #F2F5FC;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-add .minus:hover {
  outline: 1px solid #1444e2;
}

.product-add .plus:hover {
  outline: 1px solid #1444e2;
}

/* product-page */
.product-page-main {
  background-color: white;
}

.product-page {
  padding-top: 9px;
}

.category-page {
  background-color: white;
}

.product-page__content {
  display: flex;
  justify-content: space-between;
}


.product-img {
  width: calc((100% - (24px *1)) / 2);
  background-repeat: no-repeat;
  height: 460px;
  padding: 24px;
  border-radius: 32px;
  background-size: 63%;
  background-position: center;
  position: relative;
}

.product-content {
  width: calc((100% - (24px *1)) / 2);
}

.product-img-rec {
  border-radius: 8px;
  padding: 4px 12px;
  max-width: 138px;
  height: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #E9ECFD;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--main-blue);
  position: absolute;
  right: 24px;
  top: 23px;
  letter-spacing: 0.04em;
}

.product-img-hit {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--main-blue);
  border-radius: 8px;
  padding: 4px 12px;
  width: 126px;
  height: 28px;
  background-color: #E9ECFD;
  display: flex;
  align-items: center;
  position: absolute;
  right: 24px;
  top: 59px;
  letter-spacing: 0.04em;
}

.product-img-rec svg {
  margin-right: 4px;
}

.product-img-hit svg {
  margin-right: 4px;
}

.product-box {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.inform {
  width: calc((100% - (24px *1)) / 2);
}

.delivery {
  width: calc((100% - (24px *1)) / 2);
}

.inform h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.01em;
  margin-bottom: 7px;
}

.product-content .product-reviews {
  margin-bottom: 27px;
}

.inform h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}


.inform ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}

.inform ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  height: 39px;
  border-bottom: 1px solid rgba(204, 214, 228, .6);
}

.inform li span {
  width: calc((100% - (8px *1)) / 2);
  color: #797C83;
}

.inform li p {
  width: calc((100% - (14px *1)) / 2);
  text-align: right;
}

.inform-bottom {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.005em;
}

.inform-bottom div span {
  font-weight: 700;
  color: var(--main-blue);
}

.delivery h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.01em;
}

.delivery {
  padding-top: 21px;
}

.delivery ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 12px 0 0px 0;
}


.delivery ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 28px;
  margin: 12px 0;
}

.delivery li p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
}

.delivery li p svg {
  margin-left: 6px;
}

.delivery li span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--main-blue);
  border-radius: 32px;
  padding: 4px;
  width: 74px;
  height: 28px;
  display: flex;
  align-items: center;
  background-color: #E9ECFD;
  justify-content: center;
}

.delivery ul hr {
  margin: 0;
  height: 1px;
  border: none;
  background-color: rgba(204, 214, 228, .6);
}

.delivery-discounts p {
  border-radius: 8px;
  padding: 4px 12px;
  width: 57px;
  height: 28px;
  background: var(--main-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--white);
}

.delivery-discounts {
  display: flex;
  align-items: center;
  margin-top: 23px;
  margin-bottom: 24px;
}

.delivery .cart-sale {
  margin: 0;
  margin-right: 12px;
}

.delivery .cart-scores {
  margin-right: 12px;
}

.delivery-box {
  border-radius: 32px;
  padding: 24px;
  max-width: 330px;
  width: 100%;
  height: 142px;
  box-shadow: 0 14px 64px -4px rgba(24, 39, 75, 0.12), 0 8px 22px -6px rgba(24, 39, 75, 0.12);
  background: var(--white);
}

.delivery .product-price p {
  font-size: 28px;
  margin-right: 9px;
}

.delivery .product-price span {
  font-size: 20px;
  letter-spacing: 0.03em;
}

.delivery .product-price div {
  font-size: 20px;
}

.delivery .product-add {
  max-width: 230px;
  height: 48px;
  margin-top: 0;
  margin-right: 4px;
}

.delivery .product-price {
  margin-bottom: 12px;
}

.delivery .delivery-button {
  display: flex;
}

.delivery .favourites-button {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  max-width: 48px;
  width: 100%;
  height: 48px;
  background-color: #E9ECFD;
  color: #1444E2;
  transition: color 0.3s ease;

}

.delivery .favourites-button:hover {
  /* background-color: #1444E2; */
  color: #ea3323;

}

.delivery .favourites-button:active {
  color: #ea3323;

}

.product-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.discount-item {
  width: 58px;
  height: 58px;
  background-repeat: no-repeat;
  background-size: contain;

}


.product-description {
  padding-top: 24px;
  padding-bottom: 24px;
}

.product-description h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.product-description p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #797C83;
  letter-spacing: 0.003em;
  max-width: 1033px;
  width: 100%;
}



/* Отзывы */
.reviews__block {
  padding-top: 14px;
}

.reviews-box {
  display: flex;
}

.reviews__block-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.035em;
  margin-bottom: 24px;
}

.reviews__block-title span {
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
}

.reviews-info-img {
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
}

.reviews-aside {
  max-width: 1038px;
  width: 100%;
}

.reviews-info {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
}

.reviews-info-img {
  margin: 0 27px 0 15px;
  display: flex;
  flex-shrink: 0;
}

.info-content-top {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px
}

.info-content-top h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);

}

.reviews-info-content {
  width: 100%;
}

.info-content-bottom p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: var(--main-blue);
  letter-spacing: 0.035em;
}


.rating p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: #797C83;
  margin-right: 12px;
}

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

.stars-box {
  display: flex;
  align-items: center;
}


.stars-box svg:not(:last-child) {
  margin-right: 4px;
}


.info-content-bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 26px;
}

.info-content-bottom ul li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  display: flex;
  margin-bottom: 7px;
  color: rgba(0, 0, 0, 0.9);
}


.info-content-bottom li p {
  color: #797C83;
  letter-spacing: 0.01em;
  font-size: 14px;
  margin-right: 8px;
  max-width: 114px;
  width: 100%;
}

.reviews-btn span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: inherit;
  letter-spacing: 0.01em;
}

.reviews-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 5px 16px;
  width: 100%;
  height: 44px;
  background-color: #E9ECFD;
  color: #1444E2;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.reviews-btn:hover {
  background-color: #1444E2;
  color: white;
}

.reviews-btn svg {
  margin-right: 8px;
}


.sidebar-top-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
}

.reviews-box {
  display: flex;
}

.sidebar-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  height: 54px;
  border-bottom: 1px solid rgba(204, 214, 228, .6);
}

.reviews-sidebar {
  max-width: 330px;
  width: 100%;
}

.reviews-aside {
  margin-right: 24px;
}


.sidebar-top-stars svg {
  margin-right: 2px;
}

.scale-t {
  background: #e2e7ec;
  border-radius: 5px;
  height: 6px;
  overflow: hidden;
}

.scale-b {
  background-color: #ffa800;
  height: 6px;
  transform-origin: 0;
  transition: transform .5s ease-in-out;

}


.sidebar-base-item p {
  color: #797C83;
  letter-spacing: 0.03em;
  max-width: 76px;
  width: 100%;
}

.sidebar-base {
  margin-top: 24px;
  border-bottom: 1px solid rgba(204, 214, 228, .6);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.sidebar-base-item {
  display: flex;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: rgba(20, 68, 226, 0.05);
  color: #797C83;
  margin-bottom: 6px;
}

.scale-quantity {
  color: rgba(0, 0, 0, 0.9);
}

.sidebar-base-scale {
  max-width: 210px;
  width: 100%;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 13px;
}

.scale-t {
  width: 100%;
}

.sidebar-bottom {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: #797C83;
}

/* offering */
.offering {
  padding-top: 36px;
}

.offering__similar h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.offering__similar {
  margin-bottom: 25px;
}

.offering__similar .product-add {
  max-width: 100%;
}

.offering__similar .product-cart-bottom {
  padding: 0 0 12px 0;
}

.offering__similar .product-cart {
  max-width: 100%;
  /* width: calc((100% - (12px *4)) / 5); */
  margin: 0 12px;
}

.offering__similar .cart-sale {
  display: none;
}

.offering__similar .product-cart-top {
  margin-bottom: 12px;
}

.similar-block {
  display: flex;
  margin: 0 -12px;
}

/* .offering__similar .product-cart-bottom {
  justify-content: start;
} */

.offering__similar .product-add {
  margin-top: auto;
}

.similar-block-2 {
  margin-bottom: 14px;
}

.slick-list {
    width: 100%;
}

.offering__similar .slick-next {
  right: 1px;
  top: -234px;
  border-radius: 68px;
  width: 54px;
  height: 54px;
  box-shadow: 0 14px 64px -4px rgba(24, 39, 75, 0.32), 0 8px 22px -6px rgba(24, 39, 75, 0.12);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.offering__similar .slick-next:hover {
  background-color: #1444E2;
}

.offering__similar .slick-next:hover::before {
  content: url('../img/next-w-pic.svg');
  padding: 0 0 4px 0;
}

.offering__similar .slick-prev {
  left: 0px;
  top: -234px;
  border-radius: 68px;
  width: 54px;
  height: 54px;
  box-shadow: 0 14px 64px -4px rgba(24, 39, 75, 0.32), 0 8px 22px -6px rgba(24, 39, 75, 0.12);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering__similar .slick-prev:hover {
  background-color: #1444E2;
}

.offering__similar .slick-prev:hover::before {
  content: url('../img/prev-w-pic.svg');
  padding: 0 0 4px 0;
}

.slick-disabled {
  display: none !important;
}

.offering__similar .product-remains {
  display: none;
}

.offering__similar .product-reviews {
  display: none !important;
}

.product-page__content .product-img {
  background-color: #fff;
}

.tips_text {
	display: block;
	color: #797C83 !important;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 137%;
}



.orders-cart .repeat-btn.btn-reset {
  padding: 0;
  height: auto;
  background: #fff;
  text-decoration: underline;
  font-weight: normal;
  margin: 0;
  color: #1444e2;
  opacity: 0.6;
  font-size: 14px;
}

.product-box-link span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: inherit;

}

.product-box-link {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100px;
  height: 20px;
  right: 0;
  top: -38px;
  color: #797C83;
}

.product-box-link:hover {
  color: #1444E2;
  transition: color 0.3s ease;
}

.product-box-link svg {
  margin-right: 4px;
}

.discounts-mobil {
  display: none;
}

.price-mobil {
  display: none;
}

.info-img-mobil {
  display: none;
}


/* Корзина */
.basket-page {
  padding-top: 16px;
}

.basket-page__box-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.basket-page__title h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
  margin-right: 8px;
}

.basket-page__title p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
  letter-spacing: 0.04em;
}

.basket-page__title {
  display: flex;
  align-items: end;
  margin-bottom: 16px;

}

.arrange {
  max-width: 330px;
  width: 100%;
  border-radius: 32px;
  padding: 24px;
  background-color: white;
  height: 142px;
  margin-bottom: 24px;
}

.basket-page__block {
  display: flex;
  justify-content: space-between;
}

.basket-page__box {
  max-width: 1038px;
  width: 100%;
  margin-right: 24px;
  border-radius: 32px;
  padding: 24px;
  background-color: white;
  margin-bottom: 16px;
}



.arrange-box-btn {
  max-width: 225px;
  width: 100%;
  height: 44px;
  background: var(--main-blue);
  border-radius: 8px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  margin-top: 24px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.arrange-box-btn:hover {
  color: #1444E2;
  background-color: #F2F5FC;
  border: 1px solid #1444E2;
}

.basket-page .product-price p {
  font-size: 28px;
}

.arrange .product-price span {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.arrange .product-price div {
  font-size: 20px;
}

.arrange .arrange-box-btn {
  max-width: 282px;
  height: 47px;
  margin-top: 12px;
}

.basket-page__box-top .discount-item {
  width: 48px;
  height: 48px;
  margin-right: 0em;
  margin-left: 0.73em;
}

.basket-page__box-top .product-discount {
  margin-top: 0;
}

/* Кастом чексбокс */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0)
}

.check-all-custom {
  user-select: none;
  cursor: pointer;
  height: 24px;
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.custom-checkbox__text {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.9);
  padding-left: 36px;
  margin-left: 1px;
}

.custom-checkbox__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border: 1px solid #1444E2;
  border-radius: 6px;
}

.custom-checkbox__text::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.03033 2.03033C9.32322 1.73744 9.32322 1.26256 9.03033 0.96967C8.73744 0.676777 8.26256 0.676777 7.96967 0.96967L3.5 5.43934L2.03033 3.96967C1.73744 3.67678 1.26256 3.67678 0.96967 3.96967C0.676777 4.26256 0.676777 4.73744 0.96967 5.03033L2.96967 7.03033C3.26256 7.32322 3.73744 7.32322 4.03033 7.03033L9.03033 2.03033Z' fill='white' /%3e%3c/svg%3e");
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  opacity: 0;
  width: 21px;
  height: 21px;
  background-color: #1444E2;
  border-radius: 6px;
}

.custom-checkbox__input:checked+.custom-checkbox__text::after {
  opacity: 1;
}

.custom-checkbox__input:focus+.custom-checkbox__text {
  outline-offset: 2px;
}


/* Элемент | http://127.0.0.1:5500/basket-page.html */
.basket-page__box-top {
  margin-bottom: 36px;
}

.choice-box {
  display: flex;
  align-items: center;
}

.delete-all-btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: var(--main-blue);

}

.product-picture {
  background-repeat: no-repeat;
  max-width: 128px;
  width: 100%;
  height: 128px;
  background-size: contain;
  aspect-ratio: 1;
}

/* Поле ввода количества товара */
.quantity-input {
  display: flex;
  align-items: center;
}

.quantity-input button {
  cursor: pointer;
  height: 44px;
  width: 44px;
  border-radius: 8px;
  padding: 5px;
  background-color: #F2F5FC;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: none;
  font-size: 28px;
  font-weight: 300;
  border: 1px solid #F2F5FC;
  transition: color 0.3s ease, border 0.3s ease;
}

.quantity-input button:hover {
  border: 1px solid #1444e2;
  color: #1444E2;

}

.quantity-input input {
  text-align: center;
  font-size: 16px;
  margin: 0 12px;
  height: 44px;
  width: 44px;
  -moz-appearance: textfield;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  border: none;
  border-radius: 8px;
  outline: none;

}

/* Chrome, Safari, Edge, Opera */
.quantity-input input::-webkit-outer-spin-button,
.quantity-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
.quantity-input input[type=number] {
  -moz-appearance: textfield;
}



.check-all {
  margin-right: 12px;
}

.crate-item {
  display: flex;
  padding: 12px 0;
  margin-top: 9px;
}


/* Элемент | http://127.0.0.1:5500/basket-page.html */

.crate-check {
  max-width: 176px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-right: 24px;
}

.crate-check label {
  margin-right: 11px;
}


.product-picture {
  background-position: 0px 3px;
}

.choice-box {
  margin-bottom: 14px;
}

.crate-ihfo {
  width: 100%;
}

.crate-ihfo-content {
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
}

.product-info {
  max-width: 376px;
  width: 100%;
}

.product-info a {
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.product-info a:hover {
  color: #1444E2;
}


.product-info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
  letter-spacing: 0.04em;
}

.crate-ihfo-quantity {
  max-width: 156px;
  width: 100%;
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
}

.crate-item .product-price p {
  font-size: 20px;
}

.crate-item .product-price {
  margin-bottom: 8px;
}

.crate-ihfo-button {
  display: flex;
  align-items: center;
  margin-top: 13px;
}

.favorite-add-btn {
  border-radius: 8px;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C1C7CC42;
  margin-right: 8px;
  color: #000;
  transition: color 0.3s ease, border 0.3s ease;
}

.favorite-active {
  color: #ea3323;
}

.favorite-add-btn:hover {
  color: #ea3323;
}

.delete-btn {
  display: flex;
  border-radius: 8px;
  padding: 0;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background-color: #C1C7CC42;
  color: #000;
  transition: color 0.3s ease, border 0.3s ease;
}

.delete-btn:hover {
  color: #1444E2;
  /* border: solid #1444E2; */
}

.crate-ihfo-button {
  display: flex;
  align-items: center;
  margin-top: 13px;
}

.offers .offering__similar {
  background-color: white;
  padding-top: 10px;
}

.offers .product-price p {
  font-size: 20px;
}

.offers {
  background-color: white;
}

.offers {
  background: #F2F5FC;
}

.offers-wrapper {
  background-color: white;
}

.offers .similar-block-2 {
  margin-bottom: 0;
}

.offers .offering__similar {
  margin-bottom: 16px;
}


/* Оформление заказа */
.making-order__block {
  display: flex;
  justify-content: space-between;
}

.making {
  max-width: 1038px;
  width: 100%;
  margin-right: 24px;

}

.making-pay {
  border-radius: 32px;
  padding: 24px;
  min-height: 161px;
  height: auto;
  background: var(--white);
}

.aside-block-container {
  max-width: 330px;
  width: 100%;
  border-radius: 32px;
  padding: 24px;
  height: auto;
  background: var(--white);
  margin-bottom: 24px;
}

/* --- */
.making-pay-box {
  display: flex;
  margin-top: 13px;
}

.making-pay-box input[type="radio"] {
  display: none;
}


.making-pay-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 32px;
  background-repeat: no-repeat;
  max-width: 120px;
  height: 72px;
  width: 100%;
  border-radius: 8px;
  padding: 8px;
  border: 2px solid #797C83;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
  justify-content: center;
  flex-direction: column;
  margin-right: 8px;
  text-align: center;
}

/* .making-pay-box label:hover {
  border: 2px solid var(--main-blue);
} */

.making-pay-box input[type="radio"]:checked+label {
  border: 2px solid var(--main-blue);
}

/* --- */

.making-order {
  padding-top: 16px;
}

.making-pay-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.pay-item-1 {
  background-position: center;
  background-size: 47%;
}

.pay-item-2 {
  background-size: 43%;
  background-position: center;
}

.pay-item-3 {
  background-size: 43%;
  background-position: center;
}

.pay-item-4 {
  background-size: 43%;
  background-position: center;
}

.making-bonus {
  border-radius: 32px;
  padding: 24px;
  max-width: 1038px;
  width: 100%;
  min-height: 125px;
  height: auto;
  background: var(--white);
  margin-bottom: 24px;
}

.making-bonus-top p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.016em;
}

.making-bonus-top span {
  color: #797C83;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
}

.making-bonus-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.making-pay {
  margin-bottom: 24px;

}

.making-bonus-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ------ */

.making-bonus-btn input[type="radio"] {
  display: none;
}


.making-bonus-btn label {
  cursor: pointer;
  width: calc((100% - (8px *1)) / 2);
  height: 36px;
  background-color: #F2F5FC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #1444E2;
  transition: background-color 0.3s ease;

}

.making-bonus-btn label:hover {
  /* border: 2px solid var(--main-blue); */
}

.making-bonus-btn input[type="radio"]:checked+label {
  background-color: #1444E2;
  color: white;
}

/* ------ */

/* ------------- */
.making-shipment-choice {
  display: flex;
  margin-bottom: 13px;
}

.making-shipment-choice input[type="radio"] {
  display: none;
}


.making-shipment-choice label {
  cursor: pointer;
  background-repeat: no-repeat;
  max-width: 120px;
  height: 72px;
  width: 100%;
  border-radius: 8px;
  padding: 8px;
  border: 2px solid #797C83;
  margin-right: 8px;
}

/* .making-shipment-choice label:hover {
  border: 2px solid var(--main-blue);
} */

.making-shipment-choice input[type="radio"]:checked+label {
  border: 2px solid var(--main-blue);
}

.shipment-item-1 {
  background-position: center;
  background-size: 66%;
}

.shipment-item-2 {
  background-position: center;
  background-size: 46%;
}

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

.making-shipment-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 5px;
}

.making-shipment-text {
  color: #797C83;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  margin-bottom: 12px;
}


.making-shipment {
  border-radius: 32px;
  padding: 24px;
  width: 100%;
  height: auto;
  background: var(--white);
  margin-bottom: 24px;
}

/* Кастом радио */
.adres-radio {
  user-select: none;
  cursor: pointer;
}

.adres-radio__text {
  position: relative;
  padding-left: 33px;
}

.adres-radio__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
}

.adres-radio__text::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #1444e2;
  border-radius: 100%;
  opacity: 0;
}

.adres-radio__input:checked+.adres-radio__text::after {
  opacity: 1;
}

/* .adres-radio__input:focus+.adres-radio__text {
  outline: 1px solid red;
  outline-offset: 2px;
} */
.adres-radio__text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 12px;
}

.adres-radio__text li {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 4px;
}

.adres-radio__text li span {
  font-weight: 400;

}

.adres-pr {
  display: flex;
  max-width: 700px;
  width: 100%;
  flex-wrap: wrap;
}


.form-group-name {
  display: flex;
  flex-direction: column;
  max-width: 436px;
  width: 100%;
  margin-right: 24px;
}

.form-group-tel {
  display: flex;
  flex-direction: column;
  max-width: 200px;
  width: 100%;
}

.form-group-adress {
  width: 100%;
}



.form-group-name label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 8px;

}

.form-group-tel label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 8px;
}

.form-group-name input {
  border: 2px solid #797C837D;
  border-radius: 8px;
  padding: 8px 12px;
  max-width: 436px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
}

.form-group-tel input {
  border: 2px solid #797C837D;
  border-radius: 8px;
  padding: 8px 12px;
  max-width: 200px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

.form-group-adress input {
  border: 2px solid #797C837D;
  border-radius: 8px;
  padding: 8px 12px;
  max-width: 660px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin-top: 12px;
}

.aside-block-top {
  border-top: 1px solid #797C8340;
  border-bottom: 1px solid #797C8340;
  padding: 24px 0 10px 0;
}

.aside-block-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
}

.aside-block-descr {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: #797C83;
  letter-spacing: 0.01em;
}


.aside-block-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.aside-block-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  margin-bottom: 13px;
}

.stipple-box {
  height: 10px;
  border-bottom: 1px dashed #797C83;
  margin: 0 4px;
  flex-grow: 1;
}


.appellation-text {
  color: #797C83;
}

.value-text {
  color: rgba(0, 0, 0, 0.9);
}

.value-text-blue {
  color: #1444E2;
}

.aside-block-bottom {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.result-text {
  font-size: 20px;
}

.result-price {
  font-size: 24px;
  letter-spacing: 0.02em;
}

.aside-block-top {
  margin-bottom: 29px;
}

.aside-block-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  border-radius: 8px;
  padding: 6px 16px;
  width: 100%;
  height: 48px;
  background-color: var(--main-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: color 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}

.aside-block-btn:hover {
  color: #1444E2;
  background-color: white;
  border: 1px solid #1444E2;

}

.agreement-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: #797C83;
}

.agreement-text a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--main-blue);
}

/* Форма ввода промокода */
.promo-top {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.promo-top h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.9);
}

.aside-block-promo {
  border-radius: 32px;
  padding: 24px;
  width: 330px;
  height: 168px;
  background-color: white;
}

.promo-top svg {
  margin-right: 8px;
}

.promo-form input {
  border-radius: 8px;
  padding: 8px 12px;
  max-width: 282px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  border: 2px solid #797C837D;
}

.promo-form-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--white);
  border-radius: 8px;
  padding: 6px 16px;
  width: 100%;
  height: 36px;
  background-color: var(--main-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  letter-spacing: 0.03em;
  transition: color 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}

.promo-form-btn:hover {
  color: #1444E2;
  background-color: white;
  border: 1px solid #1444E2;

}

/* Рекомендации */
.recommendations__block {
  border-radius: 32px;
  padding: 24px;
  max-width: 1038px;
  height: auto;
  width: 100%;
  background-color: var(--white);
}

.recommendations__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.01em;
}

.recommendations__block .cart-sale {
  display: none;
}

.recommendations__block .product-cart {
  width: calc((100% - (24px *3)) / 4);
}

.recommendations__block .favourites-btn {
  top: 33px;
}

.recommendations__block .product-cart-bottom {
  padding: 12px 0px 0 0px;
}

.recommendations__block .product-cart-top {
  background-position: 0px 34px;
  height: 264px;
}

.recommendations__block .product-cart:not(:nth-child(4n)) {
  margin-right: 24px;
}

.recommendations-content {
  display: flex;
  flex-wrap: wrap;
}

/* Успешно оформленный заказ */

.booked {
  padding-top: 16px;
}

.booked__block {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
}


.booked__box {
  max-width: 920px;
  width: 100%;
  margin-right: 24px;
}

.booked__picture {
  max-width: 448px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1;
  background-position: center;
}

.structure {
  border-radius: 32px;
  padding: 24px;
  max-width: 920px;
  /* min-height: 393px; */
  height: auto;
  background-color: var(--white);
  margin-bottom: 24px;
}

.structure-info {
  border-radius: 32px;
  padding: 24px;
  max-width: 920px;
  min-height: 309px;
  height: auto;
  background: var(--white);
  margin-bottom: 24px;
}

.structure-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 23px;
}

.structure-top h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
  margin-right: 24px;
}

.structure-top-bonus {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
}

.structure-top-bonus ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.structure-top-bonus {
  max-width: 188px;
  width: 100%;
}

.structure-top-bonus ul li {
  display: flex;
}

.structure-top-bonus ul li span {
  font-weight: 700;
  color: var(--main-blue);
  margin-left: 6px;
}

.structure-top-bonus ul li p {
  font-weight: 700;
  margin-left: 6px;
}

.structure-amount-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
}

.structure-amount {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
}

.structure-amount-result p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.9);
  margin-right: 8px;
}

.structure-amount-result span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
}

.structure-amount-result p {
  margin-right: 8px;
}

.structure-amount-result {
  display: flex;
  align-items: end;
}

.structure-pr span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: var(--main-blue);
  letter-spacing: 0.02em;
}

.structure-pr p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
  border-radius: 32px;
  padding: 2px 5px;
  max-width: 134px;
  height: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D0D5D942;
}

.structure-pr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(204, 214, 228, .6);
  padding-bottom: 12px;
}

.structure-amount {
  margin-bottom: 13px;
}

.item-picture p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--main-blue);
  border-radius: 32px;
  padding: 2px 5px;
  width: 52px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E9ECFD;
}

.structure-bottom-item span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
  text-align: center;
  display: block;
  margin-top: 8px;
}

.item-picture {
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.structure-bottom-item {
  max-width: 128px;
  width: 100%;
}

.structure-bottom {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.structure-bottom-item:not(:last-child) {
  margin-right: 12px;
}

.order-inform {
  border-radius: 32px;
  padding: 24px;
  max-width: 920px;
  height: auto;
  background: var(--white);
  width: 100%;
}

.order-inform-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.01em;
  margin-bottom: 13px;
}


.order-inform-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
}

.detail-order {
  max-width: 412px;
  width: 100%;
  margin-right: 24px;
}

.detail-order ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.transport-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.transport-info {
  max-width: 412px;
  width: 100%;
}


.detail-order-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: #797C83;
}

.detail-order li p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  text-align: right;
  color: rgba(0, 0, 0, 0.9);
}

.detail-order ul li {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.detail-order ul li b {
  color: var(--main-blue);
  font-weight: 500;
  letter-spacing: 0.02em;
}


.transport-info-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: #797C83;
}

.transport-info ul p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  text-align: right;
  color: rgba(0, 0, 0, 0.9);
}


.transport-info ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 13px;
}

.continue-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  border-radius: 8px;
  padding: 6px 8px;
  max-width: 208px;
  width: 100%;
  height: 48px;
  background-color: var(--main-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, border 0.3s ease, background-color 0.3s ease;
  margin-right: 8px;
}

.continue-btn:hover {
  color: #1444E2;
  background-color: white;
  border: 1px solid #1444E2;
}

.repeat-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #1444e2;
  background-color: #E9ECFD;
  border-radius: 8px;
  padding: 6px 10px;
  max-width: 100%;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, border 0.3s ease, background-color 0.3s ease;
  margin-right: 8px;
}

.repeat-btn:hover {
  color: white;
  background-color: #1444E2;
}

.notify-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #1444e2;
  background-color: #E9ECFD;
  border-radius: 8px;
  padding: 6px 16px;
  max-width: 232px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}

.notify-btn:hover {
  color: white;
  background-color: #1444E2;
}

.order-inform-button {
  display: flex;
  align-items: center;
}


/* Orders-page */
.orders-wrapper {
  display: flex;
  justify-content: space-between;
}

.orders-page {
  padding-top: 16px;
}

.profile-box-img {
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 64px;
  aspect-ratio: 1;
  margin-bottom: 4px;
}


.profile {
  border-radius: 32px;
  padding: 24px 13px 20px 28px;
  width: 212px;
  height: auto;
  background-color: white;
  margin-right: 24px;
  max-height: 328px;

}

.profile-box {
  margin-bottom: 24px;
}


.profile-box-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  text-overflow: ellipsis;
  overflow: hidden;
}

.persona-info-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 8px;
}


.persona-info-list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 4px;
}


.persona-info-list li a span {
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
}

.orders-block {
  border-radius: 32px;
  padding: 24px;
  max-width: 1156px;
  background-color: var(--white);
  width: 100%;
}

.orders-block__title {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.orders-block__title p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
}


.orders-block__title h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
  margin-right: 9px;
}

.orders-list {
  border-radius: 32px;
  padding: 24px;
  max-width: 1108px;
  width: 100%;
  box-shadow: 0 14px 64px -4px rgba(24, 39, 75, 0.12), 0 8px 22px -6px rgba(24, 39, 75, 0.12);
  background-color: var(--white);
  margin-bottom: 24px;
}

.received-order p {
  padding: 8px 10px;
  max-width: max-content;
  background-color: #9DDB8142;
  color: #03d31e;
  text-align: center;
  height: auto;
}

.expected-order p {
  padding: 8px 10px;
  max-width: max-content;
  background-color: #e392141c;
  color: #e39214;
  text-align: center;
  height: auto;
}

.transfer-order p {
  padding: 8px 10px;
  max-width: max-content;
  background-color: #1444E20F;
  color: #1444E2;
  text-align: center;
  height: auto;
}

.assembling-order p {
  padding: 8px 10px;
  max-width: max-content;
  background-color: #33afff12;
  color: #33afff;
  text-align: center;
  height: auto;
}

.cancelled-order p {
  padding: 8px 10px;
  max-width: max-content;
  background-color: #ea332314;
  color: #ea3323;
  text-align: center;
  height: auto;
}

.processing-order p {
  padding: 8px 10px;
  max-width: max-content;
  background-color: #D0D5D942;
  color: #797C83;
  text-align: center;
  height: auto;
}

.rate-it {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: var(--main-blue);
  background-color: #E9ECFD;
  border-radius: 8px;
  padding: 6px 10px;
  max-width: 128px;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, border 0.3s ease, background-color 0.3s ease;
  margin-top: 8px;
  letter-spacing: 0.03em;

}

.rate-it:hover {
  color: white;
  background-color: #1444E2;

}

.repeat-btn {
  margin-right: 8px;
}

.activ-block {
  background-color: #EEF1F7;
}


.orders-page .recommendations__block {
  padding: 0;
  max-width: 1108px;
}

.orders-page .recommendations__title {

  font-size: 28px;
  letter-spacing: 0.015em;
}

.orders-page .structure-bottom {
  flex-wrap: wrap;
}

.persona-info-list li a:hover {
  color: #1444E2;
  transition: color 0.3s ease;
}

/* Bonus-page */

.bonus-wrapper {
  display: flex;
  justify-content: space-between;
}

.bonus-block {
  max-width: 1156px;
  width: 100%;
  background-color: white;
  border-radius: 32px;
  padding: 24px 24px 28px 60px;
  display: flex;
  justify-content: space-between;
}

.bonus-info {
  width: calc((100% - (24px *1)) / 2);
}

.bonus-card {
  width: calc((100% - (24px *1)) / 2);
  border-radius: 32px;
  padding: 24px 36px 20px 30px;
}


.bonus-info-item h3 {
  position: relative;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 4px;
  letter-spacing: 0.01em;

}

.bonus-info-item h3::before {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  z-index: 5;
  top: 0;
  left: -36px;
}

.bonus-img-1 h3::before {
  content: url(../img/bonus-icon-1.svg);
}

.bonus-img-2 h3::before {
  content: url(../img/bonus-icon-2.svg);
}

.bonus-img-3 h3::before {
  content: url(../img/bonus-icon-3.svg);
}



.bonus-info-item h3 span {
  color: #1444E2;
  letter-spacing: 0.02em;
}


.bonus-info-item p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: rgba(20, 68, 226, 0.05);
  color: #797C83;
}

.bonus-info-item {
  margin-bottom: 25px;
}

.promocod-txt {
  margin-top: 13px;
}

/* styles.css | http://127.0.0.1:5500/css/styles.css?_cacheOverride=1731056089360 */

.bonus-info-item h3::before {
  top: 0;
  left: -36px;
}

.promocod-txt form {
  display: flex;
}

.promocod-txt .promo-form-btn {
  height: 40px;
  margin: 0;
  max-width: 173px;
  padding: 6px;
}

.promocod-txt .promo-form input {
  max-width: 321px;
  margin-right: 12px;
}

.bonus-info-chart {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.point-chart {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  background-color: #9cc6e17d;
}

.point-chart::before {
  display: block;
  width: 60px;
  height: 40px;
  position: absolute;
  z-index: 5;
  top: -31px;
  left: -11px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.9);
}

.point-chart-basic::before {
  content: 'Basic';
}

.point-chart-silver::before {
  content: 'Silver';
}

.point-chart-gold::before {
  content: 'Gold';
  left: -8px;
}

.point-chart-platinum::before {
  content: 'Platinum';
  left: -22px;
}


.point-blue {
  background-color: #1444E2
}

.tg_logo-href {
  width: 24px;
  vertical-align: middle;
  margin-right: 5px;
}

.category__description a {
  text-decoration: underline;
  color: #1444e2;
}


.line-gray {
  width: 100%;
  height: 4px;
  background-color: #9cc6e17d;
  flex-grow: 1;
}

.silver-card .line-1 {
  background-color: #1444E2
}

.silver-card .point-chart-silver {
  background-color: #1444E2
}

.gold-card .line-1,
.gold-card .line-2 {
  background-color: #1444E2
}

.gold-card .point-chart-silver,
.gold-card .point-chart-gold {
  background-color: #1444E2
}

.platinum-card .line-1,
.platinum-card .line-2,
.platinum-card .line-3 {
  background-color: #1444E2
}

.platinum-card .point-chart-silver,
.platinum-card .point-chart-gold,
.platinum-card .point-chart-platinum {
  background-color: #1444E2
}

.bonus-info-chart {
  height: 85px;
  padding: 24px;
  max-width: 506px;
  width: 100%;
}

.bonus-card-box {
  border: 2px solid var(--main-blue);
  border-radius: 32px;
  padding: 22px 36px 20px 36px;
  max-width: 446px;
  min-height: 212px;
  height: auto;
  width: 100%;
  margin-bottom: 16px;
}

.bonus-card-box h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  margin-bottom: 12px;
}




.card-box-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  text-align: center;
  color: #797C83;
}


.card-box-text span {
  font-weight: 700;
  color: var(--main-blue);
}

.bonus-card-img {
  background-size: 56%;
  width: 100%;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  height: 64px;
  background-position: center;
  margin-top: 17px;
}

.bonus-card-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
  padding: 0 0 0 24px;
  letter-spacing: 0.035em;
}


.bonus-card-description ul {
  margin: 0;
  padding: 0;
  padding-left: 18px;
}

.bonus-card-description ul li {
  margin-bottom: 1px;
}

button,
button:focus,
button:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

label,
label:focus,
label:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.catalog-menu-list a {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.menu-soclinks a {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.wrapper-link {
  margin-bottom: 16px;
}


.load_more {
	max-width: 225px;
	width: 100%;
	height: 44px;
	background: var(--main-blue);
	border-radius: 8px;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	color: var(--white);
	transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
	margin: 0 auto;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-initialized .slick-slide {
  display: flex;
  align-items: stretch;
}

/* Каталог */

.catalog-wrapper {
  display: flex;
  justify-content: space-between;
}

.catalog-page__block {
  border-radius: 32px;
  padding: 24px;
  max-width: 1156px;
  background-color: var(--white);
  width: 100%;
}

.catalog-page__title {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.catalog-page__title h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
  margin-right: 9px;
}

.catalog-page__title p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #797C83;
}


.recommendat-block {
  display: flex;
  flex-wrap: wrap;
}

.recommendat-block .product-cart {
  width: calc((100% - (0px *4)) / 5);
}

/* Основной стиль для фона экрана */
#age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
}

/* Стиль для окна */
.modal-content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 32px;
  padding: 24px;
  max-width: 512px;
  width: 100%;
  height: 291px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Стиль для кнопок */
.modal-button {
  max-width: 224px;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.yes-button {
  background-color: #1444E2;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.yes-button:hover {
  background-color: white;
  border: 1px solid #1444E2;
  color: #1444e2;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.no-button {
  color: var(--main-blue);
  background-color: #F2F5FC;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  margin-right: 16px;
}

.no-button:hover {
  background-color: #1444E2;
  color: white;
}


/* Модалка на возраст */

.modal-content h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
}

.modal-content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.age-box {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  background: var(--main-red);
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.modal-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 23px;
}

.modal-button-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-content span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  display: block;
  margin-bottom: 24px;
}

.modal-content span a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--main-blue);
  transition: color 0.3s ease;
  font-size: 16px;
}

.modal-content span a:hover {
  color: #1036b2;
}

/* ------------- */
.btn-pattern {
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-blue);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;

}

.confirmation-number {
  border-radius: 32px;
  padding: 24px 24px 12px 24px;
  max-width: 375px;
  min-height: 353px;
  background: var(--white);
  height: 100%;
  position: relative;
}


.confirmation-number label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
  display: block;
  width: 86%;
  margin-bottom: 13px;
}

.confirmation-number p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 24px;
}

.confirmation-number input {
  border: 2px solid #797C837D;
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 24px;
}

.confirmation-number button {
  width: 100%;
  height: 48px;
  background-color: var(--main-blue);
  color: var(--white);
}

.confirmation-number button:hover {
  color: #1444E2;
  background-color: white;
  border: 1px solid #1444E2;
}

.confirmation-number-close {
  background-color: #e3e3e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 24px;
  right: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.confirmation-number-close:hover {
  color: #1444e2;

}

/* Элемент | http://127.0.0.1:5500/addition.html */

.confirmation-code {
  border-radius: 32px;
  padding: 24px 24px 12px 24px;
  max-width: 375px;
  min-height: 381px;
  background: var(--white);
  height: 100%;
  position: relative;
}

.confirmation-code label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
  width: 75%;
  display: block;
  margin-bottom: 13px;
}

.confirmation-code-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 24px;
}

.confirmation-code-text a {
  font-weight: 700;
  color: var(--main-blue);
}


.confirmation-code input {
  border: 2px solid #797C837D;
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 24px;
}

.login-btn {
  width: 100%;
  height: 48px;
  background-color: var(--main-blue);
  color: var(--white);
  margin-bottom: 8px
}

.repeat-conf-btn {
  width: 100%;
  height: 48px;
  background-color: #F2F5FC;
  color: #1444E2;
}

.repeat-conf-btn:hover {
  background-color: #1444E2;
  color: white;
}



.personal-info {
  border-radius: 32px;
  padding: 24px 24px 12px 24px;
  max-width: 375px;
  min-height: 389px;
  background: var(--white);
  height: 100%;
  position: relative;
}


.personal-info label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  width: 88%;
  display: block;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.personal-info-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 24px;
}


.personal-info-name {
  border: 2px solid #797C837D;
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 12px;
}

.personal-info-tel {
  border: 2px solid #797C837D;
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 24px;
}

.login-btn:hover {
  color: #1444E2;
  background-color: white;
  border: 1px solid #1444E2;
}




.registr-btn {
  width: 100%;
  height: 48px;
  color: var(--white);
  margin-bottom: 8px
}

.registr-btn:hover {
  color: #1444E2;
  background-color: white;
  border: 1px solid #1444E2;
}

/* Блок отзывов, оценка */

.star-rating {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.star-item {
  font-size: 2em;
  cursor: pointer;
  color: lightgray;
  transition: color 0.2s;
  margin-right: 4px;
}

.star-item.filled {
  color: gold;
  /* Цвет заполненных звезд */
}


.new-reviews {
  border-radius: 32px;
  padding: 24px;
  max-width: 684px;
  height: 618px;
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  position: relative;
}

.new-reviews h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.new-reviews p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.new-reviews-descr {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: #797C83;
}

.new-reviews-box {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 17px;
  max-width: 636px;
  height: auto;
  background-color: #F2F5FC;
  margin-bottom: 16px;

}

.info-badge {
  display: block;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #797C83;
  border-radius: 50%;
  font-size: 13px;
  color: white;
  font-weight: 600;
  margin-right: 13px;
}

.estimation {
  display: flex;
  margin-bottom: 19px;
}

.estimation-box {
  display: flex;
  align-items: center;
  max-width: 272px;
  width: 100%;
  border-right: 1px solid #797C83;
}



.estimation-quash {
  display: flex;
  align-items: center;
  color: #797C83;
  transition: color 0.3s ease;
  padding: 0 16px 0 12px;
  margin-left: 12px;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.estimation-quash:hover {
  color: #1444E2;
  background-color: #EAEDF4;
}

.estimation-quash svg {
  margin-right: 12px;
}

.textarea-pattern {
  border: 2px solid #797C837D;
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 12px;
  resize: none;
}

.textarea-comment {
  min-height: 128px;
  height: auto;
  margin-bottom: 24px;
}

.estimation-btn {
  height: 48px;
  color: white;

}

.estimation-text {
  color: inherit;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
}

.estimation-descr {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: #797C83;
}

.estimation-btn:hover {
  background-color: white;
  border: 1px solid #1444E2;
  color: #1444E2;
}

.bonus-silver {
  border: 2px solid #d4d5d6;
  background: linear-gradient(225deg, #f2f3f4 0%, #e3e4e5 100%);
}

.bonus-gold {
  border: 2px solid #ffd700;
  background: linear-gradient(225deg, #fcf6ba 0%, #bf953f 100%);
}

.bonus-platinum {
  border: 2px solid #6f6d7c;
  background: linear-gradient(225deg, #5e5c6c 0%, #797593 31.93%, #747189 66.5%, #373542 100%);
}

.bonus-silver .card-box-text {
  color: black;

}

.bonus-gold .card-box-text {
  color: black;

}

/* styles.css | http://127.0.0.1:5500/css/styles.css */

.bonus-platinum .card-box-text {
  color: white;
}

.bonus-platinum .card-box-text span {
  color: white;
}

.bonus-platinum h3 {
  color: white;
}

.header-btn-active {
  color: #1444E2;
}

/* Форма оплаты */

.form-payment {
  border-radius: 32px;
  padding: 24px;
  max-width: 500px;
  width: 100%;
  height: auto;
  background-color: white;
}

.form-payment-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.04em;
  margin-bottom: 25px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.form-payment-time span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--main-blue);
  padding: 6px;
  width: 68px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EAEDF4;
  flex-shrink: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-payment-time p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-left: 8px;
  letter-spacing: 0.04em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-payment-time {
  display: flex;
  align-items: center;
  border-radius: 8px;
  max-width: 452px;
  height: 48px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 23px;
  background-color: rgba(20, 68, 226, 0.05);
}

.form-payment-input {
  border: 2px solid var(--white);
  border: 2px solid #797C837D;
  border-radius: 8px;
  padding: 12px;
  max-width: 452px;
  height: 48px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.form-payment-input input {
  border: none;
  width: 100%;
  letter-spacing: 0.01em;
  font-weight: 700;
  outline: none;
}

.form-payment-invoice p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.004em;
  height: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-payment-input button:hover {
  color: #1444E2;
  transition: transform 0.3s ease;
}

.form-payment-input button:active {
  transition: color 0.3s ease;
  -webkit-transform: scale(0.90);
  -ms-transform: scale(0.90);
  transform: scale(0.90);
}

.form-payment-box {
  background-color: #ddbb07;
  border-radius: 8px;
  padding: 8px 16px;
  max-width: 452px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.form-payment-badge {
  display: block;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: var(--white);
  margin-right: 13px;
  color: #ddbb07;
  background-color: white;
  border-radius: 50%;
}

.form-payment-descr {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: var(--white);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-payment-amount p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 14px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



.form-payment-corr {
  background-color: rgba(20, 68, 226, 0.05);
  border-radius: 8px;
  padding: 8px 16px;
  max-width: 452px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.text-black {
  color: #797C83;

}

.badge-gray {
  background-color: #797C83;
  color: white;
}

.form-payment-info {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0.01em;
  margin-bottom: 25px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cancel-pay {
  border-radius: 8px;
  padding: 8px 16px;
  max-width: 452px;
  height: 48px;
  width: 100%;
  background: var(--main-red);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  border: 1px solid #ce1302;
}

.cancel-pay:hover {
  color: #ce1302;
  background-color: white;
  border: 1px solid #ce1302;
}

.cancel-pay:active {
  background-color: #ce1302;
  color: white;
}

.form-payment-waiting p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  color: #797C83;
}



.form-payment-waiting {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.payment-waiting {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 640px;

}

.payment-waiting h4 {
  margin-bottom: 0;
}

.payment-waiting .form-payment-waiting svg {
  margin-bottom: 14px;
}

.payment-waiting .form-payment-title {
  margin-bottom: 0;
}

.form-payment-waiting p {
  max-width: 412px;
  width: 100%;
  margin-bottom: 8px;
}

.requisite p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  color: #797C83;
  margin-bottom: 4px;
}

.requisite span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
}

.requisite-bank {
  margin-top: 13px;
  margin-bottom: 11px;
}

.requisite-name {
  margin-bottom: 15px;
}

.non-payment-descr {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 137%;
  text-align: center;
  color: #797C83;
  border-radius: 8px;
  padding: 8px 10px;
  width: 100%;
  min-height: 74px;
  height: auto;
  background-color: rgba(20, 68, 226, 0.05);
  margin-bottom: 24px;

}

.non-payment-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 41px 0px 0 0;
}

.non-payment-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  margin: 10px 0 12px 0;
  letter-spacing: 0.015em;
}


.non-payment-box svg {
  margin-right: 11px;
}

.back-order {
  border-radius: 8px;
  padding: 8px 10px;
  width: 100%;
  height: 48px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1444E2;
  transition: color 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}

.back-order:hover {
  color: #1444E2;
  background-color: white;
  border: 1px solid #1444e2;
}

.back-order:active {
  color: white;
  background-color: #1444e2;
  border: none;
}

.help-box-info {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 137%;
  color: var(--main-blue);
}

.help-box-info p {
  font-weight: 700;
}

.help-box-info span {
  font-weight: 500;
}

.help-box {
  display: flex;
  align-items: center;
  background-color: rgba(20, 68, 226, 0.05);
  border-radius: 8px;
  padding: 10px 16px;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.non-payment-support {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: start;
}

.support-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-blue);
  border-radius: 8px;
  padding: 8px;
  max-width: 287px;
  height: auto;
  width: 100%;
  background-color: rgba(20, 68, 226, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.support-btn:hover {
  color: white;
  background-color: #1444E2;
}


/* Загрузка с превью скринов */
.input-file-row {
  display: inline-block;
}

.input-file {
  position: relative;
  display: inline-block;
}

.input-file span {
  position: relative;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  margin: 0;
  transition: background-color 0.2s;
  height: auto;
  display: flex;
  align-items: center;
  background-color: #1444E2;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: white;
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
  border: 1px solid #1444E2;
}


.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}



/* Hover/active */
.input-file:hover span {
  background-color: white;
  color: #1444e2;
  border: 1px solid #1444E2;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}


/* Disabled */
.input-file input[type=file]:disabled+span {
  background-color: #eee;
}

/* Список c превью */
.input-file-list {
  padding: 10px 0;
}

.input-file-list-item {
  display: inline-block;
  margin: 0 15px 15px;
  width: 150px;
  vertical-align: top;
  position: relative;
}

.input-file-list-item span {
  display: none;
}

.input-file-list-item img {
  width: 150px;
}

.input-file-list-name {
  text-align: center;
  display: block;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
}

.input-file-list-remove {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 5px;
  right: 5px;
  background: #ff0202;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  border-radius: 50%;
}

.non-payment-support form {
  width: 100%;
  max-width: 152px;
  margin-right: 12px;
}

.help-box {
  margin-bottom: 25px;
}

.input-file-row {
  width: 100%;
}

.input-file {
  width: 100%;
  margin-bottom: 20px;
}


.input-file-list-item span {
  display: none;
}

.input-file-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.input-file-list-item {
  margin: 0;
  width: calc((100% - (12px *1)) / 2);
}

.input-file-list-item button {
  position: absolute;
  top: 30%;
  left: 27%;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 33px;
  height: 33px;
  background-color: #00BE06;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.7979 0.435023C13.11 0.707434 13.1421 1.18122 12.8697 1.49325L5.01254 10.4933C4.87012 10.6564 4.66412 10.75 4.44756 10.75C4.23099 10.75 4.02499 10.6564 3.88257 10.4933L0.73971 6.89325C0.4673 6.58122 0.499421 6.10743 0.811455 5.83502C1.12349 5.56261 1.59728 5.59473 1.86969 5.90677L4.44756 8.8596L11.7397 0.506767C12.0121 0.194733 12.4859 0.162612 12.7979 0.435023Z' fill='white' /%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color 0.3s ease;
}

.input-file-list-item button:hover {
  background-color: #ea3323;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.676701 1.07514C0.969594 0.782245 1.44447 0.782245 1.73736 1.07514L7.10159 6.43936L12.4658 1.07519C12.7587 0.782293 13.2335 0.782293 13.5264 1.07519C13.8193 1.36808 13.8193 1.84295 13.5264 2.13585L8.16225 7.50002L13.5264 12.8642C13.8193 13.157 13.8193 13.6319 13.5264 13.9248C13.2335 14.2177 12.7586 14.2177 12.4657 13.9248L7.10159 8.56068L1.73741 13.9249C1.44452 14.2178 0.969644 14.2178 0.676751 13.9249C0.383858 13.632 0.383858 13.1571 0.676751 12.8642L6.04093 7.50002L0.676701 2.1358C0.383808 1.84291 0.383808 1.36803 0.676701 1.07514Z' fill='white' /%3e%3c/svg%3e");
}

.footer__container.container {
	justify-content: space-between;
}


.link-ultra {
	background-image: url(../img/ultra.png);
	background-position: 87% 4px;
	background-size: 40%;
}
.link-extrim {
	background-image: url(../img/extrim.png);
	background-position: 87% 4px;
	background-size: 40%;
}
.link-hight {
	background-image: url(../img/hight.png);
	background-position: 87% 4px;
	background-size: 40%;
}
.link-middle {
	background-image: url(../img/middle.png);
	background-position: 87% 4px;
	background-size: 40%;
}
.link-low {
	background-image: url(../img/low.png);
	background-position: 87% 4px;
	background-size: 40%;
}


.color-ultra {
  background: linear-gradient(250.93deg, #97291B 8.02%, #862118 31.23%, #771A14 53.18%, #641211 79.17%, #570C0E 97.63%);
}

.color-extrim {
  background: linear-gradient(246.44deg, #EA3323 13.41%, #D53121 32.28%, #C02F1F 51.51%, #AB2C1D 72.59%, #97291B 87.39%);
}

.color-hight {
  background: linear-gradient(242.75deg, #FF9900 14.11%, #FF9305 28.52%, #FF8D0B 42.92%, #F17E09 57.53%, #D56604 72.35%, #B94E00 87.16%);
}

.color-middle {
  background: linear-gradient(242.75deg, #FFDD00 14.11%, #FFCC00 32.66%, #FFBC00 49.46%, #FFA900 69.55%, #FF9900 87.16%);
}

.color-low {
  background: linear-gradient(242.75deg, #8EF600 14.11%, #6AE305 32.66%, #49D20A 49.46%, #2AC10E 65.53%, #00AB14 87.16%);
}


.tips {
  position: absolute;
  top: 9px;
  width: 100%;
  max-width: 100% !important;
  font-size: 10px;
  background: #1444E2;
  width: auto;
  padding: 2px 5px;
  border-radius: 5px;
}

.header__bottom-item {
  position: relative;
}



@media (max-width:1400px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width:1350px) {

  .product-content {
    width: 70%;
  }

  .product-page__content .product-img {
    margin-right: 24px;
  }

  .recommendat-block .product-cart-top {
    background-position: center;
  }

}

@media (max-width:1250px) {

  .basket-page__box-top {
    flex-direction: column;
    align-items: start;
  }

  .inform-bottom {
    margin-bottom: 16px;
  }

  .basket-page__box-top .discount-item {
    margin-left: 0;
    margin-right: 0.73em;
  }

  .product-discount {
    margin-left: -7px;
  }

  .crate .wrapper-link {
    margin-right: 12px;
  }

  .crate-ihfo-price {
    margin-right: 12px;
  }

  .recommendat-block .product-cart {
    width: calc((100% - (0px *3)) / 4);
  }
}

@media (max-width:1200px) {
  .advantage {
    padding: 24px 20px;
  }

  .suggestion__block .product-cart {
    width: calc((100% - (0px *3)) / 4);
  }

  .suggestion .product-cart:nth-child(n+9) {
    display: none;
  }

  .sales-hit__block .product-cart {
    width: calc((100% - (0px *3)) / 4);
  }

  .sales-hit__block .product-cart:nth-child(n+5) {
    display: none;
  }

  .category__block .product-cart {
    width: calc((100% - (0px *3)) / 4);
  }

  .delivery-discounts {
    align-items: start;
    margin-bottom: 12px;
    flex-direction: column;
  }

  .delivery .cart-scores {
    margin-bottom: 12px;
  }

  .delivery .cart-sale {
    margin-bottom: 12px;
  }

  .product-page__content .product-img {
    background-size: 75%;
    margin-right: 24px;
  }

  .inform li p {
    width: calc((135% - (14px *1)) / 2);
  }

  .basket-page__block {
    flex-direction: column;
  }

  .basket-page__box-top {
    flex-direction: initial;
  }

  .basket-page__box {
    margin-bottom: 24px;
  }

  .orders-page .recommendations__block .product-cart {
    width: calc((100% - (24px *2)) / 3);
  }

  .orders-page .recommendations__block .product-cart:not(:nth-child(4n)) {
    margin-right: 0;
  }

  .orders-page .recommendations__block .product-cart:not(:nth-child(3n)) {
    margin-right: 24px;
  }

  .bonus-card-description {
    padding: 0;
  }



}


@media (max-width:1100px) {
  .bonus-card {
    padding: 24px 0px 20px 10px;
  }

  .promocod-txt form {
    flex-direction: column;
  }

  .promocod-txt .promo-form input {
    margin-right: 12px;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .recommendations__block .product-cart-top {
    background-position: center;
  }

  .recommendat-block .product-cart {
    width: calc((100% - (0px *2)) / 3);
  }
}

@media (max-width:1024px) {



  .advantage .product-cart:nth-child(n+3) {
    display: none;
  }

  .advantage {
    padding: 24px;
  }


  .advantage .product-cart:not(:last-child) {
    margin-right: 0;
  }

  .product-page__content .product-img {
    background-size: 80%;
  }

  .product-box {
    flex-direction: column;
  }

  .inform {
    width: 100%;
  }

  .delivery {
    width: 100%;
  }

  .delivery-discounts {
    flex-direction: inherit;
  }

  .product-content {
    width: calc((100% - (24px *1)) / 2);
  }

  .booked__picture {
    display: none;
  }

  .structure {
    max-width: 100%;
  }

  .booked__box {
    max-width: 100%;
    margin-right: 0;
  }

  .order-inform {
    max-width: 100%;
  }

  .structure-bottom-item {
    margin-bottom: 12px;
  }

  .bonus-block {
    flex-direction: column;
  }

  .bonus-info {
    width: 100%;
  }

  .promocod-txt form {
    flex-direction: unset;
  }

  .promocod-txt .promo-form input {
    margin-right: 12px;
  }

  .bonus-card {
    width: 100%;
  }

  .making-pay-box {
    flex-wrap: wrap;
  }

  .making-pay-box label {
    margin-bottom: 8px;
  }

  .product-cart-top {
    background-position: center;
  }

  .advantage-box .product-cart-top {
    background-position: center;
  }


}

@media (max-width:992px) {


  .link-1,
  .link-2,
  .link-3,
  .link-4,
  .link-5,
  .link-7 {
    background-size: 50%;
  }

  .link-6 {
    background-size: 78%;
  }

  .header__bottom ul a {
    font-size: 10px;
  }

  .slide-item {
    padding: 48px 60px 0 60px;
  }

  .slide-item h2 {
    font-size: 45px;
  }

  .suggestion__box {
    padding: 24px 24px;
  }

  .advertisement-block {
    padding: 24px;
  }

  .sales-hit {
    padding: 24px 24px 16px 24px;
  }

  .basket-page__box-top {
    flex-direction: column;
  }

  .basket-page__box {
    margin-right: 0;
  }

  .orders-page .recommendations__block .product-cart:not(:nth-child(3n)) {
    margin-right: 16px;
  }

  .orders-page .recommendations__block .product-cart {
    width: calc((100% - (16px *2)) / 3);
  }

  .suggestion__block .product-cart {
    width: calc((100% - (0px *2)) / 3);
  }

  .sales-hit__block .product-cart {
    width: calc((100% - (0px *2)) / 3);
  }

  .suggestion .product-cart:nth-child(n+7) {
    display: none;
  }

  .sales-hit__block .product-cart:nth-child(n+4) {
    display: none;
  }

  .category__block .product-cart {
    width: calc((100% - (0px *2)) / 3);
  }

  .recommendations__block .product-cart {
    width: calc((100% - (24px *2)) / 3);
  }

  .recommendations__block .product-cart:not(:nth-child(4n)) {
    margin-right: 0;
  }

  .recommendations__block .product-cart:not(:nth-child(3n)) {
    margin-right: 24px;
  }

  .recommendations .product-cart {
    max-width: 290px;
  }


  .orders-wrapper .recommendations__block .product-cart-top {
    height: 198px;
  }

  .orders-wrapper .recommendations__block .favourites-btn {
    top: 10px;
  }

  .catalog-page .catalog-page__block {
    padding: 12px;
  }

.tips {
  position: static;
  top: 39px;
  width: 100%;
  max-width: 100% !important;
  font-size: 10px;
  background: #1444E2;
  width: auto;
  padding: 2px 5px;
  border-radius: 5px;
}

.header__bottom-item {
  position: relative;
}

.link-extrim {
  background-size: 60%;
}

.header__bottom ul a {
  align-items: start;
  flex-wrap: wrap;
  flex-flow: column nowrap;
  justify-content: flex-end;
}

.link-ultra {
  background-size: 60%;
}

.link-hight {
  background-size: 60%;
}

.link-middle {
  background-size: 60%;
}


.link-low {
  background-size: 60%;
}

}

@media (max-width:840px) {

  .header-search-btn {
    max-width: 44px;
  }

  .header-search-btn {
    max-width: 44px;
  }

  .header__button {
    margin-left: 20px;
    max-width: 210px;
  }

  .header__catalog-btn {
    margin-right: 20px;
  }


  .advantage {
    flex-direction: column;
  }

  .advantage-banner {
    max-width: 95%;
    aspect-ratio: 1.95;
    margin: 0 auto;
    margin-bottom: 16px;
  }

  .advantage-banner-2 {
    max-width: 95%;
    aspect-ratio: 1.95;
    margin: 0 auto;
    margin-top: 16px;
  }

  .advantage .product-cart:nth-child(n+3) {
    display: block;
  }

  .advantage-title {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.9);
    letter-spacing: 0.03em;
    margin: 0 24px;
    margin-bottom: 16px;
  }

  .advantage-block h3 {
    display: none;
  }

  .advantage-block h3 {
    display: none;
  }

  .advantage-banner {
    margin-bottom: 16px;
  }

  .advantage-block {
    max-width: 100%;
    width: auto;
  }

  .brends-top-cart {
    width: auto;
    font-size: 18px;
    padding: 0 5px 0 102px;
  }


  .suggestion__block .product-cart {
    width: calc((100% - (0px *2)) / 3);
  }

  .sales-hit__block .product-cart {
    width: calc((100% - (0px *2)) / 3);
  }

  .suggestion .product-cart:nth-child(n+7) {
    display: none;
  }

  .suggestion .product-cart:nth-child(n+7) {
    display: none;
  }

  .sales-hit__block .product-cart:nth-child(n+4) {
    display: none;
  }

  .banner-1 {
    aspect-ratio: 3.64;
  }

  .banner-2 {
    aspect-ratio: 3.64;
  }

  .advantage .product-cart:first-child {
    margin-right: 0;
  }

  .reviews-box {
    flex-direction: column;
  }

  .reviews-box {
    flex-direction: column-reverse;
  }

  .reviews-sidebar {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .sidebar-base-scale {
    max-width: 100%;
  }

  .recommendations__block .product-cart {
    width: calc((100% - (16px *2)) / 3);
  }

  .recommendations__block .product-cart:not(:nth-child(4n)) {
    margin-right: 0;
  }

  .recommendations__block .product-cart:not(:nth-child(3n)) {
    margin-right: 16px;
  }

  .profile {
    margin-bottom: 24px;
  }

  .orders-wrapper {
    flex-direction: column;
  }

  .profile {
    width: 100%;
    margin-right: 0;

  }

.persona-info-text {
	display: none;
}

.persona-info-list.list-reset {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 15px;
	justify-content: center;
}

.activ-block {
	background-color: transparent;
	text-decoration: underline;
}

.profile {
	margin-bottom: 0;
	border-radius: 0;
}

.persona-info-list.list-reset li {
	background: #E9ECFD;
	
	border-radius: 9px;
	color: var(--main-blue);
	font-weight: bold;
}

.persona-info-list.list-reset li a {
	padding: 5px 17px;
	opacity: 0.7;
}


.profile-box {
  text-align: center;
}

.profile {
	padding-bottom: 35px;
}

.profile-box-img {
  margin: 0 auto !important;
}


.persona-info-list.list-reset li a.activ-block {
	opacity: 1;
}

.profile {
	margin-bottom: 0 !important;
}

  html {
    overflow-x: hidden;
  }

  .product-page__content .product-img {
    background-size: 90%;
  }

  .catalog-page .catalog-page__title {
    margin-bottom: 12px;
  }

  .product-info {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .wrapper-link {
    margin-bottom: 14px;
  }

  .crate-ihfo-content {
    flex-wrap: wrap;
  }

  .crate-item .product-info a {
    margin-right: 0;
  }

  .crate-check {
    margin-right: 16px;
  }



}

@media (max-width:768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header__bottom ul li {
    height: 96px;
    width: 96px;
  }

  .link-2,
  .link-3,
  .link-5,
  .link-7 {
    background-size: 68%;
  }

  .link-1 {
    background-size: 77%;
  }

  .link-4 {
    background-size: 73%;
  }

  .link-6 {
    background-size: 112%;
  }

  .link-6 {
    background-position: 0px 0px;
  }

  .header__bottom ul li {
    width: 100%;
    min-width: 96px;
    display: inline-block;
  }

  .header__bottom ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .header__bottom ul::-webkit-scrollbar {
    display: none;
  }

  .header__catalog-btn {
    padding: 5px;
    width: 44px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }

  .header__catalog-btn svg {
    margin-right: 0;
  }

  .header__catalog-btn span {
    display: none;
  }

  .slide-item h2 {
    font-size: 38px;
  }

  .slide-item div {
    font-size: 18px;
  }

  .advantage-title {
    margin: 0 0 16px 0;
  }

  .advantage-banner {
    margin: 0 0 16px 0;
    max-width: 100%;
  }

  .advantage-banner-2 {
    max-width: 100%;
    margin: 16px 0 0px 0;
  }

  .advantage-block {
    margin: 0;
  }

  .brends-top {
    flex-direction: column;
  }

  .brends-top-cart {
    height: 90px;
    width: 100%;
    font-size: 20px;
  }

  .brends-bottom-box {
    flex-wrap: wrap;
  }

  .brends-cart {
    width: calc((100% - (24px *2)) / 3);
    margin-bottom: 12px;
    padding: 0;
  }

  .brends {
    padding: 24px;
  }

  .advertisement-block {
    flex-direction: column;
  }

  .advertisement-item {
    width: 100%;
    margin-bottom: 24px;
  }

  .advertisement-block {
    padding: 24px 24px 0 24px;
    margin-bottom: 24px;
  }

  .sales-hit {
    margin-top: 0;
  }

  .footer__logo {
    max-width: 100%;
  }

  .footer__container {
    flex-wrap: wrap;
  }

  .footer__info,
  .footer__help,
  .footer__payments {
    width: calc((100% - (24px *2)) / 3);
  }

  .footer__logo-link img {
    margin-bottom: 40px;
  }

  /* styles.css | http://127.0.0.1:5500/css/styles.css */

  .footer__info,
  .footer__help {
    width: calc((80% - (24px *2)) / 3);
  }

  .footer__container {
    justify-content: space-between;
  }

  .footer__payments {
    width: calc((120% - (24px *2)) / 3);
  }

  .advantage .product-cart:not(:last-child) {
    margin-right: 4px;
  }

  .product-content {
    width: 55%;
  }

  /*  */



  /*  */

  .product-info a {
    margin-bottom: 8px;
  }



  .making-order__block {
    flex-direction: column;
  }

  .aside-block {
    display: flex;
    justify-content: space-between;
  }

  .aside-block-container {
    max-width: 100%;
    width: calc((125% - (16px *1)) / 2);
  }

  .aside-block-promo {
    max-width: 100%;
    width: calc((75% - (16px *1)) / 2);
  }

  .order-inform-box {
    flex-direction: column;
  }

  .detail-order {
    max-width: 100%;
    margin-right: 0;
  }

  .transport-info {
    max-width: 100%;
  }


  .recommendations__block .product-cart-top {
    height: 210px;
  }

  .recommendations__block .favourites-btn {
    top: 5px;
  }

  .product-img {
    background-position: top;
  }

  .product-page__content .product-img {
    background-size: 95%;
  }



}

@media (max-width:720px) {
  .header__button {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: white;
    max-width: 100%;
    width: 100%;
    justify-content: space-around;
    margin-left: 0;
    min-height: 77px;
    height: auto;
    padding-top: 10px;
  }

  .header__button-main {
    display: flex;
  }

  .support-serv {
    bottom: 80px;
    right: 10px;
  }

  .header__catalog-menu {
    width: 100%;
  }

  .footer__container {
    padding: 48px 16px 100px 16px;

  }

  .category__bottom-box {
    display: none;
  }

  .category__bottom {
    justify-content: space-between;
  }

  .offers .offering__similar .product-cart-top {
    margin: 0 auto;
  }

  .header__button {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 -9px 16px rgba(0, 0, 0, 0.15);
  }

  .basket-page .arrange {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 -9px 16px rgba(0, 0, 0, 0.15);
  }



}

@media (max-width:640px) {
  .slide-item h2 {
    font-size: 30px;
  }

  .slide-item div {
    font-size: 16px;
  }


  .advantage .product-cart:nth-child(n+3) {
    display: none;
  }

  .advantage-box {
    justify-content: space-between;
  }

  .product-cart {
    max-width: 100%;
    width: calc((100% - (16px *1)) / 2);
  }

  .product-cart:not(:last-child) {
    margin-right: 0;
  }

  .suggestion__block .product-cart {
    width: calc((100% - (0px *1)) / 2);
  }

  .category__description {
    padding-bottom: 24px;
  }

  .sales-hit__block .product-cart {
    width: calc((100% - (0px *1)) / 2);
  }

  .sales-hit__block .product-cart:nth-child(n+4) {
    display: flex;
  }

  .slide-item-1 {
    background-position: center;
  }

  .advantage .product-cart:not(:last-child) {
    margin-right: 0;
  }

  .product-remains div {
    max-width: 155px;
    width: 100%;
  }

  .category__block .product-cart {
    width: calc((100% - (0px *1)) / 2);
  }

  .product-page__content {
    flex-direction: column;
  }

  .product-page__content .product-img {
    background-size: 67%;
    width: 100%;
  }

  .product-content {
    width: 100%;
  }

  .offering .slick-track {
    display: flex;
  }

  .product-page__content .product-img {
    margin-right: 0;
    margin-bottom: 60px;
  }

  .product-box-link {
    left: 0;
  }

  .offering .favourites-btn {
    top: 16px;
  }

  .crate-check {
    height: 130px;
  }

  .basket-page__box-top .discount-item {
    width: 42px;
  }

  .basket-page__box-top .discount-item {
    margin-right: 0.3em;
  }

  .recommendations__block .product-cart {
    width: calc((100% - (16px *1)) / 2);
  }

  .recommendations__block .product-cart:not(:nth-child(3n)) {
    margin-right: 0px;
  }

  .recommendations__block .product-cart:not(:nth-child(2n)) {
    margin-right: 16px;
  }

  .aside-block {
    flex-direction: column-reverse;
  }

  .aside-block-container {
    width: 100%;
  }

  .aside-block-promo {
    max-width: 330px;
    width: 100%;
    margin-bottom: 24px;
  }

  .structure-top {
    flex-direction: column;
  }

  .structure-top h2 {
    margin-bottom: 12px;
  }

  .order-inform-button {
    flex-direction: column;
  }

  .continue-btn {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .repeat-btn {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .notify-btn {
    max-width: 100%;
  }

  .similar-block {
    margin: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .offering__similar .product-cart {
    margin: 0;
  }

  .offering__similar .product-cart:nth-child(n+7) {
    display: none;
  }

  .orders-page .recommendations__block .product-cart {
    width: calc((100% - (16px *1)) / 2);
  }

  .orders-page .recommendations__block .product-cart:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .orders-page .recommendations__block .product-cart:not(:nth-child(2n)) {
    margin-right: 16px;
  }

  .recommendat-block .product-cart {
    width: calc((100% - (0px *1)) / 2);
  }

}

@media (max-width:576px) {
  .slide-item h2 {
    font-size: 26px;
  }


  .promo-codes {
    flex-direction: column;
    border-radius: 32px;
    background-position: center;
  }

  .promo-codes div {
    margin: 0;
    max-width: 488px;
    margin-bottom: 16px;
  }

  .footer__payments {
    max-width: 100%;
    width: 100%;
    margin-top: 24px;
  }

  .footer__info,
  .footer__help {
    width: calc((100% - (24px *1)) / 2);
  }

  .footer__info {
    margin-right: 0;
  }

  .footer__logo {
    margin-right: 0;
  }

  .footer__help {
    margin-right: 0;
  }

  .category__bottom {
    flex-direction: column;
  }


  .category__block {
    padding-bottom: 24px;
    margin-top: 25px;
  }


  .category__bottom-back {
    margin-right: auto;
  }

  .pagination-block {
    margin-top: 24px;
  }

  .reviews-info-img {
    margin: 0 16px 0 15px;
  }

  .product-page__content .product-img {
    background-size: 75%;
  }

  .crate-ihfo-content {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .crate-ihfo-price {
    margin-bottom: 8px;
  }

  /* --- */

  .profile {
    width: 100%;
    margin-right: 0;
  }

  .profile {
    padding: 16px;
  }

  .profile {
    margin-bottom: 16px;
  }

  .orders-block {
    padding: 16px;
  }

  .orders-list {
    padding: 16px;
    margin-bottom: 16px;
  }

  .structure-bottom-item {
    max-width: 101px;
  }

  .item-picture {
    width: 101px;
    height: 109px;
  }

  .rate-it {
    padding: 6px 2px;
  }

  /* --- */
  .promocod-txt form {
    flex-direction: column;
  }

  .basket-page__box-top .discount-item {
    margin-right: 0;
  }

  .product-page__block .product-img {
    background-position: center;
  }


  .modal-content {
    max-width: 375px;
    height: 465px;
  }

  .modal-button-box {
    margin-top: auto;
    flex-direction: column;
  }

  .modal-button {
    max-width: 100%;
  }

  .no-button {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .confirmation-number {
    padding: 24px 24px 24px 24px;
    /* min-height: 667px; */
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .confirmation-number button {
    margin-top: auto;
  }

  .confirmation-code {
    min-height: 400px;
    display: flex;
    flex-direction: column;
  }

  .login-btn {
    margin-top: auto;
  }

  .personal-info {
    min-height: 667px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
  }

  .registr-btn {
    margin-top: auto;
  }

  .new-reviews {
    max-width: 375px;
    height: 735px;
  }

  .new-reviews h3 {
    width: 90%;
  }

  .estimation {
    margin-bottom: 27px;
    flex-direction: column;
  }

  .estimation-box {
    border-right: none;
    margin-bottom: 8px;
  }

  .new-reviews-box {
    margin-bottom: 17px;
  }

  .estimation-quash {
    padding: 0 16px 0 0px;
    margin-left: 0;
  }

  .confirmation-code {
    padding: 24px;
  }

  .login-btn {
    margin-bottom: 16px;
  }

  input {
    font-size: 16px !important;
  }


}

@media (max-width:480px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
	.basket-page__box-top .inform-bottom {
		padding: 0 15px;
	}
  .slide-item h2 {
    font-size: 20px;
    font-weight: 700;
  }

  .slide-item {
    height: 254px;
    background-position: center;
    border-radius: 32px;
  }

  .slide-item {
    padding: 24px 55px;
  }

  .banner-1 {
    aspect-ratio: 1.95;
  }

  .banner-2 {
    aspect-ratio: 1.95;
  }

  .advertisement-item {
    aspect-ratio: 1.95;
  }

  .header__logo {
    margin-right: 12px;
    max-width: 45px;
    margin-top: 4px;
  }

  .header {
    padding: 4px 0;
  }

  .header__catalog-btn {
    margin-right: 12px;
  }

  .header-search-btn {
    margin-top: 3px;
  }

  .header__bottom {
    margin-top: 0px;
  }

  .header__bottom ul li:not(:last-child) {
    margin-right: 8px;
  }

  .link-1 {
    background-size: 85%;
    background-position: 19px 0px;
  }

  .header__bottom ul a {
    line-height: 112%;
    padding: 9px 12px;
    letter-spacing: 0;
  }

  .link-2 {
    background-position: 24px 0px;
    background-size: 75%;
  }

  .link-3 {
    background-position: 16px 2px;
    background-size: 84%;
  }


  .header__bottom ul {}

  .link-4 {
    background-size: 82%;
    background-position: 25px 0px;
  }

  .link-5 {
    background-position: 15px 2px;
    background-size: 79%;
  }

  .link-6 {
    background-size: 121%;
    background-position: -5px 0px;
  }

  .link-7 {
    background-size: 74%;
  }


  .slide-item {
    padding: 46px 15px;
  }

  .slide-item h2 {
    letter-spacing: 0.01em;
  }

  .slide-item div {
    max-width: 256px;
    margin: 0 auto;
    margin-top: 16px;
    margin-bottom: 15px;
  }

  .slide-item p {
    line-height: 127%;
    margin: 0 auto;
    max-width: 269px;
  }


  .navigation-block .slick-prev,
  .navigation-block .slick-next {
    top: -132px;
  }

  .navigation-block .slick-prev {
    left: 14px;
  }

  .navigation-block .slick-next {
    right: 16px;
  }

  .section-top {
    padding: 12px 0 10px 0;
  }

  .advantage {
    padding: 24px 12px 24px 12px;
  }


  .slide-item-1 {
    background-size: cover;
  }

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .header__top {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header__bottom {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-top {
    padding: 20px 12px 12px 12px;
  }

  .slide-item {
    padding: 48px 15px;
  }

  .navigation-block .slick-prev,
  .navigation-block .slick-next {
    top: -129px;
  }

  .advantage .product-cart:not(:last-child) {
    margin-right: 16px;
  }

  .advantage-title {
    margin: 0 0px 16px 0px;
  }

  .advantage-banner {
    margin: 0 0px 10px 0px;
    max-width: 451px;
    width: 100%;
  }



  .advantage .product-cart:not(:last-child) {
    margin-right: 0;
  }

  .product-cart {
    padding: 12px 0px 12px 0px;
  }

  .advantage-box .favourites-btn {
    top: 4px;
  }

  .advantage-box {
    justify-content: space-between;
  }


  .cart-sale {
    margin-top: 8px;
  }


  .product-price p {
    margin-right: 4px;
  }

  .product-price span {
    margin-right: 5px;
  }


  .advantage-banner-2 {
    margin: 4px 0px 0px 0;
    width: 100%;
    margin: 0 auto;
    margin-top: 4px;
    max-width: 451px;
  }

  .brends {
    margin-top: 11px;
    padding: 24px 12px;
  }

  .brends-top-cart {
    background-size: 64px;
    background-position: 0px 5px;
    padding: 0 5px 0 80px;
    height: 72px;
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 0;
  }

  .brends-top {
    margin-bottom: 17px;
  }

  .brends-cart {
    width: calc((100% - (12px *1)) / 2);
  }

  .brends-cart-1 {
    background-size: 134%;
  }

  .brends-cart-2 {
    background-size: 118%;
  }

  .brends-cart-3 {
    background-size: 123%;
  }

  .brends-cart-4 {
    background-size: 131%;
    background-position: -24px 6px;
  }

  .brends-cart-5 {
    background-size: 110%;
    background-position: -4px 12px;
  }

  .brends-cart-6 {
    background-size: 117%;
    background-position: -15px 15px;
  }

  .brends-bottom-box {
    margin-bottom: 4px;
  }

  .brends-add-btn {
    max-width: 100%;
    justify-content: center;
  }

  .suggestion__container {
    margin-top: 12px;
  }

  .suggestion__box {
    padding: 24px 0 20px 0;
  }

  .suggestion__top {
    padding: 0 12px;
  }


  .suggestion__block .product-cart {
    padding: 12px 12px 12px 12px;
  }

  .suggestion__block .product-cart {
    width: calc((100% - (0px *1)) / 2);
  }

  .suggestion__block .product-cart-top {
    width: 103%;
  }

  .suggestion__block .favourites-btn {
    top: 10px;
  }

  .suggestion__block .product-cart {
    padding: 12px 0px 0px 0px;
    background-position: -1px 19px;
    width: calc((100% - (16px *1)) / 2);
  }

  .suggestion__block .product-cart {
    margin-bottom: 3px;
  }


  .advertisement-block {
    border-radius: 0;
    margin-top: 12px;
  }

  .advertisement-block {
    padding: 12px 12px 0 12px;
  }

  .advertisement-item:not(:last-child) {
    margin-bottom: 16px;

  }

  .advertisement-item {
    margin-bottom: 12px;
  }

  .advertisement-block {
    margin-bottom: 12px;
  }

  .sales-hit {
    padding: 24px 12px 4px 12px;
  }

  .sales-hit__block .product-cart {
    width: calc((100% - (16px *1)) / 2);
  }

  .suggestion__block {
    padding: 0 12px;
  }


  .sales-hit__block .product-cart-top {
    background-position: 0px 21px;
  }

  .sales-hit__block .favourites-btn {
    top: 14px;
  }

  .promo-codes {
    padding: 25px 24px 24px 24px;
    margin: 11px 0;
  }

  .promo-codes {
    margin: 11px 12px 0 12px;
  }

  .promo-codes div {
    margin-bottom: 12px;
  }

  .promo-codes div {
    font-size: 20px;
  }


  .promo-codes {
    padding: 25px 24px 24px 24px;
    margin: 11px 0;
  }

  .promo-codes {
    margin: 11px 12px 0 12px;
  }

  .promo-codes div {
    margin-bottom: 12px;
  }

  .promo-codes div {
    font-size: 20px;
  }

  .footer__container {
    padding: 60px 100px;
  }

  .footer__logo-link img {
    width: 160px;
    margin-bottom: 11px;
  }

  .footer__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer__info,
  .footer__help {
    width: calc((100% - (16px *1)) / 2);
  }

  .footer__payments {
    margin-top: 15px;
  }

  .footer__payments p {
    letter-spacing: 0.04em;
  }



  .footer__payments-box img {
    margin-left: -5px;
    margin-right: 15px;
    margin-bottom: 3px;
    width: 29px;
  }

  .footer__payments p {
    margin-bottom: 12px;
  }

  .suggestion__block {
    justify-content: space-between;
  }


  .product-cart-bottom {
    padding: 12px 0px 0 0px;
  }


  .sales-hit__top {
    padding: 0;
  }

  .sales-hit__block {
    justify-content: space-between;
  }

  .product-cart-bottom {
    padding: 12px 0px 0 0px;
  }

  .category__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .category__bottom-back {
    margin: 0 0 12px 0;
  }

  .breadcrumbs {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-page__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .reviews__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .offering__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-page__content .product-img {
    background-size: 72%;
  }

  .breadcrumbs {
    padding-top: 20px;
  }

  .product-img {
    height: 346px;
    background-position: 45px -18px;
  }

  .product-page__content .product-img {
    background-size: 68.5%;
  }

  .product-page {
    padding-top: 28px;
  }

  .product-img-rec {
    right: 12px;
    top: 11px;
  }

  .product-img-hit {
    right: 12px;
    top: 47px;
  }

  .similar-block {
    margin: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .offering__similar .product-cart {
    margin: 0;
  }

  .delivery-discounts {
    display: none;
  }

  .offering__similar .product-cart:nth-child(n+7) {
    display: none;
  }

  .discounts-mobil {
    display: flex;
  }

  .discounts-mobil {
    align-items: center;
    flex-direction: initial;
  }


  .product-page__content .product-img {
    margin-bottom: -15px;
  }

  .product-box-link {
    top: 24px;
  }

  .discounts-mobil .cart-scores {
    margin-right: 8px;
  }

  .discounts-mobil .cart-sale {
    margin-right: 8px;
  }

  .discounts-mobil {
    margin-bottom: 72px;
  }

  .product-box-link {
    top: -36px;
  }

  .product-page .product-price {
    display: none;
  }

  .product-page .price-mobil {
    display: flex;
  }

  /* styles.css | http://127.0.0.1:5500/css/styles.css?_cacheOverride=1730787760929 */

  .price-mobil p {
    font-size: 28px;
    margin-right: 9px;
  }

  .inform h2 {
    margin-bottom: 8px;
  }

  .price-mobil span {
    font-size: 20px;
    letter-spacing: 0.03em;
  }

  .price-mobil span {
    margin-right: 10px;
  }

  .price-mobil div {
    font-size: 20px;
    letter-spacing: -0.05em;
  }

  .price-mobil {
    margin-bottom: 8px;
  }

  .product-reviews-star {
    margin-right: 22px;
  }

  .product-content .product-reviews {
    margin-bottom: 18px;
  }

  .delivery-box {
    padding: 0 12px;
    max-width: 100%;
    height: 48px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 74px;
    z-index: 1001;
    background-color: white;
    border-radius: 0;
    box-shadow: none;
  }

  .delivery .product-add {
    max-width: 100%;
  }

  .product-discount {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 125px;
    z-index: 1001;
    padding: 0 12px;
    background-color: white;
    padding-bottom: 12px;
    padding-top: 4px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.8);
  }

  .delivery-box {
    bottom: 77px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.8);
  }

  .discount-item {
    width: 32px;
    height: 32px;
  }

  .product-content .inform-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 157px;
    z-index: 1001;
    padding: 0 12px;
    text-align: center;
    background-color: white;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 -9px 16px rgba(0, 0, 0, 0.15);
  }

  /* Футер для карточки продукта */
  .footer__container {
    padding-bottom: 230px;
  }

  .price-mobil p {
    margin-right: 9px;
  }

  .delivery h3 {
    font-size: 28px;
    letter-spacing: 0.025em;
  }

  .delivery {
    padding-top: 13px;
  }

  .delivery ul {
    padding: 3px 0 0px 0;
  }

  .product-description h2 {
    margin-bottom: 16px;
  }

  .product-description {
    padding-bottom: 22px;
  }

  .reviews__block-title {
    margin-bottom: 29px;
  }

  .sidebar-base {
    padding-bottom: 18px;
  }

  .reviews-info-img {
    display: none;
  }

  .info-img-mobil {
    display: block;
  }

  /* styles.css | http://127.0.0.1:5500/css/styles.css?_cacheOverride=1730791519482 */

  .info-img-mobil {
    width: 36px;
    height: 36px;
    margin: 0;
    margin-right: 8px;
  }

  .reviews-sidebar {
    margin-bottom: 9px;
  }

  .info-content-top h3 {
    margin-right: auto;
  }

  .rating {
    flex-direction: column-reverse;
    align-items: end;
  }

  .rating p {
    margin-right: 0;
  }

  .info-content-top {
    margin-bottom: 12px;
  }

  .info-content-bottom ul {
    margin-top: 14px;
  }

  .info-content-bottom ul li {
    margin-bottom: 3px;
  }

  .reviews-info {
    margin-bottom: 2px;
  }

  .offering {
    padding-top: 47px;
  }

  .offering .favourites-btn {
    top: 6px;
  }

  .basket-page .inform-bottom {
    text-align: left;
    position: static;
  }

  .basket-page .product-discount {
    position: static;
  }

  .basket-page__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .basket-page .product-price {
    display: flex;
  }


  .basket-page .arrange {
    padding: 0px 12px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 69px;
    z-index: 1001;
    max-width: 100%;
    height: 100px;
  }

  .basket-page .product-price {
    width: 100%;
  }

  .basket-page .arrange .arrange-box-btn {
    max-width: 100%;
  }

  .basket-page .offers .offering__similar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .basket-page__box-top .discount-item {
    width: 32px;
  }

  .offers__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .basket-page {
    padding-top: 20px;
  }

  .basket-page__title {
    margin-bottom: 24px;
  }

  .basket-page__container {
    padding-left: 0;
    padding-right: 0;
  }

  .basket-page__title {
    padding-left: 12px;
    padding-right: 12px;
  }

  .basket-page .product-discount {
    padding-left: 19px;
    display: flex;
  }

  .basket-page__box {
    padding: 12px 0;
  }

  .basket-page .inform-bottom {
    margin-bottom: 0px;
  }

  .basket-page__box-top .discount-item {
    margin-right: 0.22em;
  }

  .basket-page__box-top {
    margin-bottom: 12px;
  }

  .basket-page__box-top {
    height: 92px;
  }

  .basket-page .product-discount {
    padding-bottom: 0;
  }

  .basket-page__box-top .discount-item {
    height: 40px;
  }

  .choice-box {
    padding-left: 12px;
    padding-right: 12px;
  }

  .basket-page .custom-checkbox__text {
    padding-left: 31px;
  }

  .check-all {
    margin-right: 9px;
  }

  .choice-box {
    align-items: baseline;
  }

  .crate-item {
    padding: 12px;
  }

  .product-picture {
    max-width: 71px;
    height: 72px;
    background-position: 0px 0px;
  }

  .crate-check label {
    margin-right: 0;
  }

  .crate-check {
    max-width: 105px;
    margin-right: 8px;
    height: 71px;
  }

  .basket-page .crate-ihfo-price {
    order: 0;
  }

  .basket-page .product-info {
    order: 1;
  }

  .basket-page .crate-ihfo-quantity {
    order: 2;
  }

  .crate-ihfo-content {
    padding-top: 0px;
  }

  .basket-page .product-price p {
    margin-right: 8px;
  }

  .basket-page .product-price span {
    margin-right: 8px;
  }

  .basket-page .product-info a {
    margin-bottom: 6px;
  }

  .crate-item .product-price {
    margin-bottom: 4px;
  }

  .crate-ihfo-price {
    margin-bottom: 3px;
    margin-right: 0;
  }

  .offers .offering__similar {
    margin-top: 12px;
    padding-top: 24px;
  }

  .offering__similar h3 {
    margin-bottom: 4px;
  }

  .offers .favourites-btn {
    top: 10px;
  }

  .offers .product-cart-top {
    height: 210px;
  }

  .offers .product-price {
    margin-bottom: 1px;
  }


  .basket-page__block .inform-bottom {
    background-color: transparent;
  }

  .basket-page__block .arrange {
    border-radius: 0;
  }

  .offers-wrapper {
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 16px;
  }

  .basket-page .arrange {
    padding: 8px 12px;
    padding: 16px 12px 0px 12px;
    bottom: 51px;
    height: 110px;
  }

  .making-order {
    padding-top: 20px;
  }

  .making-pay {
    padding: 12px;
    margin-bottom: 12px;
  }

  .making-pay-box {
    flex-wrap: wrap;
  }

  .making-pay-box label {
    max-width: 171px;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .pay-item-1 {
    margin-right: 0 !important;
    background-size: 33%;
  }

  .pay-item-2 {
    background-size: 31%;
  }

  .pay-item-3 {
    background-size: 31%;
  }

  .pay-item-4 {
    background-size: 31%;
  }

  .making-bonus {
    padding: 12px;
    min-height: auto;
  }


  /* styles.css | http://127.0.0.1:5500/css/styles.css */

  .making-bonus {
    margin-bottom: 12px;
  }

  .making-shipment {
    padding: 12px;
  }

  .making-shipment-title {
    margin-bottom: 12px;
  }

  .making-shipment-choice label {
    max-width: 171px;
  }

  .shipment-item-2 {
    background-size: 32%;
    margin-right: 0 !important;
  }

  .shipment-item-1 {
    background-size: 46%;
  }

  .form-group-name {
    margin-right: 0;
    margin-bottom: 13px;
  }

  .form-group-tel {
    max-width: 100%;
  }

  .form-group-tel input {
    max-width: 100%;
  }

  .making-shipment {
    margin-bottom: 12px;
  }

  .aside-block-promo {
    max-width: 100%;
    margin-bottom: 12px;
  }


  .aside-block-promo {
    padding: 12px;
    height: auto;
  }

  .promo-form input {
    max-width: 100%;
  }

  .aside-block-container {
    padding: 12px;
    margin-bottom: 12px;
  }

  .recommendations__block {
    padding: 24px 12px;
  }

  .recommendations__block .product-cart-top {
    background-position: 0px 21px;
    height: 215px;
  }

  .recommendations__block .product-price {
    margin-bottom: 0px;
  }

  .recommendations__block .favourites-btn {
    top: 14px;
  }

  .category__description {
    padding-bottom: 0;
  }

  .booked {
    padding-top: 20px;
  }

  .structure-top h2 {
    font-size: 32px;
  }

  .structure {
    padding: 12px;
  }

  .structure-top h2 {
    font-size: 32px;
  }

  .structure-amount-result {
    flex-direction: column;
  }

  .structure-top {
    margin-bottom: 13px;
  }

  .structure-amount-result p {
    margin-right: 0;
  }

  .item-picture {
    width: 109px;
    height: 109px;
  }

  .structure {
    margin-bottom: 12px;
  }

  .order-inform {
    padding: 12px;
  }


  .text-cor {
    max-width: 130px;
  }


  .continue-btn {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .repeat-btn {
    margin-right: 0;
    margin-bottom: 8px;
  }


  .booked__block {
    padding-bottom: 12px;
  }

  .offers .offering__similar {
    padding-top: 12px;
  }

  .offering__similar h3 {
    letter-spacing: 0.015em;
  }


  /* styles.css | http://127.0.0.1:5500/css/styles.css */

  .orders-page {
    padding-top: 0;
  }

  .orders-block {
    padding: 0 12px;
    border-radius: 0;
  }

  .orders-list {
    padding: 23px 12px;
    margin-top: 24px;
  }


  .orders-page .structure-amount-text {
    max-width: 180px;
  }

  .orders-page .structure-amount {
    align-items: end;
  }

  .item-picture {
    background-position: -4px 0px;
  }


  .orders-page .received-order p {
    padding: 5px 10px;
  }

  .orders-page .structure-amount {
    margin-bottom: 12px;
  }

  .orders-page .item-picture p {
    margin: 0 8px 1px 0px;
  }

  .orders-page .structure-bottom-item:nth-child(3n) {
    margin-right: 0px;
  }

  .orders-list {
    padding: 12px 12px 0px 12px;
    margin-top: 16px;
  }

  .orders-page .structure-bottom-item {
    margin-bottom: 15px;
  }

  .orders-block__title {
    margin-bottom: 20px;
  }

  .rate-it {
    margin-top: 9px;
  }

  .orders-page-main .breadcrumbs {
    background-color: white;
    padding-bottom: 1px;
  }

  .bonus-block {
    margin-top: 16px;
  }

  .bonus-block {
    padding: 12px 12px 12px 48px;
  }

  .promocod-txt .promo-form input {
    margin-right: 0;
    max-width: 100%;
  }

  .promocod-txt .promo-form input {
    margin-bottom: 11px;
  }

  .promocod-txt .promo-form-btn {
    max-width: 100%;
    height: 36px;
  }


  .bonus-block {
    padding: 12px 12px 12px 12px;
  }

  .bonus-info {
    padding-left: 36px;
  }

  .bonus-info-chart {
    height: 74px;
    padding: 24px 24px 14px 24px;
  }

  .bonus-card {
    padding: 1px 0px 0px 0px;
  }

  .bonus-card-img {
    background-size: 63%;
    margin-top: 11px;
  }

  .bonus-card-box {
    min-height: 200px;
    margin-bottom: 25px;
  }



  .pay-item-2 {
    margin-right: 8px !important;
  }

  .pay-item-5 {
    margin-right: 8px !important;
  }

  .structure-bottom-item .item-picture {
    width: 101px;
  }

  .structure-bottom-item:not(:last-child) {
    margin-right: 10px;
  }

  .category__block .product-cart-top {
    height: 230px;
  }

  .category__block {
    margin-top: 8px;
  }

  .category__block .product-cart {
    padding: 12px 12px 16px 12px;
  }

  .product-cart-top {
    height: 210px;
  }

  .product-page__block .cart-sale {
    margin-top: 0;
  }

  /* --------------------------------- */
  .product-cart-top {
    height: 210px !important;
  }

  .favourites-btn {
    top: 10px !important;
  }


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

  .recommendat-block {
    justify-content: space-between;
  }

  .recommendat-block .product-cart {
    width: calc((100% - (16px *1)) / 2);
  }

  .product-cart {
    border-bottom: none !important;
  }

  .bonus-info-chart {
    max-width: 90%;
  }

  .promocod-txt {
    width: calc(100% + 36px);
    margin-left: -36px;
  }

  #promoCode {
    width: 100%;
    max-width: 100%;
  }

  .payment-waiting {
    min-height: 500px;
  }


}


@media (max-width:410px) {
  .input-file span {
    min-height: 64px;
  }
}

@media (max-width:375px) {
  .product-page__content .product-img {
    background-size: 74.5%;
  }

  .advantage-box .favourites-btn {
    top: 25px;
  }

  .product-img {
    height: 280px;
  }

  .making-pay-box label {
    width: calc((100% - (8px *1)) / 2);
    margin-right: 0;
  }

  .making-pay-box {
    justify-content: space-between;
  }

  .suggestion__block .favourites-btn {
    top: 12px;
  }

  .category__block .product-cart-top {
    height: 210px;
  }

  .offering .product-cart-top {
    height: 210px;
  }





}

@media (max-width:370px) {
  .discount-item {
    margin-right: 0 !important;
    width: 28px !important;
  }

  .structure-bottom-item:not(:last-child) {
    margin-right: 0;
  }

  .orders-page .structure-bottom-item {
    margin: 0 4px 15px 4px;
  }

  .structure-bottom-item {
    max-width: 93px;
  }

  .rate-it {
    font-size: 11px;
  }


  .structure-bottom-item {
    max-width: 130px;
  }

  .structure-bottom-item .item-picture {
    width: 100%;
    background-position: center;
  }

  .item-picture {
    background-position: 0;
  }

  .recommendations__block .product-cart-top {
    height: 200px;
  }

}


@media screen and (-webkit-min-device-pixel-ratio:0) {

  input,
  select,
  textarea {
    font-size: 16px !important;
    /* Обещание Safari: без масштабирования! */
  }
}

@media (min-width:769px) and (max-width:1200px) {

	#bx-soa-order .col-sm-12.col-md-9.bx-soa {
	  width: 66% !important;
	  flex: 0 0 66%;
	}

	#bx-soa-order .col-sm-12.col-md-3 {
	  width: 33% !important;
	  flex: 0 0 33%;
	  max-width: 100%;
	}

}