/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/
.ui-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 51px;
    height: 51px;
    border: none;
    background: #007aff;
    border-radius: 50%;
    transform: translate(0%, 200%);
    transition: .3s transform ease;
    color:#ffffffa6;

}

.ui-to-top.active {
    width: 51px;
    height: 51px;
    transform: translate(0%, 0px);
    /* float:left; */
    z-index: 999;
    transition: .3s transform ease;
}

.ui-to-top:active, .ui-to-top:focus {
    outline: none;
}
