/* 
    Created on : Jan 29, 2019, 11:01:22 PM
    Author     : PT. Folarium Innotek Indonesia
*/

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

.overlay-page-wrapper--animation
{
    
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    /*background: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);*/
    background-size: 400% 400%;
    opacity: .8;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
    z-index: 3;
    position: absolute;
    height: 100%;
    width: 100%;
    
    
}
