.bbs-audio-player {
	display: inline-block;
	padding-right: 15px;
	border: 1px solid #d5d9df;
	border-radius: 15px;
	background: #eef4ee;
}

.bbs-audio-player__toggle {
	appearance: none;
	border: 0;
	border-radius: 999px;
	width: 2.25rem;
	height: 2.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: #395536;
	color: #fff;
	cursor: pointer;
}

.bbs-audio-player__toggle:hover {
	opacity: 0.95;
}

.bbs-audio-player__container {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bbs-audio-player__timeline {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	gap: 0.5rem;
}

.bbs-audio-player__toggle-icon {
	font-size: 0.9rem;
	line-height: 1;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

.bbs-audio-player__toggle-icon::before {
	content: "\f04b";
}

.bbs-audio-player__toggle.is-playing .bbs-audio-player__toggle-icon::before {
	content: "\f04c";
}

.bbs-audio-player__seek {
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
	height: 6px;
	border-radius: 999px;
	background: #DDEADD;
	outline: none;
}

.bbs-audio-player__seek::-webkit-slider-runnable-track {
	height: 6px;
	border-radius: 999px;
	background: #395536;
}

.bbs-audio-player__seek::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	margin-top: -4px;
	border: 0;
	border-radius: 50%;
	background: #395536;
	cursor: pointer;
}

.bbs-audio-player__seek::-moz-range-track {
	height: 6px;
	border-radius: 999px;
	background: #395536;
}

.bbs-audio-player__seek::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border: 0;
	border-radius: 50%;
	background: #395536;
	cursor: pointer;
}

.bbs-audio-player__time {
	font-size: 0.875rem;
	color: #364152;
	font-variant-numeric: tabular-nums;
}

.bbs-audio-player__title {
	margin: 0;
	font-weight: 600;
	color: #101828;
}

.bbs-audio-player__message {
	margin: 0;
	font-size: 0.8125rem;
	color: #8a1f17;
}
