.iw-scroll-to-top {
	position: fixed;
	right: max(1rem, env(safe-area-inset-right));
	bottom: max(1.25rem, env(safe-area-inset-bottom));
	z-index: 60;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--iw_branding_black_color, #1d1d1f) 10%, transparent);
	border-radius: 999px;
	background: color-mix(in srgb, var(--iw_branding_white_color, #fff) 88%, transparent);
	color: var(--iw_branding_black_color, #1d1d1f);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	cursor: pointer;
	opacity: 0;
	transform: translateY(0.75rem);
	transition: opacity 0.22s ease, transform 0.22s ease, background 0.15s ease;
}

.iw-scroll-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.iw-scroll-to-top:hover {
	background: var(--iw_branding_white_color, #fff);
}

.iw-scroll-to-top__icon {
	display: block;
	width: 0.7rem;
	height: 0.7rem;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(-45deg) translateY(0.12rem);
}

.iw-scroll-to-top[hidden] {
	display: none !important;
}
