.go-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 99999;
	display: block !important;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent !important;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
	-webkit-font-smoothing: antialiased;
}

.go-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.go-top__ring {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	padding: 0;
	background: transparent !important;
	box-shadow: none;
}

.go-top__ring::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: 2px;
	background: linear-gradient(135deg, #f09433 0%, #e6683c 15%, #dc2743 30%, #cc2366 45%, #bc1888 55%, #405de6 70%, #5851db 85%, #833ab4 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
}

.go-top__icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: transparent !important;
	color: #222222;
}

.go-top__icon svg {
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.go-top__icon svg path {
	fill: #222222;
	stroke: #ffffff;
	stroke-width: 0.75px;
	paint-order: stroke fill;
}

.go-top:hover {
	transform: scale(1.06);
}

.go-top:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 3px;
}

.go-top:after,
.go-top-text {
	display: none !important;
	content: none !important;
	background: none !important;
}

@media (max-width: 767px) {
	.go-top {
		bottom: 16px;
		right: 16px;
		width: 44px;
		height: 44px;
	}

	.go-top__ring {
		width: 44px;
		height: 44px;
	}

	body:has(.bottom_bottom_main_div.fixed) .go-top {
		bottom: calc(72px + env(safe-area-inset-bottom, 0));
	}
}
