@mixin video-js-icon($size, $btn: false, $wh: false, $style: "light") {
    font-family: "Font Awesome 5 Pro";
    font-size: $size;
    line-height: $size;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    @if $style == "light" {
        font-weight: 300;
    }

    @if $style == "regular" {
        font-weight: 400;
    }

    @if $style == "solid" {
        font-weight: 900;
    }

    @if $btn {
        width: $wh;
        height: $wh;
    }
}
