//*
//* FORM
//*

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  // margin: 15px 0;

  &__button {
    margin-bottom: 8px;

    &:last-child {
      margin-bottom: 0;
    }

    .mat-radio-label-content,
    .mat-checkbox-layout .mat-checkbox-label {
      white-space: normal;
      line-height: 18px;
    }
  }

  &__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
    display: inline-block;
  }

  &--horizontal {
    flex-direction: row;
    flex-wrap: wrap;

    .radio-group__button,
    .checkbox-group__button {
      margin: 2px 16px 2px 0;
    }
  }
}
