@font-face { font-family: avenirltpro_regular; src: url("../../assets/fonts/AvenirNextLTProRegular.ttf"); }
@font-face { font-family: avenirltpro_bold; src: url("../../assets/fonts/AvenirNextLTPro-Bold.ttf"); }
@font-face { font-family: futurb; src: url("../../assets/fonts/futurab.ttf"); }

.partner-short-form {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 0;
  color: #fff;
  font-family: avenirltpro_regular, Arial, sans-serif;
}

.partner-short-form__fields {
  display: grid;
  gap: 10px;
}

.partner-short-form .combobox {
  position: relative;
  display: block;
  margin: 0;
}

.partner-short-form .combobox > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.partner-short-form .form-control {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 12px 44px 12px 18px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: #2a2a2a;
  font: 20px avenirltpro_regular, Arial, sans-serif;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .04);
}

.partner-short-form .form-control::placeholder {
  color: #2a2a2a;
  opacity: 1;
}

.partner-short-form .form-control:focus {
  outline: 0;
  box-shadow: inset 0 0 0 2px #ffea00, 0 0 0 2px rgba(255, 255, 255, .55);
}

.partner-short-form .form-control:disabled {
  background: #f5f5f5;
  color: #8b8b8b;
  cursor: not-allowed;
}

.partner-short-form .form-control:disabled::placeholder {
  color: #8b8b8b;
}

.partner-short-form .combobox::after {
  position: absolute;
  right: 18px;
  bottom: 21px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #526166;
  border-bottom: 2px solid #526166;
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.partner-short-form .combobox:has(.form-control:disabled)::after {
  border-color: #98a2a5;
}

.partner-short-form .combo-list {
  position: absolute;
  z-index: 100000;
  top: calc(100% + 5px);
  width: 100%;
  max-height: 220px;
  overflow: auto;
  margin: 0;
  padding: 5px;
  border: 1px solid #bfc9cc;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(20, 30, 27, .18);
  color: #212121;
  list-style: none;
  text-align: left;
}

.partner-short-form .combo-list li {
  padding: 9px 11px;
  border-radius: 5px;
  cursor: pointer;
  font: 16px avenirltpro_regular, Arial, sans-serif;
}

.partner-short-form .combo-list li:hover,
.partner-short-form .combo-list li.active {
  background: #fff4b8;
  color: #c63825;
}

.partner-short-form .combo-list .combo-empty {
  color: #667078;
  cursor: default;
  font-style: italic;
}

.partner-short-form .combo-list .combo-empty:hover {
  background: transparent;
  color: #667078;
}

.partner-short-form__error {
  margin: 0;
  padding: 10px 12px;
  border-left: 4px solid #b42318;
  border-radius: 4px;
  background: #fff0ee;
  color: #8d1d15;
  font: 16px avenirltpro_regular, Arial, sans-serif;
  text-align: left;
}

.partner-short-form__submit {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: #ffea00;
  color: #f44336;
  cursor: pointer;
  font: 28px futurb, Arial, sans-serif;
  transition: background .2s ease;
}

.partner-short-form__submit:hover {
  background: #e7d50e;
}

@media (max-width: 767px) {
  .partner-short-form__submit {
    font-size: 26px;
  }
}
