input, select, textarea {
  background-color: #FAFAFA;
}

/* All textfield input types (Some newer types are not yet included) */
input[type="text"],
input[type="email"],
input[type="password"] {
  margin: 7px 0;  
  border: 1px solid #eaeaea;
  border-radius: 3px;
  box-shadow: -1px -1px rgba(0,0,0,0.2);
  width: 100%;
  padding: 7px 3px;
}

/* All button input types */
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background: #2f2f2f;
  padding: 4px 15px;
  cursor:pointer;
  border:none;
  color:white;
}

input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: #8f011b;
}

input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
    opacity: 0.5;
    background-color: #2f2f2f;
    cursor: default;
}

input[type="image"] {
  margin: 1em 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  background: #FAFAFA url('../images/form_drop_01.gif') right center no-repeat;
  padding: 7px 37px 7px 7px;
  margin: 1em 0;
  width: 100%;
  border-radius: 3px;
  /* Firefox is dumb and doesn't hide it's dropdown arrow fix */
  text-indent: 0.01px;
  text-overflow: "";
}

select:hover,
select:focus {
  background-image: url('../images/form_drop_02.gif');
}

/* This removes the dropdown arrow from the select list for IE10+ only.*/
select::-ms-expand {
  display: none;
}

/* IE9- are even dumber...*/
.lt-ie9 select,
.ie9 select {
  background: #FAFAFA;
  padding: 7px;
}

.lt-ie9 select:hover,
.ie9 select:hover,
.lt-ie9 select:focus,
.ie9 select:focus {
  background: #FAFAFA;
}

select[multiple] {
  background-image: none;
}

select[disabled] { 
  opacity: 0.5; 
}

textarea {
  border: 1px solid rgb(234, 234, 234);
  border-bottom: none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) -1px -1px;
  padding: 3px;
  float: left;
  margin: 0px;
  position:relative;
  z-index:101;
}

fieldset {
  padding: 1em;
  margin: 0 0 1em 0;
}

/* Webform specific fixes (Start) */
.webform-container-inline {
  width:auto;
}

.webform-container-inline div {
  width:auto;
  margin: 0;
  float: none;
}
/* Webform specific fixes (End) */

form .marker, .form-required {
  color: #AA0000;
}

/* Entityforms Override (Start) */
.resizable-textarea .grippie {
  clear: both;
}

a.tabledrag-handle .handle {
  width: auto;
  height: auto;
}
/* Entityforms Override (End) */

/* Facilities form specific fixes (Start) */
select.month {
  width: unset;
}

select.day {
  width: unset;
}

select.year {
  width: unset;
}
	
/* Facilities form specific fixes (End) */
