/* ============== Up Button =============== */

#up_button {
	position: fixed;
	z-index: 99;
	bottom: 50px;
	right: 50px;
}
#up_button a {
	background: var(--spotcolor1);
	padding: 10px;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1), 0px 10px 15px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	color: white;
	text-align: center;
	font-size: 22px;
	line-height: 35px;
	transition: all .3s ease-out;
	text-shadow: 0px 5px 10px rgba(0,0,0,0.15);
	display: block;
}
#up_button i {
	width: 100%;
	line-height: 35px;
}
#up_button a:hover {
	text-decoration: none;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.15), 0 4px 15px 0 rgba(0,0,0,0.10);
}
#up_button a:active {
	box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
}

/* Mobile: Up-Button */
@media (max-width: 767px) {
	#up_button {
		bottom: 2%;
		right: 3%;
	}
}
