#aw-back-to-top {
	position: fixed;
	bottom: 24px;
	left: 24px;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 9999;
	padding: 0;
	line-height: 1;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, background 0.2s ease;
}

#aw-back-to-top.aw-back-to-top-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#aw-back-to-top svg {
	width: 16px;
	height: 16px;
	stroke-width: 2.2;
	fill: none;
}

@media (max-width: 768px) {
	#aw-back-to-top {
		bottom: 18px;
		left: 18px;
		width: 40px;
		height: 40px;
	}
}
