/* 
 * FlowupLabels Basic Stylesheet 
 * -----------------------------
 * This style sheet is marked with comments indicating 
 * what should and what shouldn't be changed for your 
 * styling purposes.
 */

.FlowupLabels .fl_wrap {
  /* Can change */
  width: 100%;
  height: 56px;
  margin: 12px auto 24px; /* change 0 to auto for center alignment */

  /* Don't change */
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
    background: #fff;
    border: 2px solid #6398E6;
    border-radius: 12px;
    position: relative;
}
.FlowupLabels .fl_wrap p{
    display: none;
}
.FlowupLabels .fl_wrap.fl_wrap-erross p{
    display: block;
    position: absolute;
    bottom: -48px;
    color: #FF0600;
}

/* initial label state */
.FlowupLabels .fl_label {
  /* Can change */
  top: 7px;
  left: 10px;
  color: #999999;
  font-size: 12px;
  /* 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;
}
.FlowupLabels .fl_wrap.fl_wrap-erross{
    border-color: red;
}
.FlowupLabels .fl_input {
  /* Can change */
  background: none;
  border: none !important;
  border-bottom: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  line-height: 22px;
  padding: 20px 0 0 11px;
  color: #4C4C4C !important;
  font-family: 'BeVietnamPro-SemiBold' !important;
  /* Don't change */
  position: absolute;
  top:0;left:0px;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;
    
}
.FlowupLabels .fl_input:focus-visible{
    box-shadow: none;
    box-sizing: border-box;
    outline: none;
    border: none;
} 
  
/* 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: 5px;
  font-size: 12px;
  color: #555;
}
.FlowupLabels .fl_wrap.focused .fl_label {
  /* Can change */
  color: #4C4C4C;
}