#voice-search-component {
    all: initial;
    margin-left: 0px;
    @media (max-width: 768px){
        margin-left: 10px;
    }
    align-items: center;
    padding: 0 5px;
    display: flex;
    font-family: var(--rc), "Open Sans", sans-serif;
    font-size: 16px;
    justify-content: center;
}



#voice-search-component .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#voice-search-component .modal-content {
    position: relative;
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    width: 100%;
    aspect-ratio: 1/1;
}

#voice-search-component .modal[x-show="isOpen"] {
    display: flex;
}

#voice-search-component div.microphone-button {
    background-color: #333367 !important;
    border: none;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    cursor: pointer;
    margin: 20px auto;
    text-align: center;
    align-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s cubic-bezier(.05, .69, .14, 1);
}

#voice-search-component div.microphone-button i {
    font-size: 44px;
    color: white;
}

#voice-search-component div.microphone-button.active {
    background-color: #ffd204 !important;
}

#voice-search-component .transcript {
    margin: 20px 0;
    font-size: 18px;
    color: #333;
}

#voice-search-component .error {
    margin: 20px 0;
    font-size: 18px;
    color: #ee9900;
}

#voice-search-component div.close-button {
    position: absolute;
    right: 0;
    top: 0;
    color: black;
    font-size: 1.5rem;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#voice-search-component .disable-select {
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#voice-search-component #voice-search-button {
    color: var(--azul);
    font-size: 25px;
    margin-right: 15px;
    margin-left: 5px;
    @media (max-width: 768px){
        font-size: 17px;
        margin:0;
    }
    cursor: pointer;
    line-height: 28px
}
