.VolumeControl {
    &-mute-button {
        background: transparent;
        border: none;
        display: inline-block;
        padding: 0;
        vertical-align: middle;
    }

    &-volume-slider {
        background: $timberwolf;
        cursor: pointer;
        display: inline-block;
        height: 4px;
        margin: 0 $spacing_md;
        opacity: 0;
        transition: opacity .5s ease-in-out;
        vertical-align: middle;
        width: 50px;
    }

    &-volume-progress {
        background: var(--white, $white);
        height: 100%;
        max-width: 100%;
        pointer-events: none;
    }

    &-volume-marker {
        background: var(--white, $white);
        border-radius: 50%;
        bottom: 3px;
        height: 10px;
        margin-left: calc(100% - 5px);
        position: relative;
        width: 10px;
    }

    &:hover &-volume-slider {
        opacity: 1;
    }

    & .Icons-audio-player-mute {
        height: 20px;
        width: 23px;
    }
}
