 .thespl-player__status {
	margin: 4px 0;
	height: 22px;
	line-height: 22px;
	min-height: 22px;
	text-align: center;
	white-space: nowrap;
}

.thespl-status-text {
	margin-right: 6px;
}

.thespl-status-dots {
	display: inline-flex;
	gap: 6px;
	width: 2.2em;
}

.thespl-status-dots span {
	width: 0.35em;
	height: 0.35em;
	background: currentColor;
	border-radius: 50%;
	opacity: .25;
	animation: thesplDotsBlink 1.2s infinite ease-in-out;
}

.thespl-status-dots span:nth-child(2) {
	animation-delay: .2s;
}

.thespl-status-dots span:nth-child(3) {
	animation-delay: .4s;
}

@keyframes thesplDotsBlink {
	0% {
		opacity: .25;
		transform: translateY(0);
	}
	20% {
		opacity: 1;
		transform: translateY(-1px);
	}
	40% {
		opacity: .25;
		transform: translateY(0);
	}
	100% {
		opacity: .25;
		transform: translateY(0);
	}
}

@keyframes thesplBlinkWarn {
	0% {
		opacity: 1;
	}
	49% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.thespl-player[data-binaural-status="1"] .thespl-status-text--binaural {
	animation: thesplBlinkWarn 1s linear infinite;
}

.thespl-player__track-credits {
	font-weight: 400;
}
