/* To Top Button */
#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 19px;
	left: 18px;
	overflow: hidden;
	width: 60px;
	height: 60px;
	border: none;
	text-indent: 100%;
	background: #ffd942;
	border-radius: 50%;
	box-shadow: rgba(35, 35, 30, 0.3) 0px 18px 37px 0px;
	z-index: 9999;
	transition: background-color .3s;
}

#toTop:hover {
	background: #ffb310;
}

#toTopHover {
	display: inline-block;
	position: absolute;
	top: 13px;
	right: calc(50% - 2px);
	width: 4px;
	height: 34px;
	background: #f5f5f5;
	border-radius: 4px;
}

#toTopHover::before,
#toTopHover::after {
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 0;
	width: 4px;
	height: 20px;
	content: '';
	background: #f5f5f5;
	border-radius: 4px;
	transform-origin: 2px 1px;
}

#toTopHover::before {
	transform: rotate(45deg);
}

#toTopHover::after {
	transform: rotate(-45deg);
}

#toTop:active,
#toTop:focus {
	outline: none;
}


/* @media (max-width: 767.98px){
#toTop {
	width: 45px;
	height: 45px;
}
#toTopHover {
	top: 10px;
	right: calc(50% - 0px);
	width: 2px;
	height: 28px;
}
#toTopHover::before, #toTopHover::after {
	top: 0px;
	left: 0;
	width: 2px;
	height: 17px;
}
#toTopHover::after {
	top: -1px;
}
} */
/* End of To Top Button */