#tompla #scroll-top {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	background: var(--brand);
	color: var(--brand);
	box-shadow: var(--shadow-medium);
    border: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition:
		opacity 160ms ease,
		visibility 160ms ease,
		transform 160ms ease,
		background-color 160ms ease,
		border-color 160ms ease;
}

#tompla #scroll-top::before {
	content: "";
	width: 9px;
	height: 9px;
	border-top: 2px solid #FFF;
	border-left: 2px solid #FFF;
	transform: translateY(2px) rotate(45deg);
}

#tompla #scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#tompla #scroll-top:hover {
    transform: translateY(-2px);
}

@media (min-width: 768px) {
	#tompla #scroll-top {
		right: 24px;
		bottom: 24px;
		width: 48px;
		height: 48px;
	}
}

@media (min-width: 1024px) {
	#tompla #scroll-top {
		right: 30px;
		bottom: 30px;
	}
}

@media (min-width: 1280px) {
	#tompla #scroll-top {
		right: 36px;
		bottom: 36px;
	}
}