.confetti-spark-wrapper {
	display: inline-block;
}

.confetti-btn {
	padding: 10px 20px;
	background-color: transparent !important;
	border: 1px solid #ffffff !important;
	color: #ffffff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.confetti-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(192, 192, 192, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	transition: left 0.5s ease;
}

.confetti-btn:hover::before {
	left: 150%;
}