.woovo-input-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 100%;
	vertical-align: middle;
}

.woovo-input-wrap input.woovo-has-mic {
	padding-right: 42px !important;
	box-sizing: border-box;
	width: 100%;
}

.woovo-wrapper {
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	z-index: 10;
}

.woovo-mic-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-left: 0;
	padding: 0;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: #68b847;
	cursor: pointer;
	vertical-align: middle;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.woovo-mic-btn:hover {
	background: rgba(0, 0, 0, .06);
}

.woovo-mic-btn.woovo-listening {
	background: #e53935;
	color: #fff;
	animation: woovo-pulse 1.2s infinite;
}

.woovo-mic-btn.woovo-processing {
	opacity: .6;
	cursor: wait;
}

.woovo-mic-btn.woovo-disabled {
	opacity: .35;
	cursor: not-allowed;
}

@keyframes woovo-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(229, 57, 53, .5); }
	70%  { box-shadow: 0 0 0 10px rgba(229, 57, 53, 0); }
	100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

.woovo-status {
	position: absolute;
	top: 100%;
	right: 0;
	white-space: nowrap;
	font-size: 12px;
	line-height: 1.3;
	margin-top: 4px;
	padding: 3px 8px;
	background: #333;
	color: #fff;
	border-radius: 4px;
	z-index: 9999;
}

.woovo-status-error {
	background: #c0392b;
}
