.form-note{
    width           : 100%;
    display         : flex;
    position        : fixed;
    top             : 0px;
    left            : 0px;
    justify-content : center;
    ul{
        width          : 100%;
        list-style-type: none;
        font-size      : 0.8em;
        >li{
            width      : 100%;
            min-height : 35px;
            padding    : 5px 0px;
            display    : flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            .note-icon{
                margin-left  : 10px;
                display      : inline-flex;
                font-size    : 1.4em;
                color        : rgb(255, 153, 0);
            }
        }
    }
    .form-note-wrap{
        min-width        : 260px;
        max-width        : 400px;
        padding          : 5px;
        display          : flex;
        align-items      : center;
        background       : #fff;
        margin           : 20px 0px 0px 0px;
        border-radius    : 4px;
        box-shadow       : 0px 0px 5px rgba(0, 0, 0, .3);  
    }
}