.company-list-form {
  max-width: 400px;
  margin-bottom: 30px;
}
.company-list-form .form-field {
  margin-bottom: 15px;
}
.company-list-form .form-field.hidden {
  display: none;
}
.company-list-form input[type=text] {
  width: 100%;
}
.company-list-form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  padding: 5px;
  padding-right: 25px;
  background: none;
  width: 100%;
}
.company-list-form .select-wrapper {
  display: inline-block;
  width: 100%;
  border: 1px solid #ccc;
  position: relative;
}
.company-list-form .select-wrapper.disabled {
  opacity: 0.3;
}
.company-list-form .select-wrapper::after {
  content: '';
  position: absolute;
  top: 17px;
  right: 8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #d11415;
  pointer-events: none;
}
