body {

    /* font-family: 'Paytone One', sans-serif !important; */

      background: #292929;

    /* background: radial-gradient(circle, #1ba750 49%, #572a6d  91%); */

    padding-top: 20px;

    color: #FFF;

}





/* Hide scrollbar for Chrome, Safari and Opera */



.container::-webkit-scrollbar {

    display: none;

}





/* Hide scrollbar for IE, Edge and Firefox */



.container {

    -ms-overflow-style: none;

    /* IE and Edge */

    scrollbar-width: none;

    /* Firefox */

}



.text-justify {

    text-align: justify;

}



.blacktext {

    color: #5b5b5b

}



#btnParticiper {

    cursor: pointer;

}



.is-error {

    border-color: #ff0000;

}



.loader {

    position: fixed;

    z-index: 9999;

      background: #292929;

    top: 0px;

    left: 0px;

    height: 100%;

    width: 100%;

}



#loading {

    position: absolute;

    left: 50%;

    top: 50%;

    z-index: 1;

    width: 150px;

    height: 150px;

    margin: -75px 0 0 -75px;

    border: 16px solid #FFF;

    border-radius: 50%;

    border-top: 16px solid #1ba750 ;

    width: 120px;

    height: 120px;

    -webkit-animation: spin 1s linear infinite;

    animation: spin 1s linear infinite;

}



@-webkit-keyframes spin {

    0% {

        -webkit-transform: rotate(0deg);

    }

    100% {

        -webkit-transform: rotate(360deg);

    }

}



.showSuccess {

    padding-top: 70px;

}



.showSuccess img {

    max-width: 90%

}



@keyframes spin {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}





/* Add animation to "page content" */



.animate-bottom {

    position: relative;

    -webkit-animation-name: animatebottom;

    -webkit-animation-duration: 1s;

    animation-name: animatebottom;

    animation-duration: 1s

}



@-webkit-keyframes animatebottom {

    from {

        bottom: -100px;

        opacity: 0

    }

    to {

        bottom: 0px;

        opacity: 1

    }

}



@keyframes animatebottom {

    from {

        bottom: -100px;

        opacity: 0

    }

    to {

        bottom: 0;

        opacity: 1

    }

}



.image-clignote {

    animation-duration: .9s;

    animation-name: clignoter;

    animation-iteration-count: infinite;

    transition: none;

}



@keyframes clignoter {

    0% {

        opacity: 1;

    }

    40% {

        opacity: 0;

    }

    100% {

        opacity: 1;

    }

}



@media screen and (max-width: 600px) {

    body {

        /* font-family: 'Paytone One', sans-serif !important; */
        background:#292929;
        /* background: radial-gradient(circle, #1ba750 49%, #572a6d  91%); */

        padding-top: 20px;

        color: #FFF;

    }

}




#btnParticiper {
  position: relative;
  display: inline-block;
  padding: 20px 25px;
  /* margin: 10px 20px; */
  color: #FFF;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  letter-spacing: 4px;
  background-color: #1ba750;
  width: 100%;
}

#btnParticiper:hover {
  background: #1ba750!important;
  color: #FFF;
  box-shadow: 0 0 5px #1ba750,
    0 0 5px #1ba750,
    0 0 5px #1ba750,
    0 0 20px #1ba750;
}

#btnParticiper span {
  position: absolute;
  display: block;
}

#btnParticiper span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFF );
  animation: animate1 1s linear infinite;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

#btnParticiper span:nth-child(2) {
  top: -100px;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #FFF );
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes animate2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

#btnParticiper span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #FFF );
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes animate3 {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

#btnParticiper span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #FFF );
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
};
  }

  #btnParticiper:hover {
    background: #FFF;
    color: #1ba750;
    box-shadow: 0 0 5px #1ba750,
      0 0 5px #1ba750,
      0 0 5px #1ba750,
      0 0 20px #1ba750;
  }

  #btnParticiper span {
    position: absolute;
    display: block;
  }

  #btnParticiper span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff );
    animation: animate1 1s linear infinite;
  }

  @keyframes animate1 {
    0% {
      left: -100%;
    }

    50%,
    100% {
      left: 100%;
    }
  }

  #btnParticiper span:nth-child(2) {
    top: -100px;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #FFF );
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
  }

  @keyframes animate2 {
    0% {
      top: -100%;
    }

    50%,
    100% {
      top: 100%;
    }
  }

  #btnParticiper span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #FFF );
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
  }

  @keyframes animate3 {
    0% {
      right: -100%;
    }

    50%,
    100% {
      right: 100%;
    }
  }

  #btnParticiper span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #FFF );
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
  }



@keyframes animate4 {

    0% {

        bottom: -100%;

    }

    50%,

    100% {

        bottom: 100%;

    }

}
.form-group {
    margin-bottom: 16px;
}