/* Sourcing Form */

::-webkit-input-placeholder { /* WebKit browsers */
    color:    #fff !important;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff !important;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff !important;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #fff !important;
}	

/* Type TEXT */
input[type=text], input[type=email], input[type=tel], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 3px 0px 20px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #DDDDDD;
}input[type=text]:hover, input[type=email]:hover, input[type=tel]:hover, textarea:hover {
  box-shadow: 0 0 5px #8f8072;
  padding: 3px 0px 20px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #8f8072;
}input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, textarea:focus {
  box-shadow: 0 0 5px #8f8072;
  padding: 3px 0px 20px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #8f8072;
}

.floating-label-form-group {
  border-bottom: 0px !important;
}
