/* ------------------------------------ *\
  #FULL-BLEED MIXIN
\* ------------------------------------ */

/**
  * Inspired by https://css-tricks.com/full-width-containers-limited-width-parents/
  */

@mixin full-bleed(){
  width: 100%; //fallback if vw not supported.
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}