/*================ Scroll To Top Button =================*/
.scroll-to-top {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 1.875rem;
	right: 1.875rem;
	width: 40px;
	height: 40px;
	background-color: #2E6147;
	color: #ffffff;
	border-radius: 2px;
	z-index: 9999;
	text-decoration: none;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.35s ease,
	            visibility 0.35s ease,
	            transform 0.35s ease,
	            background-color 0.25s ease;
}

.scroll-to-top svg,
.scroll-to-top img {
	display: block;
	flex-shrink: 0;
}

.scroll-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-to-top:hover,
.scroll-to-top:focus {
	background-color: #1d3d2d;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-3px);
	outline: none;
}

.scroll-to-top.tse-remove-border {
	outline: none;
}
