/* "Other" text input revealed below a selected .oc */
.new-onboarding .oc-other-input {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease;
}
.new-onboarding .oc.sel + .oc-other-input { max-height: 60px; opacity: 1; margin: 8px 0 }

.new-onboarding .oc-other-input input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: 14px;
  background: var(--white);
  outline: none;
  box-sizing: border-box;
}
.new-onboarding .oc-other-input input:focus { border-color: var(--coral) }
