#muteToggle {
    top: 20px;
    right: 20px;
    z-index: 2000;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 35px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#muteIcon {
    width: 70px;
    height: 70px;
}

#muteToggle:hover {
    transform: scale(1.15) rotate(10deg);
}

#muteToggle:active {
    transform: scale(0.95);
}

#muteToggle.muted {
    background-color: transparent;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

#muteIcon {
    transition: all 0.3s;
}

.audio-fragment-content {
    width: auto;
    height: auto;
}
