#start-voice-recording-voice-search {
    padding: 0;
    /* background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center; */
    background-color: #000;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    border: 0;
}

.spinner-voice-search-plugin {
    animation: spin 1s linear infinite;
    width: 24px;
    height: 24px;
}

.path-voice-search-plugin {
    stroke: #fff;
    stroke-linecap: round;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.recording-pulse-voice-search-plugin {
    width: 24px;
    height: 24px;
}

.recording-dot-voice-search-plugin {
    fill: #b20000;
    animation: pulse 1.2s infinite ease-in-out;
    transform-origin: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.icon-microphone-voice-search-plugin {
    width: 18px;
    height: 18px;
    fill: #fff;
    display: inline-block;
    vertical-align: middle;
}

#voice-search-footer-spinner {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* soporte para Safari iOS */
    /* pointer-events: none; */
}

#voice-search-footer-spinner.active{
    display: flex;
    animation: voicesearch 0.3s ease-out;
}

@keyframes voicesearch {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

#voice-search-footer-spinner .content {
    padding: 1rem;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    /* background: white; */
    border-radius: 10px;
    text-align: center;
    font-size: 110%;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.5;
    text-shadow: 0 0 10px black, 0 0 10px black;
}

#voice-search-footer-spinner .content img{
    filter: invert(1);
}