* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@font-face {
  font-family: "Creepster";
  src: url("../fonts/Creepster.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.woff2") format("woff2");
  font-weight: 900;
}

@font-face {
  font-family: "Monument";
  src:
    url("../fonts/Monument-Extended-Bold.woff2") format("woff2"),
    url("../fonts/Monument-Extended-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --curent-size: 1920;
}

body {
  background: #060606;
}

header {
  border-bottom: 1px solid #ffffff1e;
  width: 100%;
  background: #00000071;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.container {
  width: calc((1600 / var(--curent-size)) * 100vw);
  margin: 0 auto;
}

.header-logo {
  width: calc((70 / var(--curent-size)) * 100vw);
}

.hello-baner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: #000000c0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.hello-baner.open {
  opacity: 1;
  visibility: visible;
}

.hello-baner-wrapper {
  position: relative;
  transform: translateY(1000px);
  pointer-events: visiblePainted;
  visibility: hidden;
}

.hello-baner-wrapper.open-news {
  animation: open 1s linear forwards;
}

.main-text {
  width: calc((500 / var(--curent-size)) * 100vw);
}

@keyframes open {
  0% {
    transform: translateY(1000px);

    visibility: hidden;
  }
  100% {
    transform: translateY(0);

    visibility: visible;
  }
}

.baner-manager-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin: calc((40 / var(--curent-size)) * 100vw) 0;
}

.hello-baner-content {
  width: calc((1000 / var(--curent-size)) * 100vw);
  height: fit-content;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90f5ff;
  margin: calc((130 / var(--curent-size)) * 100vw) auto;
  border-radius: 40px;
  padding: calc((30 / var(--curent-size)) * 100vw);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: calc((10 / var(--curent-size)) * 100vw);
  background: #40486439;
  position: relative;
  overflow: hidden;
}

#data {
  padding: calc((120 / var(--curent-size)) * 100vw) 0;
}
.hello-baner-content > p {
  color: #fff;
  font-family: Gilroy;
  font-weight: 800;
  font-size: calc((50 / var(--curent-size)) * 100vw);
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hello-baner-content > span {
  color: #fff;
  font-family: Gilroy;
  font-weight: 800;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.hand-l {
  position: absolute;
  bottom: calc((-200 / var(--curent-size)) * 100vw);
  left: calc((300 / var(--curent-size)) * 100vw);
  z-index: -1;
  width: calc((300 / var(--curent-size)) * 100vw);
  pointer-events: none;
}

.finger-l {
  position: absolute;
  bottom: calc((-200 / var(--curent-size)) * 100vw);
  left: calc((449 / var(--curent-size)) * 100vw);
  z-index: 3;
  width: calc((151 / var(--curent-size)) * 100vw);
  pointer-events: none;
}

.hand-r {
  position: absolute;
  bottom: calc((-200 / var(--curent-size)) * 100vw);
  right: calc((300 / var(--curent-size)) * 100vw);
  transform: scaleX(-1);
  z-index: -1;
  width: calc((300 / var(--curent-size)) * 100vw);
  pointer-events: none;
}

.finger-r {
  position: absolute;
  bottom: calc((-200 / var(--curent-size)) * 100vw);
  right: calc((449 / var(--curent-size)) * 100vw);
  z-index: 3;
  transform: scaleX(-1);
  width: calc((151 / var(--curent-size)) * 100vw);
  pointer-events: none;
}

.close-hello {
  position: absolute;
  top: calc((30 / var(--curent-size)) * 100vw);
  right: calc((30 / var(--curent-size)) * 100vw);
  border: none;
  background: initial;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 5;
}

.close-hello img {
  width: calc((30 / var(--curent-size)) * 100vw);
  filter: hue-rotate(24deg);
}

.baner-manager-wrapper a {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  font-family: "Gilroy";
  text-decoration: none;
  font-weight: 600;
  font-size: calc((20 / var(--curent-size)) * 100vw);
}

.baner-manager-wrapper a img {
  width: calc((30 / var(--curent-size)) * 100vw);
}

.close-hello:hover {
  transform: rotate(90deg);
  transition: 0.3s ease;
}

.header-manager img {
  width: calc((30 / var(--curent-size)) * 100vw);
}

.stock-wrapper {
  width: 100%;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.stock-slider {
  width: 100%;
  height: calc((304 / var(--curent-size)) * 100vw);
}

.stock-slide {
  width: calc((304 / var(--curent-size)) * 100vw);
  gap: calc((10 / var(--curent-size)) * 100vw);
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.stock-slide div {
  width: calc((304 / var(--curent-size)) * 100vw);
  height: calc((230 / var(--curent-size)) * 100vw);
}

.stock-slide div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-slide > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc((14 / var(--curent-size)) * 100vw) 0;
  background: #269b53;
  border-radius: 8px;
  color: #fff;
  font-family: "Gilroy";
  text-decoration: none;
  font-weight: 600;
}

.header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
  z-index: 4;
}

.search-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Бургер */
#nav-toggle {
  background: initial;
  height: calc((24 / var(--curent-size)) * 100vw);
  width: calc((38 / var(--curent-size)) * 100vw);
  cursor: pointer;
  border: none;
  z-index: 10;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: calc((1 / var(--curent-size)) * 100vw);
  height: calc((2 / var(--curent-size)) * 100vw);
  width: calc((35 / var(--curent-size)) * 100vw);
  background: #90ffba;
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  content: "";
  border-radius: calc((20 / var(--curent-size)) * 100vw);
}

#nav-toggle span {
  width: calc((24 / var(--curent-size)) * 100vw);
  position: relative;
  top: 0;
  right: 0;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
}

#nav-toggle span:before {
  top: calc((-10 / var(--curent-size)) * 100vw);
}

#nav-toggle span:after {
  top: calc((10 / var(--curent-size)) * 100vw);
}

#nav-toggle span {
  transition: all 0.2s ease-in-out;
}

#nav-toggle span:before,
#nav-toggle span:after {
  transition: all 0.3s ease-in-out;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(-45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-135deg);
}

/*  */

.search-wrapper {
  width: calc((600 / var(--curent-size)) * 100vw);
}

.search-wrapper input {
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  outline: none;
  font-family: "Gilroy";
  background: initial;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  width: 100%;
  padding: calc((14 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 0 12px -2px #0095ff00;
}

#ajaxsearchlite1 {
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  outline: none;
  font-family: "Gilroy";
  background: initial;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  width: 100%;
  padding: calc((6 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 0 12px -2px #0095ff00;
}

.search-wrapper input:focus {
  transition: 0.3s ease;
  box-shadow: 0 0 17px 0px #90ffba;
}

.search-wrapper input::placeholder {
  font-family: "Gilroy";
  color: #fff;
}

div.asl_m .probox .proclose svg {
  background: #00000000 !important;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 50%;
  margin-left: -10px;
  fill: #90ffba !important;
  padding: 4px;
  box-sizing: border-box;
  box-shadow: 0 0 0 2px #90ffba !important;
}

.cart-btn {
  background: initial;
  border: none;
  cursor: pointer;
  position: relative;
}

.cart-btn img {
  width: calc((40 / var(--curent-size)) * 100vw);
}

.curent-cart-count {
  position: absolute;
  bottom: calc((-4 / var(--curent-size)) * 100vw);
  right: calc((-14 / var(--curent-size)) * 100vw);
  padding: calc((4 / var(--curent-size)) * 100vw);
  font-size: calc((14 / var(--curent-size)) * 100vw);
  color: #fff;
  font-family: "Gilroy";
}

.header-btns {
  display: flex;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.main-img {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: calc((800 / var(--curent-size)) * 100vw);
}

main {
  overflow: hidden;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 6;
  position: relative;
  height: 100%;
  justify-content: center;
  width: calc((700 / var(--curent-size)) * 100vw);
  margin-left: auto;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

#hero {
  position: relative;
  width: 100%;
  height: calc((875 / var(--curent-size)) * 100vw);
  background-image: url(../img/main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

#hero .container {
  height: 100%;
}

.hero-content > p {
  color: #fff;
  font-family: "Gilroy";
  font-size: calc((44 / var(--curent-size)) * 100vw);
  font-weight: 800;
}

.hero-content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
  list-style: none;
}

.hero-content ul li {
  padding: calc((14 / var(--curent-size)) * 100vw)
    calc((30 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #0093ffe0;
  border-radius: 12px;
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  font-family: "Gilroy";
  box-shadow: 0 0 17px 0px #0093ff94;
  position: relative;
}

.hero-content ul li:nth-child(1) {
  transform: rotate(4deg);
  z-index: 2;
}

.hero-content ul li:nth-child(2) {
  transform: rotate(-2deg);
  z-index: 1;
  background: #09d0fb;
}

.hero-content ul li:nth-child(3) {
  transform: rotate(4deg);
  z-index: 3;
}

.hero-content a {
  padding: calc((20 / var(--curent-size)) * 100vw)
    calc((90 / var(--curent-size)) * 100vw);
  font-size: calc((24 / var(--curent-size)) * 100vw);
  font-family: "Gilroy";
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  border-radius: 12px;
  background: #90ffba;
  margin-top: calc((60 / var(--curent-size)) * 100vw);
  text-decoration: none;
  color: #000;
}

.manager-widjet {
  position: fixed;
  bottom: calc((50 / var(--curent-size)) * 100vw);
  right: calc((50 / var(--curent-size)) * 100vw);
  width: calc((90 / var(--curent-size)) * 100vw);
  height: calc((90 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 17px 0px #90ffba;
  cursor: pointer;
  z-index: 99;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
}

.manager-widjet a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-line {
  width: 100%;
}

.main-line-wrapper {
  display: flex;
  animation: ticker 60s linear infinite;
  white-space: nowrap;
  width: fit-content;
  gap: calc((60 / var(--curent-size)) * 100vw);
  position: relative;
  z-index: 999999999;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.ticker__item span {
  color: #000000;
  font-family: "Gilroy";
  font-weight: 600;
}

#line {
  padding: calc((10 / var(--curent-size)) * 100vw) 0;
  background: #90ffba;
  position: relative;
  z-index: 6;
}

#catalog {
  padding: calc((120 / var(--curent-size)) * 100vw) 0;
}

#form-sections {
  padding: calc((120 / var(--curent-size)) * 100vw) 0;
  position: relative;
}

.el-g {
  position: absolute;
  top: 50%;
  left: -30%;
  transform: translate(0, -50%);
  pointer-events: none;
  width: calc((1200 / var(--curent-size)) * 100vw);
}

.title {
  color: #fff;
  font-family: "Creepster";
  font-size: calc((70 / var(--curent-size)) * 100vw);
  font-weight: 800;
  letter-spacing: calc((10 / var(--curent-size)) * 100vw);
}

.catalog-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((60 / var(--curent-size)) * 100vw);
}

.catalog-main-items {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: calc((90 / var(--curent-size)) * 100vw)
    calc((30 / var(--curent-size)) * 100vw);
  list-style: none;
}

.catalog-main-items li {
  width: calc((377 / var(--curent-size)) * 100vw);
  height: calc((400 / var(--curent-size)) * 100vw);
  position: relative;
}

.catalog-main-items li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #212121;
  z-index: -1;
  border-radius: 20px;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: calc((2 / var(--curent-size)) * 100vw) solid #0095ff00;
  box-shadow: 0 0 17px 0px #90ffbb00;
}

.catalog-main-items li:hover:after {
  transform: perspective(500px) rotateX(25deg) translateY(0px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
  border: calc((2 / var(--curent-size)) * 100vw) solid #f801c1;
  box-shadow: 0 0 17px 0px #f801c1;
}

.catalog-main-items li a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.catalog-main-items li img {
  width: calc((300 / var(--curent-size)) * 100vw);
  transition: 0.6s ease;
}

.catalog-main-items li:hover img {
  width: calc((330 / var(--curent-size)) * 100vw);
  transition: 0.6s ease;
}

@supports (filter: drop-shadow(2px 4px 6px #90ffba)) {
  .catalog-main-items li:hover img {
    transition: 0.6s ease;
    filter: drop-shadow(2px 4px 6px #90ffba);
    will-change: transform;
    transform: translateZ(0);
  }
}

.catalog-main-items li p {
  color: #fff;
  font-family: "Gilroy";
  font-size: calc((22 / var(--curent-size)) * 100vw);
  font-weight: 700;
  text-transform: uppercase;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: calc((60 / var(--curent-size)) * 100vw);
}

.form-z {
  width: calc((500 / var(--curent-size)) * 100vw);
}

#form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.form-data {
  width: calc((500 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.form-data > p {
  color: #fff;
  font-family: "Gilroy";
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 500;
}

#form > input {
  width: 100%;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  outline: none;
  font-family: "Gilroy";
  background: initial;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  width: 100%;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  padding: calc((14 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 0 12px -2px #0095ff00;
}

#form > input:focus {
  transition: 0.3s ease;
  box-shadow: 0 0 17px 0px #90ffba;
}

#form > textarea {
  width: 100%;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  outline: none;
  font-family: "Gilroy";
  background: initial;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  width: 100%;
  padding: calc((14 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
  box-shadow: 0 0 12px -2px #0095ff00;
  height: calc((100 / var(--curent-size)) * 100vw);
  resize: none;
}

#form > textarea:focus {
  transition: 0.3s ease;
  box-shadow: 0 0 17px 0px #90ffba;
}

#form > button {
  padding: calc((20 / var(--curent-size)) * 100vw) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  font-family: "Gilroy";
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  border-radius: 12px;
  background: #90ffba;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
  text-decoration: none;
  color: #000;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

#form > button:hover {
  background: initial;
  color: #fff;
}

.form-content {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.checkbox-wrapper.item-null {
  opacity: 0.5;
  pointer-events: none;
}

.checkbox-wrapper p {
  color: #fff;
  font-family: "Gilroy";
  font-size: calc((16 / var(--curent-size)) * 100vw);
}

.checkbox-wrapper p a {
  color: #fff;
}

.checkbox {
  width: calc((20 / var(--curent-size)) * 100vw);
  height: calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.checkbox input {
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.checkbox.clicked:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background-image: url(../img/click.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

#faq {
  padding: calc((120 / var(--curent-size)) * 100vw) 0;
}

.faq-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((70 / var(--curent-size)) * 100vw);
}

.faq-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
}

.faq-item {
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  cursor: pointer;
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.3s ease;
  width: 100%;
}

.faq-item-head {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 34px;
}

.faq-item-head p {
  font-family: "Gilroy";
  font-weight: 600;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  color: #ffffff;
  transition: 0.3s ease;
}

.faq-item-head span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((60 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  background: #90ffba;
}

.faq-item-head span img {
  width: calc((24 / var(--curent-size)) * 100vw);
  height: calc((24 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.answer {
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
  color: #fff;
}

.faq-item.active {
  grid-template-rows: auto 1fr;
}

.faq-item.active .answer {
  visibility: visible;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
}

.faq-item.active .faq-item-head span img {
  transform: rotate(45deg);
  transition: 0.3s ease;
}

.data-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((70 / var(--curent-size)) * 100vw);
}

.data-info-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}

.data-info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.data-info-item > p {
  font-family: "Gilroy";
  font-weight: 700;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
  color: #fff;
}

.data-info-item > span {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
  color: #fff;
}

.data-info-item ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.data-info-item ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  border-radius: 12px;
  width: calc((330 / var(--curent-size)) * 100vw);
}

.data-info-item ul li p {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
  color: #fff;
}

.data-info-item ul li span {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
  color: #fff;
}

.data-info-item ul li img {
  width: calc((90 / var(--curent-size)) * 100vw);
}

.send-ul li:last-child {
  width: calc((400 / var(--curent-size)) * 100vw) !important;
  gap: calc((5 / var(--curent-size)) * 100vw) !important;
}

footer {
  padding: calc((30 / var(--curent-size)) * 100vw) 0;
  position: relative;
}

footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    88deg,
    rgba(144, 255, 186, 0) 0%,
    rgba(144, 255, 186, 1) 50%,
    rgba(144, 255, 186, 0) 100%
  );
}

.footer-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-logo img {
  width: calc((120 / var(--curent-size)) * 100vw);
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.footer-item > p {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
}

.footer-item ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.footer-item ul li a {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  opacity: 0.5;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-item ul li a:hover {
  opacity: 1;
  transition: 0.3s ease;
}

.footer-data {
  width: calc((360 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.footer-data div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.footer-data div span {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
}

.footer-data div p {
  font-family: "Gilroy";
  font-weight: 400;
  opacity: 1;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  color: #fff;
}

.footer-data > span {
  font-family: "Gilroy";
  font-weight: 400;
  opacity: 0.5;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  color: #fff;
}

.burger-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000089;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}

.burger-wrapper.open {
  opacity: 1;
  visibility: visible;
  transition: 0.3s linear;
}

.burger-content {
  width: calc((500 / var(--curent-size)) * 100vw);
  height: 100%;
  background: #060606;
  padding: calc((140 / var(--curent-size)) * 100vw)
    calc((60 / var(--curent-size)) * 100vw)
    calc((30 / var(--curent-size)) * 100vw)
    calc((60 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid #90ffba;
  position: relative;
  transform: translateX(600px);
  transition: 0.3s linear;
  overflow: hidden;
}

.burger-content.show {
  transform: translateX(0);
  transition: 0.3s linear;
}

.manager-link {
  width: 100%;
  margin-top: auto;
  margin-bottom: calc((-30 / var(--curent-size)) * 100vw);
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.manager-link a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
  text-decoration: none;
}

.manager-link a p {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  color: #fff;
}

.burger-img {
  width: calc((420 / var(--curent-size)) * 100vw);
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.burger-menu li a {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  color: #fff;
  text-decoration: none;
}

.el-burger {
  position: absolute;
  bottom: -80%;
  left: 50%;
  width: 300%;
  z-index: 0;
  transform: translate(-50%, 0);
  pointer-events: none;
}

.catalog-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((70 / var(--curent-size)) * 100vw);
}

.catalog-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: calc((22 / var(--curent-size)) * 100vw);
}

.catalog-filter {
  width: calc((330 / var(--curent-size)) * 100vw);
  height: calc((600 / var(--curent-size)) * 100vw);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.catalog-filter > button {
  width: 100%;
  padding: calc((14 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  border-radius: 8px;
  background: #90ffba;
  border: none;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffbb00;
  cursor: pointer;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.catalog-filter > button:hover {
  transition: 0.3s ease;
  background: #4aa56d;
}

.filter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
  background: #212121;
  width: 100%;
  border-radius: 12px;
  padding: calc((20 / var(--curent-size)) * 100vw);
}

.filter-head {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}

.filter-head p {
  color: #fff;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((22 / var(--curent-size)) * 100vw);
}

.filter-head svg {
  fill: #fff;
  width: calc((16 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
}

.filter-head svg.rotate {
  transform: rotate(180deg);
  transition: 0.3s linear;
}

.cat-list {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.brands-list {
  width: 100%;
  max-height: calc((240 / var(--curent-size)) * 100vw);
  overflow-y: auto;
}

.brands-list::-webkit-scrollbar {
  width: calc((3 / var(--curent-size)) * 100vw);
  background-color: #14386100;
}

.brands-list::-webkit-scrollbar-thumb {
  background-color: #4aa56d;
  border-radius: 9em;
  box-shadow: inset 1px 1px 10px #f3faf7;
}

.cat-list.open {
  display: flex;
}

.cat-list li {
  cursor: pointer;
}

.price-wrapper {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.price-wrapper.open {
  display: flex;
}

.price-wrapper div {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  width: 48%;
  position: relative;
}

.price-wrapper div > p {
  color: #fff;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  opacity: 0.7;
  position: absolute;
  top: 50%;
  left: calc((10 / var(--curent-size)) * 100vw);
  transform: translate(0, -50%);
}

.price-wrapper div > span {
  color: #fff;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  opacity: 0.7;
  position: absolute;
  top: 50%;
  right: calc((10 / var(--curent-size)) * 100vw);
  transform: translate(0, -50%);
}

.price-wrapper div input {
  width: 100%;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  outline: none;
  font-family: "Gilroy";
  background: initial;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  padding: calc((14 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 0 12px -2px #0095ff00;
}

.catalog-items {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  gap: calc((40 / var(--curent-size)) * 100vw)
    calc((16 / var(--curent-size)) * 100vw);
  list-style: none;
}

.catalog-items li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((300 / var(--curent-size)) * 100vw);
  overflow: hidden;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.catalog-items li.hidden {
  display: none;
}

.catalog-items-wrapper {
  width: 100%;
}

.no-results {
  font-family: "Gilroy";
  width: 100%;
  text-align: center;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  color: #fff;
}

.catalog-items li > a {
  width: 100%;
}

.catalog-items li img {
  width: 100%;
  height: calc((320 / var(--curent-size)) * 100vw);
  object-fit: cover;
  border-radius: 12px;
}

.catalog-item-data {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.catalog-item-data div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.catalog-item-data div p {
  font-family: "Gilroy";
  font-size: calc((18 / var(--curent-size)) * 100vw);
  color: #fff;
}

.catalog-item-data div span {
  font-family: "Gilroy";
  font-size: calc((18 / var(--curent-size)) * 100vw);
  color: #fff;
  text-align: right;
}

.catalog-data-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((20 / var(--curent-size)) * 100vw);
  background: #212121;
  padding: calc((20 / var(--curent-size)) * 100vw);
  border-radius: 12px;
  height: calc((180 / var(--curent-size)) * 100vw);
}

.card-btns {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
}

.card-btns a {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Gilroy";
  border-radius: 8px;
  font-size: calc((14 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  height: calc((40 / var(--curent-size)) * 100vw);
  background: initial;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
}

.card-btns button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  width: 48%;
  height: calc((40 / var(--curent-size)) * 100vw);
  border-radius: 8px;
  background: #90ffba;
  border: none;
  border: calc((1 / var(--curent-size)) * 100vw) solid #90ffbb00;
  cursor: pointer;
  transition: 0.3s ease;
}

.card-btns button:hover {
  background: #428a5d;
  transition: 0.3s ease;
}

.card-btns button p {
  font-family: "Gilroy";
  transition: 0.3s ease;
}

.card-btns button:hover p {
  color: #ffffff;
}

.card-btns button svg {
  width: calc((20 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.card-btns button:hover svg path {
  fill: #fff;
  transition: 0.3s ease;
}

#single {
  padding: calc((180 / var(--curent-size)) * 100vw) 0;
}

.single-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((70 / var(--curent-size)) * 100vw);
}

.single-item-imgs-wrapper {
  width: calc((600 / var(--curent-size)) * 100vw);
  position: relative;
  padding: calc((30 / var(--curent-size)) * 100vw);
  background: #212121;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.single-imgs {
  width: 100%;
  display: flex;
  align-items: center;
  gap: calc((8 / var(--curent-size)) * 100vw);
}

.single-imgs img {
  width: calc(96% / 4);
  border: 1px solid #53ab75;
  border-radius: 20px;
  aspect-ratio: 1/1;
  opacity: 0.5;
  cursor: pointer;
}

.single-imgs img.current {
  opacity: 1;
}

.single-img {
  width: 100%;
  height: calc((500 / var(--curent-size)) * 100vw);
  border-radius: 20px;
}

.single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid #53ab75;
}

.single-slide {
  opacity: 0.5;
  transition: 0.3s ease;
}

.single-slide.swiper-slide-active {
  opacity: 1;
  transition: 0.3s ease;
}

.single-item-content-wrapper {
  width: calc((800 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.single-catalog-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.single-title {
  font-family: "Gilroy";
  color: #fff;
  font-weight: 800;
  font-size: calc((60 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
}

.mobile-title {
  display: none;
}

.single-item-inf {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin: calc((30 / var(--curent-size)) * 100vw) 0
    calc((50 / var(--curent-size)) * 100vw) 0;
}

.single-item-inf p {
  font-family: "Gilroy";
  color: #fff;
  font-weight: 800;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
}

.single-item-inf span {
  font-family: "Gilroy";
  color: #aeaeae;
  font-weight: 800;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
}

.single-price-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.single-price {
  position: relative;
}

.single-price p {
  color: #fff;
  font-family: "Gilroy";
  font-weight: 800;
  font-size: calc((50 / var(--curent-size)) * 100vw);
}

.filter-btn {
  display: none;
}

.single-price span {
  position: absolute;
  top: calc((-20 / var(--curent-size)) * 100vw);
  left: 100%;
  color: #53ab75;
  opacity: 0.5;
  font-family: "Gilroy";
  font-weight: 800;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  text-decoration: line-through;
  white-space: nowrap;
}

.single-count-wrapper {
  display: flex;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.single-count {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  height: calc((68 / var(--curent-size)) * 100vw);
  padding: 0 calc((10 / var(--curent-size)) * 100vw);
  border-radius: calc((60 / var(--curent-size)) * 100vw);
  background: #212121;
}

.single-count button {
  width: calc((50 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  font-family: "Gilroy";
  font-weight: 500;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  background: #90ffba;
  transition: 0.3s ease;
}

.single-count button:hover {
  background: #53ab75;
  transition: 0.3s ease;
}

.single-count span {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  color: #fff;
}

.cart-add-btn {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  justify-content: center;
  width: calc((240 / var(--curent-size)) * 100vw);
  height: calc((68 / var(--curent-size)) * 100vw);
  border-radius: calc((60 / var(--curent-size)) * 100vw);
  border: none;
  background: #90ffba;
  cursor: pointer;
  transition: 0.3s ease;
}

.cart-add-btn:hover {
  background: #53ab75;
  transition: 0.3s ease;
}

.cart-add-btn p {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  color: #272727;
}

.cart-add-btn svg {
  width: calc((40 / var(--curent-size)) * 100vw);
}

.cart-add-btn svg path {
  fill: #272727;
}

.single-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((20 / var(--curent-size)) * 100vw);
  margin-top: calc((90 / var(--curent-size)) * 100vw);
}

.single-description > span {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  color: #ffffff;
}

.single-description div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.single-description div h1,
.single-description div h2,
.single-description div h3,
.single-description div h5,
.single-description div h5,
.single-description div h6 {
  margin: calc((30 / var(--curent-size)) * 100vw) 0;
  font-family: "Gilroy";
  font-weight: 700;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  color: #ffffff;
}

.single-description div p,
.single-description div span,
.single-description div {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  color: #c5c5c5;
}

.cart-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000af;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: calc((140 / var(--curent-size)) * 100vw) 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
}

.cart-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a2;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.message.sended {
  opacity: 1;
  visibility: visible;
}

.message p {
  font-family: "Gilroy";
  font-weight: 900;
  font-size: calc((34 / var(--curent-size)) * 100vw);
  color: #ffffff;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a2;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.preloader.loaded {
  opacity: 1;
  visibility: visible;
}

.preloader img {
  width: calc((34 / var(--curent-size)) * 100vw);
}

.cart-wrapper::-webkit-scrollbar {
  width: 0;
}

.cart-content {
  width: calc((600 / var(--curent-size)) * 100vw);
  height: fit-content;
  background: #212121;
  border-radius: 20px;
  padding: calc((30 / var(--curent-size)) * 100vw);
  position: relative;
}

.close-cart {
  position: absolute;
  top: calc((-30 / var(--curent-size)) * 100vw);
  right: calc((-36 / var(--curent-size)) * 100vw);
  background: initial;
  border: none;
  cursor: pointer;
}

.close-cart img {
  width: calc((26 / var(--curent-size)) * 100vw);
  filter: invert();
}

.cart-content > p {
  font-family: "Gilroy";
  font-weight: 900;
  font-size: calc((34 / var(--curent-size)) * 100vw);
  color: #ffffff;
  width: 100%;
}

#catalog-page {
  padding: calc((120 / var(--curent-size)) * 100vw) 0;
}

.cart-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: calc((34 / var(--curent-size)) * 100vw);
}

.cart-items li {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: calc((20 / var(--curent-size)) * 100vw) 0;
  border-bottom: calc((1 / var(--curent-size)) * 100vw) solid #53ab75;
}

.cart-items li > p {
  font-family: "Gilroy";
  font-weight: 700;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #ffffff;
  width: 100%;
}

.delete {
  background: initial;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc((4 / var(--curent-size)) * 100vw);
  cursor: pointer;
}

.delete img {
  width: calc((14 / var(--curent-size)) * 100vw);
  filter: invert();
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  flex-shrink: 0;
}

.cart-item-info span {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #ffffff;
  width: 100%;
}

.cart-item-btns {
  display: flex;
  align-items: center;
  position: relative;
}

.cart-item-btns input {
  width: calc((100 / var(--curent-size)) * 100vw);
  background: initial;
  outline: none;
  border-radius: 8px;
  border: 1px solid #53ab75;
  padding: calc((6 / var(--curent-size)) * 100vw)
    calc((0 / var(--curent-size)) * 100vw)
    calc((4 / var(--curent-size)) * 100vw)
    calc((0 / var(--curent-size)) * 100vw);
  color: #d6d6d6;
  text-align: center;
}

.cart-item-btns button {
  background: initial;
  border: none;
  cursor: pointer;
}

.cart-item-btns button svg {
  width: calc((12 / var(--curent-size)) * 100vw);
}

.cart-item-btns button svg path {
  fill: #fff;
}

.minus-btn-i {
  position: absolute;
  top: 50%;
  left: calc((10 / var(--curent-size)) * 100vw);
  transform: translate(0, -50%);
}

.plus-btn-i {
  position: absolute;
  top: 50%;
  right: calc((10 / var(--curent-size)) * 100vw);
  transform: translate(0, -50%);
}

.baner-pog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 24;
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.baner-pog span {
  background: #90ffba;
}

.cart-sum-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  width: 100%;
  margin: calc((20 / var(--curent-size)) * 100vw) 0;
  border-bottom: calc((1 / var(--curent-size)) * 100vw) solid #53ab75;
  padding-bottom: calc((20 / var(--curent-size)) * 100vw);
}

.cart-sum-wrapper > span {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((12 / var(--curent-size)) * 100vw);
  color: #ffffff;
}

.cart-sum-wrapper p {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #ffffff;
}

.cart-sum-wrapper p span {
  font-weight: 700;
}

.cart-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: calc((50 / var(--curent-size)) * 100vw);
}

.cart-form input {
  width: 100%;
  padding: calc((20 / var(--curent-size)) * 100vw);
  background: initial;
  outline: none;
  border: none;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #ffffff;
  position: relative;
  border-bottom: calc((1 / var(--curent-size)) * 100vw) solid #53ab75;
}
/* 
.cart-form input:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: #53ab75;
}

.cart-form input:focus:after {
  box-shadow: 0 0 12px 2px red;
} */

.cart-form input::placeholder {
  color: #cccccc;
}

.cart-form button {
  cursor: pointer;
  width: 100%;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw);
  background: #53ab75;
  border: calc((1 / var(--curent-size)) * 100vw) solid #53ab75;
  border-radius: 12px;
  font-family: "Gilroy";
  font-weight: 700;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #242424;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.cart-form button:hover {
  background: #84f1ae;
}
/* 
#ajaxsearchlite1 {
  background: #00000071 !important;
}

div.asl_w .probox div.prosettings {
  background: #00000071 !important;
}

#ajaxsearchlite1 .probox,
div.asl_w .probox {
  background: #00000071 !important;
} */

.promocode-wrapper {
  display: flex;
  align-items: flex-end;
  gap: calc((10 / var(--curent-size)) * 100vw);
  width: 100%;
}

.check-promocode {
  width: 100%;
  position: relative;
}

.check-promocode.checked:after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc((20 / var(--curent-size)) * 100vw);
  transform: translate(0, -50%);
  width: calc((30 / var(--curent-size)) * 100vw);
  height: calc((30 / var(--curent-size)) * 100vw);
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.check-promocode.nochecked:after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc((20 / var(--curent-size)) * 100vw);
  transform: translate(0, -50%);
  width: calc((30 / var(--curent-size)) * 100vw);
  height: calc((30 / var(--curent-size)) * 100vw);
  background-image: url(../img/nocheck.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.promocode-wrapper p {
  cursor: pointer;
  padding: calc((16 / var(--curent-size)) * 100vw);
  background: #53ab75;
  border: calc((1 / var(--curent-size)) * 100vw) solid #53ab75;
  border-radius: 12px;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  color: #fdfdfd;
  transition: 0.3s ease;
}
.promagnifier {
  display: none;
}

.search-btn {
  display: none;
}

.close-search {
  display: none;
}

.form-z-m {
  display: none;
}

.mob-finger,
.mob-hand {
  display: none;
}

.attantion {
  position: fixed;
  bottom: calc((40 / var(--curent-size)) * 100vw);
  left: calc((-360 / var(--curent-size)) * 100vw);
  width: calc((360 / var(--curent-size)) * 100vw);
  height: calc((70 / var(--curent-size)) * 100vw);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: #53ab75;
  border: calc((1 / var(--curent-size)) * 100vw) solid #53ab75;

  z-index: 999;
  overflow: hidden;
}

.attantion p {
  font-family: "Gilroy";
  font-weight: 600;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  color: #000000;
}

.attantion span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc((4 / var(--curent-size)) * 100vw);
  background: #fff;
}

.attantion.open span {
  animation: out 3s linear;
}

.attantion.open {
  animation: att 3s linear;
}

@keyframes att {
  0% {
    left: calc((-360 / var(--curent-size)) * 100vw);
  }

  20% {
    left: calc((30 / var(--curent-size)) * 100vw);
  }

  80% {
    left: calc((30 / var(--curent-size)) * 100vw);
  }

  100% {
    left: calc((-360 / var(--curent-size)) * 100vw);
  }
}

@keyframes out {
  0% {
    width: 100%;
  }

  20% {
    width: 100%;
  }

  80% {
    width: 0%;
  }

  100% {
    width: 0%;
  }
}

.discont-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.discont-content > p {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  color: #ffffff;
}

.check-promocode input {
  width: 100%;
  padding: calc((20 / var(--curent-size)) * 100vw);
  background: initial;
  outline: none;
  border: none;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #ffffff;
  position: relative;
  border-bottom: calc((1 / var(--curent-size)) * 100vw) solid #53ab75;
}

@media all and (max-width: 768px) {
  :root {
    --curent-size: 375;
  }

  .container {
    width: calc((355 / var(--curent-size)) * 100vw);
    margin: 0 auto;
  }

  .header-logo {
    width: calc((35 / var(--curent-size)) * 100vw);
  }

  .header-btns {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .search-btn {
    display: flex;
    background: initial;
    border: none;
  }

  .search-btn img {
    width: calc((30 / var(--curent-size)) * 100vw);
  }

  .asl_w_container {
    min-width: unset !important;
    max-width: unset !important;
    width: 90% !important;
  }

  #ajaxsearchlite1 {
    padding: 0;
  }

  .search-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    transform: translate(0, 0);
    left: 0;
    display: flex;
    padding-top: calc((120 / var(--curent-size)) * 100vw);
    justify-content: center;
    background: #000000b6;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }

  .search-wrapper.open {
    opacity: 1;
    visibility: visible;
  }

  .close-search {
    display: flex;
    background: initial;
    border: none;
    position: absolute;
    top: calc((80 / var(--curent-size)) * 100vw);
    right: calc((20 / var(--curent-size)) * 100vw);
    cursor: pointer;
  }

  .close-search img {
    width: calc((20 / var(--curent-size)) * 100vw);
  }

  .hero-content {
    width: 100%;
    margin-left: auto;
    gap: calc((30 / var(--curent-size)) * 100vw);
    align-items: center;
    justify-content: flex-start;
    padding-bottom: calc((30 / var(--curent-size)) * 100vw);
  }

  .hero-content > p {
    font-size: calc((32 / var(--curent-size)) * 100vw);
    font-weight: 700;
    text-align: center;
    margin-top: calc((80 / var(--curent-size)) * 100vw);
  }

  .hero-content ul li {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .hero-content a {
    padding: calc((16 / var(--curent-size)) * 100vw) 0;
    font-size: calc((20 / var(--curent-size)) * 100vw);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .main-img {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }

  .hero-content ul li {
    border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
    box-shadow: 0 0 17px 0px #90ffba;
  }

  .hero-content ul li:nth-child(1) {
    transform: rotate(4deg);
    z-index: 2;
  }

  .hero-content ul li:nth-child(2) {
    transform: rotate(-2deg);
    z-index: 1;
    background: #90ffba;
    color: #000;
  }

  .hero-content ul li:nth-child(3) {
    transform: rotate(4deg);
    z-index: 3;
  }

  #catalog {
    padding: calc((60 / var(--curent-size)) * 100vw) 0;
  }

  .title {
    font-size: calc((44 / var(--curent-size)) * 100vw);
    text-align: center;
  }

  .catalog-main-items li {
    width: calc((320 / var(--curent-size)) * 100vw);
    height: calc((360 / var(--curent-size)) * 100vw);
  }

  .catalog-main-items li img {
    width: calc((255 / var(--curent-size)) * 100vw);
    transition: 0.6s ease;
  }

  .catalog-main-items li p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .catalog-main-items {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: calc((30 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw);
  }

  .catalog-wrapper {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .form-content {
    flex-direction: column;
    align-items: center;
  }

  .form-z {
    width: calc((320 / var(--curent-size)) * 100vw);
    display: none;
  }

  .form-data {
    width: calc((355 / var(--curent-size)) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  #form-sections {
    padding: calc((60 / var(--curent-size)) * 100vw) 0;
  }

  .form-z-m {
    width: calc((320 / var(--curent-size)) * 100vw);
    display: block;
    margin: 0 auto calc((-20 / var(--curent-size)) * 100vw) auto;
  }

  .form-data > p {
    text-align: center;
  }

  #form > button {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .checkbox-wrapper p {
    font-size: calc((11 / var(--curent-size)) * 100vw);
  }

  .data-info-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .data-info-item ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    list-style: none;
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  #data {
    padding: calc((60 / var(--curent-size)) * 100vw) 0;
  }

  .data-info-item,
  .data-info-item ul {
    width: 100%;
  }

  .data-info-item ul li {
    width: 100% !important;
  }

  .send-ul li:last-child {
    width: 100% !important;
    gap: calc((5 / var(--curent-size)) * 100vw) !important;
  }

  .faq-item-head p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .faq-item {
    border-radius: calc((18 / var(--curent-size)) * 100vw);
    padding: calc((14 / var(--curent-size)) * 100vw)
      calc((14 / var(--curent-size)) * 100vw);
    border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
  }

  .faq-item-head span {
    width: calc((30 / var(--curent-size)) * 100vw);
    height: calc((30 / var(--curent-size)) * 100vw);
  }

  .faq-item-head span img {
    width: calc((16 / var(--curent-size)) * 100vw);
    height: calc((16 / var(--curent-size)) * 100vw);
  }

  .answer {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  #faq {
    padding: calc((60 / var(--curent-size)) * 100vw) 0;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .footer-logo {
    position: static;
    transform: none;
    order: -1;
  }

  .footer-item {
    align-items: center;
  }

  .footer-item ul {
    align-items: center;
  }

  .footer-data {
    align-items: center;
  }

  .footer-data div {
    align-items: center;
  }

  .footer-data > span {
    text-align: center;
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .burger-content {
    width: calc((320 / var(--curent-size)) * 100vw);
    height: 100%;
    background: #060606;
    padding: calc((90 / var(--curent-size)) * 100vw)
      calc((60 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw)
      calc((60 / var(--curent-size)) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid #90ffba;
    border: none;
    position: relative;
    transform: translateX(400px);
    transition: 0.3s linear;
    overflow: hidden;
  }

  .burger-menu li a {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .burger-menu {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .burger-img {
    width: calc((250 / var(--curent-size)) * 100vw);
  }

  .manager-link a p {
    text-align: center;
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .catalog-items {
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    gap: calc((20 / var(--curent-size)) * 100vw)
      calc((15 / var(--curent-size)) * 100vw);
    list-style: none;
  }

  .catalog-items li {
    width: calc((170 / var(--curent-size)) * 100vw);
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .catalog-items li img {
    height: calc((200 / var(--curent-size)) * 100vw);
    border-radius: calc((8 / var(--curent-size)) * 100vw);
  }

  .catalog-data-content {
    gap: calc((10 / var(--curent-size)) * 100vw);
    padding: calc((30 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw);
    border-radius: calc((8 / var(--curent-size)) * 100vw);
    position: relative;
  }

  .card-btns a {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Gilroy";
    border-radius: 8px;
    font-size: calc((13 / var(--curent-size)) * 100vw);
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    height: calc((40 / var(--curent-size)) * 100vw);
    background: initial;
    border: calc((1 / var(--curent-size)) * 100vw) solid #90ffba;
    text-transform: capitalize;
  }

  .card-btns button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
    width: 27%;
    height: calc((40 / var(--curent-size)) * 100vw);
    border-radius: 8px;
    background: #90ffba;
    border: none;
    border: calc((1 / var(--curent-size)) * 100vw) solid #90ffbb00;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .card-btns button p {
    display: none;
  }

  .catalog-item-data div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }

  .catalog-item-data div:first-child span {
    color: #b0b0b0af;
    position: absolute;
    top: calc((4 / var(--curent-size)) * 100vw);
    right: calc((4 / var(--curent-size)) * 100vw);
  }

  .catalog-item-data div:last-child p {
    font-family: "Gilroy";
    font-size: calc((13 / var(--curent-size)) * 100vw);
    color: #c1c1c1;
  }

  .catalog-item-data div:last-child span {
    margin-left: auto;
  }

  #catalog-page {
    padding: calc((80 / var(--curent-size)) * 100vw) 0;
  }

  .filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: calc((10 / var(--curent-size)) * 100vw);
    left: calc((10 / var(--curent-size)) * 100vw);
    width: calc((40 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
    background: initial;
    border: 1px solid #90ffba;
    border-radius: 8px;
    background: #000;
    z-index: 999;
  }

  .filter-btn img {
    width: calc((26 / var(--curent-size)) * 100vw);
  }

  .catalog-filter-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000aa;
    display: flex;
    justify-content: center;
    padding-top: calc((70 / var(--curent-size)) * 100vw);
    z-index: 99;
    overflow-y: auto;
  }

  .catalog-filter-wrapper::-webkit-scrollbar {
    width: 0;
  }

  .catalog-filter-wrapper {
    display: none;
  }

  .catalog-filter-wrapper.show {
    display: flex;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .catalog-filter {
    margin-top: auto;
    padding-bottom: calc((60 / var(--curent-size)) * 100vw);
  }

  .filter-head p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .catalog-filter > button {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .catalog-filter {
    height: fit-content;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .single-catalog-item {
    flex-direction: column;
    align-items: center;
  }

  .single-item-imgs-wrapper {
    width: 100%;
    position: relative;
    padding: calc((14 / var(--curent-size)) * 100vw);
    background: #212121;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .single-img {
    width: 100%;
    height: calc((300 / var(--curent-size)) * 100vw);
    border-radius: 12px;
  }

  #single {
    padding: calc((120 / var(--curent-size)) * 100vw) 0;
  }

  .single-img img {
    border-radius: 8px;
  }

  .single-imgs img {
    border-radius: 8px;
  }

  .single-item-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .single-title {
    font-family: "Gilroy";
    color: #fff;
    font-weight: 800;
    font-size: calc((60 / var(--curent-size)) * 100vw);
    text-transform: uppercase;
    display: none;
  }

  .mobile-title {
    display: flex;
    font-family: "Gilroy";
    color: #fff;
    font-weight: 800;
    font-size: calc((30 / var(--curent-size)) * 100vw);
    text-transform: uppercase;
    margin-bottom: calc((30 / var(--curent-size)) * 100vw);
  }

  .single-item-inf span {
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .single-description div h1,
  .single-description div h2,
  .single-description div h3,
  .single-description div h5,
  .single-description div h5,
  .single-description div h6 {
    margin: calc((20 / var(--curent-size)) * 100vw) 0;
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .single-description div p,
  .single-description div span,
  .single-description div {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .single-count-wrapper {
    margin-left: auto;
  }

  .cart-add-btn {
    gap: calc((20 / var(--curent-size)) * 100vw);
    width: calc((200 / var(--curent-size)) * 100vw);
    height: calc((50 / var(--curent-size)) * 100vw);
    border-radius: calc((60 / var(--curent-size)) * 100vw);
  }

  .cart-add-btn p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .cart-add-btn svg {
    width: calc((28 / var(--curent-size)) * 100vw);
  }

  .single-price p {
    font-size: calc((36 / var(--curent-size)) * 100vw);
  }

  .single-item-inf {
    margin: calc((30 / var(--curent-size)) * 100vw) 0
      calc((30 / var(--curent-size)) * 100vw) 0;
  }

  .single-price-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-description {
    margin-top: calc((50 / var(--curent-size)) * 100vw);
  }

  .hand-l,
  .finger-l,
  .hand-r,
  .finger-r {
    display: none;
  }

  .hello-baner-content {
    width: calc((320 / var(--curent-size)) * 100vw);
    margin: calc((80 / var(--curent-size)) * 100vw) auto;
    padding: calc((20 / var(--curent-size)) * 100vw);
    border-radius: calc((20 / var(--curent-size)) * 100vw);
  }

  .hello-baner-content > p {
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .baner-manager-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc((20 / var(--curent-size)) * 100vw);
    margin: calc((20 / var(--curent-size)) * 100vw) 0;
  }

  .baner-manager-wrapper a {
    gap: calc((10 / var(--curent-size)) * 100vw);
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .close-hello img {
    width: calc((20 / var(--curent-size)) * 100vw);
  }

  .close-hello {
    top: calc((10 / var(--curent-size)) * 100vw);
    right: calc((10 / var(--curent-size)) * 100vw);
  }

  .hello-baner-content > span {
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .stock-slide {
    width: 100%;
  }

  .stock-slider {
    height: fit-content;
  }

  .stock-slide div {
    width: 100%;
    height: calc((230 / var(--curent-size)) * 100vw);
    overflow: hidden;
    border-radius: 10px;
  }

  .stock-wrapper {
    width: 100%;
    margin-top: calc((0 / var(--curent-size)) * 100vw);
  }

  .mob-finger,
  .mob-hand {
    display: block;
    position: absolute;
  }

  .mob-finger {
    bottom: calc((-110 / var(--curent-size)) * 100vw);
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .mob-hand {
    bottom: calc((-110 / var(--curent-size)) * 100vw);
    left: 0;
    width: 100%;
    z-index: -1;
  }

  .baner-pog {
    justify-content: flex-end;
  }

  .hello-baner-content {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .cart-wrapper {
    padding: calc((110 / var(--curent-size)) * 100vw) 0
      calc((40 / var(--curent-size)) * 100vw) 0;
  }

  .close-cart {
    top: calc((-35 / var(--curent-size)) * 100vw);
    right: calc((10 / var(--curent-size)) * 100vw);
  }

  .cart-content {
    width: 100%;
    padding: calc((20 / var(--curent-size)) * 100vw);
  }

  .cart-content > p {
    font-size: calc((28 / var(--curent-size)) * 100vw);
  }

  .cart-item-info span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .cart-items li > p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .cart-form input {
    padding: calc((20 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .cart-form button {
    padding: calc((16 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .attantion {
    left: calc((-360 / var(--curent-size)) * 100vw);
    width: calc((355 / var(--curent-size)) * 100vw);
  }

  @keyframes att {
    0% {
      left: calc((-360 / var(--curent-size)) * 100vw);
    }

    20% {
      left: calc((10 / var(--curent-size)) * 100vw);
    }

    80% {
      left: calc((10 / var(--curent-size)) * 100vw);
    }

    100% {
      left: calc((-360 / var(--curent-size)) * 100vw);
    }
  }
}
