.bigbear-input-wrapper{
    @include neufactory-noactive($white,$neu-whiteshadow1,$neu-whiteshadow2);
    align-items: center;
    display: flex;
    margin-bottom: $input-margin;
    overflow: hidden;
    position: relative;
    input{
        @include ringwrapper($white,$neu-whiteshadow1,$neu-whiteshadow2);

        background: transparent;
        border:none;
        color:$gray-7;
        flex-grow:1;
        flex-shrink: 0;
        font-size: $input-fontsize;
        height: $input-height;
        outline: none;
        padding:0 10px;
        width: 10px;
    }
    input:disabled{
        background-color: $gray-2;
        cursor: not-allowed;
        opacity: 0.5;
    }
    input::placeholder{
        color:$gray-5;
    }
    .bigbear-input-group-prepend{
        @include neufactory-noactive($white,$neu-whiteshadow1,$neu-whiteshadow2);

        align-items: center;
        display: flex;
        flex-shrink: 1;
        height: $input-height;
        justify-content: flex-start;
        padding:0 10px;
    }
    .bigbear-input-group-append{
        @include neufactory-noactive($white,$neu-whiteshadow1,$neu-whiteshadow2);

        align-items: center;
        display: flex;
        flex-shrink: 1;
        height: $input-height;
        justify-content: flex-end;
        padding:0 10px;
    }
}