/*
 * AI24Solutions V32-G
 *
 * Exact ROI calculator alignment.
 *
 * The input lives inside the label, so the full label cannot
 * be used as the alignment box. Only the text receives an
 * equal-height slot; every input follows that slot.
 */

@media (min-width: 761px) {
  .ai24-roi-field-label {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
  }

  .ai24-roi-field-label-text {
    display: flex;
    align-items: flex-end;
    min-height: 3.25em;
  }
}

@media (max-width: 760px) {
  .ai24-roi-field-label {
    min-height: 0;
  }

  .ai24-roi-field-label-text {
    display: block;
    min-height: 0;
  }
}
