
.is-flex {
    display: flex;
}
.is-hidden {
    display: none !important;
}
.microphone-container {
    display: flex;
    width: 100%;
    position: relative;
}
.microphone-activity-container {
    pointer-events: none;
    position: absolute;
    z-index: 10;
    width: 88%;
    padding-inline: 20px;
    border-radius: 20px;
    margin-inline: 5% 7%;
    align-self: center;
    background: #0080ff20;
}
.microphone-ajax-loading {
    position: absolute;
    z-index: 10;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background:url(//loading.gif) no-repeat 0 50%;
    padding-left: 25px;
}
.microphone-indicator {
    display: flex;
    position: absolute;
    z-index: 11;
    bottom: 50%;
    transform: translateY(50%);
    left: 2px;
    color: orange;
    cursor: pointer;
}
.microphone-indicator .fa {
    align-self: center;
}
.microphone-indicator .mi-ind-cont {
    overflow-y: auto;
    max-height: 52px;
    background: #00000080;
    padding: 8px;
    border-radius: 5px;
    width: 40vw;
    overflow-x: hidden;
    color: white;
    text-shadow: 0 0 2px black;
    font-weight: bold;
    font-family: sans;
    font-size: 12px;
}
.microphone-button {
    position: absolute;
    z-index: 10;
    right: 8px;
    bottom: 50%;
    transform: translateY(50%);
    cursor: pointer;
    font-size: 1.7em;
}
.microphone-input:focus + .microphone-button {
    opacity: 0.4;
}
.microphone-input:focus + .microphone-button:hover {
    opacity: 0.67;
}
