.homeParticles {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 750px !important;
  z-index: -1 !important;
}

.homeParticlesMobile {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 1050px !important;
  z-index: -1 !important;
}

.homeParticlesXs {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 1150px !important;
  z-index: -1 !important;
}

/* Fade In Up Shorter */
@keyframes fadeInUpShorter {
  from {
    opacity: 0;
    transform: translate(0, 100px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* FedIn Shorter*/
.fadeInUpShorter {
  -webkit-animation-name: fadeInUpShorter;
  -moz-animation-name: fadeInUpShorter;
  -o-animation-name: fadeInUpShorter;
  animation-name: fadeInUpShorter;
  animation-duration: 0.8s;
}

.pulse2 {
  -webkit-animation: pulse2 5s linear infinite;
  -moz-animation: pulse2 5s linear infinite;
  -o-animation: pulse2 5s linear infinite;
  animation: pulse2 5s linear infinite;
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  20% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-moz-keyframes pulse2 {
  0% {
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  20% {
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  60% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-o-keyframes pulse2 {
  0% {
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  20% {
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  60% {
    -o-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes pulse2 {
  0% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  20% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  60% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}

#ripple,
#ripple2,
#ripple3 {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: 50%;
  margin-bottom: -326px;
  right: 50%;
  margin-right: -326px;
  -webkit-animation: shrink 5s linear infinite;
  -moz-animation: shrink 5s linear infinite;
  -o-animation: shrink 5s linear infinite;
  animation: shrink 5s linear infinite;
  z-index: 0;
  background: rgba(255, 255, 255, 0.4);
}

#ripple {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

#ripple2 {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

#ripple3 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}

@-webkit-keyframes shrink {
  0% {
    margin-bottom: 0;
    margin-right: 0;
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  30% {
    opacity: 0.3;
  }
  60% {
    opacity: 0;
  }
  100% {
    margin-bottom: -326px;
    margin-right: -326px;
    width: 650px;
    height: 650px;
    opacity: 0;
  }
}

@-moz-keyframes shrink {
  0% {
    margin-bottom: 0;
    margin-right: 0;
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  30% {
    opacity: 0.3;
  }
  60% {
    opacity: 0;
  }
  100% {
    margin-bottom: -326px;
    margin-right: -326px;
    width: 650px;
    height: 650px;
    opacity: 0;
  }
}

@-o-keyframes shrink {
  0% {
    margin-bottom: 0;
    margin-right: 0;
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  30% {
    opacity: 0.3;
  }
  60% {
    opacity: 0;
  }
  100% {
    margin-bottom: -326px;
    margin-right: -326px;
    width: 650px;
    height: 650px;
    opacity: 0;
  }
}

@keyframes shrink {
  0% {
    margin-bottom: 0;
    margin-right: 0;
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  30% {
    opacity: 0.3;
  }
  60% {
    opacity: 0;
  }
  100% {
    margin-bottom: -326px;
    margin-right: -326px;
    width: 650px;
    height: 650px;
    opacity: 0;
  }
}

.flip-countdown span {
  font-family: 'arial' !important;
}

.dark .flip-countdown span {
  color: white;
}

.flip-countdown-card {
  margin-top: 8px;
}

.flip-countdown-piece {
  margin-left: 16px !important;
  margin-top: 24px !important;
}

.v1FadeOut {
  -webkit-animation: fadeOut 10s linear infinite;
  -moz-animation: fadeOut 10s linear infinite;
  -o-animation: fadeOut 10s linear infinite;
  animation: fadeOut 10s linear infinite;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.v2FadeIn {
  -webkit-animation: fadeIn 10s linear infinite;
  -moz-animation: fadeIn 10s linear infinite;
  -o-animation: fadeIn 10s linear infinite;
  animation: fadeIn 10s linear infinite;
  animation-delay: 3ms;
  top: 0;
  left: 0;
  position: absolute;
  margin: 0px auto;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
