.bdec-voice-guide {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 22px;
	padding: 14px 16px;
	border: 1px solid #d9e8de;
	border-radius: 10px;
	background: #f5fbf7;
	box-sizing: border-box;
}

.bdec-voice-guide.is-active {
	border-color: #16803d;
	box-shadow: 0 0 0 1px #16803d;
}

.bdec-voice-toggle {
	flex: 0 0 auto;
	min-height: 42px;
	padding: 9px 15px;
	border: 0;
	border-radius: 7px;
	background: #126b34;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.bdec-voice-toggle:hover,
.bdec-voice-toggle:focus {
	background: #0c5428;
	color: #fff;
}

.bdec-voice-toggle:focus-visible {
	outline: 3px solid rgba(18, 107, 52, .25);
	outline-offset: 2px;
}

.bdec-voice-toggle:disabled {
	background: #717171;
	cursor: not-allowed;
}

.bdec-voice-status {
	margin: 0;
	color: #243129;
	font-size: .95em;
	line-height: 1.55;
}

@media (max-width: 600px) {
	.bdec-voice-guide {
		align-items: stretch;
		flex-direction: column;
	}

	.bdec-voice-toggle {
		width: 100%;
	}
}

