.compound-btn-gradient-wrapper {
	position: relative;
	padding: 0.25rem 0.25rem 0.25rem 2rem;
	border-radius: 2rem;
	background: #00ad4b;
	overflow: hidden;
	max-width: max-content;
	height: 3rem;
	cursor: pointer;
	display: block;
	text-decoration: none;
}
.compound-btn-gradient-wrapper::before {
	content: "";
	position: absolute;
	display: block;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	background: linear-gradient(90deg, #00943e 0%, #0078d4 135.91%);
	border-radius: 2rem;
	transition: all 500ms cubic-bezier(0.65, 0.01, 0.05, 0.99);
}

.compound-btn-gradient-inner {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
.compound-btn-gradient-inner__title {
	flex-shrink: 0;
	color: #fff;
	font-family: Lexend;
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.01563rem;
	margin-right: 0.625rem;
}
.compound-btn-gradient-inner__icon-wrapper {
	flex-shrink: 0;
	display: flex;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.5rem;
	justify-content: flex-end;
	align-items: center;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.2);
	overflow: hidden;
}
.compound-btn-gradient-inner__icon-inner {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	object-fit: cover;
	transition: all 500ms cubic-bezier(0.65, 0.01, 0.05, 0.99);
}
.compound-btn-gradient-inner__icon-inner:first-child {
	margin-right: 0.625rem;
}
.compound-btn-gradient-inner__icon-inner svg {
	width: 100%;
	height: 100%;
}
@media (min-width: 639.98px) {
	.compound-btn-gradient-wrapper:hover::before {
		opacity: 1;
		visibility: visible;
	}
	.compound-btn-gradient-wrapper:hover
	.compound-btn-gradient-inner__icon-inner {
		transform: translateX(calc(100% + 0.625rem));
	}
}
@media (max-width: 639.98px) {
	.compound-btn-gradient-wrapper {
		height: 2.5rem;
		display: flex;
		padding: 0.25rem 0.25rem 0.25rem 1.5rem;
	}
	.compound-btn-gradient-inner__title {
		font-family: Lexend;
		font-size: 0.875rem;
		font-style: normal;
		font-weight: 500;
		line-height: 1.5rem;
		letter-spacing: 0.00938rem;
		margin-right: 1rem;
	}
	.compound-btn-gradient-inner__icon-wrapper {
		width: 2rem;
		height: 2rem;
		background: rgba(255, 255, 255, 0.2);
		align-items: center;
		justify-content: center;
	}
	.compound-btn-gradient-inner__icon-inner {
		width: 1.2rem;
		height: 1.2rem;
	}
	.compound-btn-gradient-inner__icon-inner:first-child {
		display: none;
	}
}
