.FlowupLabels .fl_wrap {
  /* Can change */
/*  width: 500px; height: 46px; margin: 12px auto; */

  /* Don't change */
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/* initial label state */
.FlowupLabels .fl_label {
    
/*    font-family: 'Source Sans Pro', sans-serif;*/
    font-size: 15px;
    font-weight: 400;
    color: #999999;    
    margin-bottom: 0px; /* override bootstrap css */    
    
    /* Can change */
    top: 10px;
    left: 11px;

    /* Don't change */
    position: absolute;
    z-index: 3; /* This can be removed but then the labels must be placed after the inputs in the HTML */
    -webkit-transition: all .05s linear;
    -moz-transition: all .05s linear;
    -transition: all .05s linear;
    
    cursor: text;
}

.FlowupLabels .fl_input {
  /* Can change */
/* background: none; border: none; border-bottom: 1px solid #555; border-radius: 0; font-size: 16px; line-height: 22px; padding: 20px 0 0 5px; padding-left: 30px; */
    
  /* Don't change */
/*  position: absolute;*/   
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 2; /* This can be removed but then the labels must be placed after the inputs in the HTML */
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
 
  
/* Focus & populated label styling */
.FlowupLabels .fl_wrap.focused .fl_label,
.FlowupLabels .fl_wrap.populated .fl_label,
/* and graceful degradation */
.no-js .FlowupLabels .fl_label {
  /* Can change */
  top: 3px;
  font-size: 12px !important;
  color: #ccc;
}
.FlowupLabels .fl_wrap.focused .fl_label {
    /* Can change */
    top: 2px;
    font-size: 13px !important;
    color: #999;
}