.backtotopholder {
	height: 50px;
	position: absolute;
	top: -50px;
	top: -20px;
	width: 100%;
	pointer-events: none;
	z-index: 10;
}

.backtotop {
	width: 100%;
	height: 50px;
	position: relative;
	display: flex;
	justify-content: flex-start !important;
}

.backtotop i {
	pointer-events: auto;
	transition: all 0.2s ease;
	display: block;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	width: 40px;
	height: 40px;
	line-height: 40px;
	grid-column: 16 / span 1;
	position: relative;
	border-radius: 100%;
	background: rgba(3, 168, 124, 0.8);
	color: #FFF;
	margin: 0 88px 20px;
	-webkit-box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.25);
	box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.backtotop i::before {
	position: absolute;
	display: block;
	transform: rotate(-90deg);
	top: 39%;
	left: 50%;
	content: "";
	border: 3px solid white;
	border-bottom: none;
	border-right: none;
	transform: translateX(-50%) rotate(45deg);
	width: 15px;
	height: 15px;
}

@media all and (max-width: 1199px) {
	.backtotop i {
		margin: 0 40px 20px;
	}
}

@media all and (max-width: 899px) {
	.backtotop i {
		margin: 0 20px 20px;
	}
}

@media all and (min-width: 600px) {
	.backtotop i:hover {
		background: rgba(3, 168, 124, 1);
		color: #FFF;
	}
}

.backtotop.fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 50;
}

@media all and (max-width: 599px) {
	.backtotop.fixed {
		bottom: 0px;
	}
}

.backtotop {
	opacity: 0;
	pointer-events: none;
}

.backtotop.fixed,
body.scrolledtobottom .backtotop {
	opacity: 1;
	pointer-events: none;
}