/*------------------------------------*\
    # BOX SIZING
\*------------------------------------*/

/**
 * The Onesport codebase is designed to use a `border-box` box-sizing,
 * as such as set this globally on all elements
 *
 * http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}
