.star {
    background-color: #00FFB1;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: floating 2.5s ease-in-out infinite;
    animation-direction: alternate;
    filter: blur(10px);
    opacity: 0.5;
  }
  
  @keyframes floating {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(0, -30px);
    }
  }
  /* hide google recaptcha*/

.grecaptcha-badge { visibility: hidden; } 
.swal2-html-container{
  text-align: left !important;
}

.redAsterisk{
color: #DF3B3B;
}


#snackbar {
  visibility: hidden;
  color: #fff;
  background-color: #333;
  min-width: 250px;
  margin-left: -125px;
  border-radius: 2px;
  padding: 16px;
  text-align: center;
  left: 50%;
  bottom: 30px;
  z-index: 1;
  position: fixed;
}

/* This will be activated when the snackbar's class is 'show' which will be added through JS */
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations for fading in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}