﻿#jumpToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
    -webkit-tap-highlight-color: transparent;
}

#jumpToTop i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 10px;
    top: 14px;
    font-size: 25px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media only screen and (min-width: 499px) {
    #jumpToTop:hover {
        background: rgba(0, 0, 0, 0.9);
    }
    #jumpToTop:hover i {
        color: #fff;
        top: 5px;
    }
}
