/* =============================================================================
 * top_link
 * ========================================================================== */

#top_link {
	position: fixed; 
	opacity: 0; 
	transition: All 0.2s ease;
	-webkit-transition: All 0.2s ease;
	width: 50px; 
	height: 50px; 
	line-height: 50px; 
	right: 15px; 
	z-index: 10005;
	bottom: -40px;
}

#top_link a {
	position: relative; 
	display: block;  
	transition: All 0.6s ease;
	-webkit-transition: All 0.6s ease;
	float: left; 
	width: 100%; 
	height: 100%; 
	background: rgba(255, 255, 255, 1); 
	text-align: center; 
	line-height: inherit;
	border-radius: 100%;
	box-shadow: 0 0 15px 0 rgba(0, 128, 192, 1);
	border: 1px solid rgba(0, 128, 192, 1);
	font-size: 16px;
	line-height: 41px;
	cursor: pointer;
}

@media only screen and (max-width: 767px) {
  #top_link {display: block !important;}
}