@charset "UTF-8";

:root {
  --black-pure: #000;
  --white-pure: #fff;
  --black-main: #2e2e2e;
  --white-darker: #f4f4f4;
  --white-gradient: linear-gradient(180deg, #f4f4f4 0%, #fdfbfb 29.17%, #e3e3e3 100%);
  --gray: #808080;
  --gray-light: #ececec;
  --primary: #54a8c2;
  --primary-gradient: linear-gradient(180deg, #72bad0 0%, #76c8e1 28.13%, #54a8c2 100%);
  --red: #ed4c54;
  --main-color: var(--black-main);
  --main-offsize: 0.8125rem;
  --add-offsize: 1rem;
  --title-offsize: 1.25rem;
}

@font-face {
  font-family: Unbounded;
  font-display: swap;
  src: url("../fonts/Unbounded-Bold.woff2") format("woff2"), url("../fonts/Unbounded-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Unbounded;
  font-display: swap;
  src: url("../fonts/Unbounded-Light.woff2") format("woff2"), url("../fonts/Unbounded-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Unbounded;
  font-display: swap;
  src: url("../fonts/Unbounded-Regular.woff2") format("woff2"), url("../fonts/Unbounded-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Unbounded;
  font-display: swap;
  src: url("../fonts/Unbounded-SemiBold.woff2") format("woff2"), url("../fonts/Unbounded-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: var(--main-color);
  line-height: 1;
  font-family: "Unbounded";
  font-size: var(--main-offsize);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 10;
}

input,
button,
textarea {
  font-family: "Unbounded";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--white-darker);
}

.wrapper:before,
.wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1067px;
}

.no-webp .wrapper::before{
  background: url(../images/main-bg2.png) center no-repeat; }

.wrapper::before {
  z-index: 1;
}

.wrapper::after {
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(top, #F4F4F4 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(-180deg, #F4F4F4 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
      -ms-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
}

.wrapper > main {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.menu-open .wrapper > main {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 62.5rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: inherit;
  color: inherit;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  font-size: inherit;
  color: inherit;
}

input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: inherit;
  color: inherit;
}

input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: inherit;
  color: inherit;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  font-size: inherit;
  color: inherit;
}

.input {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: var(--white-darker);
  border-radius: 50px;
  color: rgba(46, 46, 46, 0.5);
  text-align: left;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.input:hover,
.input._form-focus {
  color: var(--main-color);
}

.input.error {
  color: var(--red);
}

textarea.input {
  resize: none;
  min-height: 100px;
  border-radius: 15px;
}

.checkbox {
  position: relative;
}

.checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__input:checked + .checkbox__label:after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkbox__label {
  width: 100%;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 10px;
}

.checkbox__label:after,
.checkbox__label:before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5rem;
          flex: 0 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

.checkbox__label::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), color-stop(29.17%, #FDFBFB), to(#E3E3E3));
  background: -o-linear-gradient(top, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  background: linear-gradient(180deg, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  /* gblock */
  -webkit-box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
          box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
}

.checkbox__label::after {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background: url("../images/icons/checkmark.svg") center/15px 15px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#72BAD0), color-stop(28.13%, #76C8E1), to(#54A8C2));
  background: url("../images/icons/checkmark.svg") center/15px 15px no-repeat, -o-linear-gradient(top, #72BAD0 0%, #76C8E1 28.13%, #54A8C2 100%);
  background: url("../images/icons/checkmark.svg") center/15px 15px no-repeat, linear-gradient(180deg, #72BAD0 0%, #76C8E1 28.13%, #54A8C2 100%);
  -webkit-transition: visibility 0.4s ease, opacity 0.4s ease;
  -o-transition: visibility 0.4s ease, opacity 0.4s ease;
  transition: visibility 0.4s ease, opacity 0.4s ease;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.checkbox__text {
  font-size: 12px;
  line-height: 1.25;
}

.checkbox__text span {
  white-space: nowrap;
}

.delivery-item {
  width: 100%;
}

.delivery-item__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.delivery-item__label {
  margin-right: 0.625rem;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.25;
}

.delivery-item__price {
  font-size: 0.6875rem;
  line-height: 1.2727272727;
  color: var(--red);
}

.delivery-item__price--black {
  text-align: center;
  font-size: 0.75rem;
  color: var(--main-color);
}

.delivery-item__descr {
  font-size: 11px;
  line-height: 1.2727272727;
}

.select {
  position: relative;
  font-size: 12px;
}

.select__body {
  position: relative;
}

.select__title {
  width: 100%;
  color: inherit;
  text-align: left;
  border: 1px solid var(--primary);
  cursor: pointer;
  border-radius: 50px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.9375rem;
  gap: 0.625rem;
}

._select-open .select__value {
  color: var(--primary);
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  height: 15px;
  -webkit-transition: color 0.4s ease, -webkit-transform 0.4s ease;
  transition: color 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: color 0.4s ease, transform 0.4s ease;
  transition: color 0.4s ease, transform 0.4s ease;
  transition: color 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  background: url("../images/icons/arr-down.svg") center/cover no-repeat;
}

._select-open .select__value:after {
  background: url("../images/icons/arr-down-primary.svg") center/cover no-repeat;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  position: absolute;
  bottom: -10px;
  left: 50%;
  min-width: 150px;
  border-radius: 15px;
  background-color: var(--white-pure);
  -webkit-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  text-align: center;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  cursor: pointer;
  color: inherit;
  border-radius: 15px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.select__option._select-selected {
  color: var(--primary);
}

.select__option:not(:last-child) {
  border-bottom: 1px solid var(--gray-light);
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

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

.quantity__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5rem;
          flex: 0 0 1.5rem;
  height: 24px;
  position: relative;
  cursor: pointer;
  color: var(--main-color);
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), color-stop(29.17%, #FDFBFB), to(#E3E3E3));
  background: -o-linear-gradient(top, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  background: linear-gradient(180deg, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  /* gblock */
  -webkit-box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
          box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.quantity__button svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13px;
          flex: 0 0 13px;
  pointer-events: none;
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  font-size: 0.75rem;
  width: 100%;
  text-align: center;
  background-color: transparent;
}

.spollers__item {
  padding: 10px 0;
  font-size: 0.8125rem;
}

.spollers__item:not(:last-child) {
  border-bottom: 1px solid var(--white-pure);
}

.spollers__item:not(:first-child) {
  border-top: 1px solid var(--gray-light);
}

.spollers__title {
  position: relative;
  width: 100%;
  padding-left: 20px;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
}

._spoller-init .spollers__title {
  cursor: pointer;
  /*
  ._spoller-init & {
  	position: relative;
  	width: 100%;
  	text-align: left;
  	&::before,
  	&::after {
  		content: "";
  		position: absolute;
  		right: 0;
  		top: rem(12);
  		height: rem(1);
  		transition: all 0.3s ease 0s;
  		width: rem(10);
  		background-color: #000;
  	}
  	&::before {
  		transform: rotate(40deg);
  		right: rem(7);
  	}
  	&::after {
  		transform: rotate(-40deg);
  	}
  }
  &._spoller-active {
  	&::before {
  		transform: rotate(-40deg);
  	}
  	&::after {
  		transform: rotate(40deg);
  	}
  }
  */
}

._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 10px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  -o-transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  border-radius: 12px;
}

._spoller-init .spollers__title::before {
  -webkit-transform: translate(0, -50%) rotate(90deg);
      -ms-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}

._spoller-init .spollers__title::after {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

._spoller-init .spollers__title._spoller-active::before {
  -webkit-transform: translate(0, -50%) rotate(0deg);
      -ms-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
}

.spollers__body {
  padding: 11px 20px;
}

.spollers__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
}

.spollers__item-list a {
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.spollers__item-list:not(:last-child) {
  margin-bottom: 10px;
}

.icon-menu {
  display: none;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.smooth-scroll-page {
  scroll-behavior: smooth;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 12.5px 20px;
  border-radius: 20px;
}

.button--narrow {
  padding: 8px 15px;
}

.button--filled {
  color: var(--white-pure);
  background: -webkit-gradient(linear, left top, left bottom, from(#72bad0), color-stop(28.13%, #76c8e1), to(#54a8c2));
  background: -o-linear-gradient(top, #72bad0 0%, #76c8e1 28.13%, #54a8c2 100%);
  background: linear-gradient(180deg, #72bad0 0%, #76c8e1 28.13%, #54a8c2 100%);
}

.button--stroke {
  border: 1px solid var(--primary);
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.review-item {
  position: relative;
  padding: 1.875rem;
  background-color: var(--white-pure);
  border-radius: 1.25rem;
}

.review-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 85.2272727273%;
  height: 105px;
  -webkit-transform: translate(10%, 28%);
      -ms-transform: translate(10%, 28%);
          transform: translate(10%, 28%);
  background: url("../images/icons/shadows/review-shadow.svg") right bottom/contain no-repeat;
}

.review-item__top {
  margin-bottom: 0.9375rem;
}

.review-item__name {
  font-size: 1rem;
  font-weight: 600;
}

.review-item__stars {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.125rem;
          flex: 0 0 6.125rem;
}

.review-item__text {
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.4285714286;
}

.reviews-page__descr {
  margin-bottom: 20px;
  line-height: 1.6923076923;
  font-weight: 300;
}

.reviews-page__items {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.text-elipsis {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-disabled {
  opacity: 0.2;
  cursor: auto;
}

.swiper-pagination-bullets:not(.swiper-pagination-lock) {
  margin: 1.5625rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-pagination-bullets:not(.swiper-pagination-lock).industries__controls span {
  background-color: rgba(7, 5, 70, 0.2);
}

.swiper-pagination-bullets:not(.swiper-pagination-lock) span {
  width: 10px;
  height: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.swiper-pagination-bullets:not(.swiper-pagination-lock) span:not(:last-child) {
  margin: 0 0.625rem 0 0;
}

.swiper-pagination-bullets:not(.swiper-pagination-lock) span.swiper-pagination-bullet-active {
  background-color: var(--add-color);
}

.header {
  position: relative;
  z-index: 3;
}

.header__body {
  position: relative;
  border-bottom: 1px solid var(--white-pure);
}

.header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.menu-open .header__bg {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__content {
  position: relative;
  z-index: 4;
}

.menu-open .header__top {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.header__phone {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 17px auto;
  grid-template-columns: 17px auto;
  gap: 5px;
  white-space: nowrap;
  font-weight: 300;
  line-height: 1.25;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.header__menu {
  position: relative;
  padding: 18px 0;
  background: var(--primary-gradient);
  border-radius: 15px 15px 0px 0px;
}

.header__menu::after,
.header__menu::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 15px;
  height: 15px;
  -webkit-transform: translate(0, 98%);
      -ms-transform: translate(0, 98%);
          transform: translate(0, 98%);
  background-color: #548c9d;
}

.header__menu::before {
  left: 0;
  -webkit-clip-path: polygon(100% 100%, 0 0, 100% 0);
          clip-path: polygon(100% 100%, 0 0, 100% 0);
}

.header__menu::after {
  right: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.menu-open .header__hero {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.menu-open .menu {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 970px;
  margin: 0 auto;
}

.menu__item {
  position: relative;
}

.menu__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: url("../images/icons/menu-border.svg") 0 0/cover no-repeat;
}

.menu__item:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: url("../images/icons/menu-border.svg") 0 0/cover no-repeat;
}

.menu__item--action {
  padding: 0 24px 0 0;
}

.menu__item--action svg {
  pointer-events: none;
}

.menu__link {
  position: relative;
  padding: 4.5px 0;
  text-transform: uppercase;
  color: var(--white-pure);
  /* white-space: nowrap; */
}

.menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white-pure);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  opacity: 0;
  -webkit-transform: translate3D(0px, 3px, 0);
      -ms-transform: translate3D(0px, 3px, 0);
          transform: translate3D(0px, 3px, 0);
}

.menu__sublist {
  position: absolute;
  z-index: 2;
  bottom: -18px;
  left: 50%;
  min-width: 150px;
  border-radius: 15px;
  background-color: var(--white-pure);
  -webkit-transform: translate(-90%, 110%);
      -ms-transform: translate(-90%, 110%);
          transform: translate(-90%, 110%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
}

.show-sublist .menu__sublist {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translate(-90%, 100%);
      -ms-transform: translate(-90%, 100%);
          transform: translate(-90%, 100%);
}

.menu__sublist .menu__item:not(:last-child) {
  border-bottom: 1px solid var(--gray-light);
}

.menu__sublist .menu__item > .menu__link {
  display: block;
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  cursor: pointer;
  color: inherit;
}

.hero-header__about {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-header__selects {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.hero-header__select .select__value {
  height: 1.875rem;
}

.reviews-hero__quantity {
  font-weight: 700;
  line-height: 1.2333333333;
  text-shadow: 0px -1px 0px var(--black-pure);
}

.reviews-hero__descr {
  font-weight: 300;
  line-height: 1.6363636364;
}

.events-hero__item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.events-hero__desrc {
  text-align: right;
}

.events-hero__title {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.events-hero__text {
  font-weight: 300;
}

.cart-hero {
  position: absolute;
  z-index: 3;
  bottom: -79px;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.cart-hero__inner {
  position: relative;
}

.cart-hero__image {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.cart-hero__label {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2142857143;
}

.cart-hero__data {
  position: relative;
  line-height: 1.2307692308;
}

.cart-hero__data::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: var(--white-pure);
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.bonus-hero__descr {
  text-transform: uppercase;
}

.bonus-hero__title {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

.bonus-hero__text {
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.features-hero {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.features-hero__item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.features-hero__descr {
  font-weight: 300;
  line-height: 1.4285714286;
}

.search-bar {
  position: relative;
}

.search-bar__input {
  position: relative;
  margin-bottom: 14px;
  border-radius: 50px 0px 0px 50px;
}

.search-bar__input::before,
.search-bar__input::after {
  content: "";
  position: absolute;
  bottom: -24px;
  width: 163px;
  height: 56px;
}

.search-bar__input::before {
  left: 0;
  background: url("../images/icons/search-shadow-left.svg") 0 0/contain no-repeat;
}

.search-bar__input::after {
  right: 0;
  background: url("../images/icons/search-shadow-right.svg") 0 0/contain no-repeat;
}

.search-bar__input .input {
  border-radius: 50px 0px 0px 50px;
  background-color: var(--white-pure);
}

.search-bar__label {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  cursor: text;
  color: rgba(46, 46, 46, 0.5);
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.search-bar__label.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.search-bar__label:hover,
.search-bar__label._form-focus {
  color: var(--main-color);
}

.search-bar__icon {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 43px;
  height: 36px;
  padding-left: 12px;
  -webkit-transform: translate(9px, -52%);
      -ms-transform: translate(9px, -52%);
          transform: translate(9px, -52%);
  border-radius: 50px 10px 0px 50px;
  background: var(--primary-gradient);
  color: var(--white-pure);
}

.search-bar__icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 9px;
  height: 9px;
  -webkit-transform: translate(0, 98%);
      -ms-transform: translate(0, 98%);
          transform: translate(0, 98%);
  background-color: #548c9d;
}

.search-bar__icon::after {
  right: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.search-bar__close {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 50px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: visibility 0.4s ease, opacity 0.4s ease;
  -o-transition: visibility 0.4s ease, opacity 0.4s ease;
  transition: visibility 0.4s ease, opacity 0.4s ease;
}

.show-results .search-bar__close {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-bar__nav {
  padding-bottom: 10px;
}

.search-bar__nav .simplebar-horizontal > .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.search-bar__nav .simplebar-horizontal > .simplebar-scrollbar::before {
  background: #54A8C2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.search-bar__nav .simplebar-track.simplebar-horizontal {
  height: 1px;
  cursor: -webkit-grab;
  cursor: grab;
  background-color: var(--gray-light);
}

.search-bar__nav .simplebar-vertical {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.search-bar__nav .simplebar-vertical .simplebar-scrollbar {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.search-bar__nav .simplebar-vertical::after,
.search-bar__nav .simplebar-vertical::before {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.search-bar__letter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-bar__item-list button {
  padding: 10px;
  text-decoration: underline;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.25;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

/* .search-bar__results {
  position: absolute;
  z-index: 99;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  background-color: var(--white-pure);
  border-radius: 12px;
  -webkit-box-shadow: 4px 4px 12px -3px rgba(0, 0, 0, 0.75);
          box-shadow: 4px 4px 12px -3px rgba(0, 0, 0, 0.75);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translate3D(0px, 102%, 0);
      -ms-transform: translate3D(0px, 102%, 0);
          transform: translate3D(0px, 102%, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.show-results .search-bar__results {
  -webkit-transform: translate3D(0px, 100%, 0);
      -ms-transform: translate3D(0px, 100%, 0);
          transform: translate3D(0px, 100%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-bar__item-results {
  padding: 4px 0;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
} */

.menu-open .footer {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.footer__menu {
  margin-bottom: 30px;
}

.footer__link {
  position: relative;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 11px;
  line-height: 1.2727272727;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.footer__link::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#72BAD0), color-stop(28.13%, #76C8E1), to(#54A8C2));
  background: -o-linear-gradient(top, #72BAD0 0%, #76C8E1 28.13%, #54A8C2 100%);
  background: linear-gradient(180deg, #72BAD0 0%, #76C8E1 28.13%, #54A8C2 100%);
  border-radius: 20px;
  pointer-events: none;
  -webkit-transition: visibility 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
  -o-transition: visibility 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
  transition: visibility 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
  opacity: 0;
  visibility: hidden;
}

.footer__link span {
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.footer__copyright {
  padding-bottom: 30px;
  font-size: 12px;
  line-height: 1.6666666667;
  color: #808080;
  text-align: center;
}

.actions-mobile__items {
  /*display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;*/
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  padding: 7px 0;
}

.actions-mobile__item {
  text-align: center;
}

.actions-mobile__item--categories .actions-mobile__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.actions-mobile__icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 20px;
  margin-bottom: 2px;
  color: var(--primary);
}

.actions-mobile__quantity {
  position: absolute;
  z-index: 999;
  top: -2px;
  right: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translate(100%, 0%);
      -ms-transform: translate(100%, 0%);
          transform: translate(100%, 0%);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: var(--red);
  color: var(--white-pure);
  font-size: 10px;
  line-height: 0.8;
}

.actions-mobile__label {
  font-size: 11px;
  line-height: 1.2727272727;
}

.page__content {
  margin-bottom: 10px;
}

.page__partners {
  margin-bottom: 30px;
}

.page__reviews {
  margin-bottom: 10px;
}

.content__inner {
  padding-top: 30px;
  border-top: 1px solid #eceece;
}

.products__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product_rec {
    grid-template-columns: repeat(auto-fit, minmax(297px, 1fr));
}

.item-product {
  position: relative;
  border-radius: 25px;
  background-color: var(--white-pure);
}

.item-product__info {
  margin-bottom: 10px;
}

.item-product__image {
    width: 113px;
    height: 113px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

.item-product__image img {
    max-width: 113px;
    max-height: 113px;
    width: auto;
    height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-product__name {
  margin-bottom: 5px;
  line-height: 1.2222222222;
  font-weight: 700;
  color: var(--primary);
}

.item-product__company {
  line-height: 1.2142857143;
  font-weight: 300;
  color: #696969;
}

.item-product__price {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 300;
}

.item-product__button {
  max-width: 105px;
  color: var(--white-pure);
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
}

.item-product__desrc {
  line-height: 1.5;
  font-weight: 300;
}

.partners {
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), color-stop(29.17%, #FDFBFB), to(#E3E3E3));
  background: -o-linear-gradient(top, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  background: linear-gradient(180deg, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid var(--white-pure);
}

.partners__body {
  position: relative;
}

.partners__body::after {
  content: "";
  z-index: -1;
  position: absolute;
  left: 50%;
  width: 54%;
  aspect-ratio: 540/105;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  background: url("../images/icons/shadows/verifed-shadow.svg") 0 0/contain no-repeat;
}

.partners__row {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.partners__label {
  line-height: 1.2272727273;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
}

.partners__text {
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
}

.partners__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.partners__item img {
  max-width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.reviews__body {
  position: relative;
  margin: 0px auto;
}

.reviews__slider {
  padding: 0 30px 20px;
}

.reviews__slider .swiper {
  overflow: visible;
}

.reviews__slide .review-item::after {
  opacity: 0;
}

.reviews__slide.swiper-slide-active .review-item::after,
.reviews__slide.swiper-slide-next .review-item::after {
  opacity: 1;
}

.reviews__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews__arrow {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--primary);
  border-radius: 0.625rem;
}

.reviews__arrow:not(.swiper-button-disabled) {
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.reviews__arrow--prev {
  -webkit-transform: translate(-100%, -50%);
      -ms-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}

.reviews__arrow--next {
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

.top-line {
  margin-bottom: 20px;
}

.top-line__group {
  font-size: 14px;
  font-weight: 300;
}

.page-product__image-wrapper {
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.page-product__image-wrapper img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-product__item-offer {
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
}

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

.details-page-product {
  font-size: 12px;
  line-height: 1.8333333333;
}

.details-page-product a {
  color: var(--primary);
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.details-page-product b {
  font-weight: 700;
}

.details-page-product__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.details-page-product__row:not(:last-child) {
  margin-bottom: 1.25rem;
}

.details-page-product__row a,
.details-page-product__row b {
  margin-left: 4px;
}

.item-product-info {
  border-radius: 1.25rem;
  overflow: hidden;
}

.item-product-info__name {
  padding: 0.9375rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
  font-size: 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), color-stop(29.17%, #FDFBFB), to(#E3E3E3));
  background: -o-linear-gradient(top, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  background: linear-gradient(180deg, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  /* gblock */
  -webkit-box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
          box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
}

.item-product-info__table {
  min-width: 100%;
  border-spacing: 0;
}

.item-product-info__row {
  margin: 0 -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  justify-content: space-between;
}

.item-product-info__row:nth-child(even) {
  background-color: var(--white-pure);
}

.item-product-info__row:not(.item-product-info__row--top) {
  min-height: 4.0625rem;
}

.item-product-info__row--top {
  background-color: var(--white-pure);
}

.item-product-info__row--top .item-product-info__per-pill,
.item-product-info__row--top .item-product-info__price,
.item-product-info__row--top .item-product-info__package {
  font-weight: 400;
  text-transform: uppercase;
}

.item-product-info__package {
  line-height: 1.2142857143;
  font-weight: 400;
}

.item-product-info__package span {
  display: block;
}

.item-product-info__delivery {
  font-size: 12px;
  line-height: 1.25;
  color: var(--primary);
}

.item-product-info__per-pill {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.5625rem;
          flex: 0 0 3.5625rem;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
}

.item-product-info__price {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.5625rem;
          flex: 0 0 6.5625rem;
  font-weight: 400;
  text-align: center;
}

.item-product-info__old-price {
  color: var(--red);
  font-size: 10px;
  line-height: 1.2;
}

.item-product-info__old-price span:first-child {
  text-decoration: line-through;
}

.item-product-info__new-price {
  font-size: 12px;
  line-height: 1.25;
}

.item-product-info__add-to-cart {
  max-width: 75px;
  margin: 0 auto;
  color: var(--white-pure);
  font-weight: 700;
  text-transform: uppercase;
}

.info-page-product__block {
  font-weight: 300;
  line-height: 1.6923076923;
}

.info-page-product__block:not(:last-child) {
  margin-bottom: 20px;
}

.info-page-product__label {
  margin: 0 0 0.625rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}

.announce {
  position: fixed;
  z-index: 155;
  bottom: 44vh;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--white-pure);
  z-index: 1;
}

.announce__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  border-radius: 10px 0 0 10px;
  -webkit-transform: translate(110%, 0px);
      -ms-transform: translate(110%, 0px);
          transform: translate(110%, 0px);
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  -o-transition: transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.announce__item.active {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

.announce__item--blue {
  background: linear-gradient(180deg, #72bad0 0%, #76c8e1 28.13%, #54a8c2 100%);
}

.announce__item--yellow {
  background: linear-gradient(180deg, #72bad0 0%, #76c8e1 28.13%, #54a8c2 100%);
}

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

.announce__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5rem;
          flex: 0 0 1.5rem;
  margin-right: 0.625rem;
}

.cart-page__title {
  margin-bottom: 1.25rem;
}

.cart-page__order {
  border-radius: 1.25rem;
  /*overflow: hidden;*/
}

.cart-page__offer {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

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

.order__rows {
  border-radius: 25px;
  /*overflow: hidden;*/
}

.order__top-row {
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), color-stop(29.17%, #FDFBFB), to(#E3E3E3));
  background: -o-linear-gradient(top, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  background: linear-gradient(180deg, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  /* gblock */
  -webkit-box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
          box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
}

.order__label {
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
}

.order__line {
  padding: 0.9375rem 1.25rem;
}

.order__line--filled {
  background-color: var(--white-pure);
}

.order__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1875;
}

.order__row:not(:last-child) {
  margin: 0 0 0.625rem 0;
}

.order__row--headline {
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: #696969;
  font-size: 0.6875rem;
}

.order__row--headline .order__price {
  font-weight: 400;
}

.order__package {
  text-align: left;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 7px;
}

.order__quantity {
  margin-right: 7px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75px;
          flex: 0 0 75px;
}

.order__per-pack {
  margin-right: 7px;
  text-align: center;
}

.order__price {
  margin-right: 7px;
  text-align: center;
  font-weight: 600;
}

.order__new-price {
  font-weight: normal;
}

.order__remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.5625rem;
          flex: 0 0 0.5625rem;
  height: 9px;
  color: var(--red);
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.order__old-price {
  color: var(--red);
}

.order__old-price span {
  text-decoration: line-through;
}

.order__upgrade {
  line-height: 1.2727272727;
  color: var(--primary);
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.preference-page-cart__item:not(:last-child) {
  margin-bottom: 20px;
}

.preference-page-cart__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

.preference-page-cart__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.125rem;
          flex: 0 0 3.125rem;
  max-width: 50px;
  margin: 0 0.625rem 0 0;
}

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

.preference-page-cart__label {
  font-weight: 300;
  line-height: 1.4285714286;
  font-size: 0.875rem;
}

.preference-page-cart__descr {
  line-height: 1.5;
  font-size: 0.75rem;
  color: var(--primary);
}

.bonus-line__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.bonus-line__label {
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.bonus-line__button {
  color: var(--red);
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.bonus-line__total {
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.discount-line {
  border-bottom: 1px solid var(--gray-light);
}

.discount-line__label {
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 300;
}

.discount-line__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.discount-line__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-right: 10px;
}

.discount-line__input .input {
  padding: 0.78125rem 1.25rem;
  border-radius: 3.125rem;
  background-color: #f4f4f4;
  font-size: 12px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  -o-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.discount-line__input .input._form-focus {
  color: var(--main-color);
}

.delivery-line {
  background-color: var(--white-pure);
}

.delivery-line__item:not(:last-child) {
  margin-bottom: 10px;
}

.total-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--blue-light);
  flex-wrap: wrap;
}

.total-line__label {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 1.25rem 0 0;
  font-size: 1rem;
  font-weight: 600;
}

.total-line__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  line-height: 1.1875;
}

.total-line__old-price {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0 1.25rem 0 0;
  font-size: 1.0375rem;
  font-weight: 600;
  color: var(--red);
}

.total-line__old-price span {
  text-decoration: line-through;
}

.total-line__new-price {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.total-line__savings {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}

.total-line__digits {
  /* font-weight: 600; */
  font-size: 0.9375rem;
}

.actions-line {
  font-size: 0.75rem;
  line-height: 1.25;
}

.actions-line__button {
  text-align: center;
  padding: 0.78125rem;
}

.page-order__order {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border: 1px solid var(--gray-light);
  border-radius: 1.25rem;
}

.page-order__contact {
  margin-bottom: 1.25rem;
}

.page-order__data {
  margin-bottom: 1.25rem;
}

.page-order__data .select__title {
  padding: 0.78125rem 1.25rem;
  border: none;
  background-color: var(--white-darker);
}

.page-order__place-button {
  width: 100%;
}

.page-order__sidebar {
  margin-bottom: 1.25rem;
}

.page-order__form .select__options {
  width: 100%;
  min-width: 6.25rem;
  background-color: var(--white-pure);
  color: var(--main-color);
  padding: 0.625rem 0;
  border-radius: 0 0 10px 10px;
  bottom: -5px;
  text-align: center;
}

.page-order__form .select__option {
  color: var(--main-color);
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.final-order__rows {
  border-radius: 25px;
  overflow: hidden;
}

.final-order__top-row {
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), color-stop(29.17%, #FDFBFB), to(#E3E3E3));
  background: -o-linear-gradient(top, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  background: linear-gradient(180deg, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  /* gblock */
  -webkit-box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
          box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
}

.final-order__label {
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
}

.final-order__line--filled {
  background-color: var(--white-pure);
}

.final-order__line--first {
  padding: 0.625rem 1.25rem;
}

.final-order__line.discount-line {
  display: block;
  background-color: var(--white-pure);
}

.final-order__line .discount-line__label {
  margin: 0 0 0.3125rem 0;
}

.final-order__line .discount-line__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 7.1875rem;
          flex: 0 1 7.1875rem;
}

.final-order__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  line-height: 1.25;
}

.final-order__row:not(:last-child) {
  margin: 0 0 0.3125rem 0;
}

.final-order__row--headline {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  color: #696969;
  text-align: center;
}

.final-order__row--headline .order__per-pack {
  white-space: nowrap;
}

.final-order__row--headline .final-order__price {
  font-weight: 500;
}

.final-order__row--headline .final-order__package {
  font-weight: 500;
}

.final-order__package {
  text-align: left;
}

.final-order__quantity {
  text-align: center;
}

.final-order__per-pack {
  text-align: center;
}

.final-order__price {
  text-align: center;
}

.final-order__options {
  padding: 0;
}

.final-order__option:nth-of-type(odd) {
  background-color: var(--white-pure);
}

.total-final {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--blue-light);
}

.total-final__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 118px;
          flex: 0 1 118px;
}

.total-final__digits {
  margin-right: 20px;
}

.total-final__old-price {
  font-size: 10px;
  line-height: 1.2;
  color: var(--red);
}

.total-final__old-price span {
  text-decoration: line-through;
}

.total-final__savings {
  font-size: 12px;
  line-height: 1.25;
}

.total-final__new-price {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
}

.contact-info {
  border-radius: 25px;
}

.contact-info__item {
  border: 1px solid var(--gray-light);
  border-radius: 1.25rem;
  background-color: var(--white-pure);
}

.contact-info__item:not(:last-child) {
  margin-bottom: 1.25rem;
}

.contact-info__label {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), color-stop(29.17%, #FDFBFB), to(#E3E3E3));
  background: -o-linear-gradient(top, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  background: linear-gradient(180deg, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  /* gblock */
  -webkit-box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
          box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
  border-radius: 1.5625rem 1.5625rem 0 0;
}

.contact-info__cell {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.contact-info__cell:not(:last-child) {
  margin-bottom: 1.875rem;
}

.contact-info__row:last-child {
  border-radius: 0 0 1.5625rem 1.5625rem;
}

.contact-info__row--note {
  font-size: 11px;
  line-height: 1.3636363636;
  font-weight: 300;
  text-align: center;
}

.contact-info__row .delivery-item__label {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
}

.contact-info__caption {
  margin-bottom: 5px;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 300;
}

.contact-info__phone {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3.125rem;
  background-color: var(--white-darker);
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.contact-info__phone .input {
  border: none;
  padding: 0.8125rem 0.625rem;
  font-size: 12px;
}

.contact-info__country {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4.375rem;
          flex: 0 0 4.375rem;
}

.contact-info__country .select__title {
  border: none;
}

.contact-info__country .select__value {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
}

.contact-info__country .select__asset {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5rem;
          flex: 0 0 1.5rem;
  height: 24px;
  margin-right: 0.3125rem;
}

.contact-info__country .select__asset img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}

.contact-info__country .select__value:after {
  background: url("../images/icons/arr-down.svg") 0 0 no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.9375rem;
          flex: 0 0 0.9375rem;
}

.contact-info__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.contact-info__select .select__options {
  bottom: 0;
}

.contact-info__select .select__value:after {
  background: url("../images/icons/arr-down.svg") 0 0 no-repeat;
}

.contact-info__select .select__value {
  padding: 0;
}

.contact-info__select ._select-open .select__title {
  border-radius: 10px 10px 0 0;
}

.contact-info__column:not(:last-child) {
  margin-bottom: 1.25rem;
}

.contact-info__selects {
  max-width: 200px;
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
}

.sidebar-order__top-row {
  margin-bottom: 20px;
}

.sidebar-order__button {
  width: 100%;
  max-width: 205px;
  font-size: 12px;
}

.sidebar-order__partners {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

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

.final-succes__line {
  text-align: center;
  font-size: 13px;
  line-height: 1.2307692308;
}

.final-succes__line--filled {
  background-color: var(--white-pure);
}

.final-succes__line--descr {
  font-weight: 300;
}

.final-succes__line a {
  display: block;
  text-decoration: underline;
  color: var(--primary);
}

.order-bonus-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}

.order-bonus-line__total {
  text-transform: uppercase;
  text-align: center;
}

.contact-form__body {
  border-radius: 25px;
  background-color: var(--white-pure);
}

.contact-form__label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 300;
}

.contact-form__captcha {
  margin-bottom: 5px;
}

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

.contact-form__descr {
  font-size: 13px;
  line-height: 1.6923076923;
  font-weight: 300;
}

.text-page__block {
  font-weight: 300;
  line-height: 1.6923076923;
}

.text-page__block:not(:last-child) {
  margin-bottom: 20px;
}

.text-page__block p:not(:last-child) {
  margin-bottom: 20px;
}

.text-page__block h3 {
  display: block;
}

.text-page__block h3:not(:last-child) {
  margin-bottom: 10px;
}

.text-page__block a {
  color: var(--primary);
  text-decoration: underline;
}

.text-page--faq .text-page__block:not(:last-child) {
  margin-bottom: 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white-pure);
}

.text-page--faq .text-page__block:not(:first-child) {
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.text-page__label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}

.text-page__list:not(:last-child) {
  margin-bottom: 20px;
}

.text-page__list li {
  position: relative;
  padding-left: 9px;
}

.text-page__list li::before {
  content: "•";
  position: absolute;
  top: 0px;
  left: 0;
  text-align: right;
}

.text-page__list--numeric {
  counter-reset: item;
}

.text-page__list--numeric li {
  padding-left: 28px;
}

.text-page__list--numeric li::before {
  counter-increment: item;
  content: counter(item) ".";
  width: 22px;
}

.text-page__list--numeric li a {
  text-decoration: none;
  color: var(--main-color);
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.page-not-exist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-not-exist__image {
  margin-bottom: 30px;
}

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

.page-not-exist__title {
  margin-bottom: 10px;
}

.page-not-exist__text {
  margin-bottom: 20px;
  line-height: 1.2142857143;
  font-weight: 300;
  text-align: center;
}

.page-not-exist__button {
  max-width: 160px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  -o-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.message_sended {
  z-index: 10000;
  text-align: center;
  font-size: 30;
  /* height: 0; */
}

.message_sended h2 {
  font-weight: bold;
}

.active {
  visibility: visible !important;
}

.hidden {
  visibility: hidden !important;
  height: 0;
}

/* .search-bar__results {
  position: absolute;
  z-index: 99;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  background-color: var(--white-pure);
  border-radius: 12px;
  -webkit-box-shadow: 4px 4px 12px -3px rgba(0, 0, 0, 0.75);
          box-shadow: 4px 4px 12px -3px rgba(0, 0, 0, 0.75);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translate3D(0px, 102%, 0);
      -ms-transform: translate3D(0px, 102%, 0);
          transform: translate3D(0px, 102%, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.show-results .search-bar__results {
  -webkit-transform: translate3D(0px, 100%, 0);
      -ms-transform: translate3D(0px, 100%, 0);
          transform: translate3D(0px, 100%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-bar__item-results {
  padding: 4px 0;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
} */

.ac_results {
  position: absolute;
  z-index: 99;
  top:0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background-color: var(--white-pure);
  border-radius: 12px;
  -webkit-box-shadow: 4px 4px 12px -3px rgba(0, 0, 0, 0.75);
          box-shadow: 4px 4px 12px -3px rgba(0, 0, 0, 0.75);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  /* -webkit-transform: translate3D(0px, 100%, 0);
  -ms-transform: translate3D(0px, 100%, 0);
      transform: translate3D(0px, 100%, 0); */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  /* width: 100%; */
  /* overflow: hidden; */
  /* text-align: left; */
  /* z-index: 11; */
}

.ac_results ul {
  width: 100%;
  list-style-position: outside;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ac_results iframe {
  width: 100%;
  display:none;
  display:block;
  position:absolute;
  top:0;
  left:0;
  z-index:-1;
  width:3000px;
  height:3000px;
}

.ac_results li {
  padding: 4px 0;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
  /* width: 100%;
  color:var(--green);
  background-color: white;
  margin: 0px;
  padding: 2px 5px;
  cursor: pointer;
  display: block;
  width: 100%;
  font: menu;
  font-size: 17px;
  overflow: hidden; */
}

.ac_results li:hover {
  color: var(--primary);
  cursor: pointer;
}

.ac_over {
  color: var(--primary);
  cursor: pointer;
}

.top-phones-header__container {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}


.top-phones-header {
  background-color: #f1f5f9;
  font-size: 10.5px;
}

.top-phones-header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.top-phones-header__item {
  position: relative;
  white-space: nowrap;
  scroll-snap-align: start;
}

.top-phones-header__item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--main-color);
  -webkit-transition: width 0.4s ease;
  -o-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.top-phones-header__item.request::after {
  background-color: #f1f5f9;
}

.top-phones-header__item.request {
  display: flex;
  align-items: center;
}

.request_text {
  width: max-content;
  margin-right: 5px;
}

.bonus-line__item {
  width: 205px;
}

.order-bonus__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.order-bonus__name {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.bonus_name {
  font-weight: 600;
}

.bonus_price {
  color: var(--red);
}

.order-bonus__package {
  font-size: 10px;
}

.bonus-line__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

.gift_card {
  width: 100%;
}

.gift_block {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 15px 20px;
  gap: 10px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.gift_top_block__item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.visible.gift {
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), color-stop(29.17%, #FDFBFB), to(#E3E3E3));
  background: -o-linear-gradient(top, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  background: linear-gradient(180deg, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
  /* gblock */
  -webkit-box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
  box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
  border-radius: 50px;
  min-width: 24px;
  height: 24px;
  cursor: pointer;
}

.visible.gift.get-gift {
  background: url("../images/icons/checkmark.svg") center/15px 15px no-repeat, linear-gradient(180deg, #72BAD0 0%, #76C8E1 28.13%, #54A8C2 100%);
  transition: visibility 0.4s ease, opacity 0.4s ease;
}

.top_left_text {
  font-weight: 500;
}

.button_add_gift {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 42px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--white-pure);
  background: linear-gradient(180deg, #72bad0 0%, #76c8e1 28.13%, #54a8c2 100%);
}

.button_add_gift:hover {
  background: linear-gradient(180deg, #54a8c2 0%, #76c8e1 69.27%, #72bad0 100%);
}

.gift_bottom_block {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.bottom_left_text {
  font-weight: 500;
}

.select_gift {
  width: 175px;
  height: 42px;
  position: relative;
}

.gift_bottom_block {
  display: none;
}

.select_gift.is-active .select_body_gifts {
  display: block;
  z-index: 100;
}

.select_header_gift {
  border: 1px solid #cccccc;
  display: flex;
  cursor: pointer;
  align-items: center;
  height: 42px;
  background: white;
  border-radius: 50px;
  padding: 0 20px;
  font-size: 13px;
}

.select_current_gift {
  font-size: 13px;
  padding: 8px;
}

.select_icon {
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.select_body_gifts {
  border: 1px solid #cccccc;
  border-top: 0;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background-color: white;
  border-radius: 10px;
}

.select_item_gift {
  line-height: 24px;
  padding: 8px;
  font-size: 13px;
  cursor: pointer;
}

.select_item_gift:hover {
  color: var(--primary);
}

@media (max-width: 509px) {
  .bonus-line__item {
    width: unset;
  }
}

@media (max-width: 390px) {
  .gift_block {
    padding: 15px 10px;
  }
}

@media (min-width: 23.125em) {
  .review-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .item-product-info__row--top .item-product-info__per-pill,
  .item-product-info__row--top .item-product-info__price,
  .item-product-info__row--top .item-product-info__package {
    font-size: 0.6875rem;
  }
}

@media (min-width: 24.375em) {
  .order__package {
    font-size: 11px;
  }

  .order__old-price {
    font-size: 10px;
  }

  .order__new-price {
    font-size: 12px;
  }

  .order__upgrade {
    font-size: 11px;
  }

  .final-order__line {
    padding: 15px 20px;
  }

  .final-order__option {
    padding: 15px 20px;
  }

  .contact-info__row {
    padding: 15px 20px;
  }

  .contact-info__phone {
    padding: 0px 20px;
  }
}

@media (min-width: 29.99875em) {
  [class*=__container] {
    padding: 0 24px;
  }

  .header__phone {
    font-size: 15px;
  }

  .menu__link {
    font-size: 11px;
  }

  .search-bar__input .input {
    padding: 22px 30px;
  }

  .page-product__items:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .page-product__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .item-product-info__package {
    margin-right: 23px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 101px;
            flex: 0 0 101px;
  }

  .item-product-info__per-pill {
    margin-right: 24px;
  }

  .item-product-info__price {
    margin-right: 24px;
  }

  .info-page-product {
    padding-top: 1.25rem;
  }

  .announce__item {
    padding: 0.8125rem 1.875rem;
  }

  .order__top-row {
    padding: 0.9375rem;
  }

  .order__label {
    font-size: 1rem;
  }

  .order__row--headline .order__per-pack {
    white-space: nowrap;
  }

  .bonus-line__total {
    font-size: 1rem;
  }

  .discount-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .page-order__data .contact-info__caption {
    margin-right: 0.125rem;
    max-width: 7.625rem;
  }

  .final-order__label {
    font-size: 1rem;
  }

  .contact-info__row--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }

  .contact-info__row--flex .contact-info__cell {
    margin-bottom: 0;
  }

  .page-order__data .contact-info__input {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 15.3125rem;
            flex: 0 1 15.3125rem;
  }

  .contact-info__select {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 15.3125rem;
            flex: 0 1 15.3125rem;
  }

  .contact-info__selects {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 15.3125rem;
            flex: 0 1 15.3125rem;
  }

  .final-succes__line--descr p:not(:last-child) {
    margin: 0 0 1.5625rem 0;
  }

  .contact-form__body {
    max-width: 500px;
    padding: 25px;
  }

  .contact-form__button {
    max-width: 162px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
  }

  .contact-form__descr p:not(:last-child) {
    margin-bottom: 25px;
  }
}

@media (min-width: 34.375em) {
  .total-line__new-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .total-line__savings {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 0 1.25rem 0 0;
  }

  .total-line__digits {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .actions-line {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.9375rem 0;
  }

  .actions-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .total-final__data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 37.5em) {
  .bonus-line__item:not(:last-child) {
    margin: 0 10px 0 0;
  }
}

@media (min-width: 40.62375em) {
  .delivery-item__price--black {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 105px;
            flex: 0 0 105px;
  }

  .header {
    /* padding-top: 20px; */
  }

  .header__bg {
    height: 330px;
  }

  .header__bg::after {
    content: "";
    position: absolute;
    z-index: -1;
    height: 105px;
    background: url("../images/icons/shadows/hero-shadow.svg") 0 0/contain no-repeat;
  }

  .header__top {
    margin-bottom: 15px;
    padding: 20px 20px 0;
  }

  .menu__item {
    padding: 0 25px;
  }

  .hero-header__reviews {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 341px;
            flex: 0 1 341px;
  }

  .hero-header__events {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 292px;
            flex: 0 1 292px;
  }

  .hero-header__middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }

  .hero-header__selects {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 210px;
            flex: 0 1 210px;
  }

  .hero-header__features {
    margin-bottom: 10px;
  }

  .reviews-hero__quantity {
    margin-bottom: 10px;
  }

  .reviews-hero__icon {
    margin-bottom: 10px;
  }

  .events-hero__item {
    -ms-grid-columns: auto 45px;
    grid-template-columns: auto 45px;
    gap: 20px;
  }

  .events-hero__desrc br {
    display: none;
  }

  .events-hero__text {
    font-size: 12px;
    line-height: 1.75;
  }

  .cart-hero__image {
    bottom: 31px;
  }

  .cart-hero__body {
    position: relative;
    z-index: 2;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 18.5px auto;
    grid-template-columns: 18.5px auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    border-radius: 50px;
    background: var(--primary-gradient);
    color: var(--white-pure);
  }

  .bonus-hero {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 84px auto;
    grid-template-columns: 84px auto;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .bonus-hero__title {
    font-size: 16px;
  }

  .bonus-hero__text {
    font-size: 12px;
  }

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

  .actions-mobile {
    display: none;
  }

  .item-product {
    padding: 15px 20px;
    width: 355px;
  }

  .product_rec .item-product {
    width: 100%;
  }

  .item-product::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 85.2272727273%;
    height: 105px;
    -webkit-transform: translate(10%, 28%);
        -ms-transform: translate(10%, 28%);
            transform: translate(10%, 28%);
    background: url("../images/icons/shadows/review-shadow.svg") right bottom/contain no-repeat;
  }

  .item-product__info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 120px auto;
    grid-template-columns: 120px auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: center;
    gap: 3px;
  }

  .item-product__image {
    margin-right: 7px;
  }

  .item-product__data {
    padding: 13px 0;
  }

  .item-product__bottom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .item-product__name {
    font-size: 18px;
  }

  .item-product__company {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .item-product__price {
    margin-right: 10px;
  }

  .item-product__desrc {
    font-size: 12px;
  }

  .reviews__arrow--prev {
    left: -30px;
  }

  .reviews__arrow--next {
    right: -30px;
  }

  .top-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .top-line__title {
    margin-bottom: 0;
  }

  .page-product__image-wrapper {
    padding: 15px;
  }

  .order__package {
    -ms-flex-preferred-size: 140px;
        flex-basis: 140px;
  }

  .order__per-pack {
    -ms-flex-preferred-size: 105px;
        flex-basis: 105px;
  }

  .order__price {
    -ms-flex-preferred-size: 105px;
        flex-basis: 105px;
  }

  .final-order__package {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 165px;
            flex: 0 0 165px;
    margin-right: 20px;
  }

  .final-order__quantity {
    margin-right: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
  }

  .final-order__per-pack {
    margin-right: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 105px;
            flex: 0 0 105px;
  }

  .final-order__price {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 105px;
            flex: 0 0 105px;
  }

  .sidebar-order__label {
    margin-bottom: 0;
  }

  .sidebar-order__top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sidebar-order__partners {
    -ms-grid-columns: (auto)[4];
    grid-template-columns: repeat(4, auto);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .order-bonus-line__total {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 105px;
            flex: 0 0 105px;
  }

  .contact-form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 250px;
    grid-template-columns: auto 250px;
    gap: 20px;
  }

  .contact-form__lines:not(:last-child) {
    margin-bottom: 20px;
  }

  .contact-form__line:not(:last-child) {
    margin-bottom: 20px;
  }

  .page-not-exist__text {
    font-size: 14px;
  }
}

@media (min-width: 40.625em) {
  .page-product__item-offer:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 43.75em) {
  .partners__body {
    display: -ms-grid;
    display: grid;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 45.625em) {
  .header__top {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "phone1 logo phone2";
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }

  .header__logo {
    grid-area: logo;
  }

  .header__phone:first-of-type {
    grid-area: "phone1";
  }

  .header__phone:first-of-type {
    grid-area: "phone2";
  }

  .features-hero {
    -ms-grid-columns: (auto)[4];
    grid-template-columns: repeat(4, auto);
    gap: 20px;
  }
}

@media (min-width: 45.625em){
  .header__logo {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}

@media (min-width: 47.99875em) {
  .header__bg::after {
    width: calc(100% + 60px);
    left: -30px;
    bottom: -23px;
  }

  .hero-header__events {
    padding-top: 7px;
  }

  .events-hero__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .features-hero__item {
    -ms-grid-columns: 50px auto;
    grid-template-columns: 50px auto;
  }

  .features-hero__descr {
    font-size: 14px;
  }

  .partners__body {
    -ms-grid-columns: 325px auto;
    grid-template-columns: 325px auto;
  }

  .partners__label {
    font-size: 22px;
  }

  .partners__text {
    font-size: 10px;
  }

  .page-product {
    -ms-grid-columns: 15.625rem auto;
    grid-template-columns: 15.625rem auto;
    display: -ms-grid;
    display: grid;
    gap: 1.875rem;
  }

  .page-product__image {
    margin-bottom: 1.25rem;
  }

  .details-page-product__descr {
    margin-bottom: 1.25rem;
  }

  .details-page-product__block-links:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .final-order__top-row {
    padding: 1.09375rem;
  }

  .total-final__data {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 13.75rem;
            flex: 0 0 13.75rem;
  }

  .contact-info__label {
    padding: 1.09375rem;
  }

  .final-succes__line {
    padding: 0.9375rem 20px;
  }

  .page-not-exist__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    max-width: 200px;
  }
}

@media (min-width: 81.25em) {
  .top-phones-header__items {
      padding: 15px 0;
  }
}

@media (min-width: 47.99875em) and (min-width: 62.5em) {
  .reviews-hero__quantity {
    font-size: 2.1875rem;
  }
}

@media (min-width: 61.99875em) {
  .categories-sidebar__title {
    margin-bottom: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .header__top {
    max-width: 915px;
    margin: 0 auto 15px;
  }

  .header__menu {
    margin: 0 -15px 17px;
  }

  .hero-header__about {
    margin: 0 auto 40px;
    max-width: 915px;
  }

  .events-hero__title {
    font-size: 18px;
  }

  .cart-hero {
    max-width: 390px;
  }

  .cart-hero__body {
    padding: 18px 19px 18.5px;
  }

  .cart-hero__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }

  .search-bar__letter-list {
    padding: 0 18px;
  }

  .footer__menu {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .content__inner {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
  }

  .partners {
    padding: 10px 0;
  }

  .partners__body::after {
    bottom: -47px;
  }

  .partners__row {
    -ms-grid-columns: 85px auto;
    grid-template-columns: 85px auto;
  }

  .partners__item {
    height: 3rem;
  }

  .reviews__body {
    max-width: 96.4%;
  }

  .item-product-info__row:not(.item-product-info__row--top) {
    padding: 0.78125rem 1.25rem;
  }

  .item-product-info__row--top {
    padding: 1.125rem 1.25rem;
  }

  .cart-page__preference {
    margin-bottom: 1.875rem;
  }

  .cart-page__offer:not(:last-child) {
    margin: 0 0 1.875rem 0;
  }

  .bonus-line__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .bonus-line__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1.125rem;
            flex: 0 0 1.125rem;
    height: 18px;
  }

  .total-line {
    padding: 1.28125rem 1.875rem;
  }

  .sidebar-order__checkboxes {
    display: none;
  }
}

@media (min-width: 74.99875em) {
  .categories-sidebar {
    /* position: sticky; */
    top: 20px;
  }

  .content__inner {
    -ms-grid-columns: 250px 1fr;
    grid-template-columns: 250px 1fr;
  }

  .order__upgrade {
    max-width: 97%;
    display: block;
  }

  .total-final {
    padding: 0.9375rem 1.875rem;
  }
}

@media (min-width: 35em) {
  .bonus-line__total {
    -ms-flex-preferred-size: 8.125rem;
        flex-basis: 8.125rem;
  }
}

@media (min-width: 50em) {
  .cart-page {
    -ms-grid-columns: 1fr 205px;
    grid-template-columns: 1fr 205px;
    gap: 1.875rem;
  }

  .cart-page {
    display: -ms-grid;
    display: grid;
  }
}

@media (max-width: 74.99875em) {
  .wrapper {
    overflow: hidden;
  }

  .total-final {
    padding: 0.9375rem 1.25rem;
  }
}

@media (max-width: 81.25em) {
  .top-phones-header__items {
      margin-right: -30px;
      overflow: scroll;
      -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
      padding: 15px 30px 15px 0;
  }
}

@media (max-width: 61.99875em) {
  .categories-sidebar {
    position: relative;
  }



  .categories-sidebar::after {
    content: "";
    position: fixed;
    z-index: 149;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    background: rgba(46, 46, 46, 0.5);
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }

  .menu-open .categories-sidebar::after {
    opacity: 1;
  }

  .categories-sidebar__title {
    font-size: 12px;
    font-weight: 400;
    color: var(--white-pure);
    text-transform: uppercase;
  }

  .categories-sidebar__spollers {
    position: fixed;
    z-index: 150;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 311px;
    height: 100vh;
    overflow: auto;
    padding: 20px;
    -webkit-transition: left 0.4s ease;
    -o-transition: left 0.4s ease;
    transition: left 0.4s ease;
    background-color: var(--white-pure);
  }

  .menu-open .categories-sidebar__spollers {
    left: 0;
  }

  .icon-menu {
    display: block;
    position: relative;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu--first {
    width: 1.125rem;
    height: 0.875rem;
  }

  .icon-menu--second {
    width: 1.25rem;
    height: 0.875rem;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu--first {
    position: fixed;
    z-index: 150;
    top: 20px;
    right: 20px;
  }

  .menu-open .icon-menu--first span,
  .menu-open .icon-menu--first::before,
  .menu-open .icon-menu--first::after {
    background-color: #c7c7c7;
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .reviews-hero__descr {
    font-size: 11px;
  }

  .search-bar__letter-list {
    padding: 0 8px;
  }

  .partners__body::after {
    bottom: -35px;
  }

  .partners__row {
    -ms-grid-columns: 64px auto;
    grid-template-columns: 64px auto;
  }

  .item-product-info__row--top {
    padding: 0.625rem 1.25rem;
  }

  .cart-page__preference {
    margin-bottom: 1.25rem;
  }

  .bonus-line__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1.5rem;
            flex: 0 0 1.5rem;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sidebar-order__checkboxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 25rem;
    margin: 0px auto 1.25rem;
  }
}

@media (max-width: 47.99875em) and (max-width: 40.625em) {
  .reviews-hero__quantity {
    font-size: 1rem;
  }
}

@media (max-width: 47.99875em) {
  .events-hero__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .features-hero__item {
    -ms-grid-columns: 40px auto;
    grid-template-columns: 40px auto;
  }

  .features-hero__icon img {
    width: 40px;
    height: 40px;
  }

  .features-hero__descr {
    font-size: 13px;
  }

  .search-bar__nav {
    margin-right: -25px;
  }

  .partners__label {
    font-size: 17.8px;
  }

  .partners__text {
    font-size: 8px;
  }

  .page-product__aside {
    margin-bottom: 1.25rem;
  }

  .page-product__image {
    margin-bottom: 0.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .details-page-product__descr {
    margin-bottom: 0.9375rem;
  }

  .details-page-product__block-links:not(:last-child) {
    margin-bottom: 0.9375rem;
  }

  .final-order__top-row {
    padding: 0.75rem;
  }

  .contact-info__label {
    padding: 0.75rem;
  }

  .contact-info__cell .contact-info__caption {
    margin: 0 0 0.625rem 0;
  }

  .final-succes__line {
    padding: 0.75rem;
  }

  .page-not-exist__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    max-width: 150px;
  }
}

@media (max-width: 46.875em) {
  .cart-page__offers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.875rem;
  }

  .cart-page__offer:not(:last-child) {
    margin: 0 1.25rem 0 0;
  }
}

@media (max-width: 45.625em) {
  .header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .header__logo {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 11px;
  }

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

  .header__phone {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .bonus-hero__text {
    max-width: 65px;
    text-align: center;
  }

  .features-hero {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
  }
}

@media (max-width: 43.75em) {
  .partners {
    padding: 5px 0 20px;
  }

  .partners__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }

  .page-order__form .select__title {
    color: var(--main-color);
  }
}

@media (max-width: 40.62375em) {
  .delivery-item__price--black {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
  }

  .categories-sidebar__top-row {
    display: none;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    background-color: var(--primary);
  }

  .header {
    /* padding-top: 10px; */
  }

  .header__body {
    margin: 0 auto;
  }

  .header__bg {
    height: 400px;
  }

  .header__top {
    margin: 0 auto 10px;
    padding: 20px 0px 0;
  }

  .header__menu {
    margin: 0 -15px 11px;
  }

  .menu__item {
    padding: 0 17px;
  }

  .hero-header__about {
    margin: 0 auto 107px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .hero-header__reviews {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 110px;
            flex: 0 1 110px;
  }

  .hero-header__events {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 130px;
            flex: 0 1 130px;
    max-height: 123px;
  }

  .hero-header__middle {
    position: relative;
    margin: 0 auto 20px;
  }

  .hero-header__bonus {
    top: -4px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  .hero-header__selects {
    -ms-grid-columns: 100px 100px;
    grid-template-columns: 100px 100px;
  }

  .hero-header__features {
    margin-bottom: 10px;
  }

  .hero-header__search {
    margin-left: -10px;
  }

  .reviews-hero__quantity {
    margin-bottom: 3px;
  }

  .reviews-hero__icon {
    margin-bottom: 3px;
  }

  .reviews-hero__icon svg {
    width: 65px;
    height: 13px;
  }

  .reviews-hero__descr {
    max-width: 107px;
  }

  .events-hero__item {
    -ms-grid-columns: auto 30px;
    grid-template-columns: auto 30px;
    gap: 10px;
  }

  .events-hero__title {
    font-size: 0.625rem;
  }

  .events-hero__text {
    font-size: 11px;
    line-height: 1.2727272727;
  }

  .events-hero__icon img {
    width: 30px;
    height: 30px;
  }

  .cart-hero__image {
    bottom: 19px;
  }

  .cart-hero__image img {
    display: none;
  }

  .cart-hero__body {
    display: none;
  }

  .bonus-hero__image {
    text-align: center;
  }

  .bonus-hero__image img {
    width: 57px;
    height: 40px;
  }

  .bonus-hero__descr {
    text-align: center;
  }

  .bonus-hero__title {
    font-size: 12px;
    text-align: center;
  }

  .bonus-hero__text {
    font-size: 9px;
  }

  .search-bar__input .input {
    padding-right: 50px;
    white-space: pre-wrap;
  }

  .search-bar__label {
    max-width: 280px;
    line-height: 1.2307692308;
  }

  .footer {
    padding-bottom: 50.3px;
  }

  .footer__menu {
    text-align: center;
  }

  .footer__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .profile{
    display: none !important;
  }

  .actions-mobile {
    position: fixed;
    z-index: 160;
    bottom: 0;
    left: 0;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), color-stop(29.17%, #FDFBFB), to(#E3E3E3));
    background: -o-linear-gradient(top, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
    background: linear-gradient(180deg, #F4F4F4 0%, #FDFBFB 29.17%, #E3E3E3 100%);
    /* gblock */
    -webkit-box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
            box-shadow: inset 0px 1px 0px #FFFFFF, inset 0px -1px 0px #D9D9D9;
  }

  .item-product {
    padding: 0 20px 15px;
    max-width: 170px;
  }

  .item-product__image {
    margin-bottom: 10px;
  }

  .item-product__data {
    text-align: center;
  }

  .item-product__name {
    font-size: 16px;
  }

  .item-product__company {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .item-product__price {
    margin-bottom: 10px;
  }

  .item-product__button {
    margin: 0 auto;
  }

  .item-product__desrc {
    text-align: center;
    font-size: 11px;
  }

  .reviews__arrow--prev {
    left: -15px;
  }

  .reviews__arrow--next {
    right: -15px;
  }

  .top-line {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: center;
  }

  .top-line__title {
    margin-bottom: 3px;
  }

  .page-product__image-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 52.7777777778%;
            flex: 0 0 52.7777777778%;
    margin-right: 1.25rem;
    padding: 10px;
  }

  .page-product__offers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .order__per-pack {
    -ms-flex-preferred-size: 60px;
        flex-basis: 60px;
  }

  .order__price {
    -ms-flex-preferred-size: 60px;
        flex-basis: 60px;
  }

  .final-order__package {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 122px;
            flex: 0 0 122px;
    margin-right: 10px;
  }

  .final-order__quantity {
    margin-right: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }

  .final-order__per-pack {
    margin-right: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
  }

  .final-order__price {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
  }

  .sidebar-order__label {
    margin-bottom: 10px;
  }

  .sidebar-order__button {
    max-width: 203px;
  }

  .sidebar-order__partners {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .order-bonus-line__total {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
  }

  .contact-form__body:not(:last-child) {
    margin-bottom: 20px;
  }

  .page-not-exist__text {
    font-size: 12px;
  }
}

@media (max-width: 40.625em) {
  .page-product__item-offer:not(:last-child) {
    margin-right: 1.25rem;
  }
}

@media (max-width: 37.5em) {
  .bonus-line__item:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}

@media (max-width: 34.375em) {
  .actions-line {
    padding: 0.9375rem 0;
  }

  .actions-line__button {
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
  }

  .actions-line__button:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (max-width: 29.99875em) {
  [class*=__container] {
    padding: 0 0.9375rem;
  }

  .header__phone {
    font-size: 12px;
  }

  .menu__link {
    font-size: 11px;
  }

  .search-bar__input .input {
    min-height: 60px;
    padding: 14px 30px;
    font-size: 10px;
  }

  .partners__item {
    height: 1.6875rem;
  }

  .reviews__body {
    max-width: 98.3333333333%;
  }

  .page-product__items:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .page-product__item:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .item-product-info__row:not(.item-product-info__row--top) {
    padding: 0.46875rem 0.75rem;
  }

  .item-product-info__package {
    margin-right: 12px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
  }

  .item-product-info__per-pill {
    margin-right: 12px;
  }

  .item-product-info__price {
    margin-right: 12px;
  }

  .item-product-info__add-to-cart {
    max-width: 50px;
    padding: 8px;
    font-size: 10px;
  }

  .info-page-product {
    padding-top: 0.625rem;
  }

  .announce__item {
    max-width: 60%;
    font-size: 14px;
  }

  .announce__item {
    padding: 0.8125rem 1.25rem;
  }

  .order__top-row {
    padding: 0.625rem;
  }

  .order__label {
    font-size: 0.875rem;
  }

  .order__row--headline .order__per-pack {
    text-align: center;
  }

  .bonus-line__total {
    font-size: 0.9375rem;
  }

  .total-line {
    padding: 0.78125rem 1.25rem;
  }

  .final-order__label {
    font-size: 0.875rem;
  }

  .contact-info__selects {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .final-succes__line--descr p:not(:last-child) {
    margin: 0 0 0.9375rem 0;
  }

  .contact-form__body {
    padding: 20px 15px;
  }

  .contact-form__lines:not(:last-child) {
    margin-bottom: 15px;
  }

  .contact-form__line:not(:last-child) {
    margin-bottom: 15px;
  }

  .contact-form__descr p:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (max-width: 29.6875em) {
  .bonus-line__total {
    -ms-flex-preferred-size: 4.0625rem;
        flex-basis: 4.0625rem;
  }
}

@media (max-width: 24.375em) {
  .order__label {
    font-size: 12px;
  }

  .order__line {
    padding: 15px 0.625rem;
  }

  .order__package {
    font-size: 9px;
    -ms-flex-preferred-size: 95px;
        flex-basis: 95px;
  }

  .order__old-price {
    font-size: 8px;
  }

  .order__new-price {
    font-size: 10px;
  }

  .order__upgrade {
    font-size: 9px;
  }

  .final-order__line {
    padding: 15px 0.625rem;
  }

  .final-order__line--first {
    padding: 15px 0.625rem;
  }

  .final-order__option {
    padding: 15px 0.625rem;
  }

  .total-final {
    padding: 0.9375rem 0.625rem;
  }

  .contact-info__row {
    padding: 15px 0.625rem;
  }

  .contact-info__phone {
    padding: 0px 0.625rem;
  }
}

@media (max-width: 23.125em) {
  .review-item__name {
    margin-bottom: 5px;
  }

  .features-hero {
    gap: 10px 15px;
  }

  .item-product-info__row--top .item-product-info__per-pill,
  .item-product-info__row--top .item-product-info__price,
  .item-product-info__row--top .item-product-info__package {
    font-size: 0.625rem;
  }

  .total-line__old-price {
    white-space: nowrap;
  }

  .total-line__digits {
    white-space: nowrap;
  }

  .final-order__package {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

@media (max-width: 23.75em) {
  .header__body {
    padding: 0 10px;
    width: calc(100% - 10px);
  }

  .header__menu {
    margin: 0 -25px 11px;
  }

  .item-product-info__delivery {
    font-size: 0.625rem;
  }
}

@media (max-width: 22.5em) {
  .total-line__old-price {
    font-size: 0.875rem;
  }

  .total-line__savings {
    font-size: 0.625rem;
  }

  .total-line__digits {
    font-size: 0.875rem;
  }
}

@media (min-width: 40.62375em) and (max-width: 61.99875em) {
  .categories-sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 21.7391304348%;
            flex: 0 1 21.7391304348%;
  }

  .categories-sidebar__top-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 18px auto;
    grid-template-columns: 18px auto;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    background-color: var(--white-pure);
  }

  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 30px;
    margin: 0 -15px 26px;
  }

  .menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 78.5507246377%;
            flex: 0 1 78.5507246377%;
  }

  .hero-header__about {
    margin: 0 auto 45px;
    padding: 0 20px;
  }

  .reviews-hero__descr {
    max-width: 240px;
  }

  .events-hero__title {
    font-size: 16px;
  }

  .cart-hero {
    max-width: 245px;
  }

  .cart-hero__body {
    padding: 10px;
  }

  .cart-hero__label {
    margin-bottom: 5px;
  }

  .footer__menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }
}

@media (min-width: 23.75em) and (max-width: 40.62375em) {
  .header__body {
    max-width: 94.4444444444%;
  }

  .header__top {
    max-width: 90%;
  }

  .hero-header__about {
    max-width: 90%;
  }
}

@media (min-width: 40.62375em) and (max-width: 47.99875em) {
  .header__bg::after {
    width: 100%;
    left: 0;
    bottom: -50px;
  }
}

@media (min-width: 23.125em) and (max-width: 40.62375em) {
  .hero-header__middle {
    max-width: 90%;
  }
}

@media (min-width: 47.99875em) and (min-width: 48em) and (max-width: 62.5em) {
@supports (font-size: clamp( 1.875rem , 0.8405172414rem  +  2.1551724138vw , 2.1875rem )) {
    .reviews-hero__quantity {
      font-size: clamp( 1.875rem , 0.8405172414rem  +  2.1551724138vw , 2.1875rem );
    }
}

@supports not (font-size: clamp( 1.875rem , 0.8405172414rem  +  2.1551724138vw , 2.1875rem )) {
    .reviews-hero__quantity {
      font-size: calc(1.875rem + 0.3125 * (100vw - 48rem) / 14.5);
    }
}
}

@media (min-width: 47.99875em) and (max-width: 48em) {
  .reviews-hero__quantity {
    font-size: 1.875rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 48em) {
  .reviews-hero__quantity {
    font-size: 1.875rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 40.625em) and (max-width: 48em) {
@supports (font-size: clamp( 1rem , -3.8199152542rem  +  11.8644067797vw , 1.875rem )) {
    .reviews-hero__quantity {
      font-size: clamp( 1rem , -3.8199152542rem  +  11.8644067797vw , 1.875rem );
    }
}

@supports not (font-size: clamp( 1rem , -3.8199152542rem  +  11.8644067797vw , 1.875rem )) {
    .reviews-hero__quantity {
      font-size: calc(1rem + 0.875 * (100vw - 40.625rem) / 7.375);
    }
}
}

@media (min-width: 23.125em) and (max-width: 45.625em) {
  .features-hero {
    gap: 20px 35px;
  }
}

@media (min-width: 29.99875em) and (max-width: 45.625em) {
  .features-hero {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media (min-width: 61.99875em) and (max-width: 74.99875em) {
  .content__inner {
    -ms-grid-columns: 200px 1fr;
    grid-template-columns: 200px 1fr;
  }
}

@media (min-width: 43.75em) and (max-width: 47.99875em) {
  .partners__body {
    -ms-grid-columns: 255px auto;
    grid-template-columns: 255px auto;
  }
}

@media (min-width: 29.99875em) and (max-width: 61.99875em) {
  .partners__item {
    height: 2rem;
  }

  .reviews__body {
    max-width: 95%;
  }

  .item-product-info__row:not(.item-product-info__row--top) {
    padding: 0.46875rem 1.25rem;
  }

  .total-line {
    padding: 1.28125rem 1.25rem;
  }
}

@media (min-width: 46.875em) and (max-width: 61.99875em) {
  .cart-page__offer:not(:last-child) {
    margin: 0 0 1.25rem 0;
  }

  .preference-page-cart__top {
    display: block;
  }

  .preference-page-cart__icon {
    margin-bottom: 5px;
  }
}

@media (min-width: 24.375em) and (max-width: 40.62375em) {
  .order__package {
    -ms-flex-preferred-size: 112px;
        flex-basis: 112px;
  }
}

@media (min-width: 29.6875em) and (max-width: 35em) {
@supports (flex-basis: clamp( 4.0625rem , -18.6397058824rem  +  76.4705882353vw , 8.125rem )) {
    .bonus-line__total {
      -ms-flex-preferred-size: clamp( 4.0625rem , -18.6397058824rem  +  76.4705882353vw , 8.125rem );
          flex-basis: clamp( 4.0625rem , -18.6397058824rem  +  76.4705882353vw , 8.125rem );
    }
}

@supports not (flex-basis: clamp( 4.0625rem , -18.6397058824rem  +  76.4705882353vw , 8.125rem )) {
    .bonus-line__total {
      -ms-flex-preferred-size: calc(4.0625rem + 4.0625 * (100vw - 29.6875rem) / 5.3125);
          flex-basis: calc(4.0625rem + 4.0625 * (100vw - 29.6875rem) / 5.3125);
    }
}
}

@media (min-width: 29.99875em) and (max-width: 29.99875em) {
  .contact-info__row--flex .contact-info__cell {
    margin-bottom: 0.9375rem;
  }
}

@media (any-hover: hover) {
  .top-phones-header__item:hover::after {
    width: 100%;
  }

  .select__value:hover {
    color: var(--primary);
  }

  .select__value:hover::after {
    background: url("../images/icons/arr-down-primary.svg") center/cover no-repeat;
  }

  .select__option:hover {
    color: var(--primary);
  }

  .quantity__button:hover {
    color: var(--gray);
  }

  .spollers__title:hover {
    text-decoration: none;
  }

  .spollers__item-list a:hover {
    color: var(--primary);
  }

  .button--filled:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#54a8c2), color-stop(69.27%, #76c8e1), to(#72bad0));
    background: -o-linear-gradient(top, #54a8c2 0%, #76c8e1 69.27%, #72bad0 100%);
    background: linear-gradient(180deg, #54a8c2 0%, #76c8e1 69.27%, #72bad0 100%);
  }

  .button--stroke:hover {
    color: var(--primary);
  }

  .header__phone:hover {
    color: var(--primary);
  }

  .menu__link:hover::after {
    opacity: 1;
    -webkit-transform: translate3D(0px, 0px, 0);
        -ms-transform: translate3D(0px, 0px, 0);
            transform: translate3D(0px, 0px, 0);
  }

  .cart-hero__data:hover::after {
    opacity: 0;
  }

  .search-bar__item-list button:hover {
    color: var(--primary);
  }

  .search-bar__item-results:hover {
    color: var(--primary);
  }

  .footer__link:hover {
    color: var(--white-pure);
  }

  .footer__link:hover::after {
    opacity: 1;
    visibility: visible;
  }

  .reviews__arrow:not(.swiper-button-disabled):hover {
    color: var(--primary);
  }

  .details-page-product a:hover {
    color: var(--gray);
  }

  .order__remove:hover {
    color: var(--main-color);
  }

  .order__upgrade:hover {
    color: var(--main-color);
  }

  .bonus-line__button:hover {
    color: var(--main-color);
  }

  .discount-line__input .input:hover {
    color: var(--main-color);
  }

  .page-order__place-button:hover {
    opacity: 0.8;
  }

  .contact-info__phone:hover {
    border-color: var(--main-color);
  }

  .final-succes__line a:hover {
    text-decoration: none;
  }

  .text-page__block a:hover {
    text-decoration: none;
  }

  .text-page__list--numeric li a:hover {
    color: var(--primary);
  }
}

.webp .wrapper::before{ background: url(../images/main-bg2.webp) center no-repeat; }


.request_call{
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
  pointer-events: auto;
  color: var(--primary);
  margin-right: 5px;
}

.popup_gray{
  position: fixed;
  top: 0;
  background-color: rgb(171 171 171 / 60%);
  width: 100%;
  height: 100%;
  z-index: 1001;
}

.popup_call{
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  width: 40%;
  top: 35%;
  left: 35%;
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 20px;
  min-width: 300px;
  z-index: 6;
}

@media (max-width: 720px) {
  .popup_call {
    left: 20%;
  }
}

@media (max-width: 455px) {
  .popup_call {
    left: 5%;
  }
}

.popup_call .select__title{
  border: none;
}

.button_close{
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.button_close svg{
  color: rgb(171 171 171);
}

.popup_bottom{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup_text{
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.button_request_call{
  background: linear-gradient(180deg, #72bad0 0%, #76c8e1 28.13%, #54a8c2 100%);
  padding: 15px 50px;
  border-radius: 12px;
  cursor: pointer;
  color: white;
}

.button_request_call:hover{
  background: -webkit-gradient(linear, left top, left bottom, from(#54a8c2), color-stop(69.27%, #76c8e1), to(#72bad0));
  background: -o-linear-gradient(top, #54a8c2 0%, #76c8e1 69.27%, #72bad0 100%);
  background: linear-gradient(180deg, #54a8c2 0%, #76c8e1 69.27%, #72bad0 100%);
}

.phone{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.phone_code{
  margin-right: 10px;
}

#phone::-webkit-outer-spin-button,
#phone::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#phone{
  -moz-appearance: textfield;
}

.enter-info__input--country{
  margin-left: 15px;
}

.header__phone2{
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.profile{
  display: flex;
  align-items: center;
}
.profile img {
  margin-right: 5px;
}
.profile a {
  font-weight: 600;
  font-size: 12px;
}

@media (max-width: 480px) {
  .reviews__body {
    margin: 0 30px;
  }
}

@media (max-width: 370px) {
  .features-hero__item {
    -ms-grid-columns: 30px auto;
    grid-template-columns: 30px auto;
  }

  .item-product {
    max-width: 140px;
  }

  .menu__item {
    max-width: 130px;
    overflow: hidden;
  }

  .menu__item.menu__item--action {
    overflow: visible;
  }
}

@media (max-width: 350px) {
  .item-product-info__package {
    margin: 0;
  }

  .item-product-info__per-pill {
    margin: 0;
  }

  .item-product-info__price {
    margin: 0;
  }
}

.christmas{
  /* width: 100%; */
  /*background: url("../images/pay_big.png") no-repeat center;*/
  /*height: 80px;*/
  padding-top: 30px;
  z-index: 3;
  cursor: pointer;
}

.christmas img {
  width: 100%;
}

@media (max-width: 390px) {
  /*.christmas{*/
  /*  height: 66px;*/
  /*}*/
}

.subscribe__container {
  margin: 30px auto;
  margin-bottom: 10px;
}

.subscribe_body {
  display: flex;
  width: 100%;
  max-width: 1000px;
  justify-content: space-between;
  border-radius: 20px;
  padding: 12px 50px;
  background-color: white;
  height: 80px;
}

.subscribe_body .left_block {
  display: flex;
  gap: 10px;
  align-items: center;
}

.subscribe_body .text_subscribe {
  display: flex;
  flex-direction: column;
}

.subscribe_body .top_text {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

.subscribe_body .bottom_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--primary);
  text-transform: uppercase;
}

.subscribe_body .right_block {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 50%;
}

.subscribe_body .right_block input {
  height: 40px;
  font-size: 12px;
  border-radius: 50px;
}

.subscribe_body .button_sub {
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  padding: 0 20px;
  background: linear-gradient(180deg, #72BAD0 0%, #76C8E1 28.13%, #54A8C2 100%);
  cursor: pointer;
}

.subscribe_body .button_text {
  color: white;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.subscribe_body .button_sub:hover {
  background: linear-gradient(180deg, #54a8c2 0%, #76c8e1 69.27%, #72bad0 100%);
}

.subscribe_body .sub_mini {
  display: none;
}

@media (max-width: 680px) {
  .subscribe_body {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    height: 135px;
  }

  .subscribe_body .right_block {
    width: 100%;
  }
}

@media (max-width: 435px) {
  .subscribe_body .button_sub {
    padding: 0;
    width: 48px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .subscribe_body .sub_mini {
    display: block;
  }

  .subscribe_body .button_text {
    display: none;
  }
}


.popup_white {
  position: fixed;
  top: 0;
  left: 39%;
  z-index: 4;
}

.popup_white.hide {
  display: none;
}

.popup_push {
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 90%;
  max-width: 300px;
  border-radius: 20px;
}

.popup_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.popup_head {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 19px;
  text-align: center;
}

.popup_push_text {
  font-size: 12px;
  text-align: center;
  font-weight: 300;
}

.push_buttons {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
}

.push_decline {
  color: var(--primary);
  background-color: #f1f5f9;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
}

.push_decline:hover{
  opacity: 0.8;
}

.push_allow {
  color: white;
  background: linear-gradient(180deg, #72bad0 0%, #76c8e1 28.13%, #54a8c2 100%);
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
}

.push_allow:hover{
  background: linear-gradient(180deg, #54a8c2 0%, #76c8e1 69.27%, #72bad0 100%);;
}

@media (max-width: 560px) {
  .popup_push {
    margin: 0 auto;
  }
}

@media (max-width: 510px) {
  .popup_white {
    left: 19%;
  }
}

@media (max-width: 430px) {
  .popup_white {
    left: 2%;
  }
}

.pay-index, .ship-index{
  --height: 4.5rem;
  overflow-y:hidden;
  transition: none !important;
  max-width: 75rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto 10px auto;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -ms-overflow-style: none;
  display: flex;
  padding: 10px 0;
}

.ship-index {
  padding: 0;
  margin: 0 auto;
}

.pay-index::-webkit-scrollbar, .ship-index::-webkit-scrollbar {
  width: 0;
  display: none;
}

.pay-index__container, .ship-index__container {
  overflow-x: auto;
  overflow-y: hidden;/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-overflow-style: none;
  max-width: 75rem;
  /*padding: 0;*/
}

.pay-index__container::-webkit-scrollbar, .ship-index__container::-webkit-scrollbar {
  width: 0;
  display: none;
}

.pay-index__list, .ship-index__list{
  display:flex;
  justify-content:space-between;
  align-items: center;
  gap:0.5rem;
  padding-left:0;
  margin-bottom:0;
  list-style:none;
}

.ship-index__list {
  gap: 15px;
}

.pay-index__item{
  margin-bottom:0;
  width: 38px;
}

.ship-index__item{
  margin-bottom:0;
  width: 75px;
}

.pay-index__item svg {
    width: 100%;
    height: 30px;
}

.ship-index__item svg {
    width: 100%;
    height: 90px;
}

@media (max-width: 1200px) {
  .pay-index, .ship-index {
    --height: 3.5rem;
  }

}

.card__label{
    position:absolute;
    top:0.8rem;
    right:0.8rem;
    z-index:1;
    display:inline-flex;
    align-items:center;
    min-height:1.8rem;
    padding:0.1rem 0.4rem 0;
    border-radius:0.5rem;
    font-size:0.8rem;
    line-height:1;
    font-weight:700;
    background-color: #e14c5c;
    color:white;
  }

  @media (max-width: 649px) {
    .card__label{
        min-height: 1.4rem;
        font-size: 10px;

    }
  }


  .contact_subject{
    display: flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius);
  }

  .contact_subject .select-wrapper{
    max-width:30rem;
    margin-left:auto;
  }

  #new_subject_block {
    display: flex;
    width: 100%;
}

.select_subject {
    width: 100%;
}

.select_header_subject {
    align-items: center;
    background-color: white;
    border: 1px solid var(--add-white);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    font-size: inherit;
    height: 40px;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 10px;
    position: relative;
    width: 100%;
    z-index: 2;
    gap: 10px;
    background-color: var(--white-darker);
}

.select_header_subject:hover {
    cursor: pointer;
}

  .select_body_subjects {
    --offset-y: 0.1rem;
    --translate-x: 0%;
    background-color: white;
    border: 1px solid var(--primary);
    border-radius: 15px;
    box-shadow: 0 20px 20px -15px rgba(38, 45, 56, 0.1);
    display: none;
    /* padding: 1rem 0; */
    transform: translate3d(var(--translate-x), var(--offset-y), 0);
    position: absolute;
    width: max-content;
}

.select_subject.is-active .select_body_subjects {
    display: block;
    z-index: 100;
    max-height: 24rem;
    overflow-y: auto;
    animation:select-panel-appear 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.select_item_subject {
    font-size: inherit;
    padding: 0.8rem;
    position: relative;
    transition: background-color 0.1s cubic-bezier(0.4, 0.8, 0.4, 1), color 0.1s cubic-bezier(0.4, 0.8, 0.4, 1);
    cursor: pointer;
}

.select_item_subject:hover {
    color: var(--primary);
}

.select_body_subjects::-webkit-scrollbar{
    width:0.6rem;
}
.select_body_subjects::-webkit-scrollbar-track{
    border-radius:1rem;
    margin-top:0.6rem;
    margin-bottom:0.6rem;
    background-color:var(--color-white);
}
.select_body_subjects::-webkit-scrollbar-thumb{
    width:0.2rem;
    border-radius:2rem;
    background:#d7d7d7;
}
.select_body_subjects::-webkit-scrollbar-track{
    margin-top:2rem;
    margin-bottom:2rem;
}

#contact-subject {
    width: 100%;
}

#go_to_contact_us{
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 20px;
    background: linear-gradient(180deg, #72BAD0 0%, #76C8E1 28.13%, #54A8C2 100%);
    cursor: pointer;
    color: white;
    width: 100%;
    max-width: 300px;
    min-width: 270px;
}

#go_to_contact_us:hover{
    background: linear-gradient(180deg, #54a8c2 0%, #76c8e1 69.27%, #72bad0 100%);
}

.cart_rec .item-product__info {
    display: block;
}

.cart_rec .item-product {
    width: auto;
}

.cart_rec .item-product__desrc {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 790px) {
    .product_rec {
        grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
    }
}

@media (max-width: 650px) {
    .product_rec {
        grid-template-columns: repeat(auto-fit, minmax(146px, 1fr));
    }
}

@media (max-width: 650px) {
    .product_rec {
        grid-template-columns: 1fr 1fr;
    }
}

.site_info_link:hover{
    color: #72bad0;
}

.sitemap_menu{
    display: flex;
    margin: 20px 0;
    justify-content: center;
    font-size: 11px;
    line-height: 1.2727272727;
    text-transform: uppercase;
}

.sitemap_menu:hover{
    color: #72bad0;
}