/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 6, 2019, 12:46:26 PM
    Author     : Felixom
*/

#return-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgb(1, 1, 1);
    background: rgba(1, 1, 1, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transform-origin: center center;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 8px;
    top: 8px;
    font-size: 34px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.8);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}
