input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #333333;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}


/* @group Floating Labels */


.bt-flabels input:not([type=radio]) {
	border-radius: 0;
	background-color: #f0f0f0;
	border: none;
	height: 50px;
	box-shadow: none;
	width:100%;
	padding-left: 10px;
	padding-right: 10px;
}

.bt-flabels input[type=radio] {
	border-radius: 0;
	background-color: #f0f0f0;
	border: none;
	/*height: 50px;*/
	box-shadow: none;
	/*width:100%;*/
	padding-left: 10px;
	padding-right: 10px;
}



.bt-flabels input[type]:focus {
  background: #DFF0D8;
}
.bt-flabels label {
  pointer-events: none;
  position: absolute;
  opacity: 0;
  top: 0;
  -webkit-transform: translateY(15%);
	transform: translateY(15%);
  z-index: 2;
  font-weight: bold;
  font-size: 10px;
  text-transform: uppercase;
  padding-left: 6px;
  color: #333333;
  -webkit-transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.bt-flabels > *:not(:first-child).bt-flabels__wrapper,
.bt-flabels > *:not(:first-child) .bt-flabels__wrapper {
  border-top: none;
}
.bt-flabels__wrapper {
  position: relative;
}
.bt-flabels__error-desc {
  position: absolute;
  top: 0;
  right: 20px;
  opacity: 0;
  font-weight: bold;
  color: #f44545;
  font-size: 10px;
  text-transform: uppercase;
	z-index: 3;
	pointer-events: none;
}

.bt-flabels__error input[type] {
	background: #feeeee;
}
.bt-flabels__error input[type]:focus {
	background: #feeeee;
}

.bt-flabels select {
	border-radius: 0;
	background-color: #f0f0f0;
	border: none;
	height: 50px;
	box-shadow: none;
	width:100%;
	padding-left: 10px;
	padding-right: 10px;
	-moz-border-radius:0px;
	border-radius:0px;
	-webkit-border-radius:0px;
	-webkit-appearance: none;
	
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #787878;

}

.bt-flabels select:focus {
  background: #DFF0D8;
}

.bt-flabels__error select {
	background: #feeeee;
}

.bt-flabels__error select:focus {
	background: #feeeee;
}

.bt-flabels__error .bt-flabels__error-desc {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.bt-flabels--right {
	border-left: none;
}
.bt-flabel__float label {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.bt-flabel__float input[type] {
	padding-top: 9px;
}



/* @end */