/* ====== Back to top ======= */
#js-top {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FFFFFF;
	border: 2px solid #000;
	height: 39px;
	line-height: 39px;
	text-align: center;
	border-radius: 71px;
	color: #000;
	position: fixed;
	padding: 0 17px;
	bottom: 30px;
	right: 30px;
	transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	font-size: 14px;
}

#js-top .fa-angle-up {
	display: none;
}

#js-top:hover {
	cursor: pointer;
	background-color: #ea80a8;
	border-color: #f05191;
	color: #fff;
}

#js-top:active {
	background-color: #555;
}

#js-top.show {
	opacity: 1;
	visibility: visible;
}
/* ====== Back to top ======= */

@media (max-width: 767px) {
	a#js-top {
		padding: 0 0px;
		height: 45px;
		width: 45px;
		font-size: 25px;
	}

	a#js-top span {
		display: none;
	}

	#js-top .fa-angle-up {
		display: inline-block;
	}
}
