.form-holder {
  background-color: #f7f7f7;
  text-align: center;
}

.form-holder form {
  max-width: 1040px;
  margin: 0 auto;
}

.form-holder .form-float {
  display: block;
  float: left;
  width: 25%;
  max-width: 238px;
  margin-right: 28px;
}

.form-holder .form-float:last-of-type, .form-holder .form-float.last-float {
  margin-right: 0px;
  float: right;
  text-align: right;
}

.form-holder .form-row:after {
  display: table;
  content: '';
  clear: both;
}

.filterbar form {
  max-width: 1040px;
  margin: 0 auto;
}

.filterbar .form-float {
  display: block;
  float: left;
  width: 30%;
  max-width: 238px;
  margin-right: 28px;
}

.filterbar .form-float.right {
  float: right;
  margin-left: 28px;
}

.filterbar .form-float:last-of-type {
  margin-right: 0px;
  float: right;
  text-align: right;
}

.filterbar .form-row:after {
  display: table;
  content: '';
  clear: both;
}

.form-float input {
  box-sizing: border-box;
  padding: 12px;
  font-size: 15px;
  color: #373a36;
  width: 100%;
}

.form-float.form-upload input {
  width: auto;
}

input[type="checkbox"i] {
  -webkit-appearance: checkbox;
  box-sizing: border-box;
}

input.search {
  background: url("../images/search-input.svg") no-repeat scroll 7px 12px;
  background-size: 18px;
  padding-left: 34px;
  color: ##373a36;
}

select.select {
  display: block;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -webkit-box-shadow: 0;
  -webkit-padding-end: 20px;
  -webkit-padding-start: 2px;
  -webkit-user-select: none;
  background-image: url("../images/icon-view-more.svg");
  background-color: #fff;
  background-position: 95% center;
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: 0;
  font-size: 15px;
  color: #373a36;
  overflow: hidden;
  padding: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.form-holder textarea {
  box-sizing: border-box;
  width: 100%;
  font-size: 15px;
  padding: 12px;
  height: 140px;
  color: #373a36;
  margin: 30px 0 40px;
  resize: none;
}

.webform-button--submit {
  border: 0;
  display: inline-block;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  text-align: center;
  background-color: #373a36;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s ease;
}

.webform-button--submit:hover, .webform-button--submit:focus {
  background-color: #eb3300;
}

@media only screen and (max-width: 767px) {
  .form-holder .form-float {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
  }

  .form-holder textarea {
    margin: 10px 0;
  }

  .filterbar .form-float {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 989px) {
  .form-holder .form-float {
    width: 20%;
    max-width: 200px;
    margin-right: 10px;
  }
}

@media only screen and (min-width: 990px) and (max-width: 1279px) {
  .form-holder form {
    max-width: 960px;
  }

  .form-holder .form-float {
    max-width: 218px;
  }
}