@charset "UTF-8";
@import url("../fonts/helvetica/stylesheet.css");
.custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.custom-select__current {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select__current-value {
  display: flex;
  align-items: center;
}
.custom-select__current-value img {
  margin-right: 10px;
}
.custom-select__current-value p {
  font-size: 14px;
}

.select-arrow {
  transform: rotate(0deg);
  transition: transform;
  transition-duration: 0.3s;
}

.select-arrow_active {
  transform: rotate(180deg);
}

.custom-select__list {
  width: 100%;
  position: absolute;
  top: 150%;
  left: 0;
  background: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  transition: height;
  transition-duration: 0.3s;
  overflow: hidden;
  height: 0;
}

.custom-select__list-active {
  border: 1px solid #ccc;
  height: 168px;
}

.custom-select__list-item {
  display: flex;
  align-items: center;
  padding: 5px 7px;
  cursor: pointer;
  transition: 0.3s all ease;
  background: #fff;
}
.custom-select__list-item img {
  margin-right: 10px;
}
.custom-select__list-item p {
  font-size: 14px;
}
.custom-select__list-item:hover {
  background: rgba(122, 203, 11, 0.2);
}

/* Ticker styles */
.ticker-main {
  background: #7ACB0B;
  height: 60px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 0 0 15px 15px;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker var(--animation-duration, 30s) linear infinite;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.ticker-content p {
  margin: 0 40px;
  color: #fff;
  white-space: nowrap;
}

@keyframes ticker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Pause animation on hover */
.ticker-main:hover .ticker-content {
  animation-play-state: paused;
}

:root {
  --primary-color: #7ACB0B;
  --primary-font-color: #2D2D2D;
  --secondary-font-color: #7E7E7E;
  --hover-color: #67a510;
  --tab-inactive-color: #F2F2F2;
}

* {
  box-sizing: border-box;
  outline: none !important;
  color: var(--primary-font-color);
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  font-family: "Roboto", sans-serif;
}

.box-container {
  margin: auto;
  width: 1220px;
}

@media (max-width: 580px) {
  .box-container {
    width: 90%;
  }
}
.header-main {
  width: 100%;
  height: 920px;
  background: url("../img/header-bg.jpg?ver=123");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-main .header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 920px;
}

.header-head {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-head_main {
  justify-content: flex-end;
}

.header-logo {
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  cursor: pointer;
}

.header-nav {
  display: flex;
  -moz-column-gap: 26px;
       column-gap: 26px;
}
.header-nav a {
  color: #fff;
  transition: 0.3s all ease;
}
.header-nav a:hover {
  font-weight: 500;
}

.yuwell-cart-menu {
  display: flex;
  align-items: flex-start;
  margin-left: 50px;
}
.yuwell-cart-menu .yuwell-cart__block {
  position: relative;
  margin-left: 30px;
  cursor: pointer;
}
.yuwell-cart-menu .yuwell-cart__block .yuwell-cart__counter {
  position: absolute;
  bottom: -8px;
  right: -8px;
}
.yuwell-cart-menu .yuwell-cart__block .yuwell-cart__counter span {
  color: #fff;
}
.yuwell-cart-menu .yuwell-menu {
  margin-left: 45px;
  cursor: pointer;
  z-index: 50;
}

.header-head-total {
  display: flex;
  align-items: center;
}

.header-head-total-phone {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.header-head-total-phone a {
  color: #fff;
  font-size: 18px;
}

.header-head-total-phone img {
  width: 20px;
  margin-right: 10px;
}

.header-country-telegram {
  display: flex;
  align-items: center;
  margin-left: 20px;
  gap: 15px;
}

.header-country-select {
  position: relative;
  cursor: pointer;
}

.header-country-select__current {
  display: flex;
  align-items: center;
}

.header-country-select__current-value {
  display: flex;
  align-items: center;
}
.header-country-select__current-value img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.header-country-select__list {
  width: 200px;
  position: absolute;
  top: 150%;
  left: -50px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  transition: height;
  transition-duration: 0.3s;
  overflow: hidden;
  height: 0;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-country-select__list-active {
  border: 1px solid #ccc;
  height: 168px;
}

.header-country-select__list-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.3s all ease;
  background: #fff;
}
.header-country-select__list-item img {
  width: 24px;
  height: 16px;
  margin-right: 10px;
  border-radius: 2px;
}
.header-country-select__list-item p {
  font-size: 14px;
  color: var(--primary-font-color);
}
.header-country-select__list-item:hover {
  background: rgba(122, 203, 11, 0.2);
}

.header-telegram-link {
  display: flex;
  align-items: center;
  transition: 0.3s all ease;
}
.header-telegram-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.header-telegram-link:hover {
  transform: scale(1.1);
}

.header-menu {
  position: fixed;
  top: 140px;
  right: -100%;
  background: #fff;
  border-radius: 10px;
  width: 260px;
  padding: 55px 25px 35px;
  border: 1px solid #ccc;
  transition: 0.5s right ease;
  z-index: 50;
}
.header-menu .close-menu {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}
.header-menu .header-menu-nav {
  list-style: none;
}
.header-menu .header-menu-nav .hidden {
  display: none;
}
.header-menu .header-menu-nav li {
  margin-top: 10px;
}
.header-menu .header-menu-nav li a {
  transition: 0.3s all ease;
}
.header-menu .header-menu-nav li a:hover {
  font-weight: 500;
}
.header-menu .header-menu-nav_margin {
  margin-top: 30px;
}
.header-menu .recall-header {
  width: 100%;
  height: 35px;
  background: #fff;
  color: var(--primary-font-color);
  border: 1px solid var(--primary-font-color);
  border-radius: 50px;
  margin-top: 30px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.header-menu .recall-header:hover {
  background: var(--primary-font-color);
  color: #fff;
}

.header-menu_active {
  right: calc((100% - 1220px) / 2);
}

.cart-block {
  position: fixed;
  right: -100%;
  top: 0;
  width: 400px;
  background: #fff;
  padding: 30px;
  height: 100dvh;
  overflow: auto;
  z-index: 600;
  transition: 0.5s right ease;
  border-left: 1px solid #ccc;
}
.cart-block h2 {
  font-size: 26px;
}
.cart-block .cart-title {
  font-size: 26px;
  font-weight: 700;
}

.cart-block_active {
  right: 0;
}

.cart-block__header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.cart-block__header-icons .share-block-btn {
  cursor: pointer;
}
.cart-block__header-icons .close-cart {
  cursor: pointer;
}

.cart-products {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item .cart-item__img {
  width: 77px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item .cart-item__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart-item .cart-item__controls {
  width: calc(100% - 110px);
}
.cart-item .cart-item__controls b {
  font-size: 14px;
  font-weight: 700;
}
.cart-item .cart-item__controls .cart-item__control-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.cart-item .cart-item__controls .cart-item__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid #000;
  border-radius: 11px;
  width: 100px;
}
.cart-item .cart-item__controls .cart-item__control .cart-product-count {
  width: 33%;
  height: 35px;
  border: none;
  text-align: center;
}
.cart-item .cart-item__controls .cart-item__control .cart-btn {
  width: 33%;
  height: 35px;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
}
.cart-item .cart-item__controls .cart-item__price {
  display: flex;
  align-items: center;
}
.cart-item .cart-item__controls .cart-item__price span + p {
  margin-left: 10px;
}
.cart-item .cart-item__controls .cart-item__price span {
  color: var(--primary-color);
  text-decoration: line-through;
  font-size: 12px;
}
.cart-item .cart-item__controls .cart-item__price p {
  font-size: 14px;
  font-weight: 700;
}

.cart-total {
  margin-top: 40px;
}
.cart-total b {
  font-size: 24px;
  margin-bottom: 20px;
}
.cart-total .cart-total__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.cart-total .cart-total__item span {
  font-size: 14px;
  font-weight: 700;
}
.cart-total .cart-total__item .dash-line {
  width: 100%;
  border-bottom: 1px dashed var(--primary-color);
  height: 1px;
  margin: 0 5px;
}
.cart-total .cart-total__summ {
  margin-top: 15px;
  text-align: right;
  font-weight: 700;
  font-size: 18px;
}

.create-order {
  width: 100%;
  margin-top: 20px;
  height: 40px;
  border-radius: 4px;
  background: var(--primary-color);
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  transition: 0.3s all ease;
}
.create-order:hover {
  background: var(--hover-color);
}

@media (max-width: 580px) {
  .header-main {
    height: 600px;
    background-position-x: calc(50% - 80px);
  }
  .header-main .header-wrapper {
    height: 600px;
  }
  .header-main .header-app-phone {
    left: 5%;
    width: 270px;
  }
  .header-nav {
    display: none;
  }
  .yewell-logo {
    display: none;
  }
  .header-menu {
    top: 0;
    width: 100%;
    height: 100dvh;
    z-index: 100;
    border-radius: 0;
  }
  .header-menu .header-menu-nav .hidden {
    display: block;
  }
  .header-menu .header-menu-nav .nav-bottom {
    margin-bottom: 50px;
  }
  .header-menu .header-menu-nav li {
    font-size: 18px;
    margin-top: 20px;
  }
  .cart-block {
    width: 100%;
    border: none;
  }
  .header-menu_active {
    right: 0;
  }
}
.motto-block {
  margin-top: 75px;
  width: 460px;
  position: relative;
}
.motto-block h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.motto-block p {
  margin-top: 30px;
  color: #fff;
}
.motto-block button {
  width: 250px;
  height: 52px;
  border-radius: 50px;
  border: 1.4px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 20px;
  margin-top: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.motto-block button:hover {
  background: #fff;
  color: var(--primary-font-color);
}

@media (max-width: 580px) {
  .motto-block {
    width: 100%;
    margin-top: 70px;
  }
  .motto-block h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
  }
  .motto-block p {
    margin-top: 10px;
    color: #fff;
  }
}
@media (max-width: 390px) {
  .motto-block {
    margin-top: 50px;
  }
}
.header-app-phone {
  width: 460px;
  position: absolute;
  left: calc((100% - 1240px) / 2);
  bottom: 0;
}

.header-app-about {
  position: absolute;
  right: 0;
  bottom: 110px;
  width: 400px;
  padding: 20px 45px;
  background: rgba(122, 203, 11, 0.7);
  border-radius: 25px 0 0 25px;
}
.header-app-about p {
  color: #fff;
  font-size: 18px;
  line-height: 140%;
}

@media (max-width: 1380px) {
  .header-app-phone {
    width: 360px;
  }
}
@media (max-width: 580px) {
  .header-app-phone {
    z-index: 10;
    width: 100%;
  }
  .header-app-about {
    width: 200px;
    z-index: 30;
    bottom: 30px;
    padding: 15px;
  }
  .header-app-about p {
    font-size: 12px;
  }
}
.advantages-list-block {
  margin-top: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantages-list-block h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  width: 900px;
}

.advantages-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.advantages-list-item {
  width: 210px;
  height: 210px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #ccc;
  text-align: center;
}
.advantages-list-item .advantages-list-item__img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.advantages-list-item .advantages-list-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.advantages-list-item .advantages-list-item__text {
  width: 100%;
}
.advantages-list-item .advantages-list-item__text h3 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.advantages-list-item .advantages-list-item__text p {
  font-size: 14px;
  line-height: 1.4;
}

.advantages-list-item_big {
  height: 210px;
}

.advantages-list-item_mod {
  padding: 20px;
  border: 1px solid #ccc;
}
.advantages-list-item_mod .advantages-list-item__img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  right: 0;
}
.advantages-list-item_mod .advantages-list-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 580px) {
  .advantages-list-block {
    margin-top: 70px;
  }
  .advantages-list-block h2 {
    width: 100%;
    font-size: 18px;
  }
  .advantages-list {
    gap: 15px;
  }
  .advantages-list .advantages-list-item {
    width: calc(50% - 7.5px);
    height: 180px;
    padding: 15px;
  }
  .advantages-list .advantages-list-item .advantages-list-item__img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  .advantages-list .advantages-list-item .advantages-list-item__img img {
    width: 100%;
  }
  .advantages-list .advantages-list-item .advantages-list-item__text {
    width: 100%;
  }
  .advantages-list .advantages-list-item .advantages-list-item__text h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .advantages-list .advantages-list-item .advantages-list-item__text p {
    font-size: 12px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .advantages-list {
    gap: 10px;
  }
  .advantages-list .advantages-list-item {
    width: calc(50% - 5px);
    height: 160px;
    padding: 12px;
  }
  .advantages-list .advantages-list-item .advantages-list-item__img {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }
  .advantages-list .advantages-list-item .advantages-list-item__text h3 {
    font-size: 13px;
  }
  .advantages-list .advantages-list-item .advantages-list-item__text p {
    font-size: 11px;
  }
}
.hour-video {
  margin-top: 50px;
  margin-bottom: 250px;
}

.hour-video__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.hour-video__title h2 {
  color: var(--secondary-font-color);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
.hour-video__title .line {
  margin-top: 10px;
  height: 3px;
  width: 760px;
  background: var(--secondary-font-color);
}

.hour-video__content {
  width: 100%;
}
.hour-video__content video {
  width: 100%;
  height: auto;
  border-radius: 9px;
  display: block;
}

@media (max-width: 580px) {
  .hour-video__title h2 {
    font-size: 18px;
  }
  .hour-video__title .line {
    width: 100%;
  }
  .hour-video__content video {
    border-radius: 0;
  }
}
.product-list__block {
  margin-top: 50px;
}
.product-list__block h2 {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.product-block-main {
  width: 100%;
  padding: 50px 0 200px;
  position: relative;
  overflow: hidden;
  min-height: 700px;
}
.product-block-main .product-block-main__content {
  position: relative;
  z-index: 20;
}
.product-block-main .product-block-main__rounds {
  position: absolute;
  width: 760px;
  height: 680px;
  bottom: -400px;
  right: -360px;
}
.product-block-main .product-block-main__rounds .product-block-main__round-big {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F6F6F6;
}
.product-block-main .product-block-main__rounds .product-block-main__round-medium {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 611px;
  height: 542px;
  background: #EFEFEF;
}
.product-block-main .product-block-main__rounds .product-block-main__round-small {
  width: 450px;
  height: 400px;
  border-radius: 50%;
  background: #E9E9E9;
}

.product-list__item {
  width: calc(50% - 25px);
  border: 1px solid #ccc;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 50px;
  background: #fff;
  text-align: center;
}

.product-list__item-img {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-list__item-text {
  width: 100%;
}
.product-list__item-text .product-list__item-title {
  font-size: 20px;
  font-weight: 700;
}
.product-list__item-text .product-list__item-tabs {
  margin-top: 15px;
}

.product-list__item_mod .product-list__item-text {
  width: 50%;
  flex-shrink: 0;
}

.product-list__item-tab-head {
  display: flex;
  -moz-column-gap: 3px;
       column-gap: 3px;
}
.product-list__item-tab-head .product-list__item-tab-head__item {
  width: 200px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--tab-inactive-color);
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.product-list__item-tab-head .product-list__item-tab-head__item p {
  color: var(--secondary-font-color);
}
.product-list__item-tab-head .product-list__item-tab-head__item:hover {
  background: var(--primary-color);
}
.product-list__item-tab-head .product-list__item-tab-head__item:hover p {
  color: #fff;
}
.product-list__item-tab-head .product-list__item-tab-head__item_active {
  background: var(--primary-color);
}
.product-list__item-tab-head .product-list__item-tab-head__item_active p {
  color: #fff;
}

.product-list__item-tab {
  display: none;
}

.product-list__item-tab_active {
  display: block;
}

.product-list__item-tab-body {
  margin-top: 20px;
}

.product-list__item-description-block__text {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.product-list__item-description-block__text p {
  margin-top: 10px;
}

.more-text {
  cursor: pointer;
  margin-top: 5px;
  color: var(--primary-color);
  transition: 0.3s all ease;
}
.more-text:hover {
  color: var(--hover-color);
}

.product-list__item-adv {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.product-list__item-adv .product-list__item-adv__item {
  display: flex;
  align-items: center;
}
.product-list__item-adv .product-list__item-adv__item p {
  font-size: 18px;
  margin-left: 10px;
}

.product-list__item-tab-block .product-list__item-tab-title {
  display: flex;
  align-items: center;
}
.product-list__item-tab-block .product-list__item-tab-title h4 {
  font-size: 20px;
  font-weight: 700;
}
.product-list__item-tab-block .product-list__item-tab-block-body {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.product-list__item-tab-block .product-list__item-tab-block-body p span {
  color: var(--primary-color);
}
.product-list__item-tab-block .product-list__item-tab-block-body a {
  color: var(--primary-color);
  transition: 0.3s all ease;
}
.product-list__item-tab-block .product-list__item-tab-block-body a:hover {
  color: var(--hover-color);
}

.delivery-tab-link {
  display: flex;
  margin-top: 15px;
  color: var(--primary-color);
}

.product-list__item-tab-block + .product-list__item-tab-block {
  margin-top: 20px;
}

.product-list__item-price-block {
  margin-top: 50px;
}

.product-list__item-price-block__main {
  display: flex;
  align-items: center;
}
.product-list__item-price-block__main p {
  font-size: 18px;
  margin-right: 17px;
}
.product-list__item-price-block__main span {
  font-size: 30px;
  font-weight: 700;
}
.product-list__item-price-block__main .cross-price__block {
  position: relative;
  overflow: hidden;
}
.product-list__item-price-block__main .cross-price__block span {
  color: #888;
}
.product-list__item-price-block__main .cross-price__block .line {
  position: absolute;
  left: 0;
  top: 50%;
  height: 4px;
  background: #7ACB0B;
  width: 100%;
  transform: rotate(-10deg);
}

.product-list__item-price-block__current {
  margin-top: 16px;
  font-size: 40px;
  font-weight: 700;
}

.product-list__item-btns {
  margin-top: 30px;
}
.product-list__item-btns .product-list__item-btns-shop-quantity {
  display: flex;
  align-items: center;
}
.product-list__item-btns .product-list__item-btns-shop-quantity .product-shop {
  width: 300px;
  border-radius: 15px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 55px;
  background: var(--primary-color);
  transition: 0.3s all ease;
}
.product-list__item-btns .product-list__item-btns-shop-quantity .product-shop span {
  color: #fff;
  font-size: 20px;
  margin-left: 20px;
  font-weight: 700;
}
.product-list__item-btns .product-list__item-btns-shop-quantity .product-shop:hover {
  background: var(--hover-color);
}
.product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity {
  width: 160px;
  height: 55px;
  display: flex;
  align-items: center;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  overflow: hidden;
  margin-left: 30px;
}
.product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity .product-quantity-btn {
  width: 33.5%;
  height: 55px;
  font-size: 30px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  transition: 0.3s all ease;
}
.product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity .product-quantity-btn:hover {
  background: #edffd4;
}
.product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity .product-quantity-input {
  width: 33%;
  height: 55px;
  text-align: center;
  font-size: 30px;
  border: none;
}
.product-list__item-btns .product-shop__oneclick-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.product-list__item-btns .product-shop__oneclick-block .product-shop__oneclick {
  width: 300px;
  border-radius: 15px;
  height: 55px;
  background: #fff;
  border: 2px solid var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  transition: 0.3s all ease;
  cursor: pointer;
}
.product-list__item-btns .product-shop__oneclick-block .product-shop__oneclick:hover {
  background: var(--primary-color);
  color: #fff;
}

@media (max-width: 580px) {
  .product-list {
    gap: 20px;
  }
  .product-list__item {
    width: 100%;
    padding: 40px 20px;
    flex-direction: column;
  }
  .product-list__item_mod {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .product-list__item_mod .product-list__item-img_mod {
    width: 100%;
    margin-bottom: 0;
  }
  .product-list__item_mod .product-list__item-text {
    width: 100%;
    margin-top: 0;
  }
  .product-list__item_mod #main-carousel {
    height: 250px;
    margin-bottom: 15px;
  }
  .product-list__item_mod #thumbnail-carousel {
    margin-top: 15px;
  }
  .product-list__item_mod #thumbnail-carousel .splide__slide {
    padding: 3px;
  }
  .product-list__item-tab-head .product-list__item-tab-head__item {
    width: 85px;
  }
  .product-block-main {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .product-block-main .product-list__block {
    margin-top: 20px;
  }
  .product-block-main .product-list__block h2 {
    font-size: 24px;
  }
  .product-list__item-img {
    width: 100%;
    height: 200px;
  }
  .product-list__item-text {
    width: 100%;
    margin-top: 20px;
  }
  .product-list__item-text .product-list__item-title {
    font-size: 24px;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .product-list__item-text .product-list__item-tabs {
    margin-top: 25px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-description-block__text p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-adv {
    margin-top: 15px;
    row-gap: 10px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-adv .product-list__item-adv__item p {
    font-size: 14px;
    margin-left: 8px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-price-block_mod {
    margin-top: 20px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-price-block__current {
    font-size: 32px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-price-block__main p {
    font-size: 16px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-price-block__main span {
    font-size: 24px;
  }
  .product-list__item-btns {
    margin-top: 25px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity {
    flex-direction: column;
    gap: 15px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-shop {
    width: 100%;
    height: 45px;
    font-size: 16px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-shop span {
    font-size: 16px;
    margin-left: 15px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity {
    height: 45px;
    margin-left: 0;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity .product-quantity-btn {
    height: 45px;
    font-size: 24px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity .product-quantity-input {
    height: 45px;
    font-size: 20px;
  }
  .product-list__item-btns .product-shop__oneclick-block {
    margin-top: 15px;
  }
  .product-list__item-btns .product-shop__oneclick-block .product-shop__oneclick {
    height: 45px;
    font-size: 16px;
    width: 100%;
  }
}
@media (max-width: 376px) {
  .product-list__item_mod {
    padding: 15px 0;
    gap: 15px;
  }
  .product-list__item_mod #main-carousel {
    height: 200px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-title {
    font-size: 20px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-price-block__current {
    font-size: 28px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-price-block__main p {
    font-size: 14px;
  }
  .product-list__item_mod .product-list__item-text .product-list__item-price-block__main span {
    font-size: 20px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-shop {
    height: 40px;
    font-size: 14px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-shop span {
    font-size: 14px;
    margin-left: 10px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity {
    height: 40px;
    max-width: 150px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity .product-quantity-btn {
    height: 40px;
    font-size: 20px;
  }
  .product-list__item-btns .product-list__item-btns-shop-quantity .product-quantity .product-quantity-input {
    height: 40px;
    font-size: 18px;
  }
  .product-list__item-btns .product-shop__oneclick-block .product-shop__oneclick {
    height: 40px;
    font-size: 14px;
  }
}
.product-app-block__img-text-block {
  height: 510px;
  position: relative;
}
.product-app-block__img-text-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-app-block__img-text-block__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  background: rgba(255, 255, 255, 0.69);
  width: 100%;
  height: 100%;
}
.product-app-block__img-text-block__cover .box-container_mod {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.product-app-block__img-text-block__cover img {
  width: auto;
  height: auto;
}
.product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text {
  width: 630px;
  position: relative;
  z-index: 10;
}
.product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text h2 {
  font-size: 40px;
  font-weight: 700;
}
.product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text p {
  margin-top: 15px;
  font-size: 25px;
}
.product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text button {
  margin-top: 20px;
  width: 460px;
  height: 65px;
  background: var(--primary-color);
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 50px;
  transition: 0.3s all ease;
}
.product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text button:hover {
  background: var(--hover-color);
}
.product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text .stores-block {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 14px;
       column-gap: 14px;
}

.app-block {
  position: absolute;
  left: calc((100% - 1220px) / 2);
  bottom: calc((100% - 792px) / 2);
}
.app-block .phone-app {
  width: 410px;
}
.app-block .app-block__logo {
  position: absolute;
  right: -77px;
  bottom: 77px;
}

.any-time-device {
  position: absolute;
  top: calc((100% - 216px) / 2);
  right: 0;
}
.any-time-device img {
  width: auto;
  height: auto;
}

@media (max-width: 580px) {
  .product-app-block__img-text-block__cover {
    background: rgba(0, 0, 0, 0.3);
  }
  .product-app-block__img-text-block__cover .box-container_mod {
    align-items: flex-start;
  }
  .product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text {
    width: 100%;
    padding-top: 40px;
  }
  .product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text h2 {
    color: #fff;
    font-size: 30px;
  }
  .product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text p {
    font-size: 16px;
    color: #fff;
  }
  .product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text button {
    width: 100%;
    height: 38px;
    font-size: 18px;
  }
  .product-app-block__img-text-block__cover .product-app-block__img-text-block__cover-text .stores-block img {
    width: 140px;
  }
  .any-time-device {
    width: 250px;
    height: 380px;
    top: auto;
    bottom: -70px;
  }
  .any-time-device img {
    width: 250px;
  }
  .app-block {
    width: auto;
    left: auto;
    bottom: auto;
    bottom: -200px;
    left: 50px;
    z-index: 100;
  }
  .app-block .phone-app {
    width: 200px;
  }
  .app-block .app-block__logo {
    width: 100px;
    height: 100px;
    right: -91px;
    bottom: 10px;
  }
}
.slider-block {
  margin-top: 250px;
  display: none;
}

.slide-block-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slide-block-item-text {
  width: 420px;
  display: none;
}
.slide-block-item-text .slide-block-item-text_block {
  padding: 30px;
  width: 100%;
  border-radius: 18px;
  background: var(--primary-color);
}
.slide-block-item-text .slide-block-item-text_block h2 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
}
.slide-block-item-text .slide-block-item-text_block p {
  margin-top: 10px;
  font-size: 20px;
  color: #fff;
}
.slide-block-item-text .slide-block-item-text_block-white {
  margin-top: 20px;
  width: 100%;
  padding: 60px 30px;
  border-radius: 18px;
  background: #fff;
  position: relative;
  border: 1px solid #6E6E6E;
}
.slide-block-item-text .slide-block-item-text_block-white h2 {
  font-size: 30px;
  font-weight: 400;
  color: #6E6E6E;
}
.slide-block-item-text .slide-block-item-text_block-white p {
  margin-top: 10px;
  font-size: 20px;
  color: #6E6E6E;
}
.slide-block-item-text .slide-block-item-text_block-white .plus {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.stack-img {
  width: 297px;
}

@media (max-width: 580px) {
  .slider-block {
    margin-top: 250px;
    display: block;
  }
  .stack-container__wrapper {
    display: none;
  }
  .slide-block-item {
    flex-direction: column-reverse;
    width: 140px;
  }
  .slide-block-item .stack-img {
    height: 270px;
    width: auto;
  }
  .slide-block-item-text {
    width: 300px;
    display: block;
    margin: auto;
    position: relative;
  }
  .slide-block-item-text .slide-block-item-text_block {
    padding: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .slide-block-item-text .slide-block-item-text_block h2 {
    font-size: 20px;
    font-weight: 700;
  }
  .slide-block-item-text .slide-block-item-text_block p {
    font-size: 14px;
  }
  .slide-block-item-text .slide-block-item-text_block_inactive {
    opacity: 0;
    transform: translateY(-20px);
  }
  .slide-block-item-text .slide-block-item-text_block_active {
    opacity: 1;
    transform: translateY(0);
  }
  .slide-block-item-text .slide-block-item-text_block-white {
    padding: 45px 20px;
  }
  .slide-block-item-text .slide-block-item-text_block-white h2 {
    font-size: 20px;
    font-weight: 700;
  }
  .slide-block-item-text .slide-block-item-text_block-white p {
    font-size: 14px;
  }
  .slide-block-item-text .gradient-line {
    position: absolute;
    bottom: 100%;
    left: 40px;
  }
}
.main-recall-form {
  position: relative;
  overflow: hidden;
  padding: 40px 100px 100px 100px;
  background: var(--primary-color);
  border-radius: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 360px;
  margin-top: 60px;
}
.main-recall-form .main-recall-form-text {
  width: 490px;
}
.main-recall-form .main-recall-form-text h2 {
  font-size: 30px;
  color: #fff;
}
.main-recall-form .main-recall-form-text p {
  margin-top: 10px;
  font-size: 18px;
  color: #fff;
}
.main-recall-form .main-recall-form-form {
  width: 460px;
}
.main-recall-form .main-recall-form-form input[type=text] {
  width: 100%;
  height: 47px;
  border-radius: 12px;
  background: #fff;
  border: none;
  padding: 0 35px;
  font-weight: 700;
  font-size: 18px;
}
.main-recall-form .main-recall-form-form input[type=text] + input[type=text] {
  margin-top: 16px;
}
.main-recall-form .main-recall-form-form .acept-policy {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.main-recall-form .main-recall-form-form .acept-policy input {
  width: 27px;
  height: 27px;
}
.main-recall-form .main-recall-form-form .acept-policy label {
  color: #fff;
  font-size: 18px;
  margin-left: 14px;
}
.main-recall-form .main-recall-form-form .acept-policy label a {
  text-decoration: underline;
  color: #fff;
}
.main-recall-form .main-recall-form-form .submit-btn {
  margin-top: 20px;
  width: 100%;
  height: 47px;
  background: transparent;
  border-radius: 50px;
  border: 2px solid #fff;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: 0.3s all ease;
}
.main-recall-form .main-recall-form-form .submit-btn:hover {
  background: #fff;
  color: var(--primary-font-color);
}
.main-recall-form .main-recall-form-form .err-data {
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}
.main-recall-form .form-img {
  position: absolute;
  left: 15px;
  bottom: 5px;
}

@media (max-width: 580px) {
  .main-recall-form {
    height: auto;
    flex-direction: column;
    padding: 35px;
    padding-bottom: 150px;
    margin-top: 30px;
  }
  .main-recall-form .main-recall-form-text {
    width: 100%;
  }
  .main-recall-form .main-recall-form-text h2 {
    font-size: 22px;
  }
  .main-recall-form .main-recall-form-text p {
    font-size: 14px;
  }
  .main-recall-form .main-recall-form-form {
    width: 100%;
    margin-top: 40px;
  }
  .main-recall-form .form-img {
    bottom: -120px;
    left: calc((100% - 250px) / 2);
  }
  .main-recall-form .form-img img {
    width: 250px;
  }
}
.follow-app {
  margin-top: 200px;
  height: 510px;
  position: relative;
  width: 100%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-shadow: 0px 2px 8px 4px rgba(34, 60, 80, 0.2);
}
.follow-app .box-container {
  height: 100%;
}
.follow-app .follow-app__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.follow-app .follow-app__wrapper .follow-app__wrapper-text {
  width: 570px;
  margin-right: 200px;
}
.follow-app .follow-app__wrapper .follow-app__wrapper-text h2 {
  font-size: 40px;
  font-weight: 700;
}
.follow-app .follow-app__wrapper .follow-app__wrapper-text p {
  margin-top: 20px;
  font-size: 25px;
}
.follow-app .follow-app__wrapper .follow-app__wrapper-text button {
  margin-top: 20px;
  width: 460px;
  height: 65px;
  background: var(--primary-color);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.follow-app .follow-app__wrapper .follow-app__wrapper-text button:hover {
  background: var(--hover-color);
}
.follow-app .follow-app__wrapper .follow-app__wrapper-text .follow-app__store {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.follow-app .follow-app-phone {
  position: absolute;
  left: calc((100% - 1220px) / 2);
  bottom: calc((100% - 694px) / 2);
}
.follow-app .follow-app-icon {
  position: absolute;
  left: calc((100% - 1220px) / 2 + 272px);
  bottom: calc((100% - 694px) / 2 + 80px);
}

@media (max-width: 580px) {
  .follow-app {
    margin-top: 50px;
    height: 500px;
    border: none;
    box-shadow: none;
    background-image: url("../img/follow-any-time-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .follow-app .follow-app__wrapper {
    align-items: flex-start;
    padding-top: 50px;
  }
  .follow-app .follow-app__wrapper .follow-app__wrapper-text {
    width: 100%;
    margin: 0;
  }
  .follow-app .follow-app__wrapper .follow-app__wrapper-text h2 {
    font-size: 30px;
    color: #fff;
  }
  .follow-app .follow-app__wrapper .follow-app__wrapper-text p {
    margin-top: 10px;
    color: #fff;
    font-size: 18px;
  }
  .follow-app .follow-app__wrapper .follow-app__wrapper-text button {
    width: 100%;
    height: 35px;
    font-size: 14px;
  }
  .follow-app .follow-app__wrapper .follow-app__wrapper-text .follow-app__store {
    display: none;
  }
  .follow-app .follow-app-phone {
    width: 150px;
    bottom: -80px;
    left: calc((100% - 280px) / 2);
  }
  .follow-app .follow-app-icon {
    display: block;
    position: absolute;
    bottom: -75px;
    right: 60px;
    left: auto;
  }
}
.reviews {
  margin-top: 150px;
}
.reviews h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.reviews .reviews-block {
  position: relative;
  z-index: 1;
}
.reviews .reviews-block .splide__arrows {
  position: absolute;
  top: calc(50% - 25px);
  left: calc((100% - 1220px) / 2);
  width: 1220px;
  display: flex;
  justify-content: space-between;
  z-index: 40;
}
.reviews .reviews-block .splide__arrows .splide__arrow {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: 0.3s all ease;
}
.reviews .reviews-block .splide__arrows .splide__arrow:hover {
  background: var(--hover-color);
}
.reviews .reviews-block .splide__arrows .splide__arrow svg {
  width: 50%;
  fill: #fff;
}
.reviews .reviews-block .splide__arrows .splide__arrow--prev svg {
  transform: rotate(180deg);
}
.reviews .review-item {
  width: 440px;
  height: 386px;
  position: relative;
  z-index: 10;
}
.reviews .review-item .avatar-block {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  left: calc((100% - 92px) / 2);
  top: 0;
  z-index: 50;
}
.reviews .review-item .avatar-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews .review-item .review-item__text {
  height: 340px;
  border-radius: 11px;
  background: #F1F1F1;
  padding: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 46px;
  justify-content: space-between;
}
.reviews .review-item .review-item__text .quotes {
  margin-top: 20px;
}
.reviews .review-item .review-item__text p {
  font-size: 18px;
  font-style: italic;
}
.reviews .review-item .review-item__text b {
  font-size: 18px;
}
.reviews .review-item .review-item__text .mark-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 580px) {
  .reviews {
    margin-top: 130px;
  }
  .reviews .reviews-block .splide__arrows {
    width: 94%;
    left: 3%;
  }
  .reviews .review-item {
    width: 270px;
    margin-left: 0;
  }
  .reviews .review-item .review-item__text p {
    font-size: 14px;
  }
}
.need-help {
  margin-top: 100px;
}
.need-help h2 {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
}
.need-help .need-help__list {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.need-help .need-help__list .need-help__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 330px;
}
.need-help .need-help__list .need-help__list-item .img-box {
  width: 190px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.need-help .need-help__list .need-help__list-item .img-box img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.need-help .need-help__list .need-help__list-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}
.need-help .need-help__list .need-help__list-item p {
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
  line-height: 200%;
}
.need-help .need-help__list .need-help__list-item p a {
  color: var(--primary-color);
  transition: 0.3s all ease;
}
.need-help .need-help__list .need-help__list-item p a:hover {
  color: var(--hover-color);
}

@media (max-width: 580px) {
  .need-help {
    margin-top: 30px;
  }
  .need-help h2 {
    font-size: 24px;
  }
  .need-help .need-help__list {
    flex-direction: column;
    row-gap: 30px;
  }
  .need-help .need-help__list .need-help__list-item {
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
  }
  .need-help .need-help__list .need-help__list-item .img-box {
    width: 50px;
    height: 50px;
  }
  .need-help .need-help__list .need-help__list-item .img-box img {
    height: auto;
    width: 50px;
  }
  .need-help .need-help__list .need-help__list-item .need-help__list-item-text {
    width: calc(100% - 90px);
  }
  .need-help .need-help__list .need-help__list-item .need-help__list-item-text h3 {
    font-size: 18px;
    text-align: left;
  }
  .need-help .need-help__list .need-help__list-item .need-help__list-item-text p {
    font-size: 14px;
    text-align: left;
    margin-top: 5px;
  }
}
.manage-glukoza-level {
  margin-top: 150px;
  height: 270px;
  width: 100%;
  background: var(--primary-color);
  position: relative;
}
.manage-glukoza-level .box-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.manage-glukoza-level .manage-glukoza-level-text {
  width: 490px;
}
.manage-glukoza-level .manage-glukoza-level-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
.manage-glukoza-level .manage-glukoza-level-img {
  position: absolute;
  width: 510px;
  height: 380px;
  top: -60px;
  left: calc((100% - 1220px) / 2);
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.manage-glukoza-level .manage-glukoza-level-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 580px) {
  .manage-glukoza-level {
    height: auto;
  }
  .manage-glukoza-level .box-container {
    height: auto;
    justify-content: center;
  }
  .manage-glukoza-level .manage-glukoza-level-text {
    width: 250px;
    padding: 170px 0 40px;
  }
  .manage-glukoza-level .manage-glukoza-level-text h2 {
    font-size: 24px;
  }
  .manage-glukoza-level .manage-glukoza-level-img {
    width: 90%;
    left: 5%;
    height: 200px;
  }
}
.faq-block {
  margin-top: 170px;
  width: 100%;
  padding: 45px 108px;
  border-radius: 9px;
  border: 1px solid #ccc;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.faq-block h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}
.faq-block p {
  margin-top: 20px;
  text-align: center;
  font-size: 30px;
}
.faq-block p a {
  color: var(--primary-color);
}

@media (max-width: 580px) {
  .faq-block {
    display: none;
  }
}
.footer {
  margin-top: 100px;
  border-top: 1px solid #ccc;
  padding: 50px 0;
}
.footer .box-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .footer-col h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}
.footer .footer-col .footer-logo {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-font-color);
}
.footer .footer-col .support-block {
  margin-top: 15px;
}
.footer .footer-col .support-block a {
  display: flex;
  margin-top: 15px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-font-color);
}
.footer .footer-col .support-block p {
  margin-top: 5px;
  font-weight: 300;
}
.footer .footer-col .footer-col__menu {
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.footer .footer-col .footer-col__menu ul {
  list-style: none;
}
.footer .footer-col .footer-col__menu ul li {
  margin-top: 10px;
}
.footer .footer-col .footer-col__menu ul li a {
  color: var(--primary-font-color);
  transition: 0.3s all ease;
}
.footer .footer-col .footer-col__menu ul li a:hover {
  font-weight: 700;
}
.footer .footer-col .footer-col-app-block {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.footer .footer-col .footer-col-app-block .footer-col-app {
  display: flex;
  margin-top: 10px;
}
.footer .footer-col .footer-col__social {
  margin-top: 25px;
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.footer .footer-col .footer-col__social img {
  width: 30px;
  height: 30px;
  transition: 0.3s all ease;
}
.footer .footer-col .footer-col__social a:hover img {
  transform: scale(1.1);
}
.footer .footer-col .yuwell-footer-logo {
  margin-top: 15px;
}

@media (max-width: 580px) {
  .footer .box-container {
    flex-direction: column;
    row-gap: 20px;
  }
}
.header-head_mod {
  margin-top: 0;
  padding: 20px 0 10px;
  justify-content: flex-end;
}
.header-head_mod .header-logo {
  color: var(--primary-font-color);
}
.header-head_mod .header-nav a {
  color: var(--primary-font-color);
}
.header-head_mod .header-menu {
  top: 85px;
}
.header-head_mod .yuwell-cart-menu .yuwell-cart__block .yuwell-cart__counter span {
  color: var(--primary-font-color);
}
.header-head_mod .header-telegram-link img {
  filter: none;
}
.header-head_mod .header-head-total-phone a {
  color: #333;
}

.header-common {
  background: #fff;
  width: 100%;
}

@media (max-width: 580px) {
  .header-common {
    background: #fff;
  }
  .header-head_mod .header-menu {
    top: 0;
  }
  .header-head_mod .header-telegram-link img {
    filter: none;
  }
  .yuwell-cart-menu {
    margin-left: 0;
  }
  .header-country-telegram {
    margin-left: 10px;
    gap: 10px;
  }
  .header-country-select__list {
    width: 180px;
    left: -40px;
  }
  .header-telegram-link img {
    width: 20px;
    height: 20px;
  }
}
.page-title-block {
  margin-top: 30px;
  width: 100%;
}
.page-title-block .page-title-block__wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.page-title-block .page-title-block__wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-title-block .page-title-block__wrapper .page-title__block-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-title-block .page-title-block__wrapper .page-title__block-bg h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.page-title-block .page-title-block__wrapper .page-title__block-bg p {
  color: #e2e2e2;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 300;
}

@media (max-width: 580px) {
  .page-title-block .page-title-block__wrapper .page-title__block-bg {
    padding: 20px;
  }
  .page-title-block .page-title-block__wrapper .page-title__block-bg h1 {
    font-size: 32px;
    width: 100%;
    text-align: left;
  }
  .page-title-block .page-title-block__wrapper .page-title__block-bg p {
    margin-top: 20px;
    font-size: 16px;
    width: 100%;
    text-align: left;
  }
}
.faq-section {
  margin-top: 40px;
}
.faq-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
}
.faq-section .faq-section-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.faq-section .faq-section__item {
  width: 100%;
}
.faq-section .faq-section__item .faq-section__item-head {
  padding: 20px 25px;
  border-radius: 20px;
  background: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-section .faq-section__item .faq-section__item-head h3 {
  font-weight: 400;
  color: #fff;
  font-size: 20px;
}
.faq-section .faq-section__item .faq-section__item-body {
  background: #ECECEC;
  border-radius: 0 0 20px 20px;
  transition: 0.3s all ease;
  overflow: hidden;
}
.faq-section .faq-section__item .faq-section__item-body p {
  margin: 20px;
}
.faq-section .faq-section__item_active .faq-section__item-head {
  border-radius: 20px 20px 0 0;
}

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

.delivery-payment-common {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.79);
  border-radius: 30px;
  padding: 60px 120px;
  border: 1px solid #ccc;
  box-shadow: 4px 4px 15px 0px rgba(34, 60, 80, 0.2);
  overflow: hidden;
  margin-top: 60px;
  z-index: 20;
}
.delivery-payment-common .delivery-payment-common__title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.delivery-payment-common .delivery-payment-common__title h2 {
  color: #5A5A5A;
  font-size: 32px;
  font-weight: 700;
}
.delivery-payment-common .delivery-payment-common__title img {
  margin-left: 10px;
}
.delivery-payment-common .delivery-payment-common__img {
  position: absolute;
  right: -15px;
  bottom: -15px;
}
.delivery-payment-common .delivery-payment-common__text {
  margin-top: 20px;
  width: 700px;
}
.delivery-payment-common .delivery-payment-common__text p {
  color: #5A5A5A;
}
.delivery-payment-common .delivery-payment-common__text ul {
  padding-left: 20px;
}
.delivery-payment-common .delivery-payment-common__text ul li {
  color: #5A5A5A;
}
.delivery-payment-common .delivery-payment-common__text i {
  margin-top: 20px;
  color: #5A5A5A;
}

.delivery-block {
  position: relative;
}
.delivery-block .delivery-block-bg {
  position: absolute;
  top: calc(50% - 450px);
}

@media (max-width: 580px) {
  .delivery-payment-common {
    padding: 25px 20px;
  }
  .delivery-payment-common .delivery-payment-common__img {
    position: relative;
    bottom: -50px;
  }
  .delivery-payment-common .delivery-payment-common__text {
    width: 100%;
  }
  .delivery-block {
    position: relative;
    overflow: hidden;
  }
  .delivery-block .delivery-block-bg {
    position: absolute;
    height: 596px;
    top: calc(50% - 200px);
    transform: scale(-1, 1);
  }
}
.text-company {
  margin-top: 40px;
}
.text-company h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.text-company p {
  margin-top: 20px;
  line-height: 140%;
}
.text-company img {
  margin-top: 20px;
  width: 100%;
}

.product-list__item_mod {
  box-shadow: none;
  border: none;
  padding: 0;
  width: 100% !important;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  margin-top: 0;
  text-align: left;
}

.product-list__item-price-block_mod {
  margin-top: 30px;
}

.common-product-char {
  margin-top: 90px;
  width: 100%;
  background-image: url(../img/common-char-bg.jpg);
  min-height: 400px;
  margin-bottom: -100px;
}

@media (max-width: 580px) {
  .product-list__item_mod {
    flex-direction: column;
  }
  .product-list__item_mod #main-carousel {
    height: 200px !important;
  }
  .common-product-char {
    margin-top: 50px;
    min-height: 300px;
    margin-bottom: -50px;
  }
  .common-product-char__wrapper {
    padding: 30px 0;
  }
  .common-product-char__wrapper-block h2 {
    font-size: 24px;
  }
  .common-product-char__wrapper-block ul {
    margin-top: 20px;
  }
  .common-product-char__wrapper-block ul li {
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.4;
  }
}
.common-product-char__wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 0;
  display: flex;
  align-items: center;
}

.common-product-char__wrapper-block h2 {
  font-size: 32px;
  color: var(--primary-color);
}
.common-product-char__wrapper-block ul {
  margin-top: 40px;
  list-style: none;
}
.common-product-char__wrapper-block ul li {
  color: #fff;
  margin-top: 20px;
  font-size: 20px;
  line-height: 140%;
}
.common-product-char__wrapper-block ul li::before {
  content: "✓";
  color: var(--primary-color);
  margin-right: 15px;
}

.product-list__item-img_mod {
  flex-direction: column;
  height: auto;
  width: 50%;
  flex-shrink: 0;
}

#main-carousel {
  height: 300px;
}
#main-carousel .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-list__item_mod {
  margin-top: 50px;
}

.product-list__item_mod #main-carousel {
  height: 500px;
}

#thumbnail-carousel {
  width: 100%;
  margin-top: 30px;
}
#thumbnail-carousel .splide__slide {
  padding: 5px;
  border: 1px solid #fff;
}
#thumbnail-carousel .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#thumbnail-carousel .splide__slide.is-visible.is-active {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.product-page__title {
  margin-top: 30px;
}
.product-page__title .breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
.product-page__title h1 {
  margin-top: 10px;
  font-size: 40px;
}

.personal-data-cart {
  margin-top: 30px;
}
.personal-data-cart h2 {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
}
.personal-data-cart .personal-data-cart__block {
  margin-top: 20px;
  width: 340px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.input-block {
  display: flex;
  flex-direction: column;
}
.input-block label {
  font-size: 16px;
  font-weight: 300;
  color: #666;
}
.input-block input[type=text] {
  width: 100%;
  height: 38px;
  border: 2px solid #ccc;
  border-radius: 8px;
  margin-top: 5px;
  padding: 0 10px;
}
.input-block .err-text {
  color: #ff0000;
  font-weight: 300;
  font-size: 14px;
  margin-top: 4px;
  display: none;
}
.input-block textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-family: "Roboto", sans-serif;
  resize: none;
  border: 2px solid #ccc;
  border-radius: 8px;
  margin-top: 5px;
}

.order-items-list {
  margin-top: 30px;
}
.order-items-list h2 {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
}
.order-items-list .order-list__header {
  margin-top: 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}
.order-items-list .order-list__header .product-col {
  width: 700px;
  color: #666;
}
.order-items-list .order-list__header .price-col {
  width: 150px;
  color: #666;
  text-align: right;
  padding-right: 10px;
}
.order-items-list .order-list__header .quantity-col {
  width: 250px;
  color: #666;
  text-align: center;
}

.order-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.order-list__item {
  display: flex;
  align-items: center;
}
.order-list__item .product-col {
  width: 700px;
  padding-right: 20px;
  display: flex;
  align-items: center;
}
.order-list__item .product-col .img-box {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-list__item .product-col .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.order-list__item .product-col h3 {
  margin-left: 40px;
  width: calc(100% - 60px);
  font-size: 18px;
  font-weight: 400;
  color: #7D7D7D;
}
.order-list__item .price-col {
  width: 150px;
}
.order-list__item .price-col span {
  color: var(--primary-color);
  text-decoration: line-through;
  margin-right: 10px;
}
.order-list__item .price-col p {
  font-weight: 500;
}
.order-list__item .price-col .price-col__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.order-list__item .price-col .currency-total-product {
  margin-top: 3px;
  font-size: 12px;
  color: #666;
}
.order-list__item .quantity-col {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-list__item .quantity-col .delete-block {
  display: none;
}
.order-list__item .quantity-col .quantity-block {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
}
.order-list__item .quantity-col .quantity-block .button {
  width: 35px;
  height: 35px;
  border: none;
  cursor: pointer;
  background: transparent;
  transition: 0.3s all ease;
}
.order-list__item .quantity-col .quantity-block .button:hover {
  background: #edffd4;
}
.order-list__item .quantity-col .quantity-block .button-minus {
  border-radius: 10px 0 0 10px;
}
.order-list__item .quantity-col .quantity-block .button-plus {
  border-radius: 0 10px 10px 0;
}
.order-list__item .quantity-col .quantity-block input {
  width: 35px;
  height: 35px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 700;
}
.order-list__item .delete-block {
  margin-left: 30px;
  cursor: pointer;
}

.delivery-block {
  margin-top: 40px;
}
.delivery-block h2 {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
}
.delivery-block .delivery-methods {
  margin-top: 20px;
}
.delivery-block .cdek-map-container {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #f9f9f9;
}
.delivery-block .cdek-map-container #cdek-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
}
.delivery-block .delivery-method {
  width: 400px;
  padding: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: #fff;
  border-radius: 17px;
  border: 1px solid #ccc;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.delivery-block .delivery-method .delivery-method__checkbox {
  cursor: pointer;
}
.delivery-block .delivery-method .delivery-method__checkbox label {
  position: relative;
}
.delivery-block .delivery-method .delivery-method__checkbox input[type=checkbox] {
  width: 1px;
  position: absolute;
  z-index: -1;
}
.delivery-block .delivery-method .delivery-method__checkbox span {
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.delivery-block .delivery-method .delivery-method__checkbox input[type=checkbox]:checked + span::before {
  content: "";
  background-image: url("../img/icons/common/checked.svg");
  width: 20px;
  height: 24px;
  position: absolute;
  bottom: 3px;
  left: 2px;
}
.delivery-block .delivery-method .delivery-method-text {
  margin-left: 30px;
}
.delivery-block .delivery-method .delivery-method-text img {
  width: 100px;
}
.delivery-block .delivery-method .delivery-method-text p {
  color: var(--secondary-font-color);
  font-size: 20px;
}
.delivery-block .delivery-method .delivery-method-text .select-boxberry {
  font-size: 16px;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s all ease;
  margin-top: 5px;
}
.delivery-block .delivery-method .delivery-method-text .select-boxberry:hover {
  color: var(--hover-color);
}

.total-calculate {
  margin-top: 40px;
  width: 450px;
}
.total-calculate .add-params {
  display: flex;
  align-items: flex-end;
}
.total-calculate .add-params span {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-font-color);
}
.total-calculate .add-params .line {
  width: 100%;
  border-bottom: 1px dashed var(--primary-color);
}
.total-calculate .add-params .price-add {
  color: var(--primary-color);
}
.total-calculate .total-block {
  margin-top: 45px;
}
.total-calculate .total-block h3 {
  font-size: 24px;
  font-weight: 400;
}
.total-calculate .total-block h3 b {
  font-weight: 700;
}
.total-calculate .total-block .confirm-order {
  margin-top: 20px;
  width: 100%;
  background: var(--primary-color);
  border: none;
  height: 60px;
  color: #fff;
  font-size: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.total-calculate .total-block .confirm-order:hover {
  background: var(--hover-color);
}
.total-calculate .total-block .confirm-order:disabled {
  background: #bddc92;
}
.total-calculate .total-block .confirm-order:disabled:hover {
  background: #bddc92;
  cursor: not-allowed;
}
.total-calculate .total-block .await-docs {
  margin: 20px 0;
  font-size: 14px;
}

@media (max-width: 580px) {
  .personal-data-cart__block {
    width: 100%;
  }
  .order-items-list .order-list__header {
    display: none;
  }
  .order-list__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .order-list__item .product-col {
    width: 100%;
  }
  .order-list__item .product-col .img-box {
    padding: 0;
    width: 50px;
    height: 50px;
  }
  .order-list__item .product-col h3 {
    margin-left: 20px;
    width: calc(100% - 70px);
    font-size: 14px;
  }
  .order-list__item .price-col {
    width: 100%;
  }
  .order-list__item .quantity-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .order-list__item .quantity-col .delete-block {
    display: block;
  }
  .order-list__item .delete-block {
    display: none;
  }
  .delivery-block .delivery-methods .delivery-method {
    width: 100%;
    box-shadow: none;
  }
  .total-calculate {
    width: 100%;
  }
}
.instructions-block {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
.instructions-block .instructions-block__item {
  width: 585px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.instructions-block .instructions-block__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.instructions-block .instructions-block__item .instructions-block__item-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(69, 69, 69, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.instructions-block .instructions-block__item .instructions-block__item-wrapper p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.instructions-block .instructions-block__item .instructions-block__item-wrapper button {
  width: 230px;
  height: 40px;
  border-radius: 50px;
  background: var(--primary-color);
  transition: 0.3s all ease;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.instructions-block .instructions-block__item .instructions-block__item-wrapper button:hover {
  background: var(--hover-color);
}

@media (max-width: 580px) {
  .instructions-block .instructions-block__item {
    width: 100%;
    height: 250px;
  }
}
.empty-block {
  margin-top: 30px;
}

@media (max-width: 560px) {
  .personal-data-cart .personal-data-cart__block {
    width: 100%;
  }
}
.empty-order-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.empty-order-block__wrapper {
  width: 400px;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.empty-order-block__wrapper img {
  width: 150px;
}
.empty-order-block__wrapper h2 {
  text-align: center;
  margin-top: 15px;
  font-size: 28px;
}
.empty-order-block__wrapper p {
  text-align: center;
  margin-top: 10px;
  line-height: 140%;
  font-size: 14px;
}
.empty-order-block__wrapper button {
  width: 200px;
  height: 35px;
  background: var(--primary-color);
  color: #fff;
  margin-top: 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.empty-order-block__wrapper button:hover {
  background: var(--hover-color);
}

@media (max-width: 560px) {
  .empty-order-block__wrapper {
    width: 100%;
    margin-top: 50px;
  }
  .cart-item .cart-item__controls .cart-item__control-price {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-item .cart-item__controls .cart-item__price {
    margin-top: 10px;
  }
}
.promocode-block {
  width: 220px;
  height: 40px;
  position: relative;
  margin-top: 50px;
  border: 2px dashed var(--primary-color);
  border-radius: 4px;
}
.promocode-block input {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 10px;
  font-size: 14px;
  text-transform: uppercase;
}
.promocode-block button {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  right: 8px;
  top: 8px;
  border: none;
  cursor: pointer;
  background: #C5E896;
  transition: 0.3s all ease;
}
.promocode-block button:hover {
  background: var(--primary-color);
}

.promocode-block-text {
  color: var(--primary-color);
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.promo span {
  text-decoration: line-through;
}
.promo .current {
  margin-left: 10px;
  text-decoration: none;
}

.success-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.success-wrapper .success-wrapper-text .success-wrapper-text__title h1 {
  color: var(--primary-color);
  font-size: 60px;
}
.success-wrapper .success-wrapper-text .success-wrapper-text__title p {
  margin-top: 10px;
  font-size: 24px;
}
.success-wrapper .success-wrapper-text .success-wrapper-text__block {
  margin-top: 30px;
}
.success-wrapper .success-wrapper-text .success-wrapper-text__block h2 {
  font-size: 24px;
  color: var(--primary-color);
}
.success-wrapper .success-wrapper-text .success-wrapper-text__block p {
  font-size: 24px;
  margin-top: 10px;
}
.success-wrapper .success-wrapper-text .success-wrapper-text__block button {
  width: 400px;
  height: 45px;
  background: var(--primary-color);
  color: #fff;
  margin-top: 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s all ease;
  font-size: 20px;
}
.success-wrapper .success-wrapper-text .success-wrapper-text__block button:hover {
  background: var(--hover-color);
}

@media (max-width: 560px) {
  .success-wrapper {
    flex-direction: column-reverse;
  }
  .success-wrapper .success-wrapper-text {
    margin-top: 50px;
  }
  .success-wrapper .success-wrapper-text .success-wrapper-text__title h1 {
    font-size: 24px;
  }
  .success-wrapper .success-wrapper-text .success-wrapper-text__title p {
    font-size: 18px;
  }
  .success-wrapper .success-wrapper-text .success-wrapper-text__block h2 {
    font-size: 18px;
  }
  .success-wrapper .success-wrapper-text .success-wrapper-text__block p {
    font-size: 18px;
  }
  .success-wrapper .success-wrapper-text .success-wrapper-text__block button {
    width: 100%;
  }
  .success-wrapper .success-wrapper-img {
    width: 100%;
  }
  .success-wrapper .success-wrapper-img img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 560px) {
  .header-head {
    margin-top: 30px;
  }
  .header-head_mod {
    margin-top: 10px;
  }
  .header-country-telegram {
    margin-left: 5px;
    gap: 8px;
  }
  .header-country-select__list {
    width: 160px;
    left: -30px;
  }
}
@media (max-height: 640px) {
  .header-main {
    min-height: 570px;
  }
  .header-main .header-wrapper {
    min-height: 570px;
  }
  .header-app-phone {
    width: 240px;
  }
}
.consult-form {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 50px;
}
.consult-form .consult-form__form {
  width: 50%;
}
.consult-form .consult-form__img {
  width: 50%;
}
.consult-form .consult-form__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.consult-form_mod {
  padding-top: 50px;
  border-top: 1px solid #ccc;
}

.consult-form__form-title h1 {
  font-weight: 700;
  font-size: 40px;
  color: var(--primary-color);
}
.consult-form__form-title h2 {
  font-weight: 700;
  font-size: 40px;
  color: var(--primary-color);
}
.consult-form__form-title p {
  margin-top: 10px;
  font-size: 18px;
}

.consult-form__form-subtitle {
  margin-top: 30px;
}
.consult-form__form-subtitle h3 {
  color: var(--primary-color);
  font-size: 24px;
}
.consult-form__form-subtitle p {
  margin-top: 10px;
  font-size: 18px;
}

.help-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 460px;
}
.help-form .help-form__title {
  margin-bottom: 20px;
}
.help-form .help-form__title h4 {
  color: var(--primary-color);
  font-size: 24px;
}
.help-form .help-form__title p {
  margin-top: 10px;
  font-size: 16px;
}
.help-form .help-form__input {
  margin-bottom: 15px;
  width: 100%;
  height: 47px;
  border-radius: 12px;
  background: #F0F0F0;
  border: none;
  color: #373737;
  font-size: 18px;
  padding: 0 20px;
}
.help-form .help-form__checkbox-block {
  display: flex;
  align-items: center;
}
.help-form .help-form__checkbox-block .help-form__checkbox {
  position: relative;
}
.help-form .help-form__checkbox-block .help-form__checkbox input[type=checkbox] {
  width: 1px;
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.help-form .help-form__checkbox-block .help-form__checkbox span {
  display: flex;
  width: 27px;
  height: 27px;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  margin-right: 15px;
}
.help-form .help-form__checkbox-block .help-form__checkbox input[type=checkbox]:checked + span::before {
  content: "";
  background-image: url("../img/icons/common/checked.svg");
  width: 20px;
  height: 24px;
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.help-form .help-form__checkbox-block p a {
  text-decoration: underline;
}
.help-form input[type=submit] {
  width: 100%;
  height: 45px;
  background: var(--primary-color);
  color: #fff;
  margin-top: 25px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s all ease;
  font-size: 20px;
}
.help-form input[type=submit]:hover {
  background: var(--hover-color);
}
.help-form .err-data {
  font-size: 14px;
  margin-top: 10px;
  color: #ff0000;
  display: none;
}

@media (max-width: 580px) {
  .consult-form {
    flex-direction: column-reverse;
  }
  .consult-form .consult-form__form {
    width: 100%;
  }
  .consult-form .consult-form__img {
    width: 100%;
  }
  .help-form {
    width: 100%;
  }
  .consult-form__form-title h1 {
    font-size: 26px;
  }
  .consult-form__form-title h2 {
    font-size: 26px;
  }
  .consult-form__form-title p {
    font-size: 16px;
  }
  .consult-form__form-subtitle h3 {
    font-size: 20px;
  }
  .consult-form__form-subtitle p {
    font-size: 16px;
  }
  .consult-form_mod {
    position: relative;
  }
  .consult-form_mod .consult-form__form {
    position: relative;
    z-index: 20;
  }
  .consult-form_mod .consult-form__img {
    position: absolute;
    z-index: 10;
    top: 150px;
  }
}
.ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short {
  background: #fff !important;
}

.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more {
  background-image: url("../img/icons/cart/share.svg") !important;
}

.ya-share2__container_size_m .ya-share2__item_copy .ya-share2__icon_copy, .ya-share2__container_size_m .ya-share2__item_more .ya-share2__icon_more {
  background-size: 22px 22px !important;
}

.contacts-page-block {
  width: 100%;
  padding: 50px;
  background: url("../img/contacts-banner.png");
  background-position: center;
  background-size: cover;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contacts-page-block__form {
  background: rgba(255, 255, 255, 0.3);
  padding: 40px;
  width: 570px;
  border-radius: 15px;
}
.contacts-page-block__form .contacts-page-block__form-unit {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
}
.contacts-page-block__form .contacts-page-block__form-unit input[type=text] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  height: 30px;
}
.contacts-page-block__form .contacts-page-block__form-unit input[type=text]::-moz-placeholder {
  color: #fff;
}
.contacts-page-block__form .contacts-page-block__form-unit input[type=text]::placeholder {
  color: #fff;
}
.contacts-page-block__form .contacts-page-block__form-unit .err-text {
  margin-top: 5px;
  font-size: 14px;
  color: #fff;
  display: none;
}
.contacts-page-block__form .contacts-page-block__form-unit-flex {
  flex-direction: row;
  align-items: center;
}
.contacts-page-block__form .contacts-page-block__form-unit-flex .contacts-page-block__form-unit-checkbox {
  position: relative;
}
.contacts-page-block__form .contacts-page-block__form-unit-flex .contacts-page-block__form-unit-checkbox input[type=checkbox] {
  width: 1px;
  position: absolute;
  z-index: -2;
}
.contacts-page-block__form .contacts-page-block__form-unit-flex .contacts-page-block__form-unit-checkbox span {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  display: flex;
  position: relative;
  border: 1px solid #fff;
}
.contacts-page-block__form .contacts-page-block__form-unit-flex .contacts-page-block__form-unit-checkbox input[type=checkbox]:checked + span::before {
  content: "";
  background-image: url("../img/icons/common/checked.svg");
  width: 20px;
  height: 24px;
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.contacts-page-block__form .contacts-page-block__form-unit-flex p {
  margin-left: 10px;
  color: #fff;
}
.contacts-page-block__form .contacts-page-block__form-unit-flex p a {
  color: #fff;
  text-decoration: underline;
}
.contacts-page-block__form .contacts-submit {
  margin-top: 35px;
  width: 100%;
  height: 45px;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.contacts-page-block__form .contacts-submit:hover {
  background: #fff;
  color: #000;
}
.contacts-page-block__form .err-data {
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
  display: none;
}

.contacts-page-block__contacts {
  color: #fff;
}
.contacts-page-block__contacts h1 {
  color: #fff;
}
.contacts-page-block__contacts .contacts-page-block__contact-info__unit-text a {
  color: #fff;
}
.contacts-page-block__contacts .contacts-page-block__contact-info__unit-text p {
  color: #fff;
}
.contacts-page-block__contacts .contacts-page-block__contact-info__unit-text span {
  color: #fff;
}

.contacts-page-block__contact-info .contacts-page-block__contact-info__unit {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}
.contacts-page-block__contact-info .contacts-page-block__contact-info__unit .contacts-page-block__contact-info__unit-text {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.contacts-page-block__contact-info .contacts-page-block__contact-info__unit .contacts-page-block__contact-info__unit-text a {
  display: flex;
  margin-top: 6px;
  font-size: 25px;
  font-weight: 700;
}
.contacts-page-block__contact-info .contacts-page-block__contact-info__unit .contacts-page-block__contact-info__unit-text p {
  font-size: 25px;
  font-weight: 700;
  width: 340px;
}

.contacts-page-block__mob {
  display: none;
}

@media (max-width: 580px) {
  .contacts-page-block {
    flex-direction: column;
    margin-top: 20px;
    padding: 40px 10px 40px;
  }
  .contacts-page-block__contacts {
    color: #fff;
  }
  .contacts-page-block__contacts h1 {
    color: #fff;
  }
  .contacts-page-block__contacts .contacts-page-block__contact-info {
    display: none;
  }
  .contacts-page-block__mob {
    display: block;
  }
  .contacts-page-block__mob .contacts-page-block__contact-info .contacts-page-block__contact-info__unit .contacts-page-block__contact-info__unit-text a {
    font-size: 22px;
  }
  .contacts-page-block__mob .contacts-page-block__contact-info .contacts-page-block__contact-info__unit .contacts-page-block__contact-info__unit-text p {
    width: 100%;
    font-size: 22px;
  }
  .contacts-page-block__form {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
  }
}
.sertificates-header {
  background: url("../img/sertificates-bg.png");
  width: 100%;
  height: 205px;
  background-size: cover;
  background-position: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sertificates-header h1 {
  color: #fff;
}
.sertificates-header .sertificates-header__line {
  height: 6px;
  width: 160px;
  background: var(--primary-color);
  margin: 25px 0;
}
.sertificates-header p {
  color: #fff;
}

.sertificates-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.sertificates-list-item {
  width: 180px;
  height: 250px;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.sertificates-list-item .sertificates-list-item-img {
  width: 180px;
  height: 250px;
}
.sertificates-list-item .sertificates-list-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 580px) {
  .sertificates-header {
    height: 250px;
    padding: 20px;
  }
  .sertificates-header h1 {
    font-size: 24px;
    text-align: center;
  }
  .sertificates-header p {
    font-size: 14px;
    text-align: center;
  }
  .sertificates-header .sertificates-header__line {
    margin: 15px 0;
  }
  .sertificates-list-item {
    width: 155px;
    height: 210px;
  }
  .sertificates-list-item .sertificates-list-item-img {
    width: 155px;
    height: 210px;
  }
}
.news-title {
  text-align: center;
  margin-top: 30px;
}

.news-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.news-item {
  width: 260px;
  height: 420px;
  background: #fff;
  border-radius: 27px;
  overflow: hidden;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.news-item .news-item__img {
  width: 100%;
  height: 260px;
}
.news-item .news-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-item .news-item__text {
  height: 150px;
  padding: 20px;
}
.news-item .news-item__text h2 {
  font-size: 14px;
  transition: 0.3s all ease;
}
.news-item .news-item__text h2:hover {
  color: var(--primary-color);
}
.news-item .news-item__text p {
  margin-top: 10px;
  font-size: 14px;
}

@media (max-width: 580px) {
  .news-list {
    justify-content: center;
  }
}
.box-container_news {
  width: 780px;
}

.news-text {
  margin-top: 40px;
}
.news-text .news-text__thumb {
  width: 100%;
  height: 650px;
  overflow: hidden;
  border-radius: 30px;
}
.news-text .news-text__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-text h1 {
  font-size: 24px;
  margin-top: 20px;
}
.news-text p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 140%;
}
.news-text h2 {
  margin-top: 20px;
  font-size: 20px;
}
.news-text h3 {
  margin-top: 20px;
  font-size: 18px;
}
.news-text h4 {
  margin-top: 20px;
  font-size: 16px;
}

@media (max-width: 580px) {
  .box-container_news {
    width: 90%;
  }
  .news-text {
    margin-top: 20px;
  }
  .news-text .news-text__thumb {
    height: 300px;
  }
}
.stack-container__wrapper {
  width: 100%;
  margin-top: 200px;
}

.stack-container {
  position: relative;
  width: 100%; /* Ширина контейнера */
  height: 650px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden; /* Разрешаем видеть все слайды */
}

.stack-item {
  position: absolute;
  width: 70%;
  height: 100%;
  transition: transform 0.5s, opacity 0.5s, z-index 0.5s;
  transform-origin: left center; /* Точка трансформации слева */
  z-index: 1;
  cursor: grab; /* Курсор для перетаскивания */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* Запрет выделения текста */
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: space-between;
}

/* Активный слайд слева */
.stack-item.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 4; /* Активный слайд поверх остальных */
}
.stack-item.active .stack-item__text-block {
  opacity: 1;
}

/* Слайды справа от активного */
.stack-item.next-1 {
  transform: translateX(20%) scale(0.9); /* Первый следующий */
  z-index: 3;
}

.stack-item.next-2 {
  transform: translateX(40%) scale(0.8); /* Второй следующий */
  z-index: 2;
}

.stack-item.next-3 {
  transform: translateX(60%) scale(0.7); /* Третий следующий */
  z-index: 1;
}

.stack-item__text-block {
  width: 450px;
  background: #7ACB0B;
  border-radius: 18px;
  padding: 30px;
  color: #fff;
  position: relative;
  opacity: 0;
  transition: 2s all ease;
}
.stack-item__text-block h2 {
  font-size: 30px;
  color: #fff;
}
.stack-item__text-block p {
  margin-top: 5px;
  font-size: 20px;
  color: #fff;
}
.stack-item__text-block .plus {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.stack-item__text-block__white {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #6E6E6E;
  padding: 30px 30px 45px;
}
.stack-item__text-block__white h2 {
  color: #6E6E6E;
}
.stack-item__text-block__white p {
  color: #6E6E6E;
}

.recall-side-btn {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: -54px;
  bottom: 100px;
  transform: rotate(-90deg);
  width: 150px;
  height: 40px;
  background: #AFAFAF;
  border-radius: 5px;
  z-index: 500;
}
.recall-side-btn p {
  color: #fff;
  font-size: 14px;
}

.header-main-block {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.header-main-block_active {
  width: 100%;
  background: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 300;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  opacity: 1;
  visibility: visible;
}
.header-main-block_active .header-head-total-phone a {
  font-size: 14px;
  color: #333;
}
.header-main-block_active .header-head {
  margin-top: 0;
}
.header-main-block_active .header-head .header-logo {
  color: #000;
}
.header-main-block_active .header-head .header-nav a {
  color: #000;
}
.header-main-block_active .header-head .yuwell-cart-menu .yuwell-cart__counter span {
  color: #000;
}
.header-main-block_active .header-head .yuwell-cart-menu img {
  filter: invert(100%);
}
.header-main-block_active .header-telegram-link img {
  filter: none;
}

.policy-data {
  margin-top: 30px;
}
.policy-data h2 {
  margin-top: 20px;
}
.policy-data p {
  margin-top: 20px;
}
.policy-data ul {
  padding-left: 20px;
  margin-top: 20px;
}
.policy-data ul li {
  margin-top: 5px;
}

.header-attention {
  width: 100%;
  padding: 20px;
  background: #ff0000;
  color: #fff;
}
.header-attention p {
  text-align: center;
  color: #fff;
}

.site-own-data {
  margin-top: 30px;
}
.site-own-data h2 {
  margin-bottom: 20px;
}
.site-own-data p {
  font-size: 14px;
}
.site-own-data p + p {
  margin-top: 10px;
}

.box-container-footer {
  margin-top: 30px;
}
.box-container-footer p {
  font-size: 12px;
}

.payment-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pay-img {
  width: 50px;
}

.pay-img__margin {
  margin-top: 10px;
}

.payment-docs {
  margin-top: 20px;
}
.payment-docs a {
  display: flex;
  margin-top: 10px;
}
.payment-docs a img {
  width: 300px;
}

.delivery-product-img {
  margin-left: 20px;
  width: 140px;
}

.how-to-shop-block {
  margin-top: 25px;
}
.how-to-shop-block .how-to-shop-block__step {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.how-to-shop-block .how-to-shop-block__step p {
  margin-top: 10px;
}
.how-to-shop-block .how-to-shop-block__step img {
  margin-top: 15px;
}
.how-to-shop-block .how-to-shop-block__step .full-width {
  width: 100%;
}

@media (max-width: 580px) {
  .how-to-shop-block .how-to-shop-block__step img {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .header-country-telegram {
    margin-left: 10px;
    gap: 10px;
  }
  .header-country-select__list {
    width: 180px;
    left: -40px;
  }
  .header-telegram-link img {
    width: 20px;
    height: 20px;
  }
  .yuwell-cart-menu .yuwell-menu {
    margin-left: 25px;
  }
  .header-head-total-phone {
    margin-left: 0;
  }
  .header-head-total-phone a {
    font-size: 14px;
  }
}
.currency_info {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}
.currency_info a {
  color: #666;
  text-decoration: underline;
}

.additional_products {
  margin-top: 50px;
}
.additional_products h2 {
  color: #333;
  font-size: 40px;
}
.additional_products .additional-start-kit-text {
  width: 650px;
  font-size: 14px;
  line-height: 140%;
  margin-top: 10px;
}
.additional_products .additional_product-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
}

.additional-products-list__item {
  position: relative;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 650px;
  height: 150px;
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.additional-products-list__item .additional-products-list__item-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.additional-products-list__item .additional-products-list__item-col h3 {
  font-size: 24px;
  font-weight: 700;
}
.additional-products-list__item .additional-products-list__item-col a {
  color: var(--primary-color);
  transition: 0.3s all ease;
}
.additional-products-list__item .additional-products-list__item-col a:hover {
  color: var(--hover-color);
}
.additional-products-list__item .additional-products-list__item-col .starter-package-btn-shop {
  width: 250px;
  height: 35px;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  transition: 0.3s all ease;
  cursor: pointer;
}
.additional-products-list__item .additional-products-list__item-col .starter-package-btn-shop:hover {
  background: var(--hover-color);
}
.additional-products-list__item .additional-products-list__item-col .starter-package-price__value {
  font-size: 24px;
  font-weight: 700;
}
.additional-products-list__item .benefit-block {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background-color: #ff0000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.additional-products-list__item .benefit-block .benefit-block__text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.additional-products-list__item .benefit-block .benefit-block__value {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.additional-products-list__img {
  width: 470px;
}

.product-list__item-description-block__text-economy {
  color: #ff0000;
  margin-top: 20px;
}

@media (max-width: 580px) {
  .additional-products-list__img {
    display: none;
  }
  .additional_products .additional-start-kit-text {
    width: 100%;
  }
  .additional-products-list__item {
    width: 100%;
    margin-top: 40px;
  }
  .additional-products-list__item .additional-products-list__item-col .starter-package-btn-shop {
    width: 145px;
  }
  .additional-products-list__item .benefit-block {
    width: 60px;
    height: 60px;
    right: -10px;
  }
}/*# sourceMappingURL=style.css.map */