// ============================================================================
// :: checkbox
// ============================================================================
/**
 * Scope defined especially for the visual representation of a checkbox
 */

// ============================================================================
// :: Root
// ============================================================================
.s-checkbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  .a-checkbox {
    margin-bottom: 1.4rem;

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