/* 
 * 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: 200px;
  height: 40px;
  margin: 0px 0px; /* change 0 to auto for center alignment */  
  padding-top:20px;

  /* Don't change */
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/* initial label state */
.FlowupLabels .fl_label {
  /* Can change */
  top: 8px;
  left: 5px;
  
  /* 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_label_right {
    left: auto !important;
    right: 5px;
}

.FlowupLabels .fl_input, .FlowupLabels .fl_RadContainer, .FlowupLabels .fl_RadCombo {
    /* Can change */
    background: none;
    border: none;
    border-radius: 0;
    font-size: 16px;
    line-height: 18px;
    padding: 20px 0 0 5px;
    /* Don't change */
    position: absolute;
    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;
}

.FlowupLabels .fl_RadCombo {    
    padding: 20px 0 0 0px !important;
    
}

.FlowupLabels .fl_Radinput, .FlowupLabels .fl_Radinput:focus {
    /* Can change */
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    line-height: 18px !important;
    padding: 20px 0 0 5px !important;
    box-shadow: none !important;
    /* Don't change */
    position: relative;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important; /* 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 .RadComboBox_Bootstrap table td.rcbInputCell, .RadComboBox_Bootstrap table td.rcbArrowCell, .RadComboBox_Bootstrap table td.rcbInputCellLeft {
    border-width: 0px !important;
    box-shadow: none !important;
}
.RadPicker_Bootstrap .rcCalPopup, .RadPicker_Bootstrap .rcTimePopup {
    border-width: 0px !important;    
}
.RadComboBox_Bootstrap .rcbFocused .rcbInputCell, .fl_RadContainer .RadInputFocused {
    box-shadow: none !important;
}

.RadPicker .rcSelect {top: initial !important}

.fl_wrap .RadInput .riTextBox {
    border: none !important;
    box-shadow: none !important;
    height: unset !important;
    line-height: 18px !important;

}



  
/* 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: 0;
  font-size: 12px;
  color: #555;
}
.FlowupLabels .fl_wrap.focused .fl_label {
    /* Can change */
    /*color: #003366;*/
}
