.wbev-button-wrapper {
    position: relative;
}

.wbev_arrow {
    margin: 15px auto 0px 60px;
    height: 38px;
    width: 100px;
    display: inline-flex;
    position: absolute;
    top: 18px;
    left: 169px;
}
.wbev_arrow span {
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid #DDD;
    border-right: 5px solid #DDD;
    transform: rotate(135deg);
    margin: -16px 0;
    animation: arrow-7 2s infinite;
}
.wbev_arrow span:nth-child(2){
    animation-delay: -0.2s;
}
.wbev_arrow span:nth-child(3){
    animation-delay: -0.4s;
}
@keyframes arrow-7 {
    0%{
        opacity: 0;
        transform: translate(20px, 0) rotate(135deg);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: translate(-20px, 0) rotate(135deg);
    }
}