.hscq-wrap {
  width: 100%;
}
.hscq-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hscq-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}
.hscq-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
.hscq-field > span,
.hscq-options legend {
  font-weight: 600;
}
.hscq-field em {
  margin-left: 2px;
  color: #b42318;
  font-style: normal;
}
.hscq-field input,
.hscq-field select,
.hscq-field textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #c9c4bb;
  border-radius: 8px;
  background: #fff;
  padding: 11px 12px;
  color: #1d1b18;
  font: inherit;
}
.hscq-field textarea {
  resize: vertical;
}
.hscq-field small {
  color: #6d675f;
  font-size: 12px;
}
.hscq-field input:focus,
.hscq-field select:focus,
.hscq-field textarea:focus {
  border-color: #f99221;
  outline: 2px solid rgb(249 146 33 / 22%);
  outline-offset: 1px;
}
.hscq-options {
  margin: 0;
  border: 1px solid #d7d2ca;
  border-radius: 8px;
  padding: 12px 14px 14px;
  gap: 9px;
}
.hscq-options legend {
  padding: 0 4px;
}
.hscq-options label,
.hscq-privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  line-height: 1.45;
}
.hscq-options input,
.hscq-privacy input {
  width: auto;
  margin-top: 3px;
  accent-color: #f99221;
}
.hscq-privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hscq-submit {
  align-self: flex-start;
  border: 0;
  border-radius: 8px;
  background: #f99221;
  padding: 12px 24px;
  color: #17130f;
  font-weight: 700;
  cursor: pointer;
}
.hscq-submit:hover {
  background: #e98312;
}
.hscq-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}
.hscq-note,
.hscq-status {
  margin: 0;
  font-size: 13px;
}
.hscq-note {
  color: #6d675f;
}
.hscq-status {
  min-height: 1.25em;
}
.hscq-ok {
  color: #067a46;
}
.hscq-err {
  color: #b42318;
}
.hscq-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .hscq-row {
    grid-template-columns: 1fr;
  }
  .hscq-submit {
    width: 100%;
  }
}
