// ============================================================================
// :: Radio
// ============================================================================
/**
 * Scope defined especially for the visual representation of a radio button
 */

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

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

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