/*Confetti css*/


.confetti {
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 5rem;
    left: 0;
    overflow-x: hidden;
    z-index: 1;

  }
  .confetti .rotate {
    animation: driftyRotate 1s infinite both ease-in-out;
    perspective: 1000;
  }
  .confetti .askew {
    background: currentColor;
    transform: skewY(10deg);
    width: 1rem;
    height: 1rem;
    animation: drifty 1s infinite alternate both ease-in-out;
    perspective:1000;
  }
  
  .confetti:nth-of-type(5n) {
    color: #F56620;
  }
  .confetti:nth-of-type(5n+1) {
    color: #00EAFF;
  }
  .confetti:nth-of-type(5n+2) {
    color: #EA8EE0;
  }
  .confetti:nth-of-type(5n+3) {
    color: #EBFF38;
  }
  .confetti:nth-of-type(5n+4) {
    color: #0582FF;
  }
  
  .confetti:nth-of-type(7n) .askew {
    animation-delay: -.6s;
    animation-duration: 2.25s;
  }
  .confetti:nth-of-type(7n + 1) .askew {
    animation-delay: -.879s;
    animation-duration: 3.5s;
  }
  .confetti:nth-of-type(7n + 2) .askew {
    animation-delay: -.11s;
    animation-duration: 1.95s;
  }
  .confetti:nth-of-type(7n + 3) .askew {
    animation-delay: -.246s;
    animation-duration: .85s;
  }
  .confetti:nth-of-type(7n + 4) .askew {
    animation-delay: -.43s;
    animation-duration: 2.5s;
  }
  .confetti:nth-of-type(7n + 5) .askew {
    animation-delay: -.56s;
    animation-duration: 1.75s;
  }
  .confetti:nth-of-type(7n + 6) .askew {
    animation-delay: -.76s;
    animation-duration: 1.5s;
  }
  
  .confetti:nth-of-type(9n) .rotate {
    animation-duration: 2s;
  }
  .confetti:nth-of-type(9n + 1) .rotate {
    animation-duration: 2.3s;
  }
  .confetti:nth-of-type(9n + 2) .rotate {
    animation-duration: 1.1s;
  }
  .confetti:nth-of-type(9n + 3) .rotate {
    animation-duration: .75s;
  }
  .confetti:nth-of-type(9n + 4) .rotate {
    animation-duration: 4.3s;
  }
  .confetti:nth-of-type(9n + 5) .rotate {
    animation-duration: 3.05s;
  }
  .confetti:nth-of-type(9n + 6) .rotate {
    animation-duration: 2.76s;
  }
  .confetti:nth-of-type(9n + 7) .rotate {
    animation-duration: 7.6s;
  }
  .confetti:nth-of-type(9n + 8) .rotate {
    animation-duration: 1.78s;
  }
  
  @keyframes drifty {
    0% {
      transform: skewY(10deg) translate3d(1%, 0, 0);
    }
    100% {
      transform: skewY(-12deg) translate3d(10%, 0, 0);
    }
  }
  
  @keyframes driftyRotate {
    0% {
      transform: rotateX(0);
    }
    100% {
      transform: rotateX(359deg);
    }
  }

  /*Ladning Container*/
  .welocme-bonus-landing {
    text-align: center;
  }

  .gift-box {
    padding-top: 2%;
    padding-bottom: 2%;
  }

  .welcome-bonus-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin-left: 10%;
    margin-right: 10%;
  }

  .welcome-bonus-content p {
    font-size: 20px;
    margin-right: 25%;
    margin-left: 25%;
    padding-top: 2%;
    line-height: 1.7;
  }

  .welcome-bonus-content p:nth-of-type(2) {
   font-size: 16px;
   margin-top: -1%;
}

/*WelocmeBonusForm*/


#welcome-bonus-form {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}
.form-title {
  text-align: center;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
.form-label {
  display: block;
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.btn-submit {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #191911;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.btn-submit:hover {
  background-color: #0056b3;
}
.text-center {
  text-align: center;
}

/*Coupon Page */
.form-user-info {
  margin-top: 3%;
  margin-right: 8%;
  margin-left: 12%;
}

@media only screen and (max-width: 600px) {
  .form-control {
      height: 50px;
  }
}

.form-user-info ol {
  line-height: 1.7;
}

.form-user-info li {
  margin-bottom: 1%;
}

#gutschein-form {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}



/*Responsive WelcomeBonus Mobile*/
@media only screen and (max-width: 767px) {
  .welcome-bonus-content p {
      margin-right: 3%;
      margin-left: 3%;
  }

}

  