


#wheelOfFortune {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

#wheel {
  display: block;
}

#spin {
  font: 1.5em/0 sans-serif;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  margin: -15%;
  background: #fff;
  color: #fff;
  box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: 0.8s;
}

#spin::after {
  content: '';
  position: absolute;
  top: -17px;
  border: 10px solid transparent;
  border-bottom-color: currentColor;
  border-top: none;
}



.overlay-gluecksrad {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.5);
  animation: zoomIn 1.5s ease-out forwards;
}

.overlay-gluecksrad-content {
  background: linear-gradient(135deg, #ffdd59, #ff6b81);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.overlay-gluecksrad-content h1 {
  color: #fff;
  font-size: 3em;
  margin: 0;
}

.overlay-gluecksrad-content p {
  color: #fff;
  font-size: 1.5em;
  margin: 10px 0 0;
}
.gutscheinOverlayHeadline{color:#fff;}
#couponMessage {display:none !important;}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.confetti {
  position: absolute;
  width: 10px;
  height: 20px;
  background: #fff;
  opacity: 0.9;
  transform: rotate(45deg);
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-100%) rotate(0);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

.cardPreview-productitem-coupon .cardPreview-productitem-info {text-indent: -999999px;}
