.tabswire-back-to-top {
	align-items: center;
	appearance: none;
	background: #49b97f;
	border: 0;
	border-radius: 2px;
	bottom: 24px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	opacity: 0;
	padding: 0;
	pointer-events: none;
	position: fixed;
	right: 24px;
	transform: translateY(8px);
	transition:
		background-color 180ms ease,
		opacity 180ms ease,
		transform 180ms ease;
	width: 40px;
	z-index: 80;
}

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

.tabswire-back-to-top:hover {
	background: #3eaa73;
}

.tabswire-back-to-top:focus-visible {
	outline: 3px solid rgba(73, 185, 127, 0.35);
	outline-offset: 3px;
}

.tabswire-back-to-top__icon {
	display: block;
	height: 24px;
	width: 24px;
}

.tabswire-back-to-top__icon path {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
}

@media (max-width: 600px) {
	.tabswire-back-to-top {
		bottom: 18px;
		height: 38px;
		right: 18px;
		width: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tabswire-back-to-top {
		transition: none;
	}
}
