._anim {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1s;
}
._anim._active {
  transform: translate(0, 0);
  opacity: 1;
}

.sale {
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  left: 20px;
  width: 100px;
  background: #391085;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(57, 16, 133, 0.15);
  padding: 16px 12px 12px 12px;
  z-index: 10000;
  text-align: center;
  font-size: 15px;
}
.sale p {
  margin: 0 0 6px 0;
  font-size: 15px;
}
.sale h3 {
  margin: 0 0 11px 0;
  font-size: 22px;
  font-weight: bold;
  animation: anime-sale 3.5s ease-out;
}
.sale__time {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 0;
  border-radius: 6px;
  letter-spacing: 1px;
}

@keyframes anime-sale {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.spinner-data-wrapper {
  display: none;
  position: relative;
  bottom: -250px;
  left: 0;
  width: 100%;
  z-index: 1008;

  justify-content: center;
  gap: 16px;
}

.spiner-code {
  background-color: #f5f5f5;
  padding: 8px 16px;
  border-radius: 8px;
}

.spiner-code-button {
  background-color: #ffb909;
  padding: 8px 16px;
  border-radius: 8px;
}

.spinner {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.658);
  z-index: 1000;
  top: 0;
  left: 0;
}

.spinner-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .spinner-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.spinner-container .spinBtn {
  text-align: center;
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  letter-spacing: 0.1em;
  border: 4px solid rgba(0, 0, 0, 0.75);
  cursor: pointer;
  user-select: none;
}

.spinner-container .spinBtn:hover {
  background-color: #333;
  color: #fff;
}

.spinner-container .spinBtn::before {
  content: '';
  position: absolute;
  top: -28px;
  width: 20px;
  height: 30px;
  background-color: #ffffff;
  clip-path: polygon(50% 0%, 15% 100%, 85% 100%);
  transition: 0.5s;
}

.spinBtn:hover::before {
  background-color: #333;
}

.spinner-container .wheel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #333;
  overflow: hidden;
  box-shadow: 0 0 0 5px #333, 0 0 0 15px #fff, 0 0 0 18px;
  transition: transform 5s ease-in-out;
}

.spinner-container .wheel .number {
  position: absolute;
  width: 50%;
  height: 50%;
  background: var(--clr);
  transform-origin: bottom right;
  transform: rotate(calc(36deg * var(--i)));
  clip-path: polygon(0 0, 49% 0, 100% 100%, 0 49%);
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
}

.spinner-container .wheel .number span {
  position: relative;
  transform: rotate(45deg);
  font-size: 2em;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.wheel.active {
  transform: rotate(945deg);
}

.spinner-main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video__wrapper {
  gap: 30px;
  display: flex;
  flex-direction: column;
}

.video__videomin {
  width: 40%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .video__videomin {
    width: 100%;
    margin: 0 auto;
  }
}

.video-play-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}

.video-play-1:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-1 img {
  width: 80px;
}
.video-play-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}

.video-play-2:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-2 img {
  width: 80px;
}
