@mixin most_top_banner_area($padding,$shadow){
    position: fixed;
    z-index: 999999;
    padding: $padding;
    box-shadow: $shadow;
    transition: all 0.3s ease;
}

@mixin bzhy_inline_text_icon($background,$width,$height,$iscircle, $font-size,$line-height,$left){
    position: relative;
    text-align: center;
    @if($background != null and $background != ""){
        background-color: $background;
    }
    width: $width;
    height: $height;
    @if($iscircle) {
        border-radius: 50%;
    }
    display: inline-block;
    font-size: $font-size;
    line-height: $line-height;
    @if($left != null and $left != ""){
        left: $left;
    }
    cursor: default;
}

@mixin bzhy_inline_text_icon_before($color){
    font-weight: bold;
    color: $color;
}

@mixin bzhy_flex_container($background,$width,$height,$border,$border-radius){
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    @if($background != null and $background != ""){
        background-color: $background;
    }

    @if($width != null and $width != ""){
        width: $width;
    }

    @if($height != null and $height != ""){
        height: $width;
    }

    @if($border != null and $border != ""){
        border: $border;
    }

    @if($border-radius != null and $border-radius != ""){
        border-radius: border-radius;
    }
}