.form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid $gray7;

  &-is-last{
    border-bottom: none;
  }

  &-radio-group{
    display: flex;
    flex-direction: column;
    &-item{
      display: flex;
      flex-direction: row;
      margin-top: 10px;
      margin-bottom: 10px;
      align-items: center;
      input[type='radio'] {
        margin-right: 5px;
      }
    }

  }

  &-label-group {
    flex-grow: 0;
    flex-shrink: 1;
    width: 50%;
    &-is-compact{
      width: inherit;
      margin-right: 20px;
    }
    &-is-quarter {
      width: 25%;
    }
    label.mini-label{
      font-weight:bold;
      text-transform: uppercase;
      font-size:12px;
    }
  }
  &-label {
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
  }
  &-description {
    font-size: 13px;
    line-height: 18px;
    color: $gray4;
    margin-top: 10px;
    padding-right: 20px;
  }
  &-input-group {
    flex-grow: 1;
    width: 50%;
    &-is-compact{
      width: inherit;
    }
  }
  &-text-input {
    width: 100%;
  }

}
