.audioaufnahme-statussymbol {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin-left: 0.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: transform 0.15s ease, color 0.15s ease, text-shadow 0.15s ease;
}

.audioaufnahme-statussymbol .rzi {
    font-size: 18px;
}

.audioaufnahme-statussymbol:hover {
    transform: scale(1.08);
}

.audioaufnahme-statussymbol.ist-inaktiv {
    color: #9aa0a6;
}

.audioaufnahme-statussymbol.ist-aktiv {
    color: #d93025;
    text-shadow: 0 0 8px rgba(217, 48, 37, 0.35);
    animation: audioaufnahme-puls 1.2s ease-in-out infinite;
}

@keyframes audioaufnahme-puls {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(217, 48, 37, 0.45);
    }

    70% {
        transform: scale(1.06);
        text-shadow: 0 0 10px rgba(217, 48, 37, 0);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(217, 48, 37, 0);
    }
}
