/*-------------------------------------------------------------------------
Variables
-------------------------------------------------------------------------- */
/*================ The following are dependencies of csswizardry grid ================*/
/* ------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------
Mixins
--------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------
Mixins end
--------------------------------------------------------------------------- */
/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns, a fixed gutter size, and BEM classes
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid items
==============================================================================*/
/* Force clearfix on grids */
.grid::after, .grid--rev::after, .grid--full::after,
.grid-uniform::after {
  clear: both;
  content: "";
  display: table; }

/* Manual grid__item clearfix */
.grid__item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }

.grid__item {
  float: left;
  min-height: 1px;
  padding-left: 30px;
  vertical-align: top;
  width: 100%;
  /*-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;*/
  box-sizing: border-box; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.333%; }

.two-thirds {
  width: 66.666%; }

/* Quarters */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

/* Fifths */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.666%; }

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

/* Eighths */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.333%; }

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 480px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }
  /* Halves */
  .small--one-half {
    width: 50%; }
  /* Thirds */
  .small--one-third {
    width: 33.333%; }
  .small--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .small--one-quarter {
    width: 25%; }
  .small--two-quarters {
    width: 50%; }
  .small--three-quarters {
    width: 75%; }
  /* Fifths */
  .small--one-fifth {
    width: 20%; }
  .small--two-fifths {
    width: 40%; }
  .small--three-fifths {
    width: 60%; }
  .small--four-fifths {
    width: 80%; }
  /* Sixths */
  .small--one-sixth {
    width: 16.666%; }
  .small--two-sixths {
    width: 33.333%; }
  .small--three-sixths {
    width: 50%; }
  .small--four-sixths {
    width: 66.666%; }
  .small--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }
  .small--two-eighths {
    width: 25%; }
  .small--three-eighths {
    width: 37.5%; }
  .small--four-eighths {
    width: 50%; }
  .small--five-eighths {
    width: 62.5%; }
  .small--six-eighths {
    width: 75%; }
  .small--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small--one-tenth {
    width: 10%; }
  .small--two-tenths {
    width: 20%; }
  .small--three-tenths {
    width: 30%; }
  .small--four-tenths {
    width: 40%; }
  .small--five-tenths {
    width: 50%; }
  .small--six-tenths {
    width: 60%; }
  .small--seven-tenths {
    width: 70%; }
  .small--eight-tenths {
    width: 80%; }
  .small--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .small--one-twelfth {
    width: 8.333%; }
  .small--two-twelfths {
    width: 16.666%; }
  .small--three-twelfths {
    width: 25%; }
  .small--four-twelfths {
    width: 33.333%; }
  .small--five-twelfths {
    width: 41.666%; }
  .small--six-twelfths {
    width: 50%; }
  .small--seven-twelfths {
    width: 58.333%; }
  .small--eight-twelfths {
    width: 66.666%; }
  .small--nine-twelfths {
    width: 75%; }
  .small--ten-twelfths {
    width: 83.333%; }
  .small--eleven-twelfths {
    width: 91.666%; }
  .small--show {
    display: block !important; }
  .small--hide {
    display: none !important; }
  .small--text-left {
    text-align: left !important; }
  .small--text-right {
    text-align: right !important; }
  .small--text-center {
    text-align: center !important; }
  .small--left {
    float: left !important; }
  .small--right {
    float: right !important; }
  .grid-uniform .small--one-half:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }
  /* Halves */
  .medium--one-half {
    width: 50%; }
  /* Thirds */
  .medium--one-third {
    width: 33.333%; }
  .medium--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .medium--one-quarter {
    width: 25%; }
  .medium--two-quarters {
    width: 50%; }
  .medium--three-quarters {
    width: 75%; }
  /* Fifths */
  .medium--one-fifth {
    width: 20%; }
  .medium--two-fifths {
    width: 40%; }
  .medium--three-fifths {
    width: 60%; }
  .medium--four-fifths {
    width: 80%; }
  /* Sixths */
  .medium--one-sixth {
    width: 16.666%; }
  .medium--two-sixths {
    width: 33.333%; }
  .medium--three-sixths {
    width: 50%; }
  .medium--four-sixths {
    width: 66.666%; }
  .medium--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }
  .medium--two-eighths {
    width: 25%; }
  .medium--three-eighths {
    width: 37.5%; }
  .medium--four-eighths {
    width: 50%; }
  .medium--five-eighths {
    width: 62.5%; }
  .medium--six-eighths {
    width: 75%; }
  .medium--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium--one-tenth {
    width: 10%; }
  .medium--two-tenths {
    width: 20%; }
  .medium--three-tenths {
    width: 30%; }
  .medium--four-tenths {
    width: 40%; }
  .medium--five-tenths {
    width: 50%; }
  .medium--six-tenths {
    width: 60%; }
  .medium--seven-tenths {
    width: 70%; }
  .medium--eight-tenths {
    width: 80%; }
  .medium--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }
  .medium--two-twelfths {
    width: 16.666%; }
  .medium--three-twelfths {
    width: 25%; }
  .medium--four-twelfths {
    width: 33.333%; }
  .medium--five-twelfths {
    width: 41.666%; }
  .medium--six-twelfths {
    width: 50%; }
  .medium--seven-twelfths {
    width: 58.333%; }
  .medium--eight-twelfths {
    width: 66.666%; }
  .medium--nine-twelfths {
    width: 75%; }
  .medium--ten-twelfths {
    width: 83.333%; }
  .medium--eleven-twelfths {
    width: 91.666%; }
  .medium--show {
    display: block !important; }
  .medium--hide {
    display: none !important; }
  .medium--text-left {
    text-align: left !important; }
  .medium--text-right {
    text-align: right !important; }
  .medium--text-center {
    text-align: center !important; }
  .medium--left {
    float: left !important; }
  .medium--right {
    float: right !important; }
  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (max-width: 768px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }
  /* Halves */
  .medium-down--one-half {
    width: 50%; }
  /* Thirds */
  .medium-down--one-third {
    width: 33.333%; }
  .medium-down--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .medium-down--one-quarter {
    width: 25%; }
  .medium-down--two-quarters {
    width: 50%; }
  .medium-down--three-quarters {
    width: 75%; }
  /* Fifths */
  .medium-down--one-fifth {
    width: 20%; }
  .medium-down--two-fifths {
    width: 40%; }
  .medium-down--three-fifths {
    width: 60%; }
  .medium-down--four-fifths {
    width: 80%; }
  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }
  .medium-down--two-sixths {
    width: 33.333%; }
  .medium-down--three-sixths {
    width: 50%; }
  .medium-down--four-sixths {
    width: 66.666%; }
  .medium-down--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }
  .medium-down--two-eighths {
    width: 25%; }
  .medium-down--three-eighths {
    width: 37.5%; }
  .medium-down--four-eighths {
    width: 50%; }
  .medium-down--five-eighths {
    width: 62.5%; }
  .medium-down--six-eighths {
    width: 75%; }
  .medium-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }
  .medium-down--two-tenths {
    width: 20%; }
  .medium-down--three-tenths {
    width: 30%; }
  .medium-down--four-tenths {
    width: 40%; }
  .medium-down--five-tenths {
    width: 50%; }
  .medium-down--six-tenths {
    width: 60%; }
  .medium-down--seven-tenths {
    width: 70%; }
  .medium-down--eight-tenths {
    width: 80%; }
  .medium-down--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }
  .medium-down--two-twelfths {
    width: 16.666%; }
  .medium-down--three-twelfths {
    width: 25%; }
  .medium-down--four-twelfths {
    width: 33.333%; }
  .medium-down--five-twelfths {
    width: 41.666%; }
  .medium-down--six-twelfths {
    width: 50%; }
  .medium-down--seven-twelfths {
    width: 58.333%; }
  .medium-down--eight-twelfths {
    width: 66.666%; }
  .medium-down--nine-twelfths {
    width: 75%; }
  .medium-down--ten-twelfths {
    width: 83.333%; }
  .medium-down--eleven-twelfths {
    width: 91.666%; }
  .medium-down--show {
    display: block !important; }
  .medium-down--hide {
    display: none !important; }
  .medium-down--text-left {
    text-align: left !important; }
  .medium-down--text-right {
    text-align: right !important; }
  .medium-down--text-center {
    text-align: center !important; }
  .medium-down--left {
    float: left !important; }
  .medium-down--right {
    float: right !important; }
  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 769px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }
  /* Halves */
  .large--one-half {
    width: 50%; }
  /* Thirds */
  .large--one-third {
    width: 33.333%; }
  .large--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .large--one-quarter {
    width: 25%; }
  .large--two-quarters {
    width: 50%; }
  .large--three-quarters {
    width: 75%; }
  /* Fifths */
  .large--one-fifth {
    width: 20%; }
  .large--two-fifths {
    width: 40%; }
  .large--three-fifths {
    width: 60%; }
  .large--four-fifths {
    width: 80%; }
  /* Sixths */
  .large--one-sixth {
    width: 16.666%; }
  .large--two-sixths {
    width: 33.333%; }
  .large--three-sixths {
    width: 50%; }
  .large--four-sixths {
    width: 66.666%; }
  .large--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }
  .large--two-eighths {
    width: 25%; }
  .large--three-eighths {
    width: 37.5%; }
  .large--four-eighths {
    width: 50%; }
  .large--five-eighths {
    width: 62.5%; }
  .large--six-eighths {
    width: 75%; }
  .large--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .large--one-tenth {
    width: 10%; }
  .large--two-tenths {
    width: 20%; }
  .large--three-tenths {
    width: 30%; }
  .large--four-tenths {
    width: 40%; }
  .large--five-tenths {
    width: 50%; }
  .large--six-tenths {
    width: 60%; }
  .large--seven-tenths {
    width: 70%; }
  .large--eight-tenths {
    width: 80%; }
  .large--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }
  .large--two-twelfths {
    width: 16.666%; }
  .large--three-twelfths {
    width: 25%; }
  .large--four-twelfths {
    width: 33.333%; }
  .large--five-twelfths {
    width: 41.666%; }
  .large--six-twelfths {
    width: 50%; }
  .large--seven-twelfths {
    width: 58.333%; }
  .large--eight-twelfths {
    width: 66.666%; }
  .large--nine-twelfths {
    width: 75%; }
  .large--ten-twelfths {
    width: 83.333%; }
  .large--eleven-twelfths {
    width: 91.666%; }
  .large--show {
    display: block !important; }
  .large--hide {
    display: none !important; }
  .large--text-left {
    text-align: left !important; }
  .large--text-right {
    text-align: right !important; }
  .large--text-center {
    text-align: center !important; }
  .large--left {
    float: left !important; }
  .large--right {
    float: right !important; }
  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 769px) {
  /** Whole */
  .post-large--one-whole {
    width: 100%; }
  /* Halves */
  .post-large--one-half {
    width: 50%; }
  /* Thirds */
  .post-large--one-third {
    width: 33.333%; }
  .post-large--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .post-large--one-quarter {
    width: 25%; }
  .post-large--two-quarters {
    width: 50%; }
  .post-large--three-quarters {
    width: 75%; }
  /* Fifths */
  .post-large--one-fifth {
    width: 20%; }
  .post-large--two-fifths {
    width: 40%; }
  .post-large--three-fifths {
    width: 60%; }
  .post-large--four-fifths {
    width: 80%; }
  /* Sixths */
  .post-large--one-sixth {
    width: 16.666%; }
  .post-large--two-sixths {
    width: 33.333%; }
  .post-large--three-sixths {
    width: 50%; }
  .post-large--four-sixths {
    width: 66.666%; }
  .post-large--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .post-large--one-eighth {
    width: 12.5%; }
  .post-large--two-eighths {
    width: 25%; }
  .post-large--three-eighths {
    width: 37.5%; }
  .post-large--four-eighths {
    width: 50%; }
  .post-large--five-eighths {
    width: 62.5%; }
  .post-large--six-eighths {
    width: 75%; }
  .post-large--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .post-large--one-tenth {
    width: 10%; }
  .post-large--two-tenths {
    width: 20%; }
  .post-large--three-tenths {
    width: 30%; }
  .post-large--four-tenths {
    width: 40%; }
  .post-large--five-tenths {
    width: 50%; }
  .post-large--six-tenths {
    width: 60%; }
  .post-large--seven-tenths {
    width: 70%; }
  .post-large--eight-tenths {
    width: 80%; }
  .post-large--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .post-large--one-twelfth {
    width: 8.333%; }
  .post-large--two-twelfths {
    width: 16.666%; }
  .post-large--three-twelfths {
    width: 25%; }
  .post-large--four-twelfths {
    width: 33.333%; }
  .post-large--five-twelfths {
    width: 41.666%; }
  .post-large--six-twelfths {
    width: 50%; }
  .post-large--seven-twelfths {
    width: 58.333%; }
  .post-large--eight-twelfths {
    width: 66.666%; }
  .post-large--nine-twelfths {
    width: 75%; }
  .post-large--ten-twelfths {
    width: 83.333%; }
  .post-large--eleven-twelfths {
    width: 91.666%; }
  .post-large--show {
    display: block !important; }
  .post-large--hide {
    display: none !important; }
  .post-large--text-left {
    text-align: left !important; }
  .post-large--text-right {
    text-align: right !important; }
  .post-large--text-center {
    text-align: center !important; }
  .post-large--left {
    float: left !important; }
  .post-large--right {
    float: right !important; }
  .grid-uniform .post-large--one-half:nth-child(2n+1),
  .grid-uniform .post-large--one-third:nth-child(3n+1),
  .grid-uniform .post-large--one-quarter:nth-child(4n+1),
  .grid-uniform .post-large--one-fifth:nth-child(5n+1),
  .grid-uniform .post-large--one-sixth:nth-child(6n+1),
  .grid-uniform .post-large--two-sixths:nth-child(3n+1),
  .grid-uniform .post-large--three-sixths:nth-child(2n+1),
  .grid-uniform .post-large--two-eighths:nth-child(4n+1),
  .grid-uniform .post-large--four-eighths:nth-child(2n+1),
  .grid-uniform .post-large--five-tenths:nth-child(2n+1),
  .grid-uniform .post-large--one-twelfth:nth-child(12n+1),
  .grid-uniform .post-large--two-twelfths:nth-child(6n+1),
  .grid-uniform .post-large--three-twelfths:nth-child(4n+1),
  .grid-uniform .post-large--four-twelfths:nth-child(3n+1),
  .grid-uniform .post-large--six-twelfths:nth-child(2n+1) {
    clear: both; } }

/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

/* Halves */
.push--one-half {
  left: 50%; }

/* Thirds */
.push--one-third {
  left: 33.333%; }

.push--two-thirds {
  left: 66.666%; }

/* Quarters */
.push--one-quarter {
  left: 25%; }

.push--two-quarters {
  left: 50%; }

.push--three-quarters {
  left: 75%; }

/* Fifths */
.push--one-fifth {
  left: 20%; }

.push--two-fifths {
  left: 40%; }

.push--three-fifths {
  left: 60%; }

.push--four-fifths {
  left: 80%; }

/* Sixths */
.push--one-sixth {
  left: 16.666%; }

.push--two-sixths {
  left: 33.333%; }

.push--three-sixths {
  left: 50%; }

.push--four-sixths {
  left: 66.666%; }

.push--five-sixths {
  left: 83.333%; }

/* Eighths */
.push--one-eighth {
  left: 12.5%; }

.push--two-eighths {
  left: 25%; }

.push--three-eighths {
  left: 37.5%; }

.push--four-eighths {
  left: 50%; }

.push--five-eighths {
  left: 62.5%; }

.push--six-eighths {
  left: 75%; }

.push--seven-eighths {
  left: 87.5%; }

/* Tenths */
.push--one-tenth {
  left: 10%; }

.push--two-tenths {
  left: 20%; }

.push--three-tenths {
  left: 30%; }

.push--four-tenths {
  left: 40%; }

.push--five-tenths {
  left: 50%; }

.push--six-tenths {
  left: 60%; }

.push--seven-tenths {
  left: 70%; }

.push--eight-tenths {
  left: 80%; }

.push--nine-tenths {
  left: 90%; }

/* Twelfths */
.push--one-twelfth {
  left: 8.333%; }

.push--two-twelfths {
  left: 16.666%; }

.push--three-twelfths {
  left: 25%; }

.push--four-twelfths {
  left: 33.333%; }

.push--five-twelfths {
  left: 41.666%; }

.push--six-twelfths {
  left: 50%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eight-twelfths {
  left: 66.666%; }

.push--nine-twelfths {
  left: 75%; }

.push--ten-twelfths {
  left: 83.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium--one-half {
    left: 50%; }
  /* Thirds */
  .push--medium--one-third {
    left: 33.333%; }
  .push--medium--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--medium--one-quarter {
    left: 25%; }
  .push--medium--two-quarters {
    left: 50%; }
  .push--medium--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--medium--one-fifth {
    left: 20%; }
  .push--medium--two-fifths {
    left: 40%; }
  .push--medium--three-fifths {
    left: 60%; }
  .push--medium--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--medium--one-sixth {
    left: 16.666%; }
  .push--medium--two-sixths {
    left: 33.333%; }
  .push--medium--three-sixths {
    left: 50%; }
  .push--medium--four-sixths {
    left: 66.666%; }
  .push--medium--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }
  .push--medium--two-eighths {
    left: 25%; }
  .push--medium--three-eighths {
    left: 37.5%; }
  .push--medium--four-eighths {
    left: 50%; }
  .push--medium--five-eighths {
    left: 62.5%; }
  .push--medium--six-eighths {
    left: 75%; }
  .push--medium--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }
  .push--medium--two-tenths {
    left: 20%; }
  .push--medium--three-tenths {
    left: 30%; }
  .push--medium--four-tenths {
    left: 40%; }
  .push--medium--five-tenths {
    left: 50%; }
  .push--medium--six-tenths {
    left: 60%; }
  .push--medium--seven-tenths {
    left: 70%; }
  .push--medium--eight-tenths {
    left: 80%; }
  .push--medium--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }
  .push--medium--two-twelfths {
    left: 16.666%; }
  .push--medium--three-twelfths {
    left: 25%; }
  .push--medium--four-twelfths {
    left: 33.333%; }
  .push--medium--five-twelfths {
    left: 41.666%; }
  .push--medium--six-twelfths {
    left: 50%; }
  .push--medium--seven-twelfths {
    left: 58.333%; }
  .push--medium--eight-twelfths {
    left: 66.666%; }
  .push--medium--nine-twelfths {
    left: 75%; }
  .push--medium--ten-twelfths {
    left: 83.333%; }
  .push--medium--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (max-width: 768px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium-down--one-half {
    left: 50%; }
  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }
  .push--medium-down--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--medium-down--one-quarter {
    left: 25%; }
  .push--medium-down--two-quarters {
    left: 50%; }
  .push--medium-down--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--medium-down--one-fifth {
    left: 20%; }
  .push--medium-down--two-fifths {
    left: 40%; }
  .push--medium-down--three-fifths {
    left: 60%; }
  .push--medium-down--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }
  .push--medium-down--two-sixths {
    left: 33.333%; }
  .push--medium-down--three-sixths {
    left: 50%; }
  .push--medium-down--four-sixths {
    left: 66.666%; }
  .push--medium-down--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }
  .push--medium-down--two-eighths {
    left: 25%; }
  .push--medium-down--three-eighths {
    left: 37.5%; }
  .push--medium-down--four-eighths {
    left: 50%; }
  .push--medium-down--five-eighths {
    left: 62.5%; }
  .push--medium-down--six-eighths {
    left: 75%; }
  .push--medium-down--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }
  .push--medium-down--two-tenths {
    left: 20%; }
  .push--medium-down--three-tenths {
    left: 30%; }
  .push--medium-down--four-tenths {
    left: 40%; }
  .push--medium-down--five-tenths {
    left: 50%; }
  .push--medium-down--six-tenths {
    left: 60%; }
  .push--medium-down--seven-tenths {
    left: 70%; }
  .push--medium-down--eight-tenths {
    left: 80%; }
  .push--medium-down--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }
  .push--medium-down--two-twelfths {
    left: 16.666%; }
  .push--medium-down--three-twelfths {
    left: 25%; }
  .push--medium-down--four-twelfths {
    left: 33.333%; }
  .push--medium-down--five-twelfths {
    left: 41.666%; }
  .push--medium-down--six-twelfths {
    left: 50%; }
  .push--medium-down--seven-twelfths {
    left: 58.333%; }
  .push--medium-down--eight-twelfths {
    left: 66.666%; }
  .push--medium-down--nine-twelfths {
    left: 75%; }
  .push--medium-down--ten-twelfths {
    left: 83.333%; }
  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (min-width: 769px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }
  /* Halves */
  .push--large--one-half {
    left: 50%; }
  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }
  .push--large--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--large--one-quarter {
    left: 25%; }
  .push--large--two-quarters {
    left: 50%; }
  .push--large--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--large--one-fifth {
    left: 20%; }
  .push--large--two-fifths {
    left: 40%; }
  .push--large--three-fifths {
    left: 60%; }
  .push--large--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }
  .push--large--two-sixths {
    left: 33.333%; }
  .push--large--three-sixths {
    left: 50%; }
  .push--large--four-sixths {
    left: 66.666%; }
  .push--large--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }
  .push--large--two-eighths {
    left: 25%; }
  .push--large--three-eighths {
    left: 37.5%; }
  .push--large--four-eighths {
    left: 50%; }
  .push--large--five-eighths {
    left: 62.5%; }
  .push--large--six-eighths {
    left: 75%; }
  .push--large--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }
  .push--large--two-tenths {
    left: 20%; }
  .push--large--three-tenths {
    left: 30%; }
  .push--large--four-tenths {
    left: 40%; }
  .push--large--five-tenths {
    left: 50%; }
  .push--large--six-tenths {
    left: 60%; }
  .push--large--seven-tenths {
    left: 70%; }
  .push--large--eight-tenths {
    left: 80%; }
  .push--large--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }
  .push--large--two-twelfths {
    left: 16.666%; }
  .push--large--three-twelfths {
    left: 25%; }
  .push--large--four-twelfths {
    left: 33.333%; }
  .push--large--five-twelfths {
    left: 41.666%; }
  .push--large--six-twelfths {
    left: 50%; }
  .push--large--seven-twelfths {
    left: 58.333%; }
  .push--large--eight-twelfths {
    left: 66.666%; }
  .push--large--nine-twelfths {
    left: 75%; }
  .push--large--ten-twelfths {
    left: 83.333%; }
  .push--large--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (min-width: 769px) {
  /* Whole */
  .push--post-large--one-whole {
    left: 100%; }
  /* Halves */
  .push--post-large--one-half {
    left: 50%; }
  /* Thirds */
  .push--post-large--one-third {
    left: 33.333%; }
  .push--post-large--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--post-large--one-quarter {
    left: 25%; }
  .push--post-large--two-quarters {
    left: 50%; }
  .push--post-large--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--post-large--one-fifth {
    left: 20%; }
  .push--post-large--two-fifths {
    left: 40%; }
  .push--post-large--three-fifths {
    left: 60%; }
  .push--post-large--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--post-large--one-sixth {
    left: 16.666%; }
  .push--post-large--two-sixths {
    left: 33.333%; }
  .push--post-large--three-sixths {
    left: 50%; }
  .push--post-large--four-sixths {
    left: 66.666%; }
  .push--post-large--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--post-large--one-eighth {
    left: 12.5%; }
  .push--post-large--two-eighths {
    left: 25%; }
  .push--post-large--three-eighths {
    left: 37.5%; }
  .push--post-large--four-eighths {
    left: 50%; }
  .push--post-large--five-eighths {
    left: 62.5%; }
  .push--post-large--six-eighths {
    left: 75%; }
  .push--post-large--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--post-large--one-tenth {
    left: 10%; }
  .push--post-large--two-tenths {
    left: 20%; }
  .push--post-large--three-tenths {
    left: 30%; }
  .push--post-large--four-tenths {
    left: 40%; }
  .push--post-large--five-tenths {
    left: 50%; }
  .push--post-large--six-tenths {
    left: 60%; }
  .push--post-large--seven-tenths {
    left: 70%; }
  .push--post-large--eight-tenths {
    left: 80%; }
  .push--post-large--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--post-large--one-twelfth {
    left: 8.333%; }
  .push--post-large--two-twelfths {
    left: 16.666%; }
  .push--post-large--three-twelfths {
    left: 25%; }
  .push--post-large--four-twelfths {
    left: 33.333%; }
  .push--post-large--five-twelfths {
    left: 41.666%; }
  .push--post-large--six-twelfths {
    left: 50%; }
  .push--post-large--seven-twelfths {
    left: 58.333%; }
  .push--post-large--eight-twelfths {
    left: 66.666%; }
  .push--post-large--nine-twelfths {
    left: 75%; }
  .push--post-large--ten-twelfths {
    left: 83.333%; }
  .push--post-large--eleven-twelfths {
    left: 91.666%; } }

/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*================ Partials | Helper Classes ================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: "";
    display: table;
    clear: both; }

.display-table {
  display: table;
  table-layout: fixed;
  width: 100%; }

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }

@media screen and (min-width: 769px) {
  .post-large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }
  .post-large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }

.visually-hidden {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?aiq2d");
  src: url("../fonts/icomoon.eot?aiq2d#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?aiq2d") format("truetype"), url("../fonts/icomoon.woff?aiq2d") format("woff"), url("../fonts/icomoon.svg?aiq2d#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-close3:before {
  content: "\e903"; }

.icon-logo-en:before {
  content: "\e900"; }

.icon-close:before {
  content: "\e901"; }

.icon-close2:before {
  content: "\e902"; }

.gradient {
  background-image: linear-gradient(to bottom, #FF00D0, #FDE54B 50%); }

.bg-stars {
  background: url(../images/bg-panel.jpg) no-repeat center center;
  background-size: cover; }

.icon {
  color: white; }

.draggable {
  position: relative;
  margin-bottom: 1em; }
  @media screen and (min-width: 768px) {
    .draggable {
      position: absolute;
      width: auto;
      margin-bottom: 0; } }

main {
  transform-style: preserve-3d;
  height: 100vh;
  padding: 0 1em; }
  @media screen and (min-width: 768px) {
    main {
      padding: 0; } }

#drag-me::before {
  content: "#" attr(id);
  font-weight: bold; }

.shadow {
  box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.5); }

* {
  margin: 0; }

html {
  height: 100%; }

#sequence-large-window {
  display: none; }

#sequence-windows-burst {
  display: none; }

.html-desktop {
  overflow: hidden; }
  .html-desktop body {
    overflow: hidden; }
  .html-desktop #sequence-windows-burst {
    overflow: hidden; }

html {
  min-height: 100%;
  position: relative; }

body {
  background: black;
  background-size: cover;
  font-family: 'VT323', monospace;
  font-size: 24px;
  color: #064782;
  margin: 0;
  padding: 0;
  max-width: 100vw; }

nav {
  text-transform: uppercase; }
  nav a {
    transition: color .25s ease;
    pointer-events: auto; }
  nav.color-switch a {
    color: rgba(255, 255, 255, 0.8); }

nav.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0; }
  nav.mobile-nav .icon-taz {
    font-size: 3em;
    color: white;
    margin-top: 1em; }
  nav.mobile-nav ul {
    height: 100vh;
    width: 100vw;
    flex-direction: column; }
    nav.mobile-nav ul li {
      width: 100%;
      text-align: center;
      display: flex;
      justify-content: center;
      justify-content: center;
      border-bottom: 1px solid; }
      nav.mobile-nav ul li a:hover {
        border: none; }

#social-bar {
  width: 100%; }

#sequence-intro {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

#sequence-intro video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%;
  min-height: 100%;
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  align-items: center; }
  header nav ul li {
    flex-grow: 1; }
    header nav ul li a {
      padding-top: 2em; }

header nav a {
  text-decoration: none; }

header.pinned {
  pointer-events: none; }
  header.pinned ul li {
    pointer-events: auto; }

a {
  text-decoration: none;
  color: #064782; }

big {
  font-weight: 200;
  display: block; }
  big a {
    color: white !important; }

h1, h2, h3, h4 {
  text-transform: uppercase;
  font-weight: 100;
  color: #2C1729; }

h1, h2 {
  line-height: .75em; }
  @media screen and (min-width: 768px) {
    h1, h2 {
      font-size: 80px; } }

p {
  letter-spacing: .05em;
  line-height: 2em; }

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }

dl {
  margin: 0; }

dt {
  font-weight: 600;
  margin: 0; }

dd {
  margin: 0; }

img {
  width: 100%;
  display: block; }

.center-me {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center; }

.pos-rel {
  position: relative; }

.wrapper {
  position: relative;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px; }
  .wrapper::after {
    clear: both;
    content: "";
    display: table; }

.svg-wrapper svg {
  width: 100%;
  height: auto; }

.mobile-menu-icon-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  font-size: 2em;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
  z-index: 9999; }

#mobile-nav-close-btn {
  display: none;
  color: white; }

/* Footer elements */
.modal .modal-trigger {
  margin-top: 22px; }

.modal-trigger {
  display: inline-block;
  padding: 0 !important; }
  .modal-trigger:hover {
    border-bottom: 2px solid; }
  .modal-trigger .icon-email-envelope-outline {
    padding-left: 1em; }

.modal-fade-screen {
  text-align: center !important; }
  .modal-fade-screen h2 {
    margin-bottom: 1em; }
  .modal-fade-screen p {
    line-height: 1.5em;
    font-size: 16px;
    margin-bottom: 1em; }
  .modal-fade-screen input {
    width: 50%;
    margin-right: 2em; }

.social, .social-top {
  display: inline-block;
  margin-bottom: 2rem !important; }
  @media screen and (min-width: 768px) {
    .social, .social-top {
      margin-bottom: 0rem !important; } }
  .social ul li, .social-top ul li {
    font-size: 1.5em;
    float: left;
    margin-right: 15px; }

.social-top {
  margin-top: 22px; }

.copyright {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
  margin-right: 0rem !important;
  margin-left: 0rem !important;
  font-size: .75em; }

.share-wrapper {
  display: flex;
  justify-content: center;
  align-items: top;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important; }
  .share-wrapper .fb-wrapper, .share-wrapper .twitter-wrapper {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .share-wrapper .fb-wrapper {
    margin-top: -1px; }

.list-4col {
  columns: auto auto;
  margin-bottom: 8rem !important; }
  @media screen and (min-width: 768px) {
    .list-4col {
      columns: 4 3rem; } }

.slideshow {
  position: relative;
  padding-bottom: 70%; }

.no-flick {
  backface-visibility: hidden;
  perspective: 1000; }

/* specifics */
.en-window .icon-close, .en-window .icon-logo-en {
  margin: 60px 20px; }
  @media screen and (min-width: 768px) {
    .en-window .icon-close, .en-window .icon-logo-en {
      margin: 20px; } }

.en-window .icon-close {
  font-size: 33px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer; }

.text-window, .text-window-extended {
  height: 0;
  width: 100%;
  padding-bottom: 100%; }
  .text-window h1, .text-window-extended h1 {
    font-size: 1em;
    display: block;
    padding: 2%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.text-window-extended .bit-widget {
  text-align: left; }

.text-window-extended .bit-nav-bar-container {
  text-align: center; }

.text-window-extended .bit-button {
  font-weight: 100 !important;
  letter-spacing: 1; }

.text-window-extended .bit-wrapper {
  display: none; }

.show-dates {
  height: auto;
  padding-bottom: 0; }
  .show-dates h1 {
    display: none; }
  .show-dates .bit-wrapper {
    display: block; }

.animation-window {
  width: 100%; }

.video-window {
  width: 100%; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

.video-wrapper object,
.video-wrapper embed, .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.large-window {
  width: calc(100vw - 2em);
  height: calc(100vh - 2em);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .large-window::after {
    clear: both;
    content: "";
    display: table; }
  .large-window footer {
    position: absolute;
    bottom: 0px;
    width: 100%; }
    .large-window footer div {
      margin: auto;
      margin-bottom: 60px; }
  @media screen and (min-width: 768px) {
    .large-window {
      width: 80vw;
      height: 80vh; } }

#logo-en {
  font-size: 38px; }
  @media screen and (min-width: 768px) {
    #logo-en {
      font-size: 4em; } }

#big-msg {
  cursor: pointer; }
  #big-msg svg .st0 {
    fill: #EC2227; }
  #big-msg svg .st1 {
    fill: #4998D3; }
  #big-msg svg .st2 {
    fill: url(#SVGID_1_); }
  #big-msg svg .st3 {
    fill: url(#SVGID_2_); }
  #big-msg svg .st4 {
    fill: #563111; }
  #big-msg.blink .st0 {
    fill: #4998D3; }
  #big-msg.blink .st1 {
    fill: #EC2227; }

.menu-bar {
  z-index: 99999999;
  position: absolute;
  width: 100%;
  bottom: 0;
  table-layout: fixed;
  display: table;
  transform: translate3d(0, 0, 999999px); }
  .menu-bar .menu-bar-item {
    box-shadow: 0px -3px 5px 0 rgba(0, 0, 0, 0.5);
    background-color: white;
    display: table-cell;
    padding: 5px;
    cursor: pointer;
    max-width: 50%; }
    .menu-bar .menu-bar-item .inner {
      background: linear-gradient(to right, #666666, #bbbbbb);
      font-size: 18px;
      color: white;
      padding: 5px 10px;
      height: 20px;
      overflow: hidden;
      white-space: nowrap; }
      .menu-bar .menu-bar-item .inner .icon-close3 {
        display: none; }
    .menu-bar .menu-bar-item:hover .inner {
      background: linear-gradient(to right, #888888, #dddddd); }

.big-svg-wrapper {
  width: 95%; }
  @media screen and (min-width: 768px) {
    .big-svg-wrapper {
      width: 70%; } }

.msg-svg-wrapper {
  width: 95%; }
  @media screen and (min-width: 768px) {
    .msg-svg-wrapper {
      width: 60%; } }

.pre-order-links {
  text-align: center;
  padding: 5px 0; }
  .pre-order-links a, .pre-order-links a:visited {
    float: left;
    border: 2px solid #064782;
    display: block;
    padding: 5px 0;
    width: calc(50% - 7px); }
    .pre-order-links a:hover, .pre-order-links a:visited:hover {
      background: #064782;
      color: white; }
    .pre-order-links a.pre-order, .pre-order-links a:visited.pre-order {
      margin-right: 6px; }
  .pre-order-links .clear {
    clear: both;
    height: 0;
    overflow: hidden; }

/* Window sizes based on PSD doc */
.window-os {
  width: 100%;
  background-color: white;
  border: 5px white solid;
  box-sizing: border-box;
  cursor: move; }
  .window-os header {
    background: linear-gradient(to right, #666666, #bbbbbb);
    color: white;
    font-size: 18px;
    padding: 5px 5px 5px 10px;
    height: 20px; }
    .window-os header span {
      display: inline-block;
      width: 20px;
      height: 20px;
      color: white;
      position: absolute;
      right: 5px;
      top: 5px;
      font-size: 20px;
      text-shadow: 1px 1px 1px #000;
      cursor: pointer; }
  .window-os.closed {
    display: none; }
  .window-os h1 {
    width: 100%; }

body.desktop .window-os {
  top: 35%;
  left: 40%; }

/* Everyting Now gif animation window*/
@media screen and (min-width: 768px) {
  .win1 {
    width: 500px; } }

/* Official srore window */
.win2 {
  height: auto; }
  @media screen and (min-width: 768px) {
    .win2 {
      width: 400px; } }

/* Live Dates */
@media screen and (min-width: 768px) {
  .win3 {
    width: 499px; } }

/* Album Pre-Order */
.win4 {
  height: auto; }
  @media screen and (min-width: 768px) {
    .win4 {
      width: 500px; } }

/* Video window */
@media screen and (min-width: 768px) {
  .win5 {
    width: 640px; } }

/* Single */
@media screen and (min-width: 768px) {
  .win6 {
    width: 250px; } }

body > iframe {
  position: absolute; }

#beachball {
  width: 30px;
  height: 30px;
  background: url("../images/mac-spinner.gif") center center no-repeat;
  background-size: cover;
  position: absolute;
  display: none;
  z-index: 99999999; }

.press-page {
  overflow: auto; }

.press-page body {
  overflow: auto; }

#sequence-intro video {
  position: fixed; }

.press {
  z-index: 99;
  position: relative;
  max-width: 920px;
  margin: 2rem auto;
  background: white;
  padding: 2rem 1rem;
  line-height: 1.5rem; }
  .press h1 {
    color: #064782;
    font-size: 48px;
    line-height: 2rem;
    margin: 0 1rem; }
    .press h1 svg {
      height: 6rem;
      width: 100%;
      fill: #064782; }
  .press > p {
    text-align: center;
    line-height: 1.75rem;
    font-size: 1.5rem;
    margin: 0.5rem 1rem;
    font-family: Poppins;
    font-weight: 600;
    letter-spacing: 0; }
  .press p.powered {
    font-size: 12px;
    font-family: sans-serif;
    letter-spacing: 0;
    color: #999;
    margin: 0 1rem 0.5rem; }
  .press .press-content {
    display: flex; }
  .press a.footer {
    display: block;
    width: 100%;
    height: 2rem;
    text-align: center;
    margin: 0.5rem 0 0; }
    .press a.footer svg {
      width: 100%;
      height: 2rem;
      display: block;
      fill: #999; }
  .press .reviews, .press .news {
    width: 50%;
    padding: 1.5rem 0; }
    .press .reviews h2, .press .news h2 {
      font-size: 2rem;
      font-weight: 600;
      color: #064782;
      margin: 0 1rem 2rem;
      font-family: Poppins;
      letter-spacing: 0;
      text-transform: initial;
      padding: 0 0 1rem;
      border-bottom: 4px solid #064782; }
    .press .reviews ul, .press .news ul {
      display: flex;
      flex-wrap: wrap; }
      .press .reviews ul li, .press .news ul li {
        width: 50%;
        padding: 0 1rem 2rem;
        box-sizing: border-box; }
        .press .reviews ul li a, .press .news ul li a {
          display: block;
          font-family: 'Open Sans', sans-serif; }
          .press .reviews ul li a > span, .press .news ul li a > span {
            padding: 62.5% 0 0;
            display: block;
            height: 0;
            overflow: hidden;
            position: relative; }
          .press .reviews ul li a img, .press .news ul li a img {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
          .press .reviews ul li a h3, .press .news ul li a h3 {
            font-size: 1rem;
            line-height: 1.25rem;
            color: #000;
            margin: 0.5rem 0 0em;
            text-transform: initial;
            font-family: 'Open Sans', sans-serif;
            font-weight: 400;
            display: inline;
            border-bottom: 1px solid transparent; }
          .press .reviews ul li a p, .press .news ul li a p {
            color: black;
            font-size: 0.75rem;
            font-weight: 700;
            line-height: 1rem;
            letter-spacing: 0;
            margin: 0.5rem 0;
            color: black; }
            .press .reviews ul li a p .sponsored, .press .news ul li a p .sponsored {
              font-weight: 400;
              font-size: 0.625rem;
              text-transform: uppercase; }
          .press .reviews ul li a:hover h3, .press .news ul li a:hover h3 {
            color: #064782;
            border-color: #064782; }
  .press .reviews {
    padding-left: 1rem; }
  .press .news {
    padding-right: 1rem;
    border: 0 solid #ccc;
    border-right-width: 1px; }
  @media (max-width: 768px) {
    .press {
      margin: 0;
      padding-left: 0.5rem;
      padding-right: 0.5rem; }
      .press .press-content {
        display: block; }
      .press .news, .press .reviews {
        border: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0; }
        .press .news h2, .press .reviews h2 {
          text-align: center;
          margin-left: 0.5rem;
          margin-right: 0.5rem; }
        .press .news ul li, .press .reviews ul li {
          padding-left: 0.5rem;
          padding-right: 0.5rem; } }
