/* critical:start */
/**
 * Fonts

 Can be used in conjunction with mixin:
 @include font($arial, 14px, #b4da55, bold, 1.75); // $font-family-var, font-size, color, font-weight, line-height
 */
/* Colours */
/* Gradients */
/* Font weights */
/* Backgrounds and gradients */
/*
 * This is a sass map of breakpoints for the mobile score bar. As breakpoints are subject to change, this should make changing them hassle-free.
 */
/*
 * As we have a nested map, we use the function below to pick a value from the nested map
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*-------------[MIXINS]-------------*/
/*
 * centered
 * center a block element
 */
/*
 * cf
 * clearfix, for elements with floated children
 */
/*
 * clean-list
 * make lists look like they aren't lists
 */
/*
 * Font Face

@include font-face("source-sans-pro", "/fonts/source-sans-pro/source-sans-pro-regular");
@include font-face("source-sans-pro", "/fonts/source-sans-pro/source-sans-pro-bold", bold);
@include font-face("source-sans-pro", "/fonts/source-sans-pro/source-sans-pro-italic", normal, italic);
 */
/*
 * Fonts & related attrs

 @include font($helvetica, 20px, #b4da55, 400, 1.25);
 */
/*
 * converts the Photoshop kerning value to an em value
 */
/*
 * middle
 * vertically or horizontally align content
 */
/*
 * Apply CSS to input placeholders

input {
    width: 300px;

    @include placeholder {
        color: red;
    }
}
 */
/*
 * Responsive Text
 * For when you want your text to scale with the viewport width
 * all arguments take a pixel value
 * $min-width: the minimum viewport width you want your text to start scaling
 * $max-width: the maximum viewport width you want your text to stop scaling
 * $min-size: the minimum font-size to start scaling with
 * $max-size: the maximum font-size to finish scaling with
 *
 * In the exmaple below, the font-size will be 15px at 400px viewport width
 * and it will scale up to 30px at 800px viewport width

.body-text {
    @include responsive-text(400px, 800px, 15px, 30px);
}
 */
/*
 * makes a CSS triangle

@include triangle(12px, gray, down);
@include triangle(12px 6px, gray lavender, up-left);
 */
/*-------------[FUNCTIONS]-------------*/
/*
 * returns pixel font size in rem
 */
/*
 * DEPRECATED - use rem() function above
 * when using em's, when dividing by the base font size, it multiplies it based on its parent, rather than the base font size
 * This function is therefore not quite correct.
 * Left it in for legacy sites, but needs to be phased our
 * returns pixel font size in em
 */
/**
 * Helper styles
 * e.g. .centered { margin-right: auto; margin-left: auto; }
 */
.position--relative {
  position: relative;
}

.position--absolute {
  position: absolute;
}

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

.centered {
  margin-right: auto;
  margin-left: auto;
}

/* Vertically centre something within an element by using this hack */
.display--table {
  display: table;
}

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

/*
 * add .img--full to the img parent
 * it will be full width for non-admins
 * normal width for admins, so the crop tool isn't broken
 */
.img--full > img {
  display: block;
  width: 100%;
  height: auto;
}

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

html {
  font: 1em/1.5 "macho", sans-serif;
  overflow-y: scroll;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  height: 100%;
  height: 100vh;
}

body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6,
ul, ol, dl, blockquote,
p, address, table, fieldset,
figure, pre {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

ul, ol, dd {
  margin-left: 48px;
  margin-left: 3rem;
}

img,
svg {
  vertical-align: top;
}

/* Patterns */
/**
 * Helper styles
 * e.g. .centered { margin-right: auto; margin-left: auto; }
 */
.hide {
  display: none;
}

/**
 * Custom fonts
 * @font-face declarations in here
 */
/*doc
---
title: Headings
name: headings
category: Headings
---

## Here is a heading about headings

```
<h1 class="-alpha">Page title</h1>
<h2 class="-beta">A h2 Subtitle</h2>
<h3 class="-beta">A h3 Subtitle at the same size</h3>
<h4 class="-gamma">A h4 Subtitle at a larger size size</h3>
<p class="-beta">A paragraph could pick up these styles too</p>
```

You'll notice that even though the h2 and h3 are different in the hierarchy, they still appear the same as -beta defines its size, not the element itself.

The reason we have &.bold utility classes commented out is because sometimes custom fonts have different weights (e.g. bold, semibold) that our designers use for emphasis.
.bold has been added to hybrid in /patterns/_helpers.scss as font-weight: bold; but that can be overridden using these classes.

*/
/* critical:end */
/* critical:start */
.btn {
  font-family: "fatfrank", Impact, sans-serif;
  font-weight: 400;
  height: 80px;
  line-height: 65px;
  text-align: center;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
  text-decoration: none;
  font-size: 1.25rem;
  width: 250px;
  transition: opacity 0.3s, z-index 0.3s step-end, -webkit-transform 0.3s;
  transition: opacity 0.3s, z-index 0.3s step-end, transform 0.3s;
  transition: opacity 0.3s, z-index 0.3s step-end, transform 0.3s, -webkit-transform 0.3s;
  z-index: 1;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

@media (max-width: 900px), (max-height: 800px) {
  .btn {
    width: 155px;
    height: 48px;
    line-height: 38px;
  }
}

@media (max-width: 400px), (max-height: 400px) {
  .btn {
    width: 130px;
    height: 38px;
    line-height: 28px;
    font-size: 0.875rem;
  }
}

.btn[disabled] {
  opacity: .3;
}

.btn.-hide {
  display: none;
}

.btn.-show {
  opacity: 1;
  z-index: 2;
  transition: opacity 0.3s, z-index 0.3s step-start;
}

.btn.-striped-shadow:before, .btn.-striped-shadow:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  transition: max-height 0.3s, width 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, max-height 0.3s, width 0.3s;
  transition: transform 0.3s, max-height 0.3s, width 0.3s, -webkit-transform 0.3s;
}

@media (max-width: 500px), (max-height: 500px) {
  .btn.-striped-shadow:before, .btn.-striped-shadow:after {
    display: none;
  }
}

.btn.-striped-shadow:before {
  width: 8px;
  max-height: calc(100% - 5px);
  height: 100%;
  left: -12px;
  bottom: -5px;
  background-size: 8px 15px;
  background-repeat: repeat-y;
  background-position: 0 100%;
}

@media (max-width: 600px), (max-height: 600px) {
  .btn.-striped-shadow:before {
    max-height: calc(100% - 2px);
  }
}

.btn.-striped-shadow:after {
  width: calc(100% + 4px);
  height: 8px;
  left: -9px;
  bottom: -9px;
  background-size: 15px 8px;
  background-repeat: repeat-x;
}

@media (max-width: 600px), (max-height: 600px) {
  .btn.-striped-shadow:after {
    width: calc(100% + 8px);
    bottom: -12px;
    left: -11px;
  }
}

.btn.-striped-shadow span {
  display: block;
  position: relative;
  z-index: 2;
  border: 5px solid;
}

.btn.-striped-shadow:hover {
  -webkit-transform: translate(-12px, 12px);
      -ms-transform: translate(-12px, 12px);
          transform: translate(-12px, 12px);
}

@media (max-width: 400px), (max-height: 400px) {
  .btn.-striped-shadow:hover {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    opacity: .7;
  }
}

.btn.-striped-shadow:hover:before, .btn.-striped-shadow:hover:after {
  -webkit-transform: translate(12px, -12px);
      -ms-transform: translate(12px, -12px);
          transform: translate(12px, -12px);
}

.btn.-striped-shadow:hover:before {
  max-height: calc(100% - 10px);
}

.btn.-striped-shadow:hover:after {
  width: calc(100% - 4px);
}

.btn.-striped-shadow.-white {
  color: #fff;
}

.btn.-striped-shadow.-white:before, .btn.-striped-shadow.-white:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #fff 5px, #fff 10px, transparent 10px);
}

.btn.-striped-shadow.-white span {
  border-color: #fff;
  background: #77bfa1;
}

/* critical:end */
.btn.-striped-shadow.-anchor {
  padding: 3px 0 0;
}

@media (max-width: 800px), (max-height: 800px) {
  .btn.-striped-shadow.-anchor {
    padding: 0;
  }
}

.btn.-striped-shadow.-dark-green {
  color: #77bfa1;
}

.btn.-striped-shadow.-dark-green:before, .btn.-striped-shadow.-dark-green:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #77bfa1 5px, #77bfa1 10px, transparent 10px);
}

.btn.-striped-shadow.-dark-green span {
  border-color: #77bfa1;
  background: #fff;
}

.btn.-striped-shadow.-republican {
  color: #fff;
}

.btn.-striped-shadow.-republican:before, .btn.-striped-shadow.-republican:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #fff 5px, #fff 10px, transparent 10px);
}

.btn.-striped-shadow.-republican span {
  border-color: #fff;
  background: #dc214c;
}

.btn.-striped-shadow.-democrat {
  color: #fff;
}

.btn.-striped-shadow.-democrat:before, .btn.-striped-shadow.-democrat:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #fff 5px, #fff 10px, transparent 10px);
}

.btn.-striped-shadow.-democrat span {
  border-color: #fff;
  background: #353e67;
}

.btn.-striped-shadow.-replay {
  color: #fff;
}

.btn.-striped-shadow.-replay.-democrat:before, .btn.-striped-shadow.-replay.-democrat:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #353e67 5px, #353e67 10px, transparent 10px);
}

.btn.-striped-shadow.-replay.-democrat span {
  background-color: #353e67;
  border-color: #353e67;
}

.btn.-striped-shadow.-replay.-republican:before, .btn.-striped-shadow.-replay.-republican:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #e0254a 5px, #e0254a 10px, transparent 10px);
}

.btn.-striped-shadow.-replay.-republican span {
  background-color: #e0254a;
  border-color: #e0254a;
}

.btn.-striped-shadow.-facebook {
  color: #fff;
}

.btn.-striped-shadow.-facebook.-democrat:before, .btn.-striped-shadow.-facebook.-democrat:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #3a589e 5px, #3a589e 10px, transparent 10px);
}

.btn.-striped-shadow.-facebook.-democrat span {
  background-color: #3a589e;
  border-color: #3a589e;
}

.btn.-striped-shadow.-facebook.-republican:before, .btn.-striped-shadow.-facebook.-republican:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #600e22 5px, #600e22 10px, transparent 10px);
}

.btn.-striped-shadow.-facebook.-republican span {
  background-color: #600e22;
  border-color: #600e22;
}

.btn.-striped-shadow.-twitter {
  color: #fff;
}

.btn.-striped-shadow.-twitter.-democrat:before, .btn.-striped-shadow.-twitter.-democrat:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #00ade9 5px, #00ade9 10px, transparent 10px);
}

.btn.-striped-shadow.-twitter.-democrat span {
  background-color: #00ade9;
  border-color: #00ade9;
}

.btn.-striped-shadow.-twitter.-republican:before, .btn.-striped-shadow.-twitter.-republican:after {
  background-image: linear-gradient(135deg, transparent 0, transparent 5px, #7f1634 5px, #7f1634 10px, transparent 10px);
}

.btn.-striped-shadow.-twitter.-republican span {
  background-color: #7f1634;
  border-color: #7f1634;
}

.btn.-next {
  position: relative;
  bottom: auto;
  left: auto;
  display: inline-block;
  height: 46px;
  color: #fff;
  background-color: #6eb195;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 46px;
  padding: 0;
  font-size: 1.125rem;
  padding-right: 46px;
}

.btn.-next:hover::after {
  color: #fff;
  background-color: #6eb195;
  padding-left: 10px;
}

.btn.-next::after {
  content: '>';
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 46px;
  height: 46px;
  color: #6eb195;
  line-height: 42px;
  font-size: 46px;
  background-color: #fff;
  float: right;
  right: 0;
  transition: .2s ease-in-out;
}

.btn.-next.-stop-clicks {
  pointer-events: none;
}

.btn.-next.-republican {
  background-color: #b4364c;
}

.btn.-next.-republican:hover::after {
  background-color: #b4364c;
  color: #fff;
}

.btn.-next.-republican::after {
  color: #b4364c;
}

.btn.-next.-democrat {
  background-color: #338bd3;
}

.btn.-next.-democrat:hover::after {
  background-color: #338bd3;
  color: #fff;
}

.btn.-next.-democrat::after {
  color: #338bd3;
}

@media (max-height: 700px) {
  .btn.-next {
    margin-top: 40vh;
  }
}

@media (max-width: 1150px) {
  .btn.-next {
    position: fixed;
    bottom: 46px;
    left: 0;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 500px) {
  .btn.-next {
    position: fixed;
    bottom: 46px;
    left: 0;
    width: 100%;
    margin: 0;
  }
}

.flex-rows {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}

@media (max-height: 720px) {
  .flex-rows {
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
                -ms-grid-row-align: flex-end;
            align-items: flex-end;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    margin-top: 7vh;
  }
}

/* Components */
/* critical:start */
/**
 * Nav specific stuff
 * Note: despite indentation, these are *not* nested & shouldn't be
 */
.footer-social {
  margin-bottom: 0;
  margin-left: 0;
  position: relative;
}

.footer-social > li {
  list-style: none;
}

.footer-social__item {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 0;
}

.footer-social__item.-facebook {
  right: -46px;
}

.footer-social__item.-twitter {
  right: -92px;
}

.footer-social__link {
  width: 46px;
  height: 46px;
  display: block;
  text-decoration: none;
  position: relative;
}

.footer-social__link:hover.-facebook {
  background-color: #6cbae8;
}

.footer-social__link:hover.-twitter {
  background-color: #cf4b61;
}

.footer-social__link:hover.-twitter::before {
  border-bottom-color: #cf4b61;
}

.footer-social__link:hover.-twitter::after {
  border-top-color: #cf4b61;
}

.footer-social__link.-facebook {
  background-color: #4dabe3;
}

.footer-social__link.-twitter {
  background-color: #ca374f;
}

.footer-social__link.-twitter::before, .footer-social__link.-twitter::after {
  content: '';
  display: block;
  left: 100%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(202, 55, 79, 0);
  border-width: 23px;
  margin-left: -23px;
}

.footer-social__link.-twitter::before {
  bottom: 0;
  border-bottom-color: #ca374f;
}

.footer-social__link.-twitter::after {
  top: 0;
  border-top-color: #ca374f;
}

.footer-social__link svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* critical:end */
/* Top-level site structure */
/**
 * Site Wide elements
 * e.g. .site-section, .site-container
 *
 * Header & Footer in /ui/_header.scss and /ui/_footer.scss
 */
/* critical:start */
body {
  font-family: "macho", sans-serif;
  font-weight: 500;
  color: #fff;
  overflow: hidden;
  background: #fff;
}

button {
  border: 0;
  padding: 0;
}

button:focus {
  outline: none;
}

.body {
  width: 100%;
  height: 100vh;
  position: relative;
}

.body.-started {
  padding: 0;
}

.body.-started::before {
  border-width: 0;
}

.body.-started .intro {
  -webkit-transform: translateX(120vw) translateY(-50%);
      -ms-transform: translateX(120vw) translateY(-50%);
          transform: translateX(120vw) translateY(-50%);
}

.body.-started .mob-score-bar,
.body.-started .mob-state-votes-bar {
  display: none;
}

@media (max-width: 1150px) {
  .body.-started .mob-score-bar,
  .body.-started .mob-state-votes-bar {
    display: block;
  }
}

@media (max-width: 900px), (max-height: 768px) {
  .body.-started .mob-score-bar {
    height: 75px;
  }
}

@media (max-width: 500px), (max-height: 600px) {
  .body.-started .mob-score-bar {
    height: 50px;
  }
}

@media (max-width: 900px), (max-height: 768px) {
  .body.-started .mob-state-votes-bar {
    top: 75px;
  }
}

@media (max-width: 500px), (max-height: 600px) {
  .body.-started .mob-state-votes-bar {
    display: none;
  }
}

.body.-started .mob-total-votes-bar {
  display: none;
}

@media (max-width: 1150px) {
  .body.-started .mob-total-votes-bar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 900px), (max-height: 768px) {
  .body.-started .mob-total-votes-bar {
    top: 109px;
  }
}

@media (max-width: 500px), (max-height: 600px) {
  .body.-started .mob-total-votes-bar {
    top: 50px;
  }
}

.body.-started .background:after {
  opacity: 0;
}

@media (max-width: 1150px) {
  .body.-started .toggle-btn {
    display: block;
  }
}

.body.-animation .container.-dark-green {
  background-color: #353e67;
}

.body.-end .mob-score-bar,
.body.-end .mob-state-votes-bar,
.body.-end .mob-total-votes-bar {
  display: none;
}

.background {
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  background-color: #77bfa1;
  transition: background-color .5s, -webkit-transform .6s;
  transition: background-color .5s, transform .6s;
  transition: background-color .5s, transform .6s, -webkit-transform .6s;
  -webkit-transform: translateX(-70%);
      -ms-transform: translateX(-70%);
          transform: translateX(-70%);
}

.-started .background {
  -webkit-transform: translateX(25%);
      -ms-transform: translateX(25%);
          transform: translateX(25%);
}

@media (max-width: 1150px) {
  .-started .background {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.background::after {
  content: '';
  display: block;
  width: 500px;
  background-color: #77bfa1;
  right: 0;
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-4deg);
      -ms-transform: skewX(-4deg);
          transform: skewX(-4deg);
  transition: opacity 0s 0.3s;
}

@media (max-width: 1150px) {
  .background::after {
    content: none;
  }
}

.background.-democrat::after, .background.-democrat {
  background-color: #353e67;
}

.background.-republican::after, .background.-republican {
  background-color: #dc214c;
}

@media (max-width: 1150px) {
  .background {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.trump-intro {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: #7bc9e6;
  z-index: 0;
}

.trump-intro svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(15%, 15%);
      -ms-transform: translate(15%, 15%);
          transform: translate(15%, 15%);
}

/* critical:end */
.game-speed-buttons {
  text-align: center;
  position: relative;
}

.game-speed-buttons:after {
  content: '';
  display: table;
  clear: both;
}

.logo {
  transition: all .6s ease-in-out;
}

.logo.-mobile {
  margin: 25px auto;
  display: none;
}

@media (max-width: 1150px) {
  .logo.-mobile {
    display: block;
  }
}

@media (max-width: 1150px) {
  .logo.-show {
    pointer-events: all;
    opacity: 1;
  }
}

.toggle-btn {
  display: none;
  position: absolute;
  bottom: 0;
  z-index: 2;
  color: #fff;
  background: #dc214c;
  font-weight: bolder;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  height: 25px;
  text-decoration: none;
  line-height: 25px;
  transition: .3s ease-in-out;
}

.toggle-btn:hover {
  background: #991735;
}

@media (max-width: 475px) {
  .toggle-btn {
    display: block;
  }
}

.end-test {
  color: #fff;
  position: absolute;
  bottom: 80px;
  z-index: 100;
}

.end-test.-republican {
  right: 40px;
}

.end-test.-republican span {
  background-color: #dc214c;
}

.end-test.-democrat {
  right: 195px;
}

.end-test.-democrat span {
  background-color: #353e67;
}

.end-test span {
  border-color: #fff;
}

.overlay {
  background-color: rgba(110, 177, 149, 0.95);
  width: 100%;
  height: 100vh;
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
}

.throbber {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}

.throbber::after {
  content: '';
  display: block;
  border-right: 3px solid #fff;
  border-left: 3px solid #fff;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-animation: throbber 1s linear infinite;
          animation: throbber 1s linear infinite;
}

@-webkit-keyframes throbber {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  60% {
    -webkit-transform: rotate(45deg) scale(1.2);
            transform: rotate(45deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

@keyframes throbber {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  60% {
    -webkit-transform: rotate(45deg) scale(1.2);
            transform: rotate(45deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

.sw-notification {
  position: absolute;
  z-index: 9;
  bottom: 16px;
  padding-top: 10px;
  left: 60px;
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  opacity: 0;
  transition: opacity .3s;
}

.sw-notification a,
.sw-notification span {
  display: block;
  color: #333;
  text-decoration: none;
}

.sw-notification svg {
  fill: #888;
  margin-right: 4px;
}

.sw-notification.-visible {
  opacity: 1;
}

.sw-notification:not(.-visible) {
  pointer-events: none;
}

@media (max-width: 1150px) {
  .sw-notification {
    display: none;
  }
}

.device-orientation-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: none;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/landscape-warning.png?v2303a21a50c16f3d64e350bc457a63ac");
  background-color: #5cc29f;
}

@media (max-width: 700px) and (max-height: 450px) and (orientation: landscape) {
  .device-orientation-message {
    display: block;
  }
}

/* critical:start */
.app-footer {
  width: 100vw;
  height: 46px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
  box-shadow: -60px 0 13px 2px rgba(0, 0, 0, 0.15);
}

.app-footer.-blur {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.app-footer .app-footer__inner {
  width: calc(100% - 140px);
  height: 46px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 5;
}

@media (max-width: 600px) {
  .app-footer .app-footer__inner {
    width: calc(100% - 92px);
  }
}

.toggle-btn {
  display: none;
  position: absolute;
  left: 46px;
  width: auto;
  min-width: 134px;
  height: 100%;
  padding: 0 1.5em;
  color: #77bfa1;
  background: #f0f8f5;
  font-weight: bolder;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 46px;
  transition: .3s ease-in-out;
  border-right: 1px solid #eee;
}

.toggle-btn:hover {
  color: #4b9f7c;
  background-color: #cee8dd;
}

.toggle-btn.-reversed {
  color: #fff;
  background-color: #77bfa1;
  border-right: 0;
}

.toggle-btn.-reversed:hover {
  background: #4b9f7c;
}

@media (max-width: 600px) {
  .toggle-btn {
    padding: 0 1em;
  }
}

@media (max-width: 345px) {
  .toggle-btn {
    font-size: 0.8125rem;
  }
}

@media (max-width: 300px) {
  .toggle-btn {
    width: calc(100% - 46px);
  }
}

.app-footer__logo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 93px;
  height: 15px;
  right: 15px;
  background-image: url("../img/svg/markup/parallax-logo.svg?v798e92a52d54dbfb188bdc96dfc2ddb6");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

@media (max-width: 426px) {
  .app-footer__logo {
    width: 11px;
    background-image: url("../img/svg/markup/parallax-logo-mini.svg?va5f1e7c048162b99490e0da3e1ff0414");
  }
}

@media (max-width: 300px) {
  .app-footer__logo {
    visibility: hidden;
  }
}

/* critical:end */
.post-game {
  width: 70%;
  height: 100vh;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  padding: 10px 10px 15vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media (max-width: 1150px) {
  .post-game {
    width: 100%;
  }
}

@media (max-height: 600px) {
  .post-game {
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
  }
}

@media (max-height: 600px) {
  .post-game {
    padding: 10vh 10px 20px;
  }
}

@media (max-height: 600px) and (max-width: 500px) {
  .post-game {
    padding-top: 3vh;
  }
}

.post-game .heading {
  font-size: 4.5rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
}

@media (max-width: 900px), (max-height: 700px) {
  .post-game .heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px), (max-height: 600px) {
  .post-game .heading {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

.post-game .subheading {
  font-size: 2rem;
  margin-bottom: 10px;
}

@media (max-width: 900px), (max-height: 900px) {
  .post-game .subheading {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px), (max-height: 600px) {
  .post-game .subheading {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 420px) {
  .post-game .subheading {
    font-size: 0.8125rem;
  }
}

.post-game .textbody {
  font-size: 1.25rem;
  margin: 40px auto;
}

@media (max-width: 900px), (max-height: 900px) {
  .post-game .textbody {
    font-size: 1rem;
    margin: 20px auto;
  }
}

@media (max-width: 600px), (max-height: 600px) {
  .post-game .textbody {
    font-size: 0.875rem;
    margin: 0;
  }
}

@media (max-width: 420px) {
  .post-game .textbody {
    font-size: 0.75rem;
  }
}

.post-game__inner {
  /* display: block;
        position: relative;
        height: auto;
        width: 100%;
        transform: translateX(-10%); */
  margin-bottom: 10vh;
}

.post-game__inner__header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.postgame__star {
  max-width: 25px;
  max-height: 35px;
  margin: 25px;
  padding-top: 10px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 900px), (max-height: 900px) {
  .postgame__star {
    margin: 10px;
  }
}

@media (max-width: 600px), (max-height: 600px) {
  .postgame__star {
    display: none;
  }
}

.postgame__star--fill.-democrat {
  fill: #353e67;
}

.postgame__star--fill.-republican {
  fill: #e23b52;
}

.post-game__button-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-game__button-container .btn:nth-child(1) {
  margin: 0 30px 0 0;
}

@media (max-width: 1250px) {
  .post-game__button-container .btn:nth-child(1) {
    margin: 0 20px 0 0;
  }
}

@media (max-width: 600px) {
  .post-game__button-container .btn:nth-child(1) {
    width: 100%;
    margin: 0 0 20px;
  }
}

@media (max-width: 500px) {
  .post-game__button-container .btn:nth-child(1) {
    margin: 0 0 10px;
  }
}

.post-game__button-container .btn:nth-child(2) {
  margin: 0;
}

@media (max-width: 600px) {
  .post-game__button-container .btn:nth-child(2) {
    margin: 0 5px 0 0;
  }
}

.post-game__button-container .btn:nth-child(3) {
  margin: 0 0 0 30px;
}

@media (max-width: 1250px) {
  .post-game__button-container .btn:nth-child(3) {
    margin: 0 0 0 20px;
  }
}

@media (max-width: 600px) {
  .post-game__button-container .btn:nth-child(3) {
    margin: 0 0 0 5px;
  }
}

.social {
  padding-left: 10px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.social svg {
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
}

@media (max-width: 600px), (max-height: 600px) {
  .social svg {
    -webkit-transform: scale(1) translateY(5px);
        -ms-transform: scale(1) translateY(5px);
            transform: scale(1) translateY(5px);
  }
}

.trump-outro {
  width: 75%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.trump-outro.-republican .trump-outro__inner.-republican,
.trump-outro.-democrat .trump-outro__inner.-democrat {
  opacity: 1;
  left: auto;
  right: 0;
}

.trump-outro svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, calc(-50% + 10vh));
      -ms-transform: translate(-50%, calc(-50% + 10vh));
          transform: translate(-50%, calc(-50% + 10vh));
}

@media screen and (max-aspect-ratio: 1 / 1) {
  .trump-outro svg {
    width: 100vh;
  }
}

@media (max-width: 1150px) {
  .trump-outro {
    width: 100%;
  }
}

.trump-outro__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -99999px;
  opacity: 0;
}

.trump-outro__inner.-republican {
  background: linear-gradient(to bottom, #8e0e27 0%, #8e0e27 50%, #6c656f 51%, #6c656f 100%);
}

.trump-outro__inner.-democrat {
  background: linear-gradient(to bottom, #338bd3 0%, #338bd3 50%, #5cc29f 51%, #5cc29f 100%);
}

/* critical:start */
.intro {
  width: 30%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity .3s;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}

@media (max-width: 1150px) {
  .intro {
    width: 100%;
  }
}

.-started .intro {
  opacity: 0;
}

.intro .logo {
  margin-bottom: 85px;
}

@media (max-width: 475px) {
  .intro .logo {
    margin-bottom: 5vh;
  }
}

.intro .donkey-elephant {
  margin-bottom: 30px;
}

@media (max-width: 475px) {
  .intro .donkey-elephant {
    margin-bottom: 5vh;
  }
}

.intro p {
  font-weight: 500;
  font-size: 1rem;
  margin: 0 auto 4vh;
  max-width: 90%;
}

@media (max-width: 600px) {
  .intro p {
    max-width: 100%;
  }
}

.intro__inner {
  z-index: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 46px;
  left: 0;
  max-width: 550px;
  margin: auto;
  padding: 0 10px 0 20px;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
}

@media (max-width: 1150px) {
  .intro__inner {
    padding: 50px 30px;
  }
}

@media (max-width: 600px) {
  .intro__inner {
    padding: 20px 12px;
  }
}

.intro__logo {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto 40px;
}

.intro__logo__inner {
  width: 100%;
  height: 0;
}

.intro__logo__inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}

.intro__logo.-main {
  max-width: 300px;
}

.intro__logo.-main .intro__logo__inner {
  padding-top: 100%;
}

.intro__logo.-main .intro__logo__inner::after {
  background-image: url("../img/svg/markup/trump_logo.svg?v76cdb50c8028ca1fc44a55a080251c29");
}

.intro__logo.-party {
  max-width: 350px;
}

.intro__logo.-party .intro__logo__inner {
  padding-top: 37.333333%;
}

.intro__logo.-party .intro__logo__inner::after {
  background-image: url("../img/svg/markup/party_logos.svg?v2ceb06e8dc3d5551d516e59d33546403");
}

@media (max-width: 900px) {
  .intro__logo.-party {
    max-width: 225px;
  }
}

@media (max-width: 600px), (max-height: 800px) {
  .intro__logo.-party {
    max-width: 175px;
  }
}

@media (max-width: 600px) and (max-height: 600px), (max-height: 800px) and (max-height: 600px) {
  .intro__logo.-party {
    max-width: 125px;
  }
}

@media (max-width: 600px) {
  .intro__logo {
    margin-bottom: 20px;
  }
}

@media (max-height: 700px) {
  .intro__logo {
    margin: 0 auto 20px;
  }
  .intro__logo.-main .intro__logo__inner {
    padding-top: 15.333333%;
  }
  .intro__logo.-main .intro__logo__inner::after {
    background-image: url("../img/svg/markup/logo-inline.svg?v362e0224fe33faa2f33f7e553769b77b");
  }
}

/* critical:end */
.info-box {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-130%);
      -ms-transform: translateX(-130%);
          transform: translateX(-130%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  height: calc(100vh - 46px);
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #fff;
  text-align: center;
}

@media (min-width: 1150px) {
  .info-box {
    transition: all .6s;
  }
}

.info-box::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100vh 100px 0 0;
  border-color: #fff transparent transparent;
}

@media (max-width: 1150px) {
  .info-box::after {
    content: none;
  }
}

.info-box.-blur {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.info-box.-show {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  z-index: 3;
  padding: 20px;
  padding-right: 0;
}

@media (max-height: 720px) {
  .info-box.-show {
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-height: 720px) and (max-width: 1150px) {
  .info-box.-show {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media (max-width: 600px) {
  .info-box.-show {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.info-box.-show_mob {
  opacity: 1;
  pointer-events: all;
  z-index: 4;
}

.info-box .info-box__logo {
  position: relative;
  display: block;
  width: 300px;
  height: auto;
  margin: 0 auto;
}

.info-box .info-box__logo .info-box__logo-inner {
  width: 100%;
  height: 0;
  padding-top: 56.2130178%;
  -webkit-transform: translateX(9%);
      -ms-transform: translateX(9%);
          transform: translateX(9%);
}

.info-box .info-box__logo .info-box__logo-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/svg/markup/trump_logo_horizontal.svg?ve627fa181f53b19fc7e11a73823f4ae1") center center no-repeat;
  background-size: contain;
}

@media (max-width: 1250px) {
  .info-box .info-box__logo .info-box__logo-inner {
    -webkit-transform: translateX(9%);
        -ms-transform: translateX(9%);
            transform: translateX(9%);
  }
}

@media (max-width: 1200px) {
  .info-box .info-box__logo .info-box__logo-inner {
    -webkit-transform: translateX(8%);
        -ms-transform: translateX(8%);
            transform: translateX(8%);
  }
}

@media (max-width: 1150px) {
  .info-box .info-box__logo .info-box__logo-inner {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

@media (max-height: 976px) {
  .info-box .info-box__logo .info-box__logo-inner {
    padding-top: 16.279069767%;
  }
  .info-box .info-box__logo .info-box__logo-inner:after {
    background-image: url("../img/svg/markup/logo-inline.svg?v362e0224fe33faa2f33f7e553769b77b");
  }
}

@media (max-width: 320px) {
  .info-box .info-box__logo {
    width: 93.75%;
  }
}

@media (max-width: 1150px) {
  .info-box {
    height: calc(100vh - 46px);
    z-index: 2;
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 1150px) and (max-height: 800px) {
  .info-box {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 500px) {
  .info-box {
    padding-left: 0;
  }
}

.info-box__details {
  display: inline-block;
  max-width: 300px;
  min-width: 200px;
  color: #77bfa1;
  font-family: "fatfrank", Impact, sans-serif;
  text-transform: uppercase;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateX(4%);
      -ms-transform: translateX(4%);
          transform: translateX(4%);
}

@media (max-width: 1150px), (max-height: 720px) {
  .info-box__details {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.info-box__votes-heading {
  width: 50px;
}

.info-box__state-heading {
  padding-right: 8px;
  width: calc(100% - 50px);
  text-align: right;
}

.info-box__state-heading,
.info-box__votes-heading {
  display: inline-block;
  vertical-align: top;
  height: 34px;
  background-color: #ccc;
  color: #fff;
  line-height: 34px;
  font-size: 0.875rem;
}

@media (max-width: 950px) {
  .info-box__state-heading,
  .info-box__votes-heading {
    font-size: 0.75rem;
  }
}

.info-box__state-names {
  width: 100%;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #77bfa1;
}

.info-box__state-names:after {
  content: '';
  display: table;
  clear: both;
}

.info-box__state-names.-mobile-bar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 900px), (max-height: 768px) {
  .info-box__state-names.-mobile-bar {
    font-size: 1rem;
  }
}

.info-box__state-names.-mobile-bar .info-box__state-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
}

@media (max-width: 950px) {
  .info-box__state-names.-mobile-bar .info-box__state-row {
    font-size: 0.875rem;
  }
}

@media (max-width: 770px) {
  .info-box__state-names.-mobile-bar .info-box__state-row {
    font-size: 0.75rem;
  }
}

.info-box__state-names.-mobile-bar .info-box__state {
  position: relative;
  width: auto;
  padding-right: 10px;
  color: #77bfa1;
  text-align: right;
}

.info-box__state-names.-mobile-bar .info-box__state::after {
  content: ':';
  position: absolute;
  right: 5px;
  bottom: 2px;
}

.info-box__state-names.-mobile-bar .info-box__state-votes {
  width: auto;
  text-align: left;
}

.info-box__state-names dt,
.info-box__state-names dd {
  display: inline-block;
  vertical-align: top;
  line-height: 34px;
}

.info-box__state-row {
  display: block;
  width: 100%;
}

.info-box__state-row:nth-child(even) {
  background: #fff;
}

.info-box__state-row:nth-child(odd) {
  background: #f4f3f3;
}

.info-box__state {
  width: calc(100% - 50px);
  height: 34px;
  line-height: 1;
  padding-right: 8px;
  text-align: right;
}

.info-box__state-votes {
  display: inline-block;
  width: 50px;
  height: 34px;
  margin-left: 0;
}

.info-box__state-votes.-total {
  background-color: #77bfa1;
  color: #fff;
  line-height: 34px;
}

.info-box__total-title {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 50px);
  height: 34px;
  padding-right: 8px;
  padding-left: 8px;
  background-color: #77bfa1;
  color: #fff;
  text-align: right;
  font-size: 1.125rem;
  line-height: 34px;
  text-transform: uppercase;
}

.states-map {
  width: 300px;
  height: 186px;
  display: inline-block;
  opacity: 0;
  z-index: -1;
  transition: all 1s;
  transition: opacity .3s, z-index .3s step-end;
}

.states-map.-show {
  opacity: 1;
  z-index: 1;
  transition: opacity .3s, z-index .3s step-start;
}

@media (max-height: 720px) {
  .states-map.-show {
    margin-top: 7vh;
  }
}

@media (max-height: 560px) {
  .states-map.-show {
    margin-top: 4vh;
  }
}

@media (max-height: 520px) {
  .states-map.-show {
    margin-top: 7vh;
  }
}

@media (max-height: 480px) {
  .states-map.-show {
    margin-top: 5vh;
  }
}

@media (max-height: 460px) {
  .states-map.-show {
    margin-top: 2vh;
  }
}

@media (max-height: 440px) {
  .states-map.-show {
    display: none;
  }
}

.states-map.-minify svg {
  -webkit-transform: scale(0.31283) translateX(7%);
      -ms-transform: scale(0.31283) translateX(7%);
          transform: scale(0.31283) translateX(7%);
}

@media (max-height: 520px) {
  .states-map.-minify svg {
    -webkit-transform: scale(0.2) translateX(40%);
        -ms-transform: scale(0.2) translateX(40%);
            transform: scale(0.2) translateX(40%);
  }
}

@media (max-width: 1650px) {
  .states-map.-minify svg {
    -webkit-transform: scale(0.31283) translateX(9%);
        -ms-transform: scale(0.31283) translateX(9%);
            transform: scale(0.31283) translateX(9%);
  }
}

@media (max-width: 1650px) and (max-height: 520px) {
  .states-map.-minify svg {
    -webkit-transform: scale(0.2) translateX(40%);
        -ms-transform: scale(0.2) translateX(40%);
            transform: scale(0.2) translateX(40%);
  }
}

@media (max-width: 1150px) {
  .states-map.-minify svg {
    -webkit-transform: scale(0.31283) translateX(2%);
        -ms-transform: scale(0.31283) translateX(2%);
            transform: scale(0.31283) translateX(2%);
  }
}

@media (max-width: 1150px) and (max-height: 520px) {
  .states-map.-minify svg {
    -webkit-transform: scale(0.2) translateX(29%);
        -ms-transform: scale(0.2) translateX(29%);
            transform: scale(0.2) translateX(29%);
  }
}

.states-map svg {
  width: 959px;
  height: 593px;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  top: 0;
  left: 0;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
}

.states-map svg path {
  transition: fill .3s;
}

.states-map-tooltip {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -9999px;
  background-color: #fff;
  padding: 5px 10px;
  color: #000;
  white-space: nowrap;
  -webkit-transform: translate(-50%, -150%);
      -ms-transform: translate(-50%, -150%);
          transform: translate(-50%, -150%);
  border-radius: 4px;
  box-shadow: 0 3px 0 0 #ccc;
}

.question-answers {
  width: 75%;
  height: calc(100% - 46px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  z-index: -1;
  transition: opacity .5s, z-index .5s, -webkit-filter .5s step-end;
  transition: opacity .5s, z-index .5s, filter .5s step-end;
  transition: opacity .5s, z-index .5s, filter .5s step-end, -webkit-filter .5s step-end;
}

.question-answers.-blur {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.question-answers.-show {
  opacity: 1;
  z-index: 3;
  transition: height .5s, opacity .5s, z-index .5s step-start;
}

@media (max-width: 1150px) {
  .question-answers {
    top: auto;
    bottom: 46px;
    width: 100%;
    height: calc(100vh - 214px);
    -webkit-align-items: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
  }
}

@media (max-width: 1150px) and (max-width: 900px), (max-width: 1150px) and (max-height: 768px) {
  .question-answers {
    height: calc(100vh - 189px);
  }
}

@media (max-width: 1150px) and (max-width: 500px), (max-width: 1150px) and (max-height: 600px) {
  .question-answers {
    height: calc(100vh - 130px);
  }
}

.question-answers.-show_mob {
  opacity: 1;
  pointer-events: all;
}

.question-answers__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 2.666667% 0 6.666667%;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.question-answers__inner.-overflow-align {
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.question-answers__inner.-overflow-align .question-answers__speech-bubble {
  margin-top: 1em;
}

@media (max-width: 1500px) {
  .question-answers__inner {
    padding: 0 2.666667% 0 9.333338%;
  }
}

@media (max-width: 1150px) {
  .question-answers__inner {
    padding: 0 5%;
  }
}

@media (max-width: 700px) {
  .question-answers__inner {
    padding: 0 2%;
  }
}

@media (max-width: 500px) {
  .question-answers__inner {
    padding: 0;
  }
}

.question-answers__question-container {
  position: relative;
  width: 100%;
  padding: 0 5px;
  text-align: center;
}

.question-answers__speech-bubble {
  display: inline-block;
  width: auto;
  max-width: 90%;
  background-color: #6eb195;
  border-radius: .666666em;
  line-height: 1.5;
  text-align: center;
  position: relative;
  padding: 1em 1em 50px;
  margin: 0 auto 1.4em;
  font-size: 1.875rem;
  transition: opacity .5s, left .5s .5s;
}

@media (max-width: 800px) {
  .question-answers__speech-bubble {
    padding-bottom: 40px;
  }
}

.question-answers__speech-bubble::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  top: 99%;
  left: 60%;
  border: solid transparent;
  pointer-events: none;
  border-color: transparent;
  border-left-color: #6eb195;
  border-width: .85em;
  margin-top: -.85em;
  -webkit-transform-origin: 0 70%;
      -ms-transform-origin: 0 70%;
          transform-origin: 0 70%;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  z-index: -1;
}

.question-answers__speech-bubble.-democrat {
  background-color: #338bd3;
}

.question-answers__speech-bubble.-democrat:after {
  border-color: #338bd3;
}

.question-answers__speech-bubble.-republican {
  background-color: #b4364c;
}

.question-answers__speech-bubble.-republican:after {
  border-color: #b4364c;
}

.question-answers__speech-bubble.-show {
  opacity: 1;
  left: 0;
  transition: opacity .5s .5s, left .5s;
}

@media (max-width: 1150px), (max-height: 900px) {
  .question-answers__speech-bubble {
    font-size: 1.5625rem;
  }
}

@media (max-width: 900px), (max-height: 700px) {
  .question-answers__speech-bubble {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px), (max-height: 500px) {
  .question-answers__speech-bubble {
    font-size: 1rem;
  }
}

@media (max-width: 475px) {
  .question-answers__speech-bubble {
    max-width: 600px;
    font-size: 0.875rem;
  }
}

.question-answers__question {
  display: inline-block;
  margin-bottom: 0;
  font-size: inherit;
}

.question-answers__question:before, .question-answers__question::after {
  opacity: .5;
  content: '"';
}

.question-answers__question.-speech-started:before {
  opacity: 1;
}

.question-answers__question.-speech-ended::after {
  opacity: 1;
}

.question-answers__prefix {
  font-size: inherit;
  margin-right: 5px;
}

.question-answers__credit {
  position: absolute;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
  left: -99999px;
  opacity: 0;
  transition: opacity .25s, left .25s .25s;
}

@media (max-width: 800px) {
  .question-answers__credit {
    font-size: 0.6875rem;
  }
}

.question-answers__credit.-show {
  opacity: 1;
  left: 15px;
  transition: opacity .25s .25s, left .25s;
}

.question-answers__replay-audio {
  display: block;
  position: absolute;
  bottom: 18px;
  background-color: transparent;
  border: 0;
  right: -99999px;
  opacity: 0;
  transition: opacity .25s, left .25s .25s;
  width: 24px;
  height: 28px;
}

@media (max-width: 800px) {
  .question-answers__replay-audio {
    width: 15px;
  }
}

.question-answers__replay-audio.-show {
  opacity: .4;
  right: 18px;
  transition: opacity .25s .25s, left .25s;
}

.question-answers__replay-audio.-show:hover {
  opacity: .8;
  transition: opacity .01s;
}

.question-answers__replay-audio.-always-hide {
  display: none !important;
}

.question-answers__replay-audio svg {
  display: block;
  width: 100%;
  height: auto;
}

.question__answer-replace {
  opacity: .5;
}

.question-answers__prefix,
.question-answers__question {
  display: inline;
}

.question__word {
  opacity: .5;
  outline: 0;
}

.question__word:focus {
  outline: 0;
}

.question__word.-answer {
  opacity: 0;
}

.question__word.-answer.-show {
  opacity: .5;
}

.question__word.-spoken {
  opacity: 1 !important;
}

.question-answers__switcher {
  position: relative;
}

.question-answers__answers {
  width: 100%;
  height: 0;
  opacity: 0;
  transition: opacity .5s, left .5s .5s;
  pointer-events: none;
}

.question-answers__answers.-show {
  left: 0;
  height: auto;
  opacity: 1;
  transition: opacity .5s .5s, left .5s;
  pointer-events: auto;
}

@media (max-width: 1150px) {
  .question-answers__answers {
    overflow: auto;
    position: relative;
    display: block;
    width: 100%;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.question-answers__question-result {
  display: none;
  width: 75%;
  height: 0;
  margin: 0 auto;
  position: relative;
  text-align: center;
  opacity: 0;
  transition: opacity .5s, left .5s .5s;
}

.question-answers__question-result.-show {
  display: block;
  height: auto;
  opacity: 1;
  transition: opacity .5s .5s, left .5s;
}

@media (max-height: 700px) {
  .question-answers__question-result.-show {
    min-height: 40vh;
  }
}

.question-answers__answer-indication {
  width: 157px;
  height: 130px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -99999px;
  opacity: 0;
  transition: opacity .5s, left .5s .5s;
  display: none;
}

@media (max-width: 550px) {
  .question-answers__answer-indication {
    width: 90px;
    height: auto;
    top: 80%;
  }
}

@media (max-height: 700px) {
  .question-answers__answer-indication {
    display: block;
  }
}

.question-answers__answer-indication.-show {
  opacity: 1;
  transition: opacity .5s .5s, left .5s;
}

.question-answers__answer-indication.-show.-democrat {
  left: 5%;
}

@media (max-height: 700px) {
  .question-answers__answer-indication.-show.-democrat {
    left: -10%;
  }
}

.question-answers__answer-indication.-show.-republican {
  left: auto;
  right: 5%;
}

@media (max-height: 700px) {
  .question-answers__answer-indication.-show.-republican {
    right: -10%;
  }
}

.question-answers__answer-indication svg,
.question-answers__answer-indication img {
  display: block;
  width: auto;
  height: 100%;
}

.question-answers__trump-sprite {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30vh;
  max-width: 350px;
  height: 100%;
  top: -20vh;
  display: none;
}

.question-answers__trump-sprite.-show {
  display: block;
}

.question-answers__trump-sprite svg {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.question-answers__trump-sprite .trump-scoreboard-svg {
  display: none;
}

.question-answers__trump-sprite.-normal .trump-scoreboard-svg.-normal,
.question-answers__trump-sprite.-shrug .trump-scoreboard-svg.-shrug,
.question-answers__trump-sprite.-smug .trump-scoreboard-svg.-smug,
.question-answers__trump-sprite.-yay .trump-scoreboard-svg.-yay {
  display: block;
}

@media (max-width: 500px) {
  .question-answers__trump-sprite {
    max-width: 250px;
  }
}

@media (max-height: 700px) {
  .question-answers__trump-sprite {
    top: 0;
  }
}

.answer {
  width: 33.3333333%;
  padding: 0 .625em 1.25em;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  counter-increment: answer;
  position: relative;
}

.answer:hover .answer__inner {
  background-color: #d9ece5;
}

.answer:hover .answer__inner::before {
  color: #fff;
}

.answer:hover .answer__inner::after {
  background-color: #fff;
}

.answer.-disabled {
  cursor: default;
  pointer-events: none;
  opacity: .4;
}

.answer.-disabled .answer__inner {
  background-color: #efefef;
}

.answer.-disabled .answer__text {
  color: #ccc;
}

.answer.-selected .answer__inner {
  background-color: #fffe96;
}

.answer.-selected .answer__inner::before {
  color: #d7d482;
}

.answer.-selected .answer__inner::after {
  background-color: #d7d482;
}

.answer.-selected .answer__text {
  color: #000;
}

@media (max-width: 550px) {
  .answer.-long .answer__text {
    font-size: 0.75rem;
  }
}

@media (max-width: 700px) {
  .answer {
    width: 50%;
    padding-bottom: 10px;
  }
  .answer:nth-child(odd) {
    padding-left: 10px;
    padding-right: 5px;
  }
  .answer:nth-child(even) {
    padding-left: 5px;
    padding-right: 10px;
  }
}

@media (max-width: 700px) and (max-height: 700px) {
  .answer {
    width: 33.333333%;
    padding: 0 0 5px;
  }
  .answer:nth-child(3n+1) {
    padding-left: 5px;
    padding-right: 2.5px;
  }
  .answer:nth-child(3n+2) {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .answer:nth-child(3n+3) {
    padding-left: 2.5px;
    padding-right: 5px;
  }
}

@media (max-width: 420px) {
  .answer {
    width: 100%;
  }
  .answer:nth-child(1n) {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
  }
}

@media (max-width: 420px) and (max-height: 700px) {
  .answer {
    width: 50%;
  }
  .answer:nth-child(odd) {
    padding-left: 5px;
    padding-right: 2.5px;
  }
  .answer:nth-child(even) {
    padding-left: 2.5px;
    padding-right: 5px;
  }
}

.answer__inner {
  z-index: 1;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 111px;
  padding: .5em .75em;
  border-radius: .555556em;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  font-size: 1.125rem;
  box-shadow: 0 8px 0 0 #63af96;
}

.answer__inner::before {
  content: "0" counter(answer);
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  bottom: 8px;
  left: 4.2042042042%;
  color: #e9e8e8;
  line-height: 1;
}

@media (max-width: 420px) and (max-height: 650px) {
  .answer__inner::before {
    display: none;
  }
}

.answer__inner::after {
  content: '';
  display: block;
  width: 80%;
  height: 3px;
  background-color: #e9e8e8;
  position: absolute;
  bottom: 13px;
  left: 15%;
}

@media (max-width: 420px) and (max-height: 650px) {
  .answer__inner::after {
    display: none;
  }
}

@media (max-height: 800px) {
  .answer__inner {
    height: 80px;
    padding: .3em .45em;
  }
  .answer__inner::before {
    font-size: 1.25rem;
  }
  .answer__inner::after {
    height: 2px;
  }
}

@media (max-width: 1150px) and (max-height: 800px) {
  .answer__inner {
    padding: .2em .3em;
  }
  .answer__inner::before {
    font-size: 1rem;
  }
  .answer__inner::after {
    bottom: 9px;
  }
}

@media (max-width: 900px) and (max-height: 600px) {
  .answer__inner {
    height: 60px;
  }
  .answer__inner::before {
    font-size: 1rem;
  }
  .answer__inner::after {
    bottom: 9px;
  }
}

@media (max-width: 800px) {
  .answer__inner {
    font-size: 0.875rem;
  }
  .answer__inner::before {
    font-size: 0.875rem;
  }
}

@media (max-width: 700px) {
  .answer__inner {
    box-shadow: 0 5px 0 0 #63af96;
  }
  .answer__inner::before, .answer__inner::after {
    display: none;
  }
}

@media (max-width: 700px) and (max-height: 700px) {
  .answer__inner {
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  .answer__inner {
    height: 80px;
    box-shadow: none;
  }
}

@media (max-width: 420px) and (max-height: 800px) {
  .answer__inner {
    height: 60px;
  }
}

@media (max-width: 420px) and (max-height: 700px) {
  .answer__inner {
    height: 55px;
  }
}

@media (max-width: 420px) and (max-height: 650px) {
  .answer__inner {
    height: 60px;
  }
}

@media (max-width: 420px) and (max-height: 500px) {
  .answer__inner {
    height: 55px;
  }
}

.answer__text {
  display: block;
  color: #000b3f;
  text-align: center;
  font-style: italic;
  font-weight: 500;
}

@-webkit-keyframes pulse_animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse_animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.audio-scorecard {
  position: relative;
  vertical-align: top;
  width: 100%;
  height: 200px;
  margin-top: 20vh;
  margin-bottom: 5vh;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #352c3a;
  border-radius: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-height: 700px) {
  .audio-scorecard {
    display: none;
  }
}

.audio-scorecard__score {
  width: 40%;
  position: relative;
}

.audio-scorecard__score.-republican .audio-scorecard__label {
  border-top: solid 1px #a7193a;
  background-color: #dc214c;
  border-bottom: solid 1px #e55576;
}

@media (max-width: 400px) {
  .audio-scorecard__score.-republican .audio-scorecard__label {
    background-image: url("../img/svg/markup/elephant-on-red.svg?v8359d1a24fb5746d9bff95844a0aa973");
    background-size: 50%;
  }
}

.audio-scorecard__score.-democrat .audio-scorecard__label {
  border-top: solid 1px #20263f;
  background-color: #353e67;
  border-bottom: solid 1px #4a568f;
}

@media (max-width: 400px) {
  .audio-scorecard__score.-democrat .audio-scorecard__label {
    background-image: url("../img/svg/markup/donkey-on-blue.svg?v888ddd1069f07a7134a17c160a9f987d");
    background-size: 45%;
  }
}

.audio-scorecard__score.-pulse {
  -webkit-animation-name: pulse_animation;
          animation-name: pulse_animation;
  -webkit-animation-duration: 1750ms;
          animation-duration: 1750ms;
  -webkit-transform-origin: 70% 70%;
      -ms-transform-origin: 70% 70%;
          transform-origin: 70% 70%;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.audio-scorecard__label {
  height: 55px;
  line-height: 1;
  padding-top: 16px;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  background-repeat: no-repeat;
  background-position: 50%;
}

@media (max-width: 1150px) {
  .audio-scorecard__label {
    font-size: 1.25rem;
  }
}

@media (max-width: 900px) {
  .audio-scorecard__label {
    font-size: 1.125rem;
  }
}

@media (max-width: 700px) {
  .audio-scorecard__label {
    font-size: 0.875rem;
  }
}

@media (max-width: 400px) {
  .audio-scorecard__label {
    font-size: 0;
  }
}

.audio-scorecard__number {
  height: 1.2em;
  position: relative;
  font-size: 5.625rem;
  font-family: "fatfrank", Impact, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.audio-scorecard__number::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/video-scorecard-circle-overlay.png?v37c681a2897e581b8ebaceeccc516c6e");
  background-repeat: repeat;
  background-size: 2%;
}

@media (max-width: 385px) {
  .audio-scorecard__number::after {
    background-size: 3%;
  }
}

@media (max-width: 1150px) {
  .audio-scorecard__number {
    font-size: 4.375rem;
  }
}

@media (max-width: 900px) {
  .audio-scorecard__number {
    font-size: 3.125rem;
    height: 2em;
    line-height: 2em;
  }
}

@media (max-width: 700px) {
  .audio-scorecard__number {
    font-size: 1.875rem;
  }
}

.audio-scorecard__vs {
  width: auto;
  padding-top: 40px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mob-score-bar,
.mob-state-votes-bar,
.mob-total-votes-bar {
  z-index: 2;
  position: fixed;
  left: 0;
  width: 100vw;
  display: none;
  font-family: "fatfrank", Impact, sans-serif;
  text-transform: uppercase;
}

.mob-score-bar.-blur,
.mob-state-votes-bar.-blur,
.mob-total-votes-bar.-blur {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.mob-score-bar.-hide,
.mob-state-votes-bar.-hide,
.mob-total-votes-bar.-hide {
  display: none;
}

.mob-score-bar {
  top: 0;
  height: 100px;
  background: linear-gradient(to right, #353e67 0%, #353e67 50%, #dc214c 50%, #dc214c 100%);
}

.mob-state-votes-bar {
  top: 100px;
  height: 34px;
  background: #fff;
}

.mob-total-votes-bar {
  top: 134px;
  height: 34px;
  display: none;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center;
  background-color: #77bfa1;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.mob-total-votes-bar .info-box__total-title {
  width: auto;
  text-align: center;
  padding-right: 8px;
}

.mob-total-votes-bar .info-box__state-votes.-total {
  font-size: 1.125rem;
  text-align: center;
  width: 34px;
}

.mob-score-bar__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
}

.mob-state-votes-bar__inner {
  height: 100%;
  width: 100%;
}

.mob-score-bar__scores {
  width: 100%;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mob-score-bar__scores .party__animal {
  width: 75px;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 900px), (max-height: 768px) {
  .mob-score-bar__scores .party__animal {
    width: 50px;
  }
}

@media (max-width: 500px), (max-height: 600px) {
  .mob-score-bar__scores .party__animal {
    width: 40px;
  }
}

.mob-score-bar__scores .party__animal.-left {
  padding-top: 12.5px;
  margin-right: 12.5px;
}

@media (max-width: 500px), (max-height: 600px) {
  .mob-score-bar__scores .party__animal.-left {
    padding-top: 5px;
    margin-right: 5px;
  }
}

.mob-score-bar__scores .party__animal.-right {
  padding-top: 22.5px;
  margin-left: 12.5px;
}

@media (max-width: 900px), (max-height: 768px) {
  .mob-score-bar__scores .party__animal.-right {
    padding-top: 19px;
  }
}

@media (max-width: 500px), (max-height: 600px) {
  .mob-score-bar__scores .party__animal.-right {
    padding-top: 10px;
    margin-left: 5px;
  }
}

.mob-score-bar__scores .party__animal svg {
  bottom: auto;
}

.mob-score-bar__scores .mob-score-bar__progress {
  height: 100%;
  width: 120px;
  display: inline-block;
  text-align: center;
}

@media (max-width: 900px), (max-height: 768px) {
  .mob-score-bar__scores .mob-score-bar__progress {
    width: 90px;
  }
}

@media (max-width: 500px), (max-height: 600px) {
  .mob-score-bar__scores .mob-score-bar__progress {
    width: 60px;
  }
}

.mob-score-bar__scores .mob-score-bar__progress .progress__count {
  height: 100%;
  line-height: 1.6;
  font-size: 4rem;
}

@media (max-width: 900px), (max-height: 768px) {
  .mob-score-bar__scores .mob-score-bar__progress .progress__count {
    font-size: 3rem;
  }
}

@media (max-width: 500px), (max-height: 600px) {
  .mob-score-bar__scores .mob-score-bar__progress .progress__count {
    font-size: 2rem;
  }
}

.mob-score-bar__scores .mob-score-bar__vs {
  width: 100px;
  background: #352c3a;
  line-height: 2.8;
  font-size: 2.5rem;
}

@media (max-width: 900px), (max-height: 768px) {
  .mob-score-bar__scores .mob-score-bar__vs {
    font-size: 1.75rem;
    width: 75px;
  }
}

@media (max-width: 500px), (max-height: 600px) {
  .mob-score-bar__scores .mob-score-bar__vs {
    font-size: 1.25rem;
    width: 50px;
  }
}

.progress-container {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 7vh;
}

@media (max-height: 720px) {
  .progress-container {
    width: 180px;
    margin-top: 0;
  }
}

@media (max-height: 720px) and (max-width: 500px) {
  .progress-container {
    width: 50px;
    margin-right: 27px;
  }
}

@media (max-height: 720px) and (max-width: 360px) {
  .progress-container {
    margin-left: 20px;
  }
}

.progress {
  width: 50px;
  height: 300px;
  display: inline-block;
  position: relative;
  background-color: #e9e8e8;
  opacity: 0;
  z-index: -1;
  transition: all 1s;
  transition: opacity .3s, z-index .3s step-end;
  border-radius: 5px;
}

.progress.-fade-target-line {
  transition: opacity .3s ease-in;
}

.progress.-fade-target-line::after {
  opacity: .2;
}

.progress::before {
  font-family: "fatfrank", Impact, sans-serif;
  font-weight: 400;
  content: '270';
  display: block;
  width: auto;
  color: #77bfa1;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: right;
  position: absolute;
  left: 110%;
  -webkit-transform: translateY(38%);
      -ms-transform: translateY(38%);
          transform: translateY(38%);
  bottom: 50%;
  line-height: 1;
  z-index: 2;
}

@media (max-width: 500px) {
  .progress::before {
    font-size: 0.8125rem;
  }
}

.progress::after {
  z-index: -1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #77bfa1;
  position: absolute;
  bottom: 50.185873606%;
  left: 0;
}

.progress.-show {
  opacity: 1;
  z-index: 1;
  transition: opacity .3s, z-index .3s step-start;
}

@media (max-height: 820px) {
  .progress {
    height: 200px;
  }
}

@media (max-height: 720px) {
  .progress {
    height: 170px;
  }
}

.party__animal {
  width: 50px;
  height: 300px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.party__animal.-left {
  margin-right: 15px;
}

.party__animal.-left svg {
  left: 0;
  height: 48px;
}

.party__animal.-right {
  margin-left: 15px;
}

.party__animal.-right svg {
  right: 0;
  height: 37px;
}

.party__animal svg {
  position: absolute;
  bottom: 0;
  width: 50px;
}

@media (max-height: 820px) {
  .party__animal {
    height: 200px;
  }
}

@media (max-height: 720px) {
  .party__animal {
    height: 170px;
  }
}

@media (max-height: 720px) and (max-width: 1800px) {
  .party__animal {
    display: none;
  }
}

@media (max-height: 720px) and (max-width: 1150px) {
  .party__animal {
    display: inline-block;
  }
}

@media (max-height: 720px) and (max-width: 500px) {
  .party__animal {
    display: none;
  }
}

.progress__bar {
  width: 25px;
  height: 100px;
  position: absolute;
  bottom: 0;
  overflow: visible !important;
}

.progress__bar:nth-child(1) {
  border-bottom-left-radius: 5px;
  left: 0;
}

.progress__bar:nth-child(2) {
  border-bottom-right-radius: 5px;
  left: 50%;
}

.progress__bar.-republican {
  background: linear-gradient(to right, #e54f63 0%, #e54f63 50%, #e86375 50%, #e86375 100%), #dc214c;
  background-size: 15px 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 50% 0, 0 0;
}

.progress__bar.-republican.-mask-stripes {
  background: linear-gradient(-33.33deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, #dc214c 58%, #dc214c 100%), linear-gradient(33.33deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, #dc214c 58%, #dc214c 100%), linear-gradient(to right, #e54f63 0%, #e54f63 50%, #e86375 50%, #e86375 100%), #dc214c;
  background-size: 100% 25px, 100% 25px, 15px 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 0, 1px 0, 50% 0, 0 0;
}

.progress__bar.-democrat {
  background: linear-gradient(to right, #5d6585 0%, #5d6585 50%, #868ba4 50%, #868ba4 100%), #353e67;
  background-size: 15px 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 50% 0, 0 0;
}

.progress__bar.-democrat.-mask-stripes {
  background: linear-gradient(-33.33deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, #353e67 58%, #353e67 100%), linear-gradient(33.33deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, #353e67 58%, #353e67 100%), linear-gradient(to right, #5d6585 0%, #5d6585 50%, #868ba4 50%, #868ba4 100%), #353e67;
  background-size: 100% 25px, 100% 25px, 15px 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 0, 1px 0, 50% 0, 0 0;
}

.progress__bar .democrat__star,
.progress__bar .republican__star {
  content: '';
  position: absolute;
  top: -9px;
  left: 0;
  width: 25px;
  height: 25px;
  transition: opacity .3s ease-in;
  opacity: 0;
}

.progress__bar .democrat__star.-show,
.progress__bar .republican__star.-show {
  opacity: 1;
}

.progress__bar .democrat__star.-show + .progress__count,
.progress__bar .republican__star.-show + .progress__count {
  top: -35px;
}

.progress__bar .republican__star .star-fill {
  fill: #f09da8;
}

.progress__bar .democrat__star .star-fill {
  fill: #9a9eb3;
}

.progress__count {
  width: 100%;
  color: #353e67;
  position: absolute;
  top: -13px;
  text-align: center;
  top: -25px;
  right: 0;
  transition: top .3s ease-in;
}

.progress__count.-mobile {
  color: #fff;
  position: static;
  top: auto;
}

/* critical:start */
.music-on-off {
  width: 46px;
  height: 46px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ebecf0;
  text-decoration: none;
  display: block;
  z-index: 2;
  border-right: 1px solid #ddd;
}

.music-on-off:hover {
  background-color: #ddd;
}

.music-on-off.-off .music-on-off__svg.-on {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.music-on-off.-off .music-on-off__svg.-off {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.music-on-off__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
}

.music-on-off__svg.-off {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.music-on-off__svg img {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* critical:end */
/* critical:start */
.modal {
  position: fixed;
  z-index: 10;
  top: 0;
  left: -9999px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, left 0s 0.3s;
}

.modal.-visible {
  opacity: 1;
  left: 0;
  pointer-events: all;
  transition: opacity 0.3s, left 0s;
}

/* critical:end */
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 628px;
  width: 90%;
  min-height: 628px;
  padding: 60px 40px 40px;
  background-color: #fff;
  color: #353e67;
  font-size: 1rem;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 0 0 #d1d1d1;
}

@media (max-width: 600px) {
  .modal__content {
    min-height: 430px;
    height: calc(100vh - 30px);
    max-height: 500px;
    padding: 20px;
    font-size: 0.75rem;
    overflow-y: scroll;
  }
}

@media (max-height: 500px) {
  .modal__content {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.modal__content p {
  margin-bottom: 1em;
  width: 100%;
}

.modal__title {
  font-family: "fatfrank", Impact, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: .5em;
}

@media (max-width: 600px), (max-height: 600px) {
  .modal__title {
    font-size: 1.25rem;
  }
}

.modal__img-text {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  min-height: 122px;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__img-text:after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 420px) {
  .modal__img-text {
    width: 100%;
  }
}

.modal__img-text__img,
.modal__img-text__text {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1em;
}

.modal__img-text__img {
  width: 100px;
  height: auto;
  text-align: right;
}

.modal__img-text__img img {
  vertical-align: top;
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {
  .modal__img-text__img {
    width: 50px;
  }
}

.modal__img-text__text {
  position: relative;
  width: calc(100% - 105px);
  padding-left: 25px;
  text-align: left;
}

@media (max-width: 600px) {
  .modal__img-text__text {
    width: calc(100% - 55px);
  }
}

/* .modal__btn {
            @include font--fatfrank;

            display: inline-block;
            padding: 10px 30px;
            font-size: rem(20px);

            border: 5px solid $dark-green;
            background-color: $light-green;

            transition: background-color $transition-duration, color $transition-duration;

            &:hover {
                background-color: $dark-green;
                color: #fff;
            }

        } */
.timer-container {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 100px;
  height: 100px;
  z-index: 5;
}

@media (max-width: 1150px) {
  .timer-container {
    position: fixed;
    width: 70px;
    height: 70px;
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 900px) {
  .timer-container {
    width: 50px;
    height: 50px;
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 700px) {
  .timer-container {
    width: 25px;
    height: 25px;
    top: 113px;
    right: 5px;
  }
}

@media (max-width: 500px), (max-height: 600px) {
  .timer-container {
    top: 54px;
  }
}

.timer-container svg {
  display: block;
  width: 100%;
  height: 100%;
}

.timer-container__inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.timer-seconds {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  z-index: 4;
  font-size: 50px;
  padding-bottom: 15%;
  color: #fff;
  text-shadow: 3px 3px 0 #77bfa1, -1px -1px 0 #77bfa1, 1px -1px 0 #77bfa1, -1px 1px 0 #77bfa1, 1px 1px 0 #77bfa1;
}

@media (max-width: 1150px) {
  .timer-seconds {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  .timer-seconds {
    font-size: 16px;
  }
}

.timer {
  display: block;
  position: absolute;
  z-index: 3;
}

.timer.-show {
  display: block;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.timer.-hide {
  -webkit-animation: hideClock .75s ease-in-out forwards;
          animation: hideClock .75s ease-in-out forwards;
}

@-webkit-keyframes hideClock {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  10% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0;
  }
}

@keyframes hideClock {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  10% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0;
  }
}

.timer__pie {
  fill: #bfe9da;
}

/* critical:start */
.awwwards {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 999;
  width: 90px;
}

.awwwards img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 500px) {
  .awwwards {
    width: 50px;
    top: 10px;
  }
}

@media (max-width: 380px) {
  .awwwards {
    display: none;
  }
}

/* critical:end */

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