#backtotop {
    border-radius: 50%;
    line-height: 48px;
    background-color: #337ab7;
    display: block;
    position: fixed;
    bottom: 50px;
    text-align: center;
    width: 50px;
    right: 30px;
    opacity: 0;
    transition: all 0.4s ease 0s;
    color: #FFF;
    font-size: 11px;
    height: 50px;
    z-index: 99999;
    cursor: pointer;
}

#backtotop:hover {
    background-color: #7e519b;
    transition: .4s;
    color: #fff;
    opacity: 1;
}

#backtotop.active {
    opacity: 0.9;
}