﻿/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop {
	display: none;
	background-color: #ffd200 /* #3C3F45*/;
	margin: 0;
	color:#fff;
	position: fixed;
	bottom: 10px;
	right: 8px;
	width: 50px;
	height: 50px;
	z-index: 1002;
    border-radius: 1em;
	opacity:0.70;
	filter: alpha(opacity=70);
    -webkit-transition: background 0.1s linear 0s;	
	   -moz-transition: background 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s;
		    transition: background 0.1s linear 0s;
}

#toTop:hover {
	background-color:#ffd200;
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    -ms-transition: opacity .15s ease-in-out;
    -o-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;

}

#toTop i {
	font-size: 16px;
	color: #FFFFFF;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -7px;
	line-height: 1em;
}

#toTop i {
	margin-left: -7px;	
}

#toTop:active, #toTop:focus {
	outline:none;
}
@media (max-width: 767px) {
  #toTop {
    visibility:hidden;
  }
}