.mobile {
  display: none;
}
.errormsg {
  display: none;
  background: #b73600;
  color: #fff;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 3px;
}
.form.tools .toolsSection {
  margin: 24px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 24px 0 0 0;
}
.form.tools .toolsSection.results {
  border: 0;
  margin: 0;
  padding: 0;
  display: none;
}
.form.tools .item {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}
.form.tools .item .label {
  width: 40%;
  box-sizing: border-box;
  float: left;
  padding-top: 5px;
}
.form.tools .item .input {
  width: 60%;
  box-sizing: border-box;
  float: left;
}
.form.tools .item .input ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.form.tools .item .input ul li {
  margin-bottom: 6px;
}
.form.tools .item input[type=text] {
  border-radius: 3px;
}
.form.tools .buttons {
  padding: 12px 0 12px 40%;
  border-top: 1px solid #e3e3e0;
}
.form.tools .buttons input {
  margin: 0 20px 0 0;
  border-radius: 3px;
  background: #0039a9;
}
.form.tools .buttons input:hover,
.form.tools .buttons input:focus {
  opacity: .8;
}
.form.tools .buttons input.reset {
  background: #ccc;
}
@media only screen and (max-width: 767px) {
  .mobile {
    display: block;
  }
  .form.tools .toolsSection {
    margin: 24px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 24px 0 0 0;
  }
  .form.tools .toolsSection.results {
    border: 0;
    margin: 0;
    padding: 0;
    display: none;
  }
  .form.tools .item .label {
    float: none;
    width: 100%;
    margin-bottom: 4px;
  }
  .form.tools .item .input {
    width: 100%;
    float: none;
  }
  .form.tools .buttons {
    padding: 12px 0 12px 0;
  }
}
