.aafe-custom-embed-button-wrapper {
	--icon-size: 18px;
	--background-color: #1c1c1c;
	--hover-background-color: #000;
	--glow-color: #1c1c1c;
}

.aafe-custom-embed-button-wrapper svg {
	width: var(--icon-size);
	height: var(--icon-size);
}
.aafe-custom-embed-button-wrapper i {
	font-size: var(--icon-size);
}
.aafe-custom-embed-play {
	line-height: 1;
}
.aafe-custom-embed-button-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.aafe-custom-embed-button-wrapper.is-button-style {
	cursor: pointer;
	padding: 10px 18px;
	border-radius: 5px;
	background-color: var(--background-color);
	color: #fff;
	fill: #fff;
	transition: all 0.3s;
}
.aafe-custom-embed-button-wrapper.is-button-style.has-icon-only {
	padding: 18px;
	border-radius: 50%;
}
.aafe-custom-embed-button-wrapper.is-button-style:hover {
	background-color: var(--hover-background-color);
}

.aafe-custom-embed-separate-lines-yes .aafe-custom-embed-button-wrapper {
	flex-direction: column;
}

@keyframes aafe-glow {
	0% {
	  box-shadow: 0 0 0 0 var(--glow-color),
				  0 0 0 4px var(--glow-color),
				  0 0 0 8px var(--glow-color),
				  0 0 0 12px var(--glow-color);
		opacity: 0.3;
	}
	100% {
	  box-shadow: 0 0 0 4px var(--glow-color),
				  0 0 0 8px var(--glow-color),
				  0 0 0 12px var(--glow-color),
				  0 0 0 20px var(--glow-color);
		opacity: 0;
	}
}
.aafe-custom-embed-glow-yes .aafe-custom-embed-button-wrapper.is-button-style {
	position: relative;
}
.aafe-custom-embed-glow-yes .aafe-custom-embed-button-wrapper.is-button-style::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0.2;
	transition: all 0.5s ease-in;
	animation: aafe-glow 1.3s infinite;
}
