/* CSS GERAL */

*{
    margin: 0;
    padding: 0;
    font-family: Roboto !important;
}
*:focus{
    outline: 0 !important;
}

.wpp-fixed img{
    width: 80px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    animation: alert 1s alternate infinite;
    z-index: 999;
}
@keyframes alert {
    from{
        transform: translateY(20px);
    }
    to{
        transform: translateY(-20px);
    }
}