/* Global Back to Top button */
.hello-child-back-to-top {
	position: fixed !important;
	right: 24px !important;
	bottom: 24px !important;
	z-index: 99999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	min-width: 52px;
	min-height: 52px;
	max-width: 52px;
	max-height: 52px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	background: rgba(28, 28, 30, 0.86);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	color: #ffffff;
	font: 700 24px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-align: center;
	text-decoration: none;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px) scale(0.9);
	transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

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

.hello-child-back-to-top:hover,
.hello-child-back-to-top:focus-visible {
	background: rgba(0, 0, 0, 0.92);
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
	transform: translateY(-3px) scale(1.03);
	outline: none;
}

.hello-child-back-to-top__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 1;
	transform: translateY(-1px);
}

@media (max-width: 767px) {
	.hello-child-back-to-top {
		right: 18px !important;
		bottom: 18px !important;
		width: 48px;
		height: 48px;
		min-width: 48px;
		min-height: 48px;
		max-width: 48px;
		max-height: 48px;
		font-size: 22px;
	}
}
