/* CSS Document */
   #back-to-top {
		position: fixed;
		bottom: 20px;
		right: 20px;
		z-index:999999999;
		width: 96px;
		height: 48px;
		text-align: center;
		line-height: 30px;
		background: transparent /*#f5f5f5*/;
		color: #444;
		cursor: pointer;
		border: 0;
		border-radius: 2px;
		text-decoration: none;
		transition: opacity 0.2s ease-out;
		opacity: 0;
	}
	#back-to-top:hover {
		/*background: #e9ebec;*/
	}
	#back-to-top.show {
		opacity: 1;
	}
	
	#back-to-top img {
		width: 96px;
		margin-top: -48px;
		margin-left: -3px;
	}
	
	#back-to-top.show {
	  opacity: 1;
	  visibility: visible;
	}	

	@media (max-width: 991.98px){
		#back-to-top {
			width: 48px;
			height: 48px;
			bottom: 40px;
		}
		#back-to-top img {
			width: 48px;
			margin-top: 0px;
			margin-left: 0px;
		}
	}
