* {
  box-sizing: border-box;
}

/** mixins **/
/**
 * breakpoints
 **/
/**
 * layout
 */
/**
 * views
 */
/**
 * colors
 */
/**
 * z-order
 **/
/**
 * transition times
 */
/**
 * stuff
 */
/**
 * 100: Ultra Light
 * 200: Thin
 * 300: Light
 * 400: Regular
 * 500: Semi Bold
 * 600: Bold
 * 700: Extra Bold
 * 800: Heavy
 * 900: Ultra Heavy
 */
/**
 * FONT SIZE MIXINS
 **/
/**
 * FONT STYLE MIXINS
 */
.force-repaint {
  -webkit-animation: repaint 2000ms;
          animation: repaint 2000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes repaint {
  from {
    width: 99.999%;
  }
  to {
    width: 100%;
  }
}

@keyframes repaint {
  from {
    width: 99.999%;
  }
  to {
    width: 100%;
  }
}

BODY.layout--livemode {
  visibility: visible;
  opacity: 1;
}


/*# sourceMappingURL=tndr.main.css.map*/