/* Keep the optional neck strap checkbox next to its label on every screen size. */
#order .form-checkboxes {
  display: grid;
  gap: 0.5rem;
  width: 100%;
}

#order .form-checkboxes label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  text-align: left;
}

#order .form-checkboxes input[type="checkbox"] {
  box-sizing: border-box;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  padding: 0;
  flex: 0 0 1.125rem;
}

@media (max-width: 768px) {
  #order .order-grid,
  #order .order-form,
  #order .form-checkboxes,
  #order .form-checkboxes label {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  #order .form-checkboxes label {
    width: 100%;
  }
}
