:root {
  --color-main: #2b4cd7;
}

.btn {
  background-color: var(--color-main);
  color: #fafafa;
  border-radius: 22px;
  padding: 6px;
  cursor: pointer;
  transition: opacity 0.6s linear;
  font-weight: 700;
  font-size: 1.25rem;
}

.btn:hover {
  opacity: 0.4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: 'Noto Sans', Arial, sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 16px;
}

body {
  min-width: 360px;
  font-weight: normal;
  line-height: 1.4;
  font-size: 1rem;
  font-style: normal;
  overflow-x: hidden;
  color: #2c2c2c;
  background-color: #fafafa;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}



.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.bold {
  font-weight: 700;
}



.loader {
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

header {
  background: #feee00;
}

.header__container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header__container.active,
.header--header.active {
  min-width: 968px !important;
}

.delivery {
  display: flex;
  gap: 4px;
}

.delivery__text {
  font-size: 12px;
}

.delivery__text span {
  display: block;
}

.search {
  flex: 1;
  height: 40px;
  padding-right: 40px;
  overflow: hidden;
  border: 1px solid #444;
  border-radius: 4px;
  position: relative;
  margin: 0 15px;
  background-color: #fafafa;
}

.search input {
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

.search button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-main);
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search__icon {
  width: 18px;
  height: 18px;
  background-color: #fafafa;
  mask-image: url('search-svgrepo-com.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;

  -webkit-mask-image: url('search-svgrepo-com.svg');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}


.menu__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu__item {
  cursor: pointer;
  font-size: 12px;
}

.menu__item--user img {
  display: none;
}

.menu__item--cart {
  display: flex;
}

.menu__item--cart p {
  align-self: flex-end;
}

.timer {
  padding: 15px;
  background: var(--color-main);
  font-size: 1rem;
}


.timer__wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  color: #fff;
}

.timer__text {
  font-size: 1.25rem;
}

.timer__num {
  display: flex;
  gap: 4px;
}

.timer__num span {
  background-color: #fff;
  border-radius: 4px;
  color: #2c2c2c;
  padding: 2px 4px;
  font-weight: 700;
}


.hero__text {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__list {
  display: flex;
  gap: 20px;
}

.hero__list-item--photos {
  flex: 3;
}

.hero__list-item--info {
  flex: 2;
}


.hero__list-item--delivery {
  flex: 1;
}


.product {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.product__img {
  max-width: 500px;
  width: 100%;
}


.product__thumbnails {
  display: flex;

}

.product__thumbnails img {
  width: 80px;
  padding: 4px;
  cursor: pointer;
}

.product__thumbnails img.active {
  border: 2px solid #2c2c2c;
  border-radius: 4px;
}


.info,
.info__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.info--mob {
  margin-bottom: 15px;
  display: none;
}

.info__rewies {
  display: flex;
  gap: 4px;
  color: #007185;
  align-items: center;
}

.badges {
  display: flex;
  align-items: center;
  gap: 15px;
}

.badges__one {
  font-size: 0.75rem;
  padding: 2px 4px;
  color: #000;
  background-color: yellow;
  border-radius: 2px;
  position: relative;
  font-weight: 700;
}


.badges__one::after {
  content: "";
  position: absolute;
  right: -6px;
  border-style: dashed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  top: 0;
  border-width: 6px;
  border-color: transparent;
  border-top: 10px dashed yellow;
}

.badges__one::before {
  content: "";
  position: absolute;
  right: -6px;
  border-style: dashed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  bottom: 0;
  border-width: 6px;
  border-color: transparent;
  border-bottom: 10px dashed yellow;
}

.badges__two {
  padding: 2px 4px;
  font-size: 0.75rem;
  color: yellow;
  background-color: #000;
  position: relative;
  font-weight: 700;
}

.badges__two span {
  color: #fff;
}

.badges__two::after {
  content: "";
  position: absolute;
  right: -6px;
  border-style: dashed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  top: 0;
  border-width: 6px;
  border-color: transparent;
  border-top: 20px dashed #000;
}

.purchased {
  font-size: 0.75rem;
  color: var(--color-main);
}

.info hr {
  border-top: 1px solid #d1d5db;
}


.limited {
  font-size: 0.75rem;
  padding: 2px 8px;
  background-color: red;
  width: max-content;
  color: #fafafa;
  font-weight: 700;
  border-radius: 4px;
}

.grey {
  color: gray !important;
}

.price {
  font-size: 1.75rem;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.price__discount {
  color: #008200;
  font-size: 1.25rem;
}

.oldprice {
  color: #007185;
  font-size: 1.25rem;
  text-decoration: line-through;
}



.info__stocks {
  font-size: 1rem;
  color: var(--color-main);

}


.questions__list {
  margin-top: 20px;
}

.questions__item {
  display: none;
}

.questions__item.active {
  display: block;
}

.questions__item-text {
  margin-bottom: 15px;
  font-weight: 700;
}

.questions__item-text span {
  color: #000;
  background-color: yellow;
}

.questions__item-btns {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.questions__item-btn {
  width: 100%;
  border-radius: 22px;
  padding: 6px;
}

.date {
  border: 1px #D5D9D9 solid;
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.date__limited {
  font-size: 0.625rem;
}



.period .day,
.period .month,
.period .number,
.number-del {
  font-weight: 700;
}

.period--mob {
  display: none;
}

.date__delivery {
  display: flex;
  gap: 4px;
}

.info__delivery {
  display: none;
  gap: 4px;
}

.date__delivery span,
.info__delivery span {
  font-weight: 300;
  background: var(--color-main);
  color: #fafafa;
}

.date__stocks {
  color: var(--color-main);
  font-size: 0.75rem;
  font-weight: 300;
}

.comment {
  margin-bottom: 50px;
}

.comment__rewies {
  margin: 50px 15px;
  border-radius: 2rem;
  background: #0000000a;
  padding: 30px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.comment__rewies-star {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.comment__title {
  margin-bottom: 15px;
}

.comment__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.rewies {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rewies__user {
  display: flex;
  gap: 12px;
  align-items: center;
}

.rewies__user img {
  border-radius: 100%;
}

.rewies__servise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rewies__servise-item {
  padding: 4px 8px;
  background: #d5f9d5;
  font-size: 0.75rem;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rewies__date {
  font-size: 0.875rem;
  color: #565959;
}

.rewies__werified {
  color: var(--color-main);
  cursor: pointer;
}

.rewies__text {
  font-size: 0.875rem;
}

.rewies__img {
  border-radius: 22px;
}


.to__top {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-main);
}

.to__top button {
  cursor: pointer;
  color: #fafafa;
}


.verification {
  display: none;
 
  width: 100%;
  height: 100%;
  background-color: #fafafa;
}

.verification__conteiner {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.verification__loader {
  width: 48px;
  height: 48px;
  border: 5px solid #ccc;
  border-top: 5px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.verification p {
  text-align: center;
  display: none;
}

.games {
  display: none;
  padding: 20px 0;
}


.games__list {
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 20px;
}

.games__item {
  cursor: pointer;
}

.games__item.click {
  pointer-events: none;
}

.games__item:hover {
  -webkit-animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
  animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

.games__item img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.games__item-open,
.games__item-win {
  display: none;
}


.modal-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background: rgb(44 44 44 / 60%);
}



.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 12;
}

.modal__wrap {
  max-width: 500px;
  width: 100%;
  padding: 15px;
  margin: 15px;
  border-radius: 22px;
  background: #fafafa;
  box-shadow: 0px 0px 8px 2px #000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.modal__one,
.modal__two,
.modal__three {
  display: none;
}

.modal__one.active,
.modal__two.active,
.modal__three.active {
  display: flex;
}

.modal__three-wrap {
  display: grid;
  max-height: 700px;
  height: 100%;
  overflow-y: auto;
  text-align: center;
}


.modal__one-img,
.modal__three-img {
  max-width: 150px;
  width: 100%;
  -webkit-animation: wobble-hor-top 2s infinite both;
  animation: wobble-hor-top 2s infinite both;
}

.modal__three-img {
  margin: 0 auto;
  margin-bottom: 10px;

}

.modal__one-title,
.modal__two-title,
.modal__three-title {
  text-align: center;
  color: #067d61;
  font-weight: 500;
  font-size: 1.5rem;
}

.modal__three-title {
  margin-bottom: 15px;
}

.modal__one-wrap p,
.modal__one-wrap p,
.modal__three-wrap p {
  text-align: center;
}

.modal__three-wrap p {
  margin-bottom: 10px;
}

.modal__btn {
  padding: 20px 45px;
}

.order {
  display: none;
}

.stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1536px;
  margin: 60px auto;
  position: relative;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.step::before,
.step::after {
  content: '';
  position: absolute;
  top: 16px;
  height: 2px;
  background-color: #ddd;
  z-index: 0;
}

.step::before {
  left: -50%;
  width: 50%;
}

.step::after {
  right: -50%;
  width: 50%;
}

.step:first-child::before {
  display: none;
}

.step:last-child::after {
  display: none;
}

.step.active::before,
.step.active::after {
  background-color: #000;
}

.step.active2::after {
  background-color: #ddd;
}


.circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ddd;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
}

.step.active .circle {
  background: #000;
  color: #fff;
}

.label {
  margin-top: 8px;
  font-size: 14px;
  color: #999;
}

.step.active .label {
  color: #000;
}


.order__wrap {
  max-width: 1536px;
  width: 100%;
  display: flex;
  gap: 20px;
  margin: 20px auto;
}

.order__form {
  flex: 3;
  border-right: 1px solid #9a9a9a;
  padding-right: 25px;
}

.order__form hr {
  margin: 25px 0;
  background: #f5f5f5;
}

.order__details {
  flex: 1;
}

.order__form-inputs {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.order__form-title {
  font-weight: 500;
  flex: 1;
}

.order__form-input {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order__form-box {
  background-color: #f5f5f5;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.order__form-box label {
  font-size: 0.75rem;
}

.order__form-box input {
  background: transparent;
  border: none;
  outline: none;
  padding: 4px 0;
  padding-right: 20px;
  width: 100%;
}

.order__form-tel {
  display: flex;
  gap: 4px;
  align-items: center;
}

.order__form-box.order__form-box--radio input {
  padding: 0;
  padding-right: 20px;
  width: max-content;
}


.order__form-box button {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
}


.order__form-box:hover button {
  opacity: 1;
  visibility: visible;
}


.order__form-payment .order__form-box {
  background: transparent;
  flex-direction: row;
  gap: 10px;
  padding: 0;
}

.order__form-payment label {
  font-size: 1rem;
}

.order__form-btn {
  padding: 15px 40px;
  margin-left: auto;
  display: block;
}

.order__icons {
  padding: 25px 0;
  margin-left: auto;
  max-width: 500px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.order__icons img {
  width: 15%;
}

.order__details hr {
  margin: 25px 0;
}

.order__details-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.order__details-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order__details-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.order__details-text {
  display: flex;
  gap: 10px;
  font-size: 1.125rem;
}

.order__details-text-old {
  text-decoration: line-through;
  color: #9a9a9a;
}

.order__details-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order__details-bottom-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.order__details-bottom-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
}

.order__details-bottom-box p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


.splash {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 12;
}

.splash__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.splash__item {
  display: none;
  gap: 15px;
  background-color: #fafafa;
  box-shadow: 2px 2px 2px 2px #2c2c2c;
  padding: 8px;
  border-radius: 12px;
}

.splash__item.active {
  display: flex;
}

.splash__info {
  display: flex;
  flex-direction: column;
}

.splash__city {
  font-weight: 600;
}

.splash__subtitle {
  display: flex;
  gap: 6px;
}

.splash__item-img {
  object-fit: contain;
  width: 50px;
}


.footer {
  background: #222f3e;
}

.footer__container {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-direction: column;
  color: #fafafa;
}

.footer__box-one {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.75rem;
}

.footer__box-one p {
  display: flex;
  align-items: center;
  gap: 8px;

}

.footer__box-two {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center
}

.footer__box-two img {
  width: 15%;
}

.footer__box-three {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  cursor: pointer;
  color: #ccc;
  font-size: 0.75rem;
  text-align: center;
}

.footer__text {
  color: #ccc;
  text-align: center;
}


@media (max-width: 968px) {

  .order__wrap {
    flex-direction: column;
    gap: 30px;
  }

  .order__form {
    order: 2;
    border-right: none;
    padding-right: 0;
  }

  .order__form-inputs {
    flex-direction: column;
  }

  .order__form-btn,
  .order__icons {
    margin-right: auto;
  }

}


@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .header__container {
    flex-wrap: wrap;
  }

  .menu__item {
    display: none;
  }

  .menu__item--user,
  .menu__item--user img,
  .menu__item--cart {
    display: block;
  }

  .menu__item--user span,
  .menu__item--user p,
  .menu__item--cart p {
    display: none;
  }

  .search {
    order: 1;
    width: 100%;
    flex: auto;
    margin: 0;
  }

  .menu {
    margin-left: auto;
  }

  .header__container {
    padding-bottom: 2px;
  }

  .delivery {
    width: 100%;
    order: 2;
    align-items: center;
    padding: 15px;
    color: #333;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .delivery__img {
    /* filter: brightness(0) invert(1); */
  }

  .delivery__text p {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .timer__text {
    font-size: 1rem;
  }

  .hero__list {
    flex-direction: column;
  }



  .info--mob {
    display: flex;
    gap: 4px;
  }

  .info__wrap {
    display: none;
  }

  .period--mob {
    display: block;
  }

  .info__delivery {
    display: flex;
  }

  .hero__list-item--date {
    display: none;
  }

  .games {
    padding: 0;
  }

  .games__container {
    padding: 0;
  }

  .games__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .games__item,
  .games__item img {
    height: calc(10.8125rem + 8.5625 * (100vw - 20rem) / 56.5625);
  }

  .games__item--none {
    display: none;
  }

  .footer__box-three {
    align-items: center;
    flex-direction: column;
  }

}



@-webkit-keyframes shake-horizontal {

  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

@keyframes shake-horizontal {

  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}


@-webkit-keyframes wobble-hor-top {

  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }

  15% {
    -webkit-transform: translateX(-30px) rotate(6deg);
    transform: translateX(-30px) rotate(6deg);
  }

  30% {
    -webkit-transform: translateX(15px) rotate(-6deg);
    transform: translateX(15px) rotate(-6deg);
  }

  45% {
    -webkit-transform: translateX(-15px) rotate(3.6deg);
    transform: translateX(-15px) rotate(3.6deg);
  }

  60% {
    -webkit-transform: translateX(9px) rotate(-2.4deg);
    transform: translateX(9px) rotate(-2.4deg);
  }

  75% {
    -webkit-transform: translateX(-6px) rotate(1.2deg);
    transform: translateX(-6px) rotate(1.2deg);
  }
}

@keyframes wobble-hor-top {

  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }

  15% {
    -webkit-transform: translateX(-30px) rotate(6deg);
    transform: translateX(-30px) rotate(6deg);
  }

  30% {
    -webkit-transform: translateX(15px) rotate(-6deg);
    transform: translateX(15px) rotate(-6deg);
  }

  45% {
    -webkit-transform: translateX(-15px) rotate(3.6deg);
    transform: translateX(-15px) rotate(3.6deg);
  }

  60% {
    -webkit-transform: translateX(9px) rotate(-2.4deg);
    transform: translateX(9px) rotate(-2.4deg);
  }

  75% {
    -webkit-transform: translateX(-6px) rotate(1.2deg);
    transform: translateX(-6px) rotate(1.2deg);
  }
}