
.scrollUp.visible{
    -moz-transform: rotate(360deg) translateX(-30px) translateY(0px);
    -webkit-transform: translate(-30px,0) rotate(-360deg);
    -o-transform: translate(-30px,0) rotate(-360deg);
    -ms-transform: translate(-30px,0) rotate(-360deg);
    transform: translate(-20px,0) rotate(-360deg);
}
.scrollUp::before{
    content: '\e90b';
    font-family: 'icomoon';
    color: #fff !important;
    font-size: 20px;
    text-align: center;
    width: 100%;

    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.scrollUp{
    position: fixed;
    bottom: 100px;
    right: 20px;
    /*padding-top: 28px;*/
    width: 64px;
    height: 64px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 700;

    color: #fff !important;
    background: #706f70 !important;
    cursor: pointer;
    z-index: 888;
    /*display: none;*/
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 640px) {
    .scrollUp{
        width: 45px;
        height: 45px;
    }
}