﻿/* Scroll to top */
#toTop {
    position: fixed;
    right: 15px;
    bottom: 30px;
    background: rgba(37,37,37,0.8);
    width: 35px;
    height: 35px;
    color: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    cursor: pointer;
    text-align: center;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 2000;
}

#toTop.show {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-backface-visibility: hidden;
}

#toTop i {
    width: 100%;
    height: 100%;
    font-size: 38px;
    line-height: 35px;
}

#toTop:hover {
    background: rgba(37,37,37,1);
}


