/*Main stylesheet for Backtop jQuery Plugin */
#backTop{
    width: 30px;
    height: 30px;
    padding:5px;
    border-radius: 4px;
    text-indent: -9999px;
    cursor: pointer;
    z-index: 999;
    display: none;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    border-radius: 50px;
}
#backTop.white{
     background:url(../images/uparr-48-w.png) no-repeat center center rgba(255,255,255,0.8);
    border:1px solid #ccc;
}
#backTop.black{
	 background:url(../images/uparr-48-w.png) no-repeat center center rgba(165, 165, 165, .8);

}
#backTop.red{
     background: url(../images/uparr-48-w.png) no-repeat center center rgba(0, 0, 0, .7); 
}
#backTop.green{
     background:url(../images/uparr-48-w.png) no-repeat center center rgba(81,217,187,0.9); 
    border:1px solid #fff;
}


@media screen and (max-width:768px){
#backTop{ right:15px !important;}
}