#arrowTop {
	position: fixed;
	font-size: 10px;
	bottom: 2em;
	right: 2em;
	width: 6em;
	height: 6em;
	border-radius: 100%;
	display: none;
	transition: opacity .3s;
	opacity: .8;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M45 38L30 22L15 38' stroke='%23fff' stroke-width='4'/%3E%3C/svg%3E") no-repeat center/cover;

	z-index: 100;
	background-color: #1e45a1;
	box-shadow: 0 0 .5em rgba(255,255,255,1);
}

#arrowTop:hover {
	opacity: 1;
}


#arrowTop.left {
	right: auto;
	left: 2em;
}

#arrowTop.show {
	display: block;
}

@media (max-width: 575px) {
	#arrowTop {
		font-size: 8px;
	}
}
