/* 
 * FlowupLabels Basic Stylesheet 
 * -----------------------------
 * This style sheet is marked with comments indicating 
 * what should and what shouldn't be changed for your 
 * styling purposes.
 */
.rf_submit {
	background: none;
	border-radius: 4px;
	border: 1px dotted #036;
	color: #036;
	font-size: 18px;
	/* [disabled]display: block; */
	margin-top: 30px;
	margin-right: 15px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 5px;
	padding-right: 30px;
	padding-bottom: 5px;
	padding-left: 30px;
}

.rf_submit:hover {
	cursor: pointer;
	background: #036;
	color: #fff;
}

.rf_submit:focus {
	outline: none;
	border: 1px solid #036;
}
.rf_submitGrey {
	background: none;
	border-radius: 4px;
	border: 1px dotted #666;
	color: #666;
	font-size: 18px;
	/* [disabled]display: block; */
	margin-top: 30px;
	margin-right: 15px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 5px;
	padding-right: 30px;
	padding-bottom: 5px;
	padding-left: 30px;
}
.rf_submitGrey:hover {
	cursor: pointer;
	background: #ccc;
	color: #333;
}
.rf_submitGrey:focus {
	outline: none;
	border: 1px solid #666;
}

.Flow_Labels .fl_label {
  cursor: text;
}

 
.Flow_Labels .fl_wrap {
	/* Can change */
	width: 100%;
	height: 46px;
	margin: 12px 0; /* 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;
}

/* initial label state */
.Flow_Labels .fl_label {
  /* Can change */
  top: 15px;
  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;
}

.Flow_Labels .fl_input {
	/* Can change */
	background: none;
	border: none;
	border-bottom: 1px solid #999;
	border-radius: 0;
	font-size: 16px;
	line-height: 22px;
	padding: 20px 0 0 5px;
	/* 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;
	color: #036;
}
 
  
/* Focus & populated label styling */
.Flow_Labels .fl_wrap.focused .fl_label,
.Flow_Labels .fl_wrap.populated .fl_label {
	/* Can change */
	color: #999;
	top: 0;
	font-size: 12px;
}
.Flow_Labels .fl_wrap.focused .fl_label {
	/* Can change */
	color: #666;
}
