/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.1
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop{
     display: none;
     position: fixed;
     left: 96%;
     bottom: 42px;
     cursor: pointer;
     border: none;
     z-index: 20;

 }

#toTop > .fa{
    background-color: #2fa0d4;
    padding: 11px;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#toTop:hover > .fa{
    background-color: #2481ac;
}

@media (max-width: 1299px){
    #toTop {
        display: none!important;
    }
}
