/* Scroll To Top */
.scrollup{
    font-size: 24px;
    padding: 3px 9px 5px 9px;			
    position:fixed;
    z-index: 999;
    bottom:20px;
    right:20px;
    color: #fff;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;	
    -webkit-border-radius: 50%;
    cursor: pointer;
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;		
}
.scrollup.on{
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);            
}
.scrollup:hover {
    background: rgba(0,0,0,0.8);
}