body {

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

      background-image: radial-gradient(
    circle at 30% 30%,
    #f5dae7 0%,
    #fbf0f5 35%,
    #e7c1d8 70%,
    #e6bfd7 100%
  );

    /* background: radial-gradient(circle, #c13055 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: radial-gradient(
    circle at 30% 30%,
    #f5dae7 0%,
    #fbf0f5 35%,
    #e7c1d8 70%,
    #e6bfd7 100%
  );

    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 #e40f69 ;

    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-image: radial-gradient(
    circle at 30% 30%,
    #f5dae7 0%,
    #fbf0f5 35%,
    #e7c1d8 70%,
    #e6bfd7 100%);
        /* background: radial-gradient(circle, #c13055 49%, #572a6d  91%); */

        padding-top: 20px;

        color: #FFF;

    }

}



#btnParticiper {

    position: relative;

    display: inline-block;

    padding: 20px 25px;

    margin: 10px 20px;

    color: #c13055 ;
    background-color: #FFF;

    font-size: 15px;

    text-decoration: none;

    text-transform: uppercase;

    overflow: hidden;

    transition: 0.5s;

    letter-spacing: 4px;

}



#btnParticiper:hover {

    background: #c13055 ;

    color: #ffffff;

    box-shadow: 0 0 5px #c13055 , 0 0 5px #c13055 , 0 0 5px #c13055 , 0 0 20px #c13055 ;

}



#btnParticiper span {

    position: absolute;

    display: block;

}



#btnParticiper span:nth-child(1) {

    top: 0;

    left: 0;

    width: 100%;

    height: 2px;

    background: linear-gradient(90deg, transparent, #c13055 );

    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, #c13055 );

    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, #c13055 );

    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, #c13055 );

    animation: animate4 1s linear infinite;

    animation-delay: 0.75s;

}



@keyframes animate4 {

    0% {

        bottom: -100%;

    }

    50%,

    100% {

        bottom: 100%;

    }

}