@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  background-color: #fff;
}

img, video {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

body.mobile-menu {
  overflow: hidden;
}

svg, svg * {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}

a {
  cursor: pointer;
}

.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1300px;
  position: relative;
}

.v-center {
  display: table;
  width: 100%;
  height: 100%;
}

.v-center .v-content {
  display: table-cell;
  vertical-align: middle;
}

.tooltip {
  position: relative;
}

.tooltip .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (min-width: 900px) {
  .tooltip.right:after {
    bottom: 50%;
    left: 100%;
    -ms-transform: translate3d(10px, 50%, 0);
    /* IE 9 */
    -webkit-transform: translate3d(10px, 50%, 0);
    /* Chrome, Safari, Opera */
    transform: translate3d(10px, 50%, 0);
  }
  .tooltip.right:before {
    border-color: transparent;
    border-right-color: #333;
    bottom: 50%;
    left: 100%;
    margin: 0 0 -5px 0;
  }
  .tooltip.left:after {
    bottom: 50%;
    right: 100%;
    left: auto;
    -ms-transform: translate3d(-10px, 50%, 0);
    /* IE 9 */
    -webkit-transform: translate3d(-10px, 50%, 0);
    /* Chrome, Safari, Opera */
    transform: translate3d(-10px, 50%, 0);
  }
  .tooltip.left:before {
    border-color: transparent;
    border-left-color: #333;
    bottom: 50%;
    right: 100%;
    left: auto;
    margin: 0 0 -5px 0;
  }
  .tooltip.bottom:after {
    bottom: auto;
    top: 100%;
    -ms-transform: translate3d(-50%, 10px, 0);
    /* IE 9 */
    -webkit-transform: translate3d(-50%, 10px, 0);
    /* Chrome, Safari, Opera */
    transform: translate3d(-50%, 10px, 0);
  }
  .tooltip.bottom:before {
    border-color: transparent;
    border-bottom-color: #333;
    bottom: auto;
    top: 100%;
  }
  .tooltip:before {
    content: '';
    display: block;
    position: absolute;
    border: 5px solid transparent;
    border-top-color: #333;
    bottom: 100%;
    transform-style: preserve-3d;
    left: 50%;
    margin: 0 0 0 -5px;
    visibility: hidden;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
    -o-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
    transform-style: preserve-3d;
  }
  .tooltip:after {
    position: absolute;
    content: attr(title);
    bottom: 100%;
    background-color: #333;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.3em;
    text-align: center;
    letter-spacing: .02em;
    left: 50%;
    padding: 5px 7px;
    -ms-transform: translate3d(-50%, -10px, 0);
    /* IE 9 */
    -webkit-transform: translate3d(-50%, -10px, 0);
    /* Chrome, Safari, Opera */
    transform: translate3d(-50%, -10px, 0);
    visibility: hidden;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
    -o-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
    transform-style: preserve-3d;
  }
  .tooltip:hover:before, .tooltip:hover:after {
    visibility: visible;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes ripple {
  0% {
    -moz-opacity: 0.75;
    -khtml-opacity: 0.75;
    opacity: 0.75;
    -ms-transform: scale(0);
    /* IE 9 */
    -webkit-transform: scale(0);
    /* Chrome, Safari, Opera */
    transform: scale(0);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Chrome, Safari, Opera */
    transform: scale(1);
  }
}

@-moz-keyframes ripple {
  0% {
    -moz-opacity: 0.75;
    -khtml-opacity: 0.75;
    opacity: 0.75;
    -ms-transform: scale(0);
    /* IE 9 */
    -webkit-transform: scale(0);
    /* Chrome, Safari, Opera */
    transform: scale(0);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Chrome, Safari, Opera */
    transform: scale(1);
  }
}

@-ms-keyframes ripple {
  0% {
    -moz-opacity: 0.75;
    -khtml-opacity: 0.75;
    opacity: 0.75;
    -ms-transform: scale(0);
    /* IE 9 */
    -webkit-transform: scale(0);
    /* Chrome, Safari, Opera */
    transform: scale(0);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Chrome, Safari, Opera */
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    -moz-opacity: 0.75;
    -khtml-opacity: 0.75;
    opacity: 0.75;
    -ms-transform: scale(0);
    /* IE 9 */
    -webkit-transform: scale(0);
    /* Chrome, Safari, Opera */
    transform: scale(0);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Chrome, Safari, Opera */
    transform: scale(1);
  }
}

@-webkit-keyframes fadeInUp {
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    /* IE 9 */
    -webkit-transform: translate3d(0, 0, 0);
    /* Chrome, Safari, Opera */
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes fadeInUp {
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    /* IE 9 */
    -webkit-transform: translate3d(0, 0, 0);
    /* Chrome, Safari, Opera */
    transform: translate3d(0, 0, 0);
  }
}

@-ms-keyframes fadeInUp {
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    /* IE 9 */
    -webkit-transform: translate3d(0, 0, 0);
    /* Chrome, Safari, Opera */
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    /* IE 9 */
    -webkit-transform: translate3d(0, 0, 0);
    /* Chrome, Safari, Opera */
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes rotate {
  0% {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -webkit-transform: rotate(360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  0% {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -webkit-transform: rotate(360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(360deg);
  }
}

@-ms-keyframes rotate {
  0% {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -webkit-transform: rotate(360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -webkit-transform: rotate(360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(360deg);
  }
}

.spinner {
  display: block;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(51, 51, 51, 0.4);
  border-top-color: #000;
  border-bottom-color: rgba(51, 51, 51, 0.4);
  border-left-color: #000;
  border-right-color: rgba(51, 51, 51, 0.4);
  border-radius: 100%;
  -webkit-animation: rotate 0.5s linear infinite;
  -moz-animation: rotate 0.5s linear infinite;
  -o-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
}

#page {
  z-index: 2;
}

#pageLoader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  text-align: center;
  z-index: 999;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

#pageLoader .loader {
  opacity: 0;
  -webkit-animation: fadeIn 0.5s forwards;
  -moz-animation: fadeIn 0.5s forwards;
  -o-animation: fadeIn 0.5s forwards;
  animation: fadeIn 0.5s forwards;
  display: inline-block;
}

.loaded #pageLoader {
  visibility: hidden;
  opacity: 0;
  transition: visibility .75s .75s ease-in-out, opacity .75s .75s ease-in-out;
}

.fade-out #pageLoader .loader {
  display: none !important;
  background-color: red !important;
}

#page {
  -webkit-transition: transform 2s ease-in-out;
  -moz-transition: transform 2s ease-in-out;
  -o-transition: transform 2s ease-in-out;
}

/*==============================================================================
  Grid Settings
==============================================================================*/
/*==============================================================================
  Columns, generic
==============================================================================*/
/*==============================================================================
Containers columns 
==============================================================================*/
.row {
  padding: 0;
  list-style: none;
}

@media only screen and (min-width: 600px) {
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) {
    display: block;
    min-width: 100%;
    *zoom: 1;
    margin-left: -1.97368%;
    margin-right: -1.97368%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm):before, .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm):after {
    content: "";
    display: table;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm):after {
    clear: both;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col,
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"] {
    max-width: 100%;
    letter-spacing: 0;
    display: inline;
    float: left;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.middle,
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].middle {
    vertical-align: middle;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.bottom,
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].bottom {
    vertical-align: bottom;
  }
}

@media only screen and (min-width: 600px) and (min-width: 600px) {
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.right,
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].right {
    float: right;
  }
}

@media only screen and (min-width: 600px) and (min-width: 600px) {
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.left,
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].left {
    float: left;
  }
}

@media only screen and (min-width: 600px) {
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1 {
    width: 8.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-1 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2 {
    width: 16.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-2 {
    width: 50%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-2 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3 {
    width: 25%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-3 {
    width: 33.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-3 {
    width: 66.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-3 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4 {
    width: 33.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-4 {
    width: 25%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-4 {
    width: 50%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-4 {
    width: 75%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-4 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5 {
    width: 41.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-5 {
    width: 20%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-5 {
    width: 40%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-5 {
    width: 60%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-5 {
    width: 80%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-5 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6 {
    width: 50%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-6 {
    width: 16.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-6 {
    width: 33.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-6 {
    width: 50%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-6 {
    width: 66.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-6 {
    width: 83.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-6 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7 {
    width: 58.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-7 {
    width: 14.28571%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-7 {
    width: 28.57143%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-7 {
    width: 42.85714%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-7 {
    width: 57.14286%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-7 {
    width: 71.42857%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-7 {
    width: 85.71429%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-7 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8 {
    width: 66.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-8 {
    width: 12.5%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-8 {
    width: 25%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-8 {
    width: 37.5%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-8 {
    width: 50%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-8 {
    width: 62.5%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-8 {
    width: 75%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-8 {
    width: 87.5%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-8 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9 {
    width: 75%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-9 {
    width: 11.11111%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-9 {
    width: 22.22222%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-9 {
    width: 33.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-9 {
    width: 44.44444%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-9 {
    width: 55.55556%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-9 {
    width: 66.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-9 {
    width: 77.77778%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-9 {
    width: 88.88889%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-9 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10 {
    width: 83.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-10 {
    width: 10%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-10 {
    width: 20%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-10 {
    width: 30%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-10 {
    width: 40%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-10 {
    width: 50%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-10 {
    width: 60%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-10 {
    width: 70%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-10 {
    width: 80%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-10 {
    width: 90%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-10 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11 {
    width: 91.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-11 {
    width: 9.09091%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-11 {
    width: 18.18182%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-11 {
    width: 27.27273%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-11 {
    width: 36.36364%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-11 {
    width: 45.45455%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-11 {
    width: 54.54545%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-11 {
    width: 63.63636%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-11 {
    width: 72.72727%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-11 {
    width: 81.81818%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-11 {
    width: 90.90909%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-11 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12 {
    width: 100%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-12 {
    width: 8.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-12 {
    width: 16.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-12 {
    width: 25%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-12 {
    width: 33.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-12 {
    width: 41.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-12 {
    width: 50%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-12 {
    width: 58.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-12 {
    width: 66.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-12 {
    width: 75%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-12 {
    width: 83.33333%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-12 {
    width: 91.66667%;
  }
  .row:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12-12 {
    width: 100%;
  }
}

.row.no-break {
  display: block;
  min-width: 100%;
  *zoom: 1;
  margin-left: -1.97368%;
  margin-right: -1.97368%;
}

.row.no-break:before, .row.no-break:after {
  content: "";
  display: table;
}

.row.no-break:after {
  clear: both;
}

.row.no-break > .col,
.row.no-break > [class^="col-"] {
  max-width: 100%;
  letter-spacing: 0;
  display: inline;
  float: left;
  position: relative;
  margin-top: 0;
  margin-left: 0;
  padding-left: 1.875%;
  padding-right: 1.875%;
}

.row.no-break > .col.middle,
.row.no-break > [class^="col-"].middle {
  vertical-align: middle;
}

.row.no-break > .col.bottom,
.row.no-break > [class^="col-"].bottom {
  vertical-align: bottom;
}

@media only screen and (min-width: 600px) {
  .row.no-break > .col.right,
  .row.no-break > [class^="col-"].right {
    float: right;
  }
}

@media only screen and (min-width: 600px) {
  .row.no-break > .col.left,
  .row.no-break > [class^="col-"].left {
    float: left;
  }
}

.row.no-break .col-1 {
  width: 8.33333%;
}

.row.no-break .col-1-1 {
  width: 100%;
}

.row.no-break .col-2 {
  width: 16.66667%;
}

.row.no-break .col-1-2 {
  width: 50%;
}

.row.no-break .col-2-2 {
  width: 100%;
}

.row.no-break .col-3 {
  width: 25%;
}

.row.no-break .col-1-3 {
  width: 33.33333%;
}

.row.no-break .col-2-3 {
  width: 66.66667%;
}

.row.no-break .col-3-3 {
  width: 100%;
}

.row.no-break .col-4 {
  width: 33.33333%;
}

.row.no-break .col-1-4 {
  width: 25%;
}

.row.no-break .col-2-4 {
  width: 50%;
}

.row.no-break .col-3-4 {
  width: 75%;
}

.row.no-break .col-4-4 {
  width: 100%;
}

.row.no-break .col-5 {
  width: 41.66667%;
}

.row.no-break .col-1-5 {
  width: 20%;
}

.row.no-break .col-2-5 {
  width: 40%;
}

.row.no-break .col-3-5 {
  width: 60%;
}

.row.no-break .col-4-5 {
  width: 80%;
}

.row.no-break .col-5-5 {
  width: 100%;
}

.row.no-break .col-6 {
  width: 50%;
}

.row.no-break .col-1-6 {
  width: 16.66667%;
}

.row.no-break .col-2-6 {
  width: 33.33333%;
}

.row.no-break .col-3-6 {
  width: 50%;
}

.row.no-break .col-4-6 {
  width: 66.66667%;
}

.row.no-break .col-5-6 {
  width: 83.33333%;
}

.row.no-break .col-6-6 {
  width: 100%;
}

.row.no-break .col-7 {
  width: 58.33333%;
}

.row.no-break .col-1-7 {
  width: 14.28571%;
}

.row.no-break .col-2-7 {
  width: 28.57143%;
}

.row.no-break .col-3-7 {
  width: 42.85714%;
}

.row.no-break .col-4-7 {
  width: 57.14286%;
}

.row.no-break .col-5-7 {
  width: 71.42857%;
}

.row.no-break .col-6-7 {
  width: 85.71429%;
}

.row.no-break .col-7-7 {
  width: 100%;
}

.row.no-break .col-8 {
  width: 66.66667%;
}

.row.no-break .col-1-8 {
  width: 12.5%;
}

.row.no-break .col-2-8 {
  width: 25%;
}

.row.no-break .col-3-8 {
  width: 37.5%;
}

.row.no-break .col-4-8 {
  width: 50%;
}

.row.no-break .col-5-8 {
  width: 62.5%;
}

.row.no-break .col-6-8 {
  width: 75%;
}

.row.no-break .col-7-8 {
  width: 87.5%;
}

.row.no-break .col-8-8 {
  width: 100%;
}

.row.no-break .col-9 {
  width: 75%;
}

.row.no-break .col-1-9 {
  width: 11.11111%;
}

.row.no-break .col-2-9 {
  width: 22.22222%;
}

.row.no-break .col-3-9 {
  width: 33.33333%;
}

.row.no-break .col-4-9 {
  width: 44.44444%;
}

.row.no-break .col-5-9 {
  width: 55.55556%;
}

.row.no-break .col-6-9 {
  width: 66.66667%;
}

.row.no-break .col-7-9 {
  width: 77.77778%;
}

.row.no-break .col-8-9 {
  width: 88.88889%;
}

.row.no-break .col-9-9 {
  width: 100%;
}

.row.no-break .col-10 {
  width: 83.33333%;
}

.row.no-break .col-1-10 {
  width: 10%;
}

.row.no-break .col-2-10 {
  width: 20%;
}

.row.no-break .col-3-10 {
  width: 30%;
}

.row.no-break .col-4-10 {
  width: 40%;
}

.row.no-break .col-5-10 {
  width: 50%;
}

.row.no-break .col-6-10 {
  width: 60%;
}

.row.no-break .col-7-10 {
  width: 70%;
}

.row.no-break .col-8-10 {
  width: 80%;
}

.row.no-break .col-9-10 {
  width: 90%;
}

.row.no-break .col-10-10 {
  width: 100%;
}

.row.no-break .col-11 {
  width: 91.66667%;
}

.row.no-break .col-1-11 {
  width: 9.09091%;
}

.row.no-break .col-2-11 {
  width: 18.18182%;
}

.row.no-break .col-3-11 {
  width: 27.27273%;
}

.row.no-break .col-4-11 {
  width: 36.36364%;
}

.row.no-break .col-5-11 {
  width: 45.45455%;
}

.row.no-break .col-6-11 {
  width: 54.54545%;
}

.row.no-break .col-7-11 {
  width: 63.63636%;
}

.row.no-break .col-8-11 {
  width: 72.72727%;
}

.row.no-break .col-9-11 {
  width: 81.81818%;
}

.row.no-break .col-10-11 {
  width: 90.90909%;
}

.row.no-break .col-11-11 {
  width: 100%;
}

.row.no-break .col-12 {
  width: 100%;
}

.row.no-break .col-1-12 {
  width: 8.33333%;
}

.row.no-break .col-2-12 {
  width: 16.66667%;
}

.row.no-break .col-3-12 {
  width: 25%;
}

.row.no-break .col-4-12 {
  width: 33.33333%;
}

.row.no-break .col-5-12 {
  width: 41.66667%;
}

.row.no-break .col-6-12 {
  width: 50%;
}

.row.no-break .col-7-12 {
  width: 58.33333%;
}

.row.no-break .col-8-12 {
  width: 66.66667%;
}

.row.no-break .col-9-12 {
  width: 75%;
}

.row.no-break .col-10-12 {
  width: 83.33333%;
}

.row.no-break .col-11-12 {
  width: 91.66667%;
}

.row.no-break .col-12-12 {
  width: 100%;
}

@media only screen and (min-width: 900px) {
  .row.break-lg {
    display: block;
    min-width: 100%;
    *zoom: 1;
    margin-left: -1.97368%;
    margin-right: -1.97368%;
  }
  .row.break-lg:before, .row.break-lg:after {
    content: "";
    display: table;
  }
  .row.break-lg:after {
    clear: both;
  }
  .row.break-lg > .col,
  .row.break-lg > [class^="col-"] {
    max-width: 100%;
    letter-spacing: 0;
    display: inline;
    float: left;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .row.break-lg > .col.middle,
  .row.break-lg > [class^="col-"].middle {
    vertical-align: middle;
  }
  .row.break-lg > .col.bottom,
  .row.break-lg > [class^="col-"].bottom {
    vertical-align: bottom;
  }
}

@media only screen and (min-width: 900px) and (min-width: 600px) {
  .row.break-lg > .col.right,
  .row.break-lg > [class^="col-"].right {
    float: right;
  }
}

@media only screen and (min-width: 900px) and (min-width: 600px) {
  .row.break-lg > .col.left,
  .row.break-lg > [class^="col-"].left {
    float: left;
  }
}

@media only screen and (min-width: 900px) {
  .row.break-lg .col-1 {
    width: 8.33333%;
  }
  .row.break-lg .col-1-1 {
    width: 100%;
  }
  .row.break-lg .col-2 {
    width: 16.66667%;
  }
  .row.break-lg .col-1-2 {
    width: 50%;
  }
  .row.break-lg .col-2-2 {
    width: 100%;
  }
  .row.break-lg .col-3 {
    width: 25%;
  }
  .row.break-lg .col-1-3 {
    width: 33.33333%;
  }
  .row.break-lg .col-2-3 {
    width: 66.66667%;
  }
  .row.break-lg .col-3-3 {
    width: 100%;
  }
  .row.break-lg .col-4 {
    width: 33.33333%;
  }
  .row.break-lg .col-1-4 {
    width: 25%;
  }
  .row.break-lg .col-2-4 {
    width: 50%;
  }
  .row.break-lg .col-3-4 {
    width: 75%;
  }
  .row.break-lg .col-4-4 {
    width: 100%;
  }
  .row.break-lg .col-5 {
    width: 41.66667%;
  }
  .row.break-lg .col-1-5 {
    width: 20%;
  }
  .row.break-lg .col-2-5 {
    width: 40%;
  }
  .row.break-lg .col-3-5 {
    width: 60%;
  }
  .row.break-lg .col-4-5 {
    width: 80%;
  }
  .row.break-lg .col-5-5 {
    width: 100%;
  }
  .row.break-lg .col-6 {
    width: 50%;
  }
  .row.break-lg .col-1-6 {
    width: 16.66667%;
  }
  .row.break-lg .col-2-6 {
    width: 33.33333%;
  }
  .row.break-lg .col-3-6 {
    width: 50%;
  }
  .row.break-lg .col-4-6 {
    width: 66.66667%;
  }
  .row.break-lg .col-5-6 {
    width: 83.33333%;
  }
  .row.break-lg .col-6-6 {
    width: 100%;
  }
  .row.break-lg .col-7 {
    width: 58.33333%;
  }
  .row.break-lg .col-1-7 {
    width: 14.28571%;
  }
  .row.break-lg .col-2-7 {
    width: 28.57143%;
  }
  .row.break-lg .col-3-7 {
    width: 42.85714%;
  }
  .row.break-lg .col-4-7 {
    width: 57.14286%;
  }
  .row.break-lg .col-5-7 {
    width: 71.42857%;
  }
  .row.break-lg .col-6-7 {
    width: 85.71429%;
  }
  .row.break-lg .col-7-7 {
    width: 100%;
  }
  .row.break-lg .col-8 {
    width: 66.66667%;
  }
  .row.break-lg .col-1-8 {
    width: 12.5%;
  }
  .row.break-lg .col-2-8 {
    width: 25%;
  }
  .row.break-lg .col-3-8 {
    width: 37.5%;
  }
  .row.break-lg .col-4-8 {
    width: 50%;
  }
  .row.break-lg .col-5-8 {
    width: 62.5%;
  }
  .row.break-lg .col-6-8 {
    width: 75%;
  }
  .row.break-lg .col-7-8 {
    width: 87.5%;
  }
  .row.break-lg .col-8-8 {
    width: 100%;
  }
  .row.break-lg .col-9 {
    width: 75%;
  }
  .row.break-lg .col-1-9 {
    width: 11.11111%;
  }
  .row.break-lg .col-2-9 {
    width: 22.22222%;
  }
  .row.break-lg .col-3-9 {
    width: 33.33333%;
  }
  .row.break-lg .col-4-9 {
    width: 44.44444%;
  }
  .row.break-lg .col-5-9 {
    width: 55.55556%;
  }
  .row.break-lg .col-6-9 {
    width: 66.66667%;
  }
  .row.break-lg .col-7-9 {
    width: 77.77778%;
  }
  .row.break-lg .col-8-9 {
    width: 88.88889%;
  }
  .row.break-lg .col-9-9 {
    width: 100%;
  }
  .row.break-lg .col-10 {
    width: 83.33333%;
  }
  .row.break-lg .col-1-10 {
    width: 10%;
  }
  .row.break-lg .col-2-10 {
    width: 20%;
  }
  .row.break-lg .col-3-10 {
    width: 30%;
  }
  .row.break-lg .col-4-10 {
    width: 40%;
  }
  .row.break-lg .col-5-10 {
    width: 50%;
  }
  .row.break-lg .col-6-10 {
    width: 60%;
  }
  .row.break-lg .col-7-10 {
    width: 70%;
  }
  .row.break-lg .col-8-10 {
    width: 80%;
  }
  .row.break-lg .col-9-10 {
    width: 90%;
  }
  .row.break-lg .col-10-10 {
    width: 100%;
  }
  .row.break-lg .col-11 {
    width: 91.66667%;
  }
  .row.break-lg .col-1-11 {
    width: 9.09091%;
  }
  .row.break-lg .col-2-11 {
    width: 18.18182%;
  }
  .row.break-lg .col-3-11 {
    width: 27.27273%;
  }
  .row.break-lg .col-4-11 {
    width: 36.36364%;
  }
  .row.break-lg .col-5-11 {
    width: 45.45455%;
  }
  .row.break-lg .col-6-11 {
    width: 54.54545%;
  }
  .row.break-lg .col-7-11 {
    width: 63.63636%;
  }
  .row.break-lg .col-8-11 {
    width: 72.72727%;
  }
  .row.break-lg .col-9-11 {
    width: 81.81818%;
  }
  .row.break-lg .col-10-11 {
    width: 90.90909%;
  }
  .row.break-lg .col-11-11 {
    width: 100%;
  }
  .row.break-lg .col-12 {
    width: 100%;
  }
  .row.break-lg .col-1-12 {
    width: 8.33333%;
  }
  .row.break-lg .col-2-12 {
    width: 16.66667%;
  }
  .row.break-lg .col-3-12 {
    width: 25%;
  }
  .row.break-lg .col-4-12 {
    width: 33.33333%;
  }
  .row.break-lg .col-5-12 {
    width: 41.66667%;
  }
  .row.break-lg .col-6-12 {
    width: 50%;
  }
  .row.break-lg .col-7-12 {
    width: 58.33333%;
  }
  .row.break-lg .col-8-12 {
    width: 66.66667%;
  }
  .row.break-lg .col-9-12 {
    width: 75%;
  }
  .row.break-lg .col-10-12 {
    width: 83.33333%;
  }
  .row.break-lg .col-11-12 {
    width: 91.66667%;
  }
  .row.break-lg .col-12-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .row.break-xlg {
    display: block;
    min-width: 100%;
    *zoom: 1;
    margin-left: -1.97368%;
    margin-right: -1.97368%;
  }
  .row.break-xlg:before, .row.break-xlg:after {
    content: "";
    display: table;
  }
  .row.break-xlg:after {
    clear: both;
  }
  .row.break-xlg > .col,
  .row.break-xlg > [class^="col-"] {
    max-width: 100%;
    letter-spacing: 0;
    display: inline;
    float: left;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .row.break-xlg > .col.middle,
  .row.break-xlg > [class^="col-"].middle {
    vertical-align: middle;
  }
  .row.break-xlg > .col.bottom,
  .row.break-xlg > [class^="col-"].bottom {
    vertical-align: bottom;
  }
}

@media only screen and (min-width: 1200px) and (min-width: 600px) {
  .row.break-xlg > .col.right,
  .row.break-xlg > [class^="col-"].right {
    float: right;
  }
}

@media only screen and (min-width: 1200px) and (min-width: 600px) {
  .row.break-xlg > .col.left,
  .row.break-xlg > [class^="col-"].left {
    float: left;
  }
}

@media only screen and (min-width: 1200px) {
  .row.break-xlg .col-1 {
    width: 8.33333%;
  }
  .row.break-xlg .col-1-1 {
    width: 100%;
  }
  .row.break-xlg .col-2 {
    width: 16.66667%;
  }
  .row.break-xlg .col-1-2 {
    width: 50%;
  }
  .row.break-xlg .col-2-2 {
    width: 100%;
  }
  .row.break-xlg .col-3 {
    width: 25%;
  }
  .row.break-xlg .col-1-3 {
    width: 33.33333%;
  }
  .row.break-xlg .col-2-3 {
    width: 66.66667%;
  }
  .row.break-xlg .col-3-3 {
    width: 100%;
  }
  .row.break-xlg .col-4 {
    width: 33.33333%;
  }
  .row.break-xlg .col-1-4 {
    width: 25%;
  }
  .row.break-xlg .col-2-4 {
    width: 50%;
  }
  .row.break-xlg .col-3-4 {
    width: 75%;
  }
  .row.break-xlg .col-4-4 {
    width: 100%;
  }
  .row.break-xlg .col-5 {
    width: 41.66667%;
  }
  .row.break-xlg .col-1-5 {
    width: 20%;
  }
  .row.break-xlg .col-2-5 {
    width: 40%;
  }
  .row.break-xlg .col-3-5 {
    width: 60%;
  }
  .row.break-xlg .col-4-5 {
    width: 80%;
  }
  .row.break-xlg .col-5-5 {
    width: 100%;
  }
  .row.break-xlg .col-6 {
    width: 50%;
  }
  .row.break-xlg .col-1-6 {
    width: 16.66667%;
  }
  .row.break-xlg .col-2-6 {
    width: 33.33333%;
  }
  .row.break-xlg .col-3-6 {
    width: 50%;
  }
  .row.break-xlg .col-4-6 {
    width: 66.66667%;
  }
  .row.break-xlg .col-5-6 {
    width: 83.33333%;
  }
  .row.break-xlg .col-6-6 {
    width: 100%;
  }
  .row.break-xlg .col-7 {
    width: 58.33333%;
  }
  .row.break-xlg .col-1-7 {
    width: 14.28571%;
  }
  .row.break-xlg .col-2-7 {
    width: 28.57143%;
  }
  .row.break-xlg .col-3-7 {
    width: 42.85714%;
  }
  .row.break-xlg .col-4-7 {
    width: 57.14286%;
  }
  .row.break-xlg .col-5-7 {
    width: 71.42857%;
  }
  .row.break-xlg .col-6-7 {
    width: 85.71429%;
  }
  .row.break-xlg .col-7-7 {
    width: 100%;
  }
  .row.break-xlg .col-8 {
    width: 66.66667%;
  }
  .row.break-xlg .col-1-8 {
    width: 12.5%;
  }
  .row.break-xlg .col-2-8 {
    width: 25%;
  }
  .row.break-xlg .col-3-8 {
    width: 37.5%;
  }
  .row.break-xlg .col-4-8 {
    width: 50%;
  }
  .row.break-xlg .col-5-8 {
    width: 62.5%;
  }
  .row.break-xlg .col-6-8 {
    width: 75%;
  }
  .row.break-xlg .col-7-8 {
    width: 87.5%;
  }
  .row.break-xlg .col-8-8 {
    width: 100%;
  }
  .row.break-xlg .col-9 {
    width: 75%;
  }
  .row.break-xlg .col-1-9 {
    width: 11.11111%;
  }
  .row.break-xlg .col-2-9 {
    width: 22.22222%;
  }
  .row.break-xlg .col-3-9 {
    width: 33.33333%;
  }
  .row.break-xlg .col-4-9 {
    width: 44.44444%;
  }
  .row.break-xlg .col-5-9 {
    width: 55.55556%;
  }
  .row.break-xlg .col-6-9 {
    width: 66.66667%;
  }
  .row.break-xlg .col-7-9 {
    width: 77.77778%;
  }
  .row.break-xlg .col-8-9 {
    width: 88.88889%;
  }
  .row.break-xlg .col-9-9 {
    width: 100%;
  }
  .row.break-xlg .col-10 {
    width: 83.33333%;
  }
  .row.break-xlg .col-1-10 {
    width: 10%;
  }
  .row.break-xlg .col-2-10 {
    width: 20%;
  }
  .row.break-xlg .col-3-10 {
    width: 30%;
  }
  .row.break-xlg .col-4-10 {
    width: 40%;
  }
  .row.break-xlg .col-5-10 {
    width: 50%;
  }
  .row.break-xlg .col-6-10 {
    width: 60%;
  }
  .row.break-xlg .col-7-10 {
    width: 70%;
  }
  .row.break-xlg .col-8-10 {
    width: 80%;
  }
  .row.break-xlg .col-9-10 {
    width: 90%;
  }
  .row.break-xlg .col-10-10 {
    width: 100%;
  }
  .row.break-xlg .col-11 {
    width: 91.66667%;
  }
  .row.break-xlg .col-1-11 {
    width: 9.09091%;
  }
  .row.break-xlg .col-2-11 {
    width: 18.18182%;
  }
  .row.break-xlg .col-3-11 {
    width: 27.27273%;
  }
  .row.break-xlg .col-4-11 {
    width: 36.36364%;
  }
  .row.break-xlg .col-5-11 {
    width: 45.45455%;
  }
  .row.break-xlg .col-6-11 {
    width: 54.54545%;
  }
  .row.break-xlg .col-7-11 {
    width: 63.63636%;
  }
  .row.break-xlg .col-8-11 {
    width: 72.72727%;
  }
  .row.break-xlg .col-9-11 {
    width: 81.81818%;
  }
  .row.break-xlg .col-10-11 {
    width: 90.90909%;
  }
  .row.break-xlg .col-11-11 {
    width: 100%;
  }
  .row.break-xlg .col-12 {
    width: 100%;
  }
  .row.break-xlg .col-1-12 {
    width: 8.33333%;
  }
  .row.break-xlg .col-2-12 {
    width: 16.66667%;
  }
  .row.break-xlg .col-3-12 {
    width: 25%;
  }
  .row.break-xlg .col-4-12 {
    width: 33.33333%;
  }
  .row.break-xlg .col-5-12 {
    width: 41.66667%;
  }
  .row.break-xlg .col-6-12 {
    width: 50%;
  }
  .row.break-xlg .col-7-12 {
    width: 58.33333%;
  }
  .row.break-xlg .col-8-12 {
    width: 66.66667%;
  }
  .row.break-xlg .col-9-12 {
    width: 75%;
  }
  .row.break-xlg .col-10-12 {
    width: 83.33333%;
  }
  .row.break-xlg .col-11-12 {
    width: 91.66667%;
  }
  .row.break-xlg .col-12-12 {
    width: 100%;
  }
}

.inline-grid {
  padding: 0;
  list-style: none;
}

@media only screen and (min-width: 600px) {
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) {
    display: block;
    min-width: 100%;
    text-align: left;
    margin-left: -1.97368%;
    margin-right: -1.97368%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col,
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"] {
    max-width: 100%;
    letter-spacing: 0;
    display: inline;
    float: left;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.middle,
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].middle {
    vertical-align: middle;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.bottom,
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].bottom {
    vertical-align: bottom;
  }
}

@media only screen and (min-width: 600px) and (min-width: 600px) {
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.right,
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].right {
    float: right;
  }
}

@media only screen and (min-width: 600px) and (min-width: 600px) {
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col.left,
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"].left {
    float: left;
  }
}

@media only screen and (min-width: 600px) {
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1 {
    width: 8.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-1 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2 {
    width: 16.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-2 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-2 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3 {
    width: 25%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-3 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-3 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-3 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-4 {
    width: 25%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-4 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-4 {
    width: 75%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-4 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5 {
    width: 41.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-5 {
    width: 20%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-5 {
    width: 40%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-5 {
    width: 60%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-5 {
    width: 80%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-5 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-6 {
    width: 16.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-6 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-6 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-6 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-6 {
    width: 83.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-6 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7 {
    width: 58.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-7 {
    width: 14.28571%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-7 {
    width: 28.57143%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-7 {
    width: 42.85714%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-7 {
    width: 57.14286%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-7 {
    width: 71.42857%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-7 {
    width: 85.71429%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-7 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-8 {
    width: 12.5%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-8 {
    width: 25%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-8 {
    width: 37.5%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-8 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-8 {
    width: 62.5%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-8 {
    width: 75%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-8 {
    width: 87.5%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-8 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9 {
    width: 75%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-9 {
    width: 11.11111%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-9 {
    width: 22.22222%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-9 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-9 {
    width: 44.44444%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-9 {
    width: 55.55556%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-9 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-9 {
    width: 77.77778%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-9 {
    width: 88.88889%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-9 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10 {
    width: 83.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-10 {
    width: 10%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-10 {
    width: 20%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-10 {
    width: 30%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-10 {
    width: 40%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-10 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-10 {
    width: 60%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-10 {
    width: 70%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-10 {
    width: 80%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-10 {
    width: 90%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-10 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11 {
    width: 91.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-11 {
    width: 9.09091%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-11 {
    width: 18.18182%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-11 {
    width: 27.27273%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-11 {
    width: 36.36364%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-11 {
    width: 45.45455%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-11 {
    width: 54.54545%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-11 {
    width: 63.63636%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-11 {
    width: 72.72727%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-11 {
    width: 81.81818%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-11 {
    width: 90.90909%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-11 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-12 {
    width: 8.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-12 {
    width: 16.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-12 {
    width: 25%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-12 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-12 {
    width: 41.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-12 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-12 {
    width: 58.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-12 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-12 {
    width: 75%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-12 {
    width: 83.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-12 {
    width: 91.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12-12 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).center {
    text-align: center;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).center [class^="col-"] {
    margin-left: -.125em;
    margin-right: -.125em;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).right {
    text-align: right;
    margin-left: -.25em;
    margin-right: 0;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).middle .col,
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).middle [class^="col-"] {
    vertical-align: middle;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).bottom .col,
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm).bottom [class^="col-"] {
    vertical-align: bottom;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > .col,
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) > [class^="col-"] {
    vertical-align: top;
    display: inline-block;
    float: none;
    margin-left: 0;
    letter-spacing: 0;
    max-width: 100%;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: -.25em;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1 {
    width: 8.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-1 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2 {
    width: 16.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-2 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-2 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3 {
    width: 25%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-3 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-3 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-3 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-4 {
    width: 25%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-4 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-4 {
    width: 75%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-4 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5 {
    width: 41.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-5 {
    width: 20%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-5 {
    width: 40%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-5 {
    width: 60%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-5 {
    width: 80%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-5 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-6 {
    width: 16.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-6 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-6 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-6 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-6 {
    width: 83.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-6 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7 {
    width: 58.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-7 {
    width: 14.28571%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-7 {
    width: 28.57143%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-7 {
    width: 42.85714%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-7 {
    width: 57.14286%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-7 {
    width: 71.42857%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-7 {
    width: 85.71429%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-7 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-8 {
    width: 12.5%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-8 {
    width: 25%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-8 {
    width: 37.5%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-8 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-8 {
    width: 62.5%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-8 {
    width: 75%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-8 {
    width: 87.5%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-8 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9 {
    width: 75%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-9 {
    width: 11.11111%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-9 {
    width: 22.22222%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-9 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-9 {
    width: 44.44444%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-9 {
    width: 55.55556%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-9 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-9 {
    width: 77.77778%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-9 {
    width: 88.88889%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-9 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10 {
    width: 83.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-10 {
    width: 10%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-10 {
    width: 20%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-10 {
    width: 30%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-10 {
    width: 40%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-10 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-10 {
    width: 60%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-10 {
    width: 70%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-10 {
    width: 80%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-10 {
    width: 90%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-10 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11 {
    width: 91.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-11 {
    width: 9.09091%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-11 {
    width: 18.18182%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-11 {
    width: 27.27273%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-11 {
    width: 36.36364%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-11 {
    width: 45.45455%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-11 {
    width: 54.54545%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-11 {
    width: 63.63636%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-11 {
    width: 72.72727%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-11 {
    width: 81.81818%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-11 {
    width: 90.90909%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-11 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12 {
    width: 100%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-1-12 {
    width: 8.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-2-12 {
    width: 16.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-3-12 {
    width: 25%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-4-12 {
    width: 33.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-5-12 {
    width: 41.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-6-12 {
    width: 50%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-7-12 {
    width: 58.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-8-12 {
    width: 66.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-9-12 {
    width: 75%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-10-12 {
    width: 83.33333%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-11-12 {
    width: 91.66667%;
  }
  .inline-grid:not(.no-break):not(.break-lg):not(.break-xlg):not(.break-sm) .col-12-12 {
    width: 100%;
  }
}

.inline-grid.no-break {
  display: block;
  min-width: 100%;
  text-align: left;
  margin-left: -1.97368%;
  margin-right: -1.97368%;
}

.inline-grid.no-break > .col,
.inline-grid.no-break > [class^="col-"] {
  max-width: 100%;
  letter-spacing: 0;
  display: inline;
  float: left;
  position: relative;
  margin-top: 0;
  margin-left: 0;
  padding-left: 1.875%;
  padding-right: 1.875%;
}

.inline-grid.no-break > .col.middle,
.inline-grid.no-break > [class^="col-"].middle {
  vertical-align: middle;
}

.inline-grid.no-break > .col.bottom,
.inline-grid.no-break > [class^="col-"].bottom {
  vertical-align: bottom;
}

@media only screen and (min-width: 600px) {
  .inline-grid.no-break > .col.right,
  .inline-grid.no-break > [class^="col-"].right {
    float: right;
  }
}

@media only screen and (min-width: 600px) {
  .inline-grid.no-break > .col.left,
  .inline-grid.no-break > [class^="col-"].left {
    float: left;
  }
}

.inline-grid.no-break .col-1 {
  width: 8.33333%;
}

.inline-grid.no-break .col-1-1 {
  width: 100%;
}

.inline-grid.no-break .col-2 {
  width: 16.66667%;
}

.inline-grid.no-break .col-1-2 {
  width: 50%;
}

.inline-grid.no-break .col-2-2 {
  width: 100%;
}

.inline-grid.no-break .col-3 {
  width: 25%;
}

.inline-grid.no-break .col-1-3 {
  width: 33.33333%;
}

.inline-grid.no-break .col-2-3 {
  width: 66.66667%;
}

.inline-grid.no-break .col-3-3 {
  width: 100%;
}

.inline-grid.no-break .col-4 {
  width: 33.33333%;
}

.inline-grid.no-break .col-1-4 {
  width: 25%;
}

.inline-grid.no-break .col-2-4 {
  width: 50%;
}

.inline-grid.no-break .col-3-4 {
  width: 75%;
}

.inline-grid.no-break .col-4-4 {
  width: 100%;
}

.inline-grid.no-break .col-5 {
  width: 41.66667%;
}

.inline-grid.no-break .col-1-5 {
  width: 20%;
}

.inline-grid.no-break .col-2-5 {
  width: 40%;
}

.inline-grid.no-break .col-3-5 {
  width: 60%;
}

.inline-grid.no-break .col-4-5 {
  width: 80%;
}

.inline-grid.no-break .col-5-5 {
  width: 100%;
}

.inline-grid.no-break .col-6 {
  width: 50%;
}

.inline-grid.no-break .col-1-6 {
  width: 16.66667%;
}

.inline-grid.no-break .col-2-6 {
  width: 33.33333%;
}

.inline-grid.no-break .col-3-6 {
  width: 50%;
}

.inline-grid.no-break .col-4-6 {
  width: 66.66667%;
}

.inline-grid.no-break .col-5-6 {
  width: 83.33333%;
}

.inline-grid.no-break .col-6-6 {
  width: 100%;
}

.inline-grid.no-break .col-7 {
  width: 58.33333%;
}

.inline-grid.no-break .col-1-7 {
  width: 14.28571%;
}

.inline-grid.no-break .col-2-7 {
  width: 28.57143%;
}

.inline-grid.no-break .col-3-7 {
  width: 42.85714%;
}

.inline-grid.no-break .col-4-7 {
  width: 57.14286%;
}

.inline-grid.no-break .col-5-7 {
  width: 71.42857%;
}

.inline-grid.no-break .col-6-7 {
  width: 85.71429%;
}

.inline-grid.no-break .col-7-7 {
  width: 100%;
}

.inline-grid.no-break .col-8 {
  width: 66.66667%;
}

.inline-grid.no-break .col-1-8 {
  width: 12.5%;
}

.inline-grid.no-break .col-2-8 {
  width: 25%;
}

.inline-grid.no-break .col-3-8 {
  width: 37.5%;
}

.inline-grid.no-break .col-4-8 {
  width: 50%;
}

.inline-grid.no-break .col-5-8 {
  width: 62.5%;
}

.inline-grid.no-break .col-6-8 {
  width: 75%;
}

.inline-grid.no-break .col-7-8 {
  width: 87.5%;
}

.inline-grid.no-break .col-8-8 {
  width: 100%;
}

.inline-grid.no-break .col-9 {
  width: 75%;
}

.inline-grid.no-break .col-1-9 {
  width: 11.11111%;
}

.inline-grid.no-break .col-2-9 {
  width: 22.22222%;
}

.inline-grid.no-break .col-3-9 {
  width: 33.33333%;
}

.inline-grid.no-break .col-4-9 {
  width: 44.44444%;
}

.inline-grid.no-break .col-5-9 {
  width: 55.55556%;
}

.inline-grid.no-break .col-6-9 {
  width: 66.66667%;
}

.inline-grid.no-break .col-7-9 {
  width: 77.77778%;
}

.inline-grid.no-break .col-8-9 {
  width: 88.88889%;
}

.inline-grid.no-break .col-9-9 {
  width: 100%;
}

.inline-grid.no-break .col-10 {
  width: 83.33333%;
}

.inline-grid.no-break .col-1-10 {
  width: 10%;
}

.inline-grid.no-break .col-2-10 {
  width: 20%;
}

.inline-grid.no-break .col-3-10 {
  width: 30%;
}

.inline-grid.no-break .col-4-10 {
  width: 40%;
}

.inline-grid.no-break .col-5-10 {
  width: 50%;
}

.inline-grid.no-break .col-6-10 {
  width: 60%;
}

.inline-grid.no-break .col-7-10 {
  width: 70%;
}

.inline-grid.no-break .col-8-10 {
  width: 80%;
}

.inline-grid.no-break .col-9-10 {
  width: 90%;
}

.inline-grid.no-break .col-10-10 {
  width: 100%;
}

.inline-grid.no-break .col-11 {
  width: 91.66667%;
}

.inline-grid.no-break .col-1-11 {
  width: 9.09091%;
}

.inline-grid.no-break .col-2-11 {
  width: 18.18182%;
}

.inline-grid.no-break .col-3-11 {
  width: 27.27273%;
}

.inline-grid.no-break .col-4-11 {
  width: 36.36364%;
}

.inline-grid.no-break .col-5-11 {
  width: 45.45455%;
}

.inline-grid.no-break .col-6-11 {
  width: 54.54545%;
}

.inline-grid.no-break .col-7-11 {
  width: 63.63636%;
}

.inline-grid.no-break .col-8-11 {
  width: 72.72727%;
}

.inline-grid.no-break .col-9-11 {
  width: 81.81818%;
}

.inline-grid.no-break .col-10-11 {
  width: 90.90909%;
}

.inline-grid.no-break .col-11-11 {
  width: 100%;
}

.inline-grid.no-break .col-12 {
  width: 100%;
}

.inline-grid.no-break .col-1-12 {
  width: 8.33333%;
}

.inline-grid.no-break .col-2-12 {
  width: 16.66667%;
}

.inline-grid.no-break .col-3-12 {
  width: 25%;
}

.inline-grid.no-break .col-4-12 {
  width: 33.33333%;
}

.inline-grid.no-break .col-5-12 {
  width: 41.66667%;
}

.inline-grid.no-break .col-6-12 {
  width: 50%;
}

.inline-grid.no-break .col-7-12 {
  width: 58.33333%;
}

.inline-grid.no-break .col-8-12 {
  width: 66.66667%;
}

.inline-grid.no-break .col-9-12 {
  width: 75%;
}

.inline-grid.no-break .col-10-12 {
  width: 83.33333%;
}

.inline-grid.no-break .col-11-12 {
  width: 91.66667%;
}

.inline-grid.no-break .col-12-12 {
  width: 100%;
}

.inline-grid.no-break.center {
  text-align: center;
}

.inline-grid.no-break.center [class^="col-"] {
  margin-left: -.125em;
  margin-right: -.125em;
}

.inline-grid.no-break.right {
  text-align: right;
  margin-left: -.25em;
  margin-right: 0;
}

.inline-grid.no-break.middle .col,
.inline-grid.no-break.middle [class^="col-"] {
  vertical-align: middle;
}

.inline-grid.no-break.bottom .col,
.inline-grid.no-break.bottom [class^="col-"] {
  vertical-align: bottom;
}

.inline-grid.no-break > .col,
.inline-grid.no-break > [class^="col-"] {
  vertical-align: top;
  display: inline-block;
  float: none;
  margin-left: 0;
  letter-spacing: 0;
  max-width: 100%;
  position: relative;
  margin-top: 0;
  margin-left: 0;
  margin-right: -.25em;
  padding-left: 1.875%;
  padding-right: 1.875%;
}

.inline-grid.no-break .col-1 {
  width: 8.33333%;
}

.inline-grid.no-break .col-1-1 {
  width: 100%;
}

.inline-grid.no-break .col-2 {
  width: 16.66667%;
}

.inline-grid.no-break .col-1-2 {
  width: 50%;
}

.inline-grid.no-break .col-2-2 {
  width: 100%;
}

.inline-grid.no-break .col-3 {
  width: 25%;
}

.inline-grid.no-break .col-1-3 {
  width: 33.33333%;
}

.inline-grid.no-break .col-2-3 {
  width: 66.66667%;
}

.inline-grid.no-break .col-3-3 {
  width: 100%;
}

.inline-grid.no-break .col-4 {
  width: 33.33333%;
}

.inline-grid.no-break .col-1-4 {
  width: 25%;
}

.inline-grid.no-break .col-2-4 {
  width: 50%;
}

.inline-grid.no-break .col-3-4 {
  width: 75%;
}

.inline-grid.no-break .col-4-4 {
  width: 100%;
}

.inline-grid.no-break .col-5 {
  width: 41.66667%;
}

.inline-grid.no-break .col-1-5 {
  width: 20%;
}

.inline-grid.no-break .col-2-5 {
  width: 40%;
}

.inline-grid.no-break .col-3-5 {
  width: 60%;
}

.inline-grid.no-break .col-4-5 {
  width: 80%;
}

.inline-grid.no-break .col-5-5 {
  width: 100%;
}

.inline-grid.no-break .col-6 {
  width: 50%;
}

.inline-grid.no-break .col-1-6 {
  width: 16.66667%;
}

.inline-grid.no-break .col-2-6 {
  width: 33.33333%;
}

.inline-grid.no-break .col-3-6 {
  width: 50%;
}

.inline-grid.no-break .col-4-6 {
  width: 66.66667%;
}

.inline-grid.no-break .col-5-6 {
  width: 83.33333%;
}

.inline-grid.no-break .col-6-6 {
  width: 100%;
}

.inline-grid.no-break .col-7 {
  width: 58.33333%;
}

.inline-grid.no-break .col-1-7 {
  width: 14.28571%;
}

.inline-grid.no-break .col-2-7 {
  width: 28.57143%;
}

.inline-grid.no-break .col-3-7 {
  width: 42.85714%;
}

.inline-grid.no-break .col-4-7 {
  width: 57.14286%;
}

.inline-grid.no-break .col-5-7 {
  width: 71.42857%;
}

.inline-grid.no-break .col-6-7 {
  width: 85.71429%;
}

.inline-grid.no-break .col-7-7 {
  width: 100%;
}

.inline-grid.no-break .col-8 {
  width: 66.66667%;
}

.inline-grid.no-break .col-1-8 {
  width: 12.5%;
}

.inline-grid.no-break .col-2-8 {
  width: 25%;
}

.inline-grid.no-break .col-3-8 {
  width: 37.5%;
}

.inline-grid.no-break .col-4-8 {
  width: 50%;
}

.inline-grid.no-break .col-5-8 {
  width: 62.5%;
}

.inline-grid.no-break .col-6-8 {
  width: 75%;
}

.inline-grid.no-break .col-7-8 {
  width: 87.5%;
}

.inline-grid.no-break .col-8-8 {
  width: 100%;
}

.inline-grid.no-break .col-9 {
  width: 75%;
}

.inline-grid.no-break .col-1-9 {
  width: 11.11111%;
}

.inline-grid.no-break .col-2-9 {
  width: 22.22222%;
}

.inline-grid.no-break .col-3-9 {
  width: 33.33333%;
}

.inline-grid.no-break .col-4-9 {
  width: 44.44444%;
}

.inline-grid.no-break .col-5-9 {
  width: 55.55556%;
}

.inline-grid.no-break .col-6-9 {
  width: 66.66667%;
}

.inline-grid.no-break .col-7-9 {
  width: 77.77778%;
}

.inline-grid.no-break .col-8-9 {
  width: 88.88889%;
}

.inline-grid.no-break .col-9-9 {
  width: 100%;
}

.inline-grid.no-break .col-10 {
  width: 83.33333%;
}

.inline-grid.no-break .col-1-10 {
  width: 10%;
}

.inline-grid.no-break .col-2-10 {
  width: 20%;
}

.inline-grid.no-break .col-3-10 {
  width: 30%;
}

.inline-grid.no-break .col-4-10 {
  width: 40%;
}

.inline-grid.no-break .col-5-10 {
  width: 50%;
}

.inline-grid.no-break .col-6-10 {
  width: 60%;
}

.inline-grid.no-break .col-7-10 {
  width: 70%;
}

.inline-grid.no-break .col-8-10 {
  width: 80%;
}

.inline-grid.no-break .col-9-10 {
  width: 90%;
}

.inline-grid.no-break .col-10-10 {
  width: 100%;
}

.inline-grid.no-break .col-11 {
  width: 91.66667%;
}

.inline-grid.no-break .col-1-11 {
  width: 9.09091%;
}

.inline-grid.no-break .col-2-11 {
  width: 18.18182%;
}

.inline-grid.no-break .col-3-11 {
  width: 27.27273%;
}

.inline-grid.no-break .col-4-11 {
  width: 36.36364%;
}

.inline-grid.no-break .col-5-11 {
  width: 45.45455%;
}

.inline-grid.no-break .col-6-11 {
  width: 54.54545%;
}

.inline-grid.no-break .col-7-11 {
  width: 63.63636%;
}

.inline-grid.no-break .col-8-11 {
  width: 72.72727%;
}

.inline-grid.no-break .col-9-11 {
  width: 81.81818%;
}

.inline-grid.no-break .col-10-11 {
  width: 90.90909%;
}

.inline-grid.no-break .col-11-11 {
  width: 100%;
}

.inline-grid.no-break .col-12 {
  width: 100%;
}

.inline-grid.no-break .col-1-12 {
  width: 8.33333%;
}

.inline-grid.no-break .col-2-12 {
  width: 16.66667%;
}

.inline-grid.no-break .col-3-12 {
  width: 25%;
}

.inline-grid.no-break .col-4-12 {
  width: 33.33333%;
}

.inline-grid.no-break .col-5-12 {
  width: 41.66667%;
}

.inline-grid.no-break .col-6-12 {
  width: 50%;
}

.inline-grid.no-break .col-7-12 {
  width: 58.33333%;
}

.inline-grid.no-break .col-8-12 {
  width: 66.66667%;
}

.inline-grid.no-break .col-9-12 {
  width: 75%;
}

.inline-grid.no-break .col-10-12 {
  width: 83.33333%;
}

.inline-grid.no-break .col-11-12 {
  width: 91.66667%;
}

.inline-grid.no-break .col-12-12 {
  width: 100%;
}

@media only screen and (min-width: 450px) {
  .inline-grid.break-sm {
    display: block;
    min-width: 100%;
    text-align: left;
    margin-left: -1.97368%;
    margin-right: -1.97368%;
  }
  .inline-grid.break-sm > .col,
  .inline-grid.break-sm > [class^="col-"] {
    max-width: 100%;
    letter-spacing: 0;
    display: inline;
    float: left;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .inline-grid.break-sm > .col.middle,
  .inline-grid.break-sm > [class^="col-"].middle {
    vertical-align: middle;
  }
  .inline-grid.break-sm > .col.bottom,
  .inline-grid.break-sm > [class^="col-"].bottom {
    vertical-align: bottom;
  }
}

@media only screen and (min-width: 450px) and (min-width: 600px) {
  .inline-grid.break-sm > .col.right,
  .inline-grid.break-sm > [class^="col-"].right {
    float: right;
  }
}

@media only screen and (min-width: 450px) and (min-width: 600px) {
  .inline-grid.break-sm > .col.left,
  .inline-grid.break-sm > [class^="col-"].left {
    float: left;
  }
}

@media only screen and (min-width: 450px) {
  .inline-grid.break-sm .col-1 {
    width: 8.33333%;
  }
  .inline-grid.break-sm .col-1-1 {
    width: 100%;
  }
  .inline-grid.break-sm .col-2 {
    width: 16.66667%;
  }
  .inline-grid.break-sm .col-1-2 {
    width: 50%;
  }
  .inline-grid.break-sm .col-2-2 {
    width: 100%;
  }
  .inline-grid.break-sm .col-3 {
    width: 25%;
  }
  .inline-grid.break-sm .col-1-3 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-2-3 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-3-3 {
    width: 100%;
  }
  .inline-grid.break-sm .col-4 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-1-4 {
    width: 25%;
  }
  .inline-grid.break-sm .col-2-4 {
    width: 50%;
  }
  .inline-grid.break-sm .col-3-4 {
    width: 75%;
  }
  .inline-grid.break-sm .col-4-4 {
    width: 100%;
  }
  .inline-grid.break-sm .col-5 {
    width: 41.66667%;
  }
  .inline-grid.break-sm .col-1-5 {
    width: 20%;
  }
  .inline-grid.break-sm .col-2-5 {
    width: 40%;
  }
  .inline-grid.break-sm .col-3-5 {
    width: 60%;
  }
  .inline-grid.break-sm .col-4-5 {
    width: 80%;
  }
  .inline-grid.break-sm .col-5-5 {
    width: 100%;
  }
  .inline-grid.break-sm .col-6 {
    width: 50%;
  }
  .inline-grid.break-sm .col-1-6 {
    width: 16.66667%;
  }
  .inline-grid.break-sm .col-2-6 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-3-6 {
    width: 50%;
  }
  .inline-grid.break-sm .col-4-6 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-5-6 {
    width: 83.33333%;
  }
  .inline-grid.break-sm .col-6-6 {
    width: 100%;
  }
  .inline-grid.break-sm .col-7 {
    width: 58.33333%;
  }
  .inline-grid.break-sm .col-1-7 {
    width: 14.28571%;
  }
  .inline-grid.break-sm .col-2-7 {
    width: 28.57143%;
  }
  .inline-grid.break-sm .col-3-7 {
    width: 42.85714%;
  }
  .inline-grid.break-sm .col-4-7 {
    width: 57.14286%;
  }
  .inline-grid.break-sm .col-5-7 {
    width: 71.42857%;
  }
  .inline-grid.break-sm .col-6-7 {
    width: 85.71429%;
  }
  .inline-grid.break-sm .col-7-7 {
    width: 100%;
  }
  .inline-grid.break-sm .col-8 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-1-8 {
    width: 12.5%;
  }
  .inline-grid.break-sm .col-2-8 {
    width: 25%;
  }
  .inline-grid.break-sm .col-3-8 {
    width: 37.5%;
  }
  .inline-grid.break-sm .col-4-8 {
    width: 50%;
  }
  .inline-grid.break-sm .col-5-8 {
    width: 62.5%;
  }
  .inline-grid.break-sm .col-6-8 {
    width: 75%;
  }
  .inline-grid.break-sm .col-7-8 {
    width: 87.5%;
  }
  .inline-grid.break-sm .col-8-8 {
    width: 100%;
  }
  .inline-grid.break-sm .col-9 {
    width: 75%;
  }
  .inline-grid.break-sm .col-1-9 {
    width: 11.11111%;
  }
  .inline-grid.break-sm .col-2-9 {
    width: 22.22222%;
  }
  .inline-grid.break-sm .col-3-9 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-4-9 {
    width: 44.44444%;
  }
  .inline-grid.break-sm .col-5-9 {
    width: 55.55556%;
  }
  .inline-grid.break-sm .col-6-9 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-7-9 {
    width: 77.77778%;
  }
  .inline-grid.break-sm .col-8-9 {
    width: 88.88889%;
  }
  .inline-grid.break-sm .col-9-9 {
    width: 100%;
  }
  .inline-grid.break-sm .col-10 {
    width: 83.33333%;
  }
  .inline-grid.break-sm .col-1-10 {
    width: 10%;
  }
  .inline-grid.break-sm .col-2-10 {
    width: 20%;
  }
  .inline-grid.break-sm .col-3-10 {
    width: 30%;
  }
  .inline-grid.break-sm .col-4-10 {
    width: 40%;
  }
  .inline-grid.break-sm .col-5-10 {
    width: 50%;
  }
  .inline-grid.break-sm .col-6-10 {
    width: 60%;
  }
  .inline-grid.break-sm .col-7-10 {
    width: 70%;
  }
  .inline-grid.break-sm .col-8-10 {
    width: 80%;
  }
  .inline-grid.break-sm .col-9-10 {
    width: 90%;
  }
  .inline-grid.break-sm .col-10-10 {
    width: 100%;
  }
  .inline-grid.break-sm .col-11 {
    width: 91.66667%;
  }
  .inline-grid.break-sm .col-1-11 {
    width: 9.09091%;
  }
  .inline-grid.break-sm .col-2-11 {
    width: 18.18182%;
  }
  .inline-grid.break-sm .col-3-11 {
    width: 27.27273%;
  }
  .inline-grid.break-sm .col-4-11 {
    width: 36.36364%;
  }
  .inline-grid.break-sm .col-5-11 {
    width: 45.45455%;
  }
  .inline-grid.break-sm .col-6-11 {
    width: 54.54545%;
  }
  .inline-grid.break-sm .col-7-11 {
    width: 63.63636%;
  }
  .inline-grid.break-sm .col-8-11 {
    width: 72.72727%;
  }
  .inline-grid.break-sm .col-9-11 {
    width: 81.81818%;
  }
  .inline-grid.break-sm .col-10-11 {
    width: 90.90909%;
  }
  .inline-grid.break-sm .col-11-11 {
    width: 100%;
  }
  .inline-grid.break-sm .col-12 {
    width: 100%;
  }
  .inline-grid.break-sm .col-1-12 {
    width: 8.33333%;
  }
  .inline-grid.break-sm .col-2-12 {
    width: 16.66667%;
  }
  .inline-grid.break-sm .col-3-12 {
    width: 25%;
  }
  .inline-grid.break-sm .col-4-12 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-5-12 {
    width: 41.66667%;
  }
  .inline-grid.break-sm .col-6-12 {
    width: 50%;
  }
  .inline-grid.break-sm .col-7-12 {
    width: 58.33333%;
  }
  .inline-grid.break-sm .col-8-12 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-9-12 {
    width: 75%;
  }
  .inline-grid.break-sm .col-10-12 {
    width: 83.33333%;
  }
  .inline-grid.break-sm .col-11-12 {
    width: 91.66667%;
  }
  .inline-grid.break-sm .col-12-12 {
    width: 100%;
  }
  .inline-grid.break-sm.center {
    text-align: center;
  }
  .inline-grid.break-sm.center [class^="col-"] {
    margin-left: -.125em;
    margin-right: -.125em;
  }
  .inline-grid.break-sm.right {
    text-align: right;
    margin-left: -.25em;
    margin-right: 0;
  }
  .inline-grid.break-sm.middle .col,
  .inline-grid.break-sm.middle [class^="col-"] {
    vertical-align: middle;
  }
  .inline-grid.break-sm.bottom .col,
  .inline-grid.break-sm.bottom [class^="col-"] {
    vertical-align: bottom;
  }
  .inline-grid.break-sm > .col,
  .inline-grid.break-sm > [class^="col-"] {
    vertical-align: top;
    display: inline-block;
    float: none;
    margin-left: 0;
    letter-spacing: 0;
    max-width: 100%;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: -.25em;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .inline-grid.break-sm .col-1 {
    width: 8.33333%;
  }
  .inline-grid.break-sm .col-1-1 {
    width: 100%;
  }
  .inline-grid.break-sm .col-2 {
    width: 16.66667%;
  }
  .inline-grid.break-sm .col-1-2 {
    width: 50%;
  }
  .inline-grid.break-sm .col-2-2 {
    width: 100%;
  }
  .inline-grid.break-sm .col-3 {
    width: 25%;
  }
  .inline-grid.break-sm .col-1-3 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-2-3 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-3-3 {
    width: 100%;
  }
  .inline-grid.break-sm .col-4 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-1-4 {
    width: 25%;
  }
  .inline-grid.break-sm .col-2-4 {
    width: 50%;
  }
  .inline-grid.break-sm .col-3-4 {
    width: 75%;
  }
  .inline-grid.break-sm .col-4-4 {
    width: 100%;
  }
  .inline-grid.break-sm .col-5 {
    width: 41.66667%;
  }
  .inline-grid.break-sm .col-1-5 {
    width: 20%;
  }
  .inline-grid.break-sm .col-2-5 {
    width: 40%;
  }
  .inline-grid.break-sm .col-3-5 {
    width: 60%;
  }
  .inline-grid.break-sm .col-4-5 {
    width: 80%;
  }
  .inline-grid.break-sm .col-5-5 {
    width: 100%;
  }
  .inline-grid.break-sm .col-6 {
    width: 50%;
  }
  .inline-grid.break-sm .col-1-6 {
    width: 16.66667%;
  }
  .inline-grid.break-sm .col-2-6 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-3-6 {
    width: 50%;
  }
  .inline-grid.break-sm .col-4-6 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-5-6 {
    width: 83.33333%;
  }
  .inline-grid.break-sm .col-6-6 {
    width: 100%;
  }
  .inline-grid.break-sm .col-7 {
    width: 58.33333%;
  }
  .inline-grid.break-sm .col-1-7 {
    width: 14.28571%;
  }
  .inline-grid.break-sm .col-2-7 {
    width: 28.57143%;
  }
  .inline-grid.break-sm .col-3-7 {
    width: 42.85714%;
  }
  .inline-grid.break-sm .col-4-7 {
    width: 57.14286%;
  }
  .inline-grid.break-sm .col-5-7 {
    width: 71.42857%;
  }
  .inline-grid.break-sm .col-6-7 {
    width: 85.71429%;
  }
  .inline-grid.break-sm .col-7-7 {
    width: 100%;
  }
  .inline-grid.break-sm .col-8 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-1-8 {
    width: 12.5%;
  }
  .inline-grid.break-sm .col-2-8 {
    width: 25%;
  }
  .inline-grid.break-sm .col-3-8 {
    width: 37.5%;
  }
  .inline-grid.break-sm .col-4-8 {
    width: 50%;
  }
  .inline-grid.break-sm .col-5-8 {
    width: 62.5%;
  }
  .inline-grid.break-sm .col-6-8 {
    width: 75%;
  }
  .inline-grid.break-sm .col-7-8 {
    width: 87.5%;
  }
  .inline-grid.break-sm .col-8-8 {
    width: 100%;
  }
  .inline-grid.break-sm .col-9 {
    width: 75%;
  }
  .inline-grid.break-sm .col-1-9 {
    width: 11.11111%;
  }
  .inline-grid.break-sm .col-2-9 {
    width: 22.22222%;
  }
  .inline-grid.break-sm .col-3-9 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-4-9 {
    width: 44.44444%;
  }
  .inline-grid.break-sm .col-5-9 {
    width: 55.55556%;
  }
  .inline-grid.break-sm .col-6-9 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-7-9 {
    width: 77.77778%;
  }
  .inline-grid.break-sm .col-8-9 {
    width: 88.88889%;
  }
  .inline-grid.break-sm .col-9-9 {
    width: 100%;
  }
  .inline-grid.break-sm .col-10 {
    width: 83.33333%;
  }
  .inline-grid.break-sm .col-1-10 {
    width: 10%;
  }
  .inline-grid.break-sm .col-2-10 {
    width: 20%;
  }
  .inline-grid.break-sm .col-3-10 {
    width: 30%;
  }
  .inline-grid.break-sm .col-4-10 {
    width: 40%;
  }
  .inline-grid.break-sm .col-5-10 {
    width: 50%;
  }
  .inline-grid.break-sm .col-6-10 {
    width: 60%;
  }
  .inline-grid.break-sm .col-7-10 {
    width: 70%;
  }
  .inline-grid.break-sm .col-8-10 {
    width: 80%;
  }
  .inline-grid.break-sm .col-9-10 {
    width: 90%;
  }
  .inline-grid.break-sm .col-10-10 {
    width: 100%;
  }
  .inline-grid.break-sm .col-11 {
    width: 91.66667%;
  }
  .inline-grid.break-sm .col-1-11 {
    width: 9.09091%;
  }
  .inline-grid.break-sm .col-2-11 {
    width: 18.18182%;
  }
  .inline-grid.break-sm .col-3-11 {
    width: 27.27273%;
  }
  .inline-grid.break-sm .col-4-11 {
    width: 36.36364%;
  }
  .inline-grid.break-sm .col-5-11 {
    width: 45.45455%;
  }
  .inline-grid.break-sm .col-6-11 {
    width: 54.54545%;
  }
  .inline-grid.break-sm .col-7-11 {
    width: 63.63636%;
  }
  .inline-grid.break-sm .col-8-11 {
    width: 72.72727%;
  }
  .inline-grid.break-sm .col-9-11 {
    width: 81.81818%;
  }
  .inline-grid.break-sm .col-10-11 {
    width: 90.90909%;
  }
  .inline-grid.break-sm .col-11-11 {
    width: 100%;
  }
  .inline-grid.break-sm .col-12 {
    width: 100%;
  }
  .inline-grid.break-sm .col-1-12 {
    width: 8.33333%;
  }
  .inline-grid.break-sm .col-2-12 {
    width: 16.66667%;
  }
  .inline-grid.break-sm .col-3-12 {
    width: 25%;
  }
  .inline-grid.break-sm .col-4-12 {
    width: 33.33333%;
  }
  .inline-grid.break-sm .col-5-12 {
    width: 41.66667%;
  }
  .inline-grid.break-sm .col-6-12 {
    width: 50%;
  }
  .inline-grid.break-sm .col-7-12 {
    width: 58.33333%;
  }
  .inline-grid.break-sm .col-8-12 {
    width: 66.66667%;
  }
  .inline-grid.break-sm .col-9-12 {
    width: 75%;
  }
  .inline-grid.break-sm .col-10-12 {
    width: 83.33333%;
  }
  .inline-grid.break-sm .col-11-12 {
    width: 91.66667%;
  }
  .inline-grid.break-sm .col-12-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 900px) {
  .inline-grid.break-lg {
    display: block;
    min-width: 100%;
    text-align: left;
    margin-left: -1.97368%;
    margin-right: -1.97368%;
  }
  .inline-grid.break-lg > .col,
  .inline-grid.break-lg > [class^="col-"] {
    max-width: 100%;
    letter-spacing: 0;
    display: inline;
    float: left;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .inline-grid.break-lg > .col.middle,
  .inline-grid.break-lg > [class^="col-"].middle {
    vertical-align: middle;
  }
  .inline-grid.break-lg > .col.bottom,
  .inline-grid.break-lg > [class^="col-"].bottom {
    vertical-align: bottom;
  }
}

@media only screen and (min-width: 900px) and (min-width: 600px) {
  .inline-grid.break-lg > .col.right,
  .inline-grid.break-lg > [class^="col-"].right {
    float: right;
  }
}

@media only screen and (min-width: 900px) and (min-width: 600px) {
  .inline-grid.break-lg > .col.left,
  .inline-grid.break-lg > [class^="col-"].left {
    float: left;
  }
}

@media only screen and (min-width: 900px) {
  .inline-grid.break-lg .col-1 {
    width: 8.33333%;
  }
  .inline-grid.break-lg .col-1-1 {
    width: 100%;
  }
  .inline-grid.break-lg .col-2 {
    width: 16.66667%;
  }
  .inline-grid.break-lg .col-1-2 {
    width: 50%;
  }
  .inline-grid.break-lg .col-2-2 {
    width: 100%;
  }
  .inline-grid.break-lg .col-3 {
    width: 25%;
  }
  .inline-grid.break-lg .col-1-3 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-2-3 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-3-3 {
    width: 100%;
  }
  .inline-grid.break-lg .col-4 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-1-4 {
    width: 25%;
  }
  .inline-grid.break-lg .col-2-4 {
    width: 50%;
  }
  .inline-grid.break-lg .col-3-4 {
    width: 75%;
  }
  .inline-grid.break-lg .col-4-4 {
    width: 100%;
  }
  .inline-grid.break-lg .col-5 {
    width: 41.66667%;
  }
  .inline-grid.break-lg .col-1-5 {
    width: 20%;
  }
  .inline-grid.break-lg .col-2-5 {
    width: 40%;
  }
  .inline-grid.break-lg .col-3-5 {
    width: 60%;
  }
  .inline-grid.break-lg .col-4-5 {
    width: 80%;
  }
  .inline-grid.break-lg .col-5-5 {
    width: 100%;
  }
  .inline-grid.break-lg .col-6 {
    width: 50%;
  }
  .inline-grid.break-lg .col-1-6 {
    width: 16.66667%;
  }
  .inline-grid.break-lg .col-2-6 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-3-6 {
    width: 50%;
  }
  .inline-grid.break-lg .col-4-6 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-5-6 {
    width: 83.33333%;
  }
  .inline-grid.break-lg .col-6-6 {
    width: 100%;
  }
  .inline-grid.break-lg .col-7 {
    width: 58.33333%;
  }
  .inline-grid.break-lg .col-1-7 {
    width: 14.28571%;
  }
  .inline-grid.break-lg .col-2-7 {
    width: 28.57143%;
  }
  .inline-grid.break-lg .col-3-7 {
    width: 42.85714%;
  }
  .inline-grid.break-lg .col-4-7 {
    width: 57.14286%;
  }
  .inline-grid.break-lg .col-5-7 {
    width: 71.42857%;
  }
  .inline-grid.break-lg .col-6-7 {
    width: 85.71429%;
  }
  .inline-grid.break-lg .col-7-7 {
    width: 100%;
  }
  .inline-grid.break-lg .col-8 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-1-8 {
    width: 12.5%;
  }
  .inline-grid.break-lg .col-2-8 {
    width: 25%;
  }
  .inline-grid.break-lg .col-3-8 {
    width: 37.5%;
  }
  .inline-grid.break-lg .col-4-8 {
    width: 50%;
  }
  .inline-grid.break-lg .col-5-8 {
    width: 62.5%;
  }
  .inline-grid.break-lg .col-6-8 {
    width: 75%;
  }
  .inline-grid.break-lg .col-7-8 {
    width: 87.5%;
  }
  .inline-grid.break-lg .col-8-8 {
    width: 100%;
  }
  .inline-grid.break-lg .col-9 {
    width: 75%;
  }
  .inline-grid.break-lg .col-1-9 {
    width: 11.11111%;
  }
  .inline-grid.break-lg .col-2-9 {
    width: 22.22222%;
  }
  .inline-grid.break-lg .col-3-9 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-4-9 {
    width: 44.44444%;
  }
  .inline-grid.break-lg .col-5-9 {
    width: 55.55556%;
  }
  .inline-grid.break-lg .col-6-9 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-7-9 {
    width: 77.77778%;
  }
  .inline-grid.break-lg .col-8-9 {
    width: 88.88889%;
  }
  .inline-grid.break-lg .col-9-9 {
    width: 100%;
  }
  .inline-grid.break-lg .col-10 {
    width: 83.33333%;
  }
  .inline-grid.break-lg .col-1-10 {
    width: 10%;
  }
  .inline-grid.break-lg .col-2-10 {
    width: 20%;
  }
  .inline-grid.break-lg .col-3-10 {
    width: 30%;
  }
  .inline-grid.break-lg .col-4-10 {
    width: 40%;
  }
  .inline-grid.break-lg .col-5-10 {
    width: 50%;
  }
  .inline-grid.break-lg .col-6-10 {
    width: 60%;
  }
  .inline-grid.break-lg .col-7-10 {
    width: 70%;
  }
  .inline-grid.break-lg .col-8-10 {
    width: 80%;
  }
  .inline-grid.break-lg .col-9-10 {
    width: 90%;
  }
  .inline-grid.break-lg .col-10-10 {
    width: 100%;
  }
  .inline-grid.break-lg .col-11 {
    width: 91.66667%;
  }
  .inline-grid.break-lg .col-1-11 {
    width: 9.09091%;
  }
  .inline-grid.break-lg .col-2-11 {
    width: 18.18182%;
  }
  .inline-grid.break-lg .col-3-11 {
    width: 27.27273%;
  }
  .inline-grid.break-lg .col-4-11 {
    width: 36.36364%;
  }
  .inline-grid.break-lg .col-5-11 {
    width: 45.45455%;
  }
  .inline-grid.break-lg .col-6-11 {
    width: 54.54545%;
  }
  .inline-grid.break-lg .col-7-11 {
    width: 63.63636%;
  }
  .inline-grid.break-lg .col-8-11 {
    width: 72.72727%;
  }
  .inline-grid.break-lg .col-9-11 {
    width: 81.81818%;
  }
  .inline-grid.break-lg .col-10-11 {
    width: 90.90909%;
  }
  .inline-grid.break-lg .col-11-11 {
    width: 100%;
  }
  .inline-grid.break-lg .col-12 {
    width: 100%;
  }
  .inline-grid.break-lg .col-1-12 {
    width: 8.33333%;
  }
  .inline-grid.break-lg .col-2-12 {
    width: 16.66667%;
  }
  .inline-grid.break-lg .col-3-12 {
    width: 25%;
  }
  .inline-grid.break-lg .col-4-12 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-5-12 {
    width: 41.66667%;
  }
  .inline-grid.break-lg .col-6-12 {
    width: 50%;
  }
  .inline-grid.break-lg .col-7-12 {
    width: 58.33333%;
  }
  .inline-grid.break-lg .col-8-12 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-9-12 {
    width: 75%;
  }
  .inline-grid.break-lg .col-10-12 {
    width: 83.33333%;
  }
  .inline-grid.break-lg .col-11-12 {
    width: 91.66667%;
  }
  .inline-grid.break-lg .col-12-12 {
    width: 100%;
  }
  .inline-grid.break-lg.center {
    text-align: center;
  }
  .inline-grid.break-lg.center [class^="col-"] {
    margin-left: -.125em;
    margin-right: -.125em;
  }
  .inline-grid.break-lg.right {
    text-align: right;
    margin-left: -.25em;
    margin-right: 0;
  }
  .inline-grid.break-lg.middle .col,
  .inline-grid.break-lg.middle [class^="col-"] {
    vertical-align: middle;
  }
  .inline-grid.break-lg.bottom .col,
  .inline-grid.break-lg.bottom [class^="col-"] {
    vertical-align: bottom;
  }
  .inline-grid.break-lg > .col,
  .inline-grid.break-lg > [class^="col-"] {
    vertical-align: top;
    display: inline-block;
    float: none;
    margin-left: 0;
    letter-spacing: 0;
    max-width: 100%;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: -.25em;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .inline-grid.break-lg .col-1 {
    width: 8.33333%;
  }
  .inline-grid.break-lg .col-1-1 {
    width: 100%;
  }
  .inline-grid.break-lg .col-2 {
    width: 16.66667%;
  }
  .inline-grid.break-lg .col-1-2 {
    width: 50%;
  }
  .inline-grid.break-lg .col-2-2 {
    width: 100%;
  }
  .inline-grid.break-lg .col-3 {
    width: 25%;
  }
  .inline-grid.break-lg .col-1-3 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-2-3 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-3-3 {
    width: 100%;
  }
  .inline-grid.break-lg .col-4 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-1-4 {
    width: 25%;
  }
  .inline-grid.break-lg .col-2-4 {
    width: 50%;
  }
  .inline-grid.break-lg .col-3-4 {
    width: 75%;
  }
  .inline-grid.break-lg .col-4-4 {
    width: 100%;
  }
  .inline-grid.break-lg .col-5 {
    width: 41.66667%;
  }
  .inline-grid.break-lg .col-1-5 {
    width: 20%;
  }
  .inline-grid.break-lg .col-2-5 {
    width: 40%;
  }
  .inline-grid.break-lg .col-3-5 {
    width: 60%;
  }
  .inline-grid.break-lg .col-4-5 {
    width: 80%;
  }
  .inline-grid.break-lg .col-5-5 {
    width: 100%;
  }
  .inline-grid.break-lg .col-6 {
    width: 50%;
  }
  .inline-grid.break-lg .col-1-6 {
    width: 16.66667%;
  }
  .inline-grid.break-lg .col-2-6 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-3-6 {
    width: 50%;
  }
  .inline-grid.break-lg .col-4-6 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-5-6 {
    width: 83.33333%;
  }
  .inline-grid.break-lg .col-6-6 {
    width: 100%;
  }
  .inline-grid.break-lg .col-7 {
    width: 58.33333%;
  }
  .inline-grid.break-lg .col-1-7 {
    width: 14.28571%;
  }
  .inline-grid.break-lg .col-2-7 {
    width: 28.57143%;
  }
  .inline-grid.break-lg .col-3-7 {
    width: 42.85714%;
  }
  .inline-grid.break-lg .col-4-7 {
    width: 57.14286%;
  }
  .inline-grid.break-lg .col-5-7 {
    width: 71.42857%;
  }
  .inline-grid.break-lg .col-6-7 {
    width: 85.71429%;
  }
  .inline-grid.break-lg .col-7-7 {
    width: 100%;
  }
  .inline-grid.break-lg .col-8 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-1-8 {
    width: 12.5%;
  }
  .inline-grid.break-lg .col-2-8 {
    width: 25%;
  }
  .inline-grid.break-lg .col-3-8 {
    width: 37.5%;
  }
  .inline-grid.break-lg .col-4-8 {
    width: 50%;
  }
  .inline-grid.break-lg .col-5-8 {
    width: 62.5%;
  }
  .inline-grid.break-lg .col-6-8 {
    width: 75%;
  }
  .inline-grid.break-lg .col-7-8 {
    width: 87.5%;
  }
  .inline-grid.break-lg .col-8-8 {
    width: 100%;
  }
  .inline-grid.break-lg .col-9 {
    width: 75%;
  }
  .inline-grid.break-lg .col-1-9 {
    width: 11.11111%;
  }
  .inline-grid.break-lg .col-2-9 {
    width: 22.22222%;
  }
  .inline-grid.break-lg .col-3-9 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-4-9 {
    width: 44.44444%;
  }
  .inline-grid.break-lg .col-5-9 {
    width: 55.55556%;
  }
  .inline-grid.break-lg .col-6-9 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-7-9 {
    width: 77.77778%;
  }
  .inline-grid.break-lg .col-8-9 {
    width: 88.88889%;
  }
  .inline-grid.break-lg .col-9-9 {
    width: 100%;
  }
  .inline-grid.break-lg .col-10 {
    width: 83.33333%;
  }
  .inline-grid.break-lg .col-1-10 {
    width: 10%;
  }
  .inline-grid.break-lg .col-2-10 {
    width: 20%;
  }
  .inline-grid.break-lg .col-3-10 {
    width: 30%;
  }
  .inline-grid.break-lg .col-4-10 {
    width: 40%;
  }
  .inline-grid.break-lg .col-5-10 {
    width: 50%;
  }
  .inline-grid.break-lg .col-6-10 {
    width: 60%;
  }
  .inline-grid.break-lg .col-7-10 {
    width: 70%;
  }
  .inline-grid.break-lg .col-8-10 {
    width: 80%;
  }
  .inline-grid.break-lg .col-9-10 {
    width: 90%;
  }
  .inline-grid.break-lg .col-10-10 {
    width: 100%;
  }
  .inline-grid.break-lg .col-11 {
    width: 91.66667%;
  }
  .inline-grid.break-lg .col-1-11 {
    width: 9.09091%;
  }
  .inline-grid.break-lg .col-2-11 {
    width: 18.18182%;
  }
  .inline-grid.break-lg .col-3-11 {
    width: 27.27273%;
  }
  .inline-grid.break-lg .col-4-11 {
    width: 36.36364%;
  }
  .inline-grid.break-lg .col-5-11 {
    width: 45.45455%;
  }
  .inline-grid.break-lg .col-6-11 {
    width: 54.54545%;
  }
  .inline-grid.break-lg .col-7-11 {
    width: 63.63636%;
  }
  .inline-grid.break-lg .col-8-11 {
    width: 72.72727%;
  }
  .inline-grid.break-lg .col-9-11 {
    width: 81.81818%;
  }
  .inline-grid.break-lg .col-10-11 {
    width: 90.90909%;
  }
  .inline-grid.break-lg .col-11-11 {
    width: 100%;
  }
  .inline-grid.break-lg .col-12 {
    width: 100%;
  }
  .inline-grid.break-lg .col-1-12 {
    width: 8.33333%;
  }
  .inline-grid.break-lg .col-2-12 {
    width: 16.66667%;
  }
  .inline-grid.break-lg .col-3-12 {
    width: 25%;
  }
  .inline-grid.break-lg .col-4-12 {
    width: 33.33333%;
  }
  .inline-grid.break-lg .col-5-12 {
    width: 41.66667%;
  }
  .inline-grid.break-lg .col-6-12 {
    width: 50%;
  }
  .inline-grid.break-lg .col-7-12 {
    width: 58.33333%;
  }
  .inline-grid.break-lg .col-8-12 {
    width: 66.66667%;
  }
  .inline-grid.break-lg .col-9-12 {
    width: 75%;
  }
  .inline-grid.break-lg .col-10-12 {
    width: 83.33333%;
  }
  .inline-grid.break-lg .col-11-12 {
    width: 91.66667%;
  }
  .inline-grid.break-lg .col-12-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .inline-grid.break-xlg {
    display: block;
    min-width: 100%;
    text-align: left;
    margin-left: -1.97368%;
    margin-right: -1.97368%;
  }
  .inline-grid.break-xlg > .col,
  .inline-grid.break-xlg > [class^="col-"] {
    max-width: 100%;
    letter-spacing: 0;
    display: inline;
    float: left;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .inline-grid.break-xlg > .col.middle,
  .inline-grid.break-xlg > [class^="col-"].middle {
    vertical-align: middle;
  }
  .inline-grid.break-xlg > .col.bottom,
  .inline-grid.break-xlg > [class^="col-"].bottom {
    vertical-align: bottom;
  }
}

@media only screen and (min-width: 1200px) and (min-width: 600px) {
  .inline-grid.break-xlg > .col.right,
  .inline-grid.break-xlg > [class^="col-"].right {
    float: right;
  }
}

@media only screen and (min-width: 1200px) and (min-width: 600px) {
  .inline-grid.break-xlg > .col.left,
  .inline-grid.break-xlg > [class^="col-"].left {
    float: left;
  }
}

@media only screen and (min-width: 1200px) {
  .inline-grid.break-xlg .col-1 {
    width: 8.33333%;
  }
  .inline-grid.break-xlg .col-1-1 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-2 {
    width: 16.66667%;
  }
  .inline-grid.break-xlg .col-1-2 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-2-2 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-3 {
    width: 25%;
  }
  .inline-grid.break-xlg .col-1-3 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-2-3 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-3-3 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-4 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-1-4 {
    width: 25%;
  }
  .inline-grid.break-xlg .col-2-4 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-3-4 {
    width: 75%;
  }
  .inline-grid.break-xlg .col-4-4 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-5 {
    width: 41.66667%;
  }
  .inline-grid.break-xlg .col-1-5 {
    width: 20%;
  }
  .inline-grid.break-xlg .col-2-5 {
    width: 40%;
  }
  .inline-grid.break-xlg .col-3-5 {
    width: 60%;
  }
  .inline-grid.break-xlg .col-4-5 {
    width: 80%;
  }
  .inline-grid.break-xlg .col-5-5 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-6 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-1-6 {
    width: 16.66667%;
  }
  .inline-grid.break-xlg .col-2-6 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-3-6 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-4-6 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-5-6 {
    width: 83.33333%;
  }
  .inline-grid.break-xlg .col-6-6 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-7 {
    width: 58.33333%;
  }
  .inline-grid.break-xlg .col-1-7 {
    width: 14.28571%;
  }
  .inline-grid.break-xlg .col-2-7 {
    width: 28.57143%;
  }
  .inline-grid.break-xlg .col-3-7 {
    width: 42.85714%;
  }
  .inline-grid.break-xlg .col-4-7 {
    width: 57.14286%;
  }
  .inline-grid.break-xlg .col-5-7 {
    width: 71.42857%;
  }
  .inline-grid.break-xlg .col-6-7 {
    width: 85.71429%;
  }
  .inline-grid.break-xlg .col-7-7 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-8 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-1-8 {
    width: 12.5%;
  }
  .inline-grid.break-xlg .col-2-8 {
    width: 25%;
  }
  .inline-grid.break-xlg .col-3-8 {
    width: 37.5%;
  }
  .inline-grid.break-xlg .col-4-8 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-5-8 {
    width: 62.5%;
  }
  .inline-grid.break-xlg .col-6-8 {
    width: 75%;
  }
  .inline-grid.break-xlg .col-7-8 {
    width: 87.5%;
  }
  .inline-grid.break-xlg .col-8-8 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-9 {
    width: 75%;
  }
  .inline-grid.break-xlg .col-1-9 {
    width: 11.11111%;
  }
  .inline-grid.break-xlg .col-2-9 {
    width: 22.22222%;
  }
  .inline-grid.break-xlg .col-3-9 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-4-9 {
    width: 44.44444%;
  }
  .inline-grid.break-xlg .col-5-9 {
    width: 55.55556%;
  }
  .inline-grid.break-xlg .col-6-9 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-7-9 {
    width: 77.77778%;
  }
  .inline-grid.break-xlg .col-8-9 {
    width: 88.88889%;
  }
  .inline-grid.break-xlg .col-9-9 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-10 {
    width: 83.33333%;
  }
  .inline-grid.break-xlg .col-1-10 {
    width: 10%;
  }
  .inline-grid.break-xlg .col-2-10 {
    width: 20%;
  }
  .inline-grid.break-xlg .col-3-10 {
    width: 30%;
  }
  .inline-grid.break-xlg .col-4-10 {
    width: 40%;
  }
  .inline-grid.break-xlg .col-5-10 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-6-10 {
    width: 60%;
  }
  .inline-grid.break-xlg .col-7-10 {
    width: 70%;
  }
  .inline-grid.break-xlg .col-8-10 {
    width: 80%;
  }
  .inline-grid.break-xlg .col-9-10 {
    width: 90%;
  }
  .inline-grid.break-xlg .col-10-10 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-11 {
    width: 91.66667%;
  }
  .inline-grid.break-xlg .col-1-11 {
    width: 9.09091%;
  }
  .inline-grid.break-xlg .col-2-11 {
    width: 18.18182%;
  }
  .inline-grid.break-xlg .col-3-11 {
    width: 27.27273%;
  }
  .inline-grid.break-xlg .col-4-11 {
    width: 36.36364%;
  }
  .inline-grid.break-xlg .col-5-11 {
    width: 45.45455%;
  }
  .inline-grid.break-xlg .col-6-11 {
    width: 54.54545%;
  }
  .inline-grid.break-xlg .col-7-11 {
    width: 63.63636%;
  }
  .inline-grid.break-xlg .col-8-11 {
    width: 72.72727%;
  }
  .inline-grid.break-xlg .col-9-11 {
    width: 81.81818%;
  }
  .inline-grid.break-xlg .col-10-11 {
    width: 90.90909%;
  }
  .inline-grid.break-xlg .col-11-11 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-12 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-1-12 {
    width: 8.33333%;
  }
  .inline-grid.break-xlg .col-2-12 {
    width: 16.66667%;
  }
  .inline-grid.break-xlg .col-3-12 {
    width: 25%;
  }
  .inline-grid.break-xlg .col-4-12 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-5-12 {
    width: 41.66667%;
  }
  .inline-grid.break-xlg .col-6-12 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-7-12 {
    width: 58.33333%;
  }
  .inline-grid.break-xlg .col-8-12 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-9-12 {
    width: 75%;
  }
  .inline-grid.break-xlg .col-10-12 {
    width: 83.33333%;
  }
  .inline-grid.break-xlg .col-11-12 {
    width: 91.66667%;
  }
  .inline-grid.break-xlg .col-12-12 {
    width: 100%;
  }
  .inline-grid.break-xlg.center {
    text-align: center;
  }
  .inline-grid.break-xlg.center [class^="col-"] {
    margin-left: -.125em;
    margin-right: -.125em;
  }
  .inline-grid.break-xlg.right {
    text-align: right;
    margin-left: -.25em;
    margin-right: 0;
  }
  .inline-grid.break-xlg.middle .col,
  .inline-grid.break-xlg.middle [class^="col-"] {
    vertical-align: middle;
  }
  .inline-grid.break-xlg.bottom .col,
  .inline-grid.break-xlg.bottom [class^="col-"] {
    vertical-align: bottom;
  }
  .inline-grid.break-xlg > .col,
  .inline-grid.break-xlg > [class^="col-"] {
    vertical-align: top;
    display: inline-block;
    float: none;
    margin-left: 0;
    letter-spacing: 0;
    max-width: 100%;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: -.25em;
    padding-left: 1.875%;
    padding-right: 1.875%;
  }
  .inline-grid.break-xlg .col-1 {
    width: 8.33333%;
  }
  .inline-grid.break-xlg .col-1-1 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-2 {
    width: 16.66667%;
  }
  .inline-grid.break-xlg .col-1-2 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-2-2 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-3 {
    width: 25%;
  }
  .inline-grid.break-xlg .col-1-3 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-2-3 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-3-3 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-4 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-1-4 {
    width: 25%;
  }
  .inline-grid.break-xlg .col-2-4 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-3-4 {
    width: 75%;
  }
  .inline-grid.break-xlg .col-4-4 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-5 {
    width: 41.66667%;
  }
  .inline-grid.break-xlg .col-1-5 {
    width: 20%;
  }
  .inline-grid.break-xlg .col-2-5 {
    width: 40%;
  }
  .inline-grid.break-xlg .col-3-5 {
    width: 60%;
  }
  .inline-grid.break-xlg .col-4-5 {
    width: 80%;
  }
  .inline-grid.break-xlg .col-5-5 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-6 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-1-6 {
    width: 16.66667%;
  }
  .inline-grid.break-xlg .col-2-6 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-3-6 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-4-6 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-5-6 {
    width: 83.33333%;
  }
  .inline-grid.break-xlg .col-6-6 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-7 {
    width: 58.33333%;
  }
  .inline-grid.break-xlg .col-1-7 {
    width: 14.28571%;
  }
  .inline-grid.break-xlg .col-2-7 {
    width: 28.57143%;
  }
  .inline-grid.break-xlg .col-3-7 {
    width: 42.85714%;
  }
  .inline-grid.break-xlg .col-4-7 {
    width: 57.14286%;
  }
  .inline-grid.break-xlg .col-5-7 {
    width: 71.42857%;
  }
  .inline-grid.break-xlg .col-6-7 {
    width: 85.71429%;
  }
  .inline-grid.break-xlg .col-7-7 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-8 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-1-8 {
    width: 12.5%;
  }
  .inline-grid.break-xlg .col-2-8 {
    width: 25%;
  }
  .inline-grid.break-xlg .col-3-8 {
    width: 37.5%;
  }
  .inline-grid.break-xlg .col-4-8 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-5-8 {
    width: 62.5%;
  }
  .inline-grid.break-xlg .col-6-8 {
    width: 75%;
  }
  .inline-grid.break-xlg .col-7-8 {
    width: 87.5%;
  }
  .inline-grid.break-xlg .col-8-8 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-9 {
    width: 75%;
  }
  .inline-grid.break-xlg .col-1-9 {
    width: 11.11111%;
  }
  .inline-grid.break-xlg .col-2-9 {
    width: 22.22222%;
  }
  .inline-grid.break-xlg .col-3-9 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-4-9 {
    width: 44.44444%;
  }
  .inline-grid.break-xlg .col-5-9 {
    width: 55.55556%;
  }
  .inline-grid.break-xlg .col-6-9 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-7-9 {
    width: 77.77778%;
  }
  .inline-grid.break-xlg .col-8-9 {
    width: 88.88889%;
  }
  .inline-grid.break-xlg .col-9-9 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-10 {
    width: 83.33333%;
  }
  .inline-grid.break-xlg .col-1-10 {
    width: 10%;
  }
  .inline-grid.break-xlg .col-2-10 {
    width: 20%;
  }
  .inline-grid.break-xlg .col-3-10 {
    width: 30%;
  }
  .inline-grid.break-xlg .col-4-10 {
    width: 40%;
  }
  .inline-grid.break-xlg .col-5-10 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-6-10 {
    width: 60%;
  }
  .inline-grid.break-xlg .col-7-10 {
    width: 70%;
  }
  .inline-grid.break-xlg .col-8-10 {
    width: 80%;
  }
  .inline-grid.break-xlg .col-9-10 {
    width: 90%;
  }
  .inline-grid.break-xlg .col-10-10 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-11 {
    width: 91.66667%;
  }
  .inline-grid.break-xlg .col-1-11 {
    width: 9.09091%;
  }
  .inline-grid.break-xlg .col-2-11 {
    width: 18.18182%;
  }
  .inline-grid.break-xlg .col-3-11 {
    width: 27.27273%;
  }
  .inline-grid.break-xlg .col-4-11 {
    width: 36.36364%;
  }
  .inline-grid.break-xlg .col-5-11 {
    width: 45.45455%;
  }
  .inline-grid.break-xlg .col-6-11 {
    width: 54.54545%;
  }
  .inline-grid.break-xlg .col-7-11 {
    width: 63.63636%;
  }
  .inline-grid.break-xlg .col-8-11 {
    width: 72.72727%;
  }
  .inline-grid.break-xlg .col-9-11 {
    width: 81.81818%;
  }
  .inline-grid.break-xlg .col-10-11 {
    width: 90.90909%;
  }
  .inline-grid.break-xlg .col-11-11 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-12 {
    width: 100%;
  }
  .inline-grid.break-xlg .col-1-12 {
    width: 8.33333%;
  }
  .inline-grid.break-xlg .col-2-12 {
    width: 16.66667%;
  }
  .inline-grid.break-xlg .col-3-12 {
    width: 25%;
  }
  .inline-grid.break-xlg .col-4-12 {
    width: 33.33333%;
  }
  .inline-grid.break-xlg .col-5-12 {
    width: 41.66667%;
  }
  .inline-grid.break-xlg .col-6-12 {
    width: 50%;
  }
  .inline-grid.break-xlg .col-7-12 {
    width: 58.33333%;
  }
  .inline-grid.break-xlg .col-8-12 {
    width: 66.66667%;
  }
  .inline-grid.break-xlg .col-9-12 {
    width: 75%;
  }
  .inline-grid.break-xlg .col-10-12 {
    width: 83.33333%;
  }
  .inline-grid.break-xlg .col-11-12 {
    width: 91.66667%;
  }
  .inline-grid.break-xlg .col-12-12 {
    width: 100%;
  }
}

@font-face {
  font-family: 'Futura';
  src: url("../fonts/futura-std-book.woff") format("woff"), url("../fonts/futura-std-book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Futura';
  src: url("../fonts/futura-std-heavy.woff") format("woff"), url("../fonts/futura-std-heavy.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Futura';
  src: url("../fonts/futura-std-bold.woff") format("woff"), url("../fonts/futura-std-bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

.btn,
input[type="submit"],
button {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  border: none;
  outline: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  background-image: none;
  -webkit-appearance: caret;
  -moz-appearance: caret;
  /* mobile firefox too! */
  -webkit-appearance: none;
  background-color: transparent;
  color: #333;
  height: 40px;
  max-height: 40px;
  padding: 0px 20px 2px 20px;
  margin: 0px;
  font-family: "Futura", sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  line-height: 36px;
  max-width: 400px;
  border: 2px solid #333;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: .15em;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-transition: border 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out, padding 0.25s ease-in-out;
  -moz-transition: border 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out, padding 0.25s ease-in-out;
  -o-transition: border 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out, padding 0.25s ease-in-out;
}

.btn .icon svg *,
input[type="submit"] .icon svg *,
button .icon svg * {
  fill: #333;
}

.btn.medium,
input[type="submit"].medium,
button.medium {
  height: 40px;
  padding: 0px 20px 2px 20px;
  line-height: 36px;
}

.btn.tiny,
input[type="submit"].tiny,
button.tiny {
  height: 30px;
  padding: 0px 20px 2px 20px;
  line-height: 26px;
}

.btn:hover, .btn:active,
input[type="submit"]:hover,
input[type="submit"]:active,
button:hover,
button:active {
  color: #fff;
  background-color: #333;
  border: 2px solid #333;
}

.btn:hover svg *, .btn:active svg *,
input[type="submit"]:hover svg *,
input[type="submit"]:active svg *,
button:hover svg *,
button:active svg * {
  fill: #fff;
}

.btn:before,
input[type="submit"]:before,
button:before {
  box-sizing: border-box;
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  line-height: 20px;
  top: 50%;
  left: 50%;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}

.btn:after,
input[type="submit"]:after,
button:after {
  box-sizing: border-box;
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  line-height: 20px;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}

.btn.loading,
input[type="submit"].loading,
button.loading {
  color: transparent;
  background-color: rgba(128, 128, 128, 0);
  border: 2px solid #333;
  border-color: rgba(128, 128, 128, 0);
  cursor: default;
}

.btn.loading:before,
input[type="submit"].loading:before,
button.loading:before {
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-right-color: #fff;
  -webkit-animation: rotate 0.5s linear infinite;
  -moz-animation: rotate 0.5s linear infinite;
  -o-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
  opacity: 1;
  visibility: visible;
}

.btn.success,
input[type="submit"].success,
button.success {
  color: transparent;
  background-color: transparent;
  border: 2px solid #333;
  cursor: default;
  background-color: #333;
}

.btn.success:before,
input[type="submit"].success:before,
button.success:before {
  background-color: #fff;
  opacity: 1;
  visibility: visible;
}

.btn.success:after,
input[type="submit"].success:after,
button.success:after {
  opacity: 1;
  visibility: visible;
  content: '';
  border: 2px solid #333;
  border-left: none;
  border-top: none;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  line-height: 21px;
  font-size: 16px;
  width: 6px;
  height: 10px;
  margin-left: -3px;
  margin-top: -6px;
}

.btn.error,
input[type="submit"].error,
button.error {
  color: transparent;
  background-color: transparent;
  border: 2px solid #333;
  cursor: default;
}

.btn.error:before,
input[type="submit"].error:before,
button.error:before {
  color: transparent;
  content: '';
  background-color: #fff;
  opacity: 1;
  visibility: visible;
}

.btn.error:after,
input[type="submit"].error:after,
button.error:after {
  opacity: 1;
  visibility: visible;
  color: transparent;
  content: '×';
  line-height: 21px;
  font-size: 16px;
}

.btn.secondary,
input[type="submit"].secondary,
button.secondary {
  background-color: transparent;
  color: rgba(51, 51, 51, 0.4);
  border: 1px solid rgba(51, 51, 51, 0.4);
}

.btn.secondary svg *,
input[type="submit"].secondary svg *,
button.secondary svg * {
  fill: rgba(51, 51, 51, 0.4);
}

.btn.secondary:hover, .btn.secondary:active,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:active,
button.secondary:hover,
button.secondary:active {
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
}

.btn.secondary:hover svg *, .btn.secondary:active svg *,
input[type="submit"].secondary:hover svg *,
input[type="submit"].secondary:active svg *,
button.secondary:hover svg *,
button.secondary:active svg * {
  fill: #000;
}

html, form, textarea, input, input[type="text"], input[type="search"], input[type="password"], input[type="email"], button, select {
  font-family: "Futura", sans-serif;
  text-rendering: auto;
}

.font-smooth {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  -webkit-text-size-adjust: none;
  font-size: 16px;
  line-height: 1.65em;
  color: #333;
  font-weight: normal;
}

a {
  text-decoration: none;
  color: #333;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

a:hover, a:focus {
  border-color: #000;
}

.light-text-color {
  color: rgba(51, 51, 51, 0.4);
}

.primary-color {
  color: rgba(51, 51, 51, 0.4);
}

hr {
  margin: 0;
  border: none;
  border-top: 1px solid #ddd;
}

::-webkit-input-placeholder {
  color: #333;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:-moz-placeholder {
  color: #333;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
}

:focus:-moz-placeholder {
  color: transparent;
}

::-moz-placeholder {
  color: #333;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
}

:focus::-moz-placeholder {
  color: transparent;
}

:-ms-input-placeholder {
  color: #333;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

main.error {
  min-height: calc(100vh - 120px);
}

main.error .container {
  min-height: calc(100vh - 200px);
  padding: 6em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

main.error .container > div {
  width: 100%;
}

main.error .container h1 {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.333em;
  margin: 0 0 .5em 0;
}

main.error .mixer-list.inline-grid {
  padding: 2rem 0 3rem;
}

main.error .mixer-list.inline-grid .col {
  width: 50%;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 900px) {
  main.error .mixer-list.inline-grid .col {
    width: 25%;
  }
}

@media only screen and (min-width: 1200px) {
  main.error .mixer-list.inline-grid .col {
    width: 14.2%;
  }
  main.error .mixer-list.inline-grid .col .thumb-title {
    font-size: 10px;
  }
}

.container.narrow {
  max-width: 1200px;
}

.container.very-narrow {
  max-width: 36em;
}

.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.barba-container {
  padding-top: 96px;
}

@media only screen and (min-width: 600px) {
  .barba-container {
    padding-top: 120px;
  }
}

@media only screen and (min-width: 900px) {
  .barba-container {
    padding-top: 150px;
  }
}

.barba-container.inverted, .barba-container.transparent {
  padding-top: 0;
}

.bg-image {
  background-position: center;
  background-size: cover;
  min-height: 200px;
  background-repeat: no-repeat;
}

.bg-image img {
  display: none;
}

main {
  background: #f2f2f3;
}

main.padded-bottom {
  padding-bottom: 7.5%;
}

.top-area {
  position: relative;
  overflow: hidden;
}

.top-area .top-image {
  min-height: 250px;
  height: 300px;
  position: relative;
  background: #f2f2f3;
  overflow: hidden;
}

@media only screen and (min-width: 600px) {
  .top-area .top-image {
    height: 40vh;
  }
}

.top-area .top-image.push-down {
  margin-bottom: 7.5%;
}

@media only screen and (min-width: 600px) {
  .top-area .top-image.push-down {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 450px) {
  .top-area .top-image {
    height: 50vh;
  }
}

@media only screen and (min-width: 900px) {
  .top-area .top-image {
    min-height: 400px;
    height: 60vh;
  }
}

.top-area .top-image.full-height {
  height: 100vh;
}

.top-area .top-image .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

@media only screen and (min-width: 600px) {
  .top-area .text-overlay .text-wrap {
    max-width: 22em;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .top-area .text-overlay .text-wrap.right {
    float: right;
  }
}

@media only screen and (min-width: 600px) {
  .top-area .text-overlay {
    color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
  }
}

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

.section-header .container {
  padding: 3rem 0;
}

@media only screen and (min-width: 600px) {
  .section-header .container {
    padding: 4.5rem 0 4.75rem;
  }
}

@media only screen and (min-width: 1200px) {
  .section-header .container {
    padding: 6rem 0 6rem;
  }
}

.section-header h1, .section-header h2, .section-header h3, .section-header h4, .section-header h5 {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.333em;
  margin: 0;
}

@media only screen and (min-width: 600px) {
  .section-header h1, .section-header h2, .section-header h3, .section-header h4, .section-header h5 {
    font-size: 2rem;
  }
}

section.white {
  background: #fff;
}

section.white .alternating-blocks:last-child {
  padding-bottom: 7.5%;
}

section.grey {
  background: #f2f2f3;
}

section.alternating-blocks + section.alternating-blocks {
  padding-top: 3.75%;
}

@media only screen and (min-width: 600px) {
  section.alternating-blocks .row {
    position: relative;
  }
}

section.alternating-blocks .row .col .info div,
section.alternating-blocks .row *[class^="col-"] .info div {
  max-width: 350px;
  margin: 1rem 0 1rem;
}

@media only screen and (min-width: 600px) {
  section.alternating-blocks .row .col .info div,
  section.alternating-blocks .row *[class^="col-"] .info div {
    width: 80%;
    margin: 0 auto 1rem;
  }
}

section.alternating-blocks .row .col .info div.centered,
section.alternating-blocks .row *[class^="col-"] .info div.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

section.alternating-blocks .row .col .info div h5,
section.alternating-blocks .row *[class^="col-"] .info div h5 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1em;
}

@media only screen and (min-width: 600px) {
  section.alternating-blocks .row .col .info div h5,
  section.alternating-blocks .row *[class^="col-"] .info div h5 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 600px) {
  section.alternating-blocks .row .col:nth-child(even),
  section.alternating-blocks .row *[class^="col-"]:nth-child(even) {
    position: absolute !important;
    height: 100%;
  }
}

@media only screen and (min-width: 600px) {
  section.alternating-blocks .row .col:nth-child(even) .info,
  section.alternating-blocks .row *[class^="col-"]:nth-child(even) .info {
    align-items: center;
    display: flex;
    height: 100%;
  }
}

@media only screen and (min-width: 600px) {
  section.alternating-blocks:nth-child(even) .row .col:nth-child(odd),
  section.alternating-blocks:nth-child(even) .row *[class^="col-"]:nth-child(odd) {
    float: right !important;
  }
}

.thumb-title {
  display: block;
  margin-top: 1.5em;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  line-height: 1.333em;
  margin-bottom: .5em;
}

@media only screen and (min-width: 600px) {
  .thumb-title {
    font-size: 14px;
  }
}

.newsletter-form {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 350px;
}

.newsletter-form input.newsletter-signup {
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  outline: none;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  width: 100%;
}

.newsletter-form button.newsletter-submit {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  background: transparent;
}

.newsletter-form button.newsletter-submit:hover {
  background: #333;
}

.newsletter-form button.newsletter-submit:hover:after {
  border-color: #fff;
}

.newsletter-form button.newsletter-submit.loading {
  background: #333;
}

.newsletter-form button.newsletter-submit.loading:after {
  opacity: 0;
  visibility: hidden;
}

.newsletter-form button.newsletter-submit.check {
  background: #333;
}

.newsletter-form button.newsletter-submit.check:after {
  border-color: #fff;
  transform: rotate(45deg) translate3d(0px, -5px, 0);
  height: 14px;
  width: 7px;
}

.newsletter-form button.newsletter-submit:after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 25px;
  left: 23px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(-45deg);
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, border 0.25s ease-in-out, width 0.25s ease-in-out, height 0.25s ease-in-out, transform 0.25s ease-in-out;
  opacity: 1;
  visibility: inherit;
}

.intro-p {
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.intro-p p a {
  border-bottom: 1px solid currentcolor;
  transition: none;
}

.intro-p p a:hover, .intro-p p a:focus, .intro-p p a:active {
  border-bottom: 2px solid currentcolor;
}

@media only screen and (min-width: 600px) {
  .intro-p {
    margin-top: -4rem;
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .intro-p {
    margin-bottom: 4.5rem;
  }
}

a {
  padding-bottom: .15em;
  border-bottom: 2px solid transparent;
}

a:hover, a:focus {
  border-color: #333;
}

h1 {
  font-size: 1.25em;
  line-height: 1.65em;
  margin-bottom: .5em;
}

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

.lg p,
p.lg,
.large-text {
  font-family: "Futura", sans-serif;
  font-size: 1.25rem;
  line-height: 1.65em;
}

p {
  font-size: 1rem;
  font-size: .875rem;
  letter-spacing: .03em;
  line-height: 1.65em;
}

p + p {
  margin-top: 1.65em;
}

hr.spaced {
  margin: 1rem 0;
}

hr.spaced-top {
  margin: 1rem 0 0;
}

hr.spaced-bottom {
  margin: 0 0 1rem;
}

hr.tiny {
  width: 30px;
  height: 2px;
  background: #333;
  border: none;
  margin-left: auto;
  margin-right: auto;
}

body {
  background: #fff;
}

.menu-link {
  top: 50%;
  left: 0;
  position: absolute;
  padding: 20px;
  transform: translate3d(-20px, -50%, 0);
  z-index: 2;
  cursor: pointer;
}

.mobile-menu-open .menu-link .menu-icon {
  opacity: 1;
  transform: rotate(-180deg);
}

.mobile-menu-open .menu-link .menu-icon:before {
  transform: translate3d(-100%, 5px, 0);
  opacity: 0;
  width: 0;
}

.mobile-menu-open .menu-link .menu-icon:after {
  transform: translate3d(100%, -5px, 0);
  opacity: 0;
  width: 0;
}

.mobile-menu-open .menu-link .menu-icon .center {
  transform: rotate(-45deg);
}

.mobile-menu-open .menu-link .menu-icon .center:before {
  transform: rotate(-90deg);
}

.menu-link .menu-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 16px;
  transition: transform .4s ease-in-out;
}

.menu-link .menu-icon:before, .menu-link .menu-icon:after,
.menu-link .menu-icon .center,
.menu-link .menu-icon .center:before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  transition: transform .4s ease-in-out, opacity .4s ease-in-out, width .4s ease-in-out, background .4s ease-in-out;
}

.menu-link .menu-icon:before {
  top: 0;
  left: 0;
}

.menu-link .menu-icon:after {
  bottom: 0;
  right: 0;
}

.menu-link .menu-icon .center {
  top: 50%;
  margin-top: -1px;
}

header {
  color: #333;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 76px;
  height: 96px;
  -webkit-transition: height 0.4s ease-in-out, background 0.4s ease-in-out;
  -moz-transition: height 0.4s ease-in-out, background 0.4s ease-in-out;
  -o-transition: height 0.4s ease-in-out, background 0.4s ease-in-out;
}

@media only screen and (min-width: 600px) {
  header {
    height: 120px;
  }
}

@media only screen and (min-width: 900px) {
  header {
    height: 150px;
  }
}

header .container {
  height: 76px;
  top: 50%;
  margin-top: -38px;
}

@media only screen and (min-width: 900px) {
  header .container {
    width: 100%;
    max-width: none;
  }
}

@media only screen and (min-width: 900px) {
  header .menu-link {
    display: none;
  }
}

header .logo {
  display: block;
  width: 76px;
  color: transparent;
  padding: 0;
  -webkit-transition: height 0.4s ease-in-out;
  -moz-transition: height 0.4s ease-in-out;
  -o-transition: height 0.4s ease-in-out;
  z-index: 2;
  border: none;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 46px;
  height: 60px;
}

@media only screen and (min-width: 600px) {
  header .logo {
    height: 60px;
  }
}

@media only screen and (min-width: 900px) {
  header .logo {
    height: 86px;
  }
}

header .logo svg {
  height: 100%;
  max-height: 100%;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

@media only screen and (min-width: 600px) {
  header .logo svg {
    transform: translate3d(0, 0, 0);
    height: 100%;
  }
}

header .logo svg * {
  fill: #333;
}

header .logo svg .mixers {
  opacity: 1;
}

header nav {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 350px;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  transition: background 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

@media only screen and (max-width: 900px) {
  header nav {
    pointer-events: none;
  }
  .mobile-menu-open header nav {
    pointer-events: inherit;
  }
}

@media only screen and (min-width: 900px) {
  header nav {
    opacity: 1;
    visibility: inherit;
    display: block;
    *zoom: 1;
    padding-top: 0;
    z-index: 0;
    position: static;
    background: transparent;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    overflow: hidden;
    min-height: 0;
  }
  header nav:before, header nav:after {
    content: "";
    display: table;
  }
  header nav:after {
    clear: both;
  }
}

.mobile-menu-open header nav {
  opacity: 1;
  visibility: visible;
  background: rgba(255, 255, 255, 0.9);
  transition: opacity 0.4s ease-in-out, background 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

header nav > div {
  width: 100%;
}

header nav a {
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 14px;
  display: block;
  text-align: center;
  position: relative;
  cursor: pointer;
  padding: .75em;
}

@media only screen and (min-width: 900px) {
  header nav a {
    font-size: 10px;
    padding: 0;
  }
}

@media only screen and (min-width: 900px) {
  header nav a:after {
    content: '';
    display: block;
    height: 2px;
    left: 0;
    right: .15em;
    bottom: 50%;
    margin-bottom: -1em;
    background: #333;
    position: absolute;
    transform: translate3d(0, 8px, 0);
    opacity: 0;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, background 0.25s ease-in-out;
  }
}

header nav a:hover:after {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@media only screen and (min-width: 900px) {
  header nav a {
    display: inline-block;
    height: 76px;
    padding: 32px 0 32px;
    margin: 0;
    line-height: 1em;
  }
}

@media only screen and (min-width: 1100px) {
  header nav a {
    font-size: 12px;
  }
}

header nav .left {
  display: inline;
}

@media only screen and (min-width: 900px) {
  header nav .left {
    padding-right: 40px;
    text-align: center;
    width: 50%;
    display: inline-block;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
}

@media only screen and (max-width: 900px) {
  header nav .left a {
    color: #333;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }
  header nav .left a:nth-child(1) {
    transition-delay: 0s;
  }
  header nav .left a:nth-child(2) {
    transition-delay: .05s;
  }
  header nav .left a:nth-child(3) {
    transition-delay: .1s;
  }
  .mobile-menu-open header nav .left a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media only screen and (min-width: 900px) {
  header nav .left a {
    margin-left: 11%;
  }
  header nav .left a:first-child {
    margin-left: 0;
  }
}

@media only screen and (min-width: 1500px) {
  header nav .left a {
    margin-left: 13%;
  }
}

header nav .right {
  display: inline;
}

@media only screen and (min-width: 900px) {
  header nav .right {
    padding-left: 55px;
    text-align: center;
    width: 50%;
    display: inline-block;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
}

@media only screen and (min-width: 1500px) {
  header nav .right {
    padding-left: 50px;
  }
}

@media only screen and (max-width: 900px) {
  header nav .right a {
    color: #333;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }
  header nav .right a:nth-child(1) {
    transition-delay: .15s;
  }
  header nav .right a:nth-child(2) {
    transition-delay: .2s;
  }
  header nav .right a:nth-child(3) {
    transition-delay: .25s;
  }
  .mobile-menu-open header nav .right a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media only screen and (min-width: 900px) {
  header nav .right a {
    margin-right: 8%;
  }
  header nav .right a:last-child {
    margin-right: 0;
  }
}

@media only screen and (min-width: 1500px) {
  header nav .right a {
    margin-right: 10%;
  }
}

header.inverted {
  background: transparent;
}

header.inverted a {
  color: #fff;
}

header.inverted a:after {
  background: #fff;
}

header.inverted .logo svg * {
  fill: #fff;
}

header.inverted .menu-icon:before, header.inverted .menu-icon:after,
header.inverted .menu-icon .center,
header.inverted .menu-icon .center:before {
  background: #fff;
}

header.transparent {
  background: transparent;
}

header.collapsed,
header.inverted.collapsed,
header.inverted.transparent {
  background: #fff;
  height: 60px;
}

@media only screen and (min-width: 600px) {
  header.collapsed,
  header.inverted.collapsed,
  header.inverted.transparent {
    height: 76px;
  }
}

header.collapsed a,
header.inverted.collapsed a,
header.inverted.transparent a {
  color: #333;
}

header.collapsed a:after,
header.inverted.collapsed a:after,
header.inverted.transparent a:after {
  background: #333;
}

header.collapsed .logo,
header.inverted.collapsed .logo,
header.inverted.transparent .logo {
  height: 46px;
}

@media only screen and (min-width: 600px) {
  header.collapsed .logo,
  header.inverted.collapsed .logo,
  header.inverted.transparent .logo {
    height: 54px;
  }
}

header.collapsed .logo svg,
header.inverted.collapsed .logo svg,
header.inverted.transparent .logo svg {
  margin-top: -1px;
  transform: translate3d(0, 6px, 0);
}

header.collapsed .logo svg *,
header.inverted.collapsed .logo svg *,
header.inverted.transparent .logo svg * {
  fill: #333;
}

header.collapsed .logo svg .mixers,
header.inverted.collapsed .logo svg .mixers,
header.inverted.transparent .logo svg .mixers {
  opacity: 0;
  transform: translate3d(0, -20px, 0);
}

header.collapsed .menu-icon:before, header.collapsed .menu-icon:after,
header.collapsed .menu-icon .center,
header.collapsed .menu-icon .center:before,
header.inverted.collapsed .menu-icon:before,
header.inverted.collapsed .menu-icon:after,
header.inverted.collapsed .menu-icon .center,
header.inverted.collapsed .menu-icon .center:before,
header.inverted.transparent .menu-icon:before,
header.inverted.transparent .menu-icon:after,
header.inverted.transparent .menu-icon .center,
header.inverted.transparent .menu-icon .center:before {
  background: #333;
}

header.desktop-dark {
  background: transparent;
}

header.desktop-dark .logo svg {
  margin-top: -1px;
  transform: translate3d(0, 6px, 0);
}

header.desktop-dark .logo svg * {
  fill: #333;
}

header.desktop-dark a {
  color: #333;
}

header.desktop-dark a:after {
  background: #333;
}

header.desktop-light {
  background: transparent;
}

header.desktop-light .logo svg {
  margin-top: -1px;
  transform: translate3d(0, 6px, 0);
}

header.desktop-light .logo svg * {
  fill: #fff;
}

header.mobile-dark {
  background: transparent;
}

@media only screen and (max-width: 700px) {
  header.mobile-dark .logo svg {
    margin-top: -1px;
    transform: translate3d(0, 6px, 0);
  }
  header.mobile-dark .logo svg * {
    fill: #333;
  }
  header.mobile-dark a {
    color: #333;
  }
  header.mobile-dark a:after {
    background: #333;
  }
  header.mobile-dark .menu-icon:before, header.mobile-dark .menu-icon:after,
  header.mobile-dark .menu-icon .center,
  header.mobile-dark .menu-icon .center:before {
    background: #333;
  }
}

header.mobile-light {
  background: transparent;
}

@media only screen and (max-width: 700px) {
  header.mobile-light .logo svg {
    margin-top: -1px;
    transform: translate3d(0, 6px, 0);
  }
  header.mobile-light .logo svg * {
    fill: #fff;
  }
}

@media only screen and (max-width: 600px) {
  .mobile-menu-open header {
    height: 60px;
  }
}

@media only screen and (max-width: 900px) {
  .mobile-menu-open header {
    height: 76px;
  }
}

@media only screen and (max-width: 900px) {
  .mobile-menu-open header a {
    color: #333;
  }
  .mobile-menu-open header a:after {
    background: #333;
  }
  .mobile-menu-open header .logo {
    height: 46px;
  }
}

@media only screen and (max-width: 900px) and (min-width: 600px) {
  .mobile-menu-open header .logo {
    height: 54px;
  }
}

@media only screen and (max-width: 900px) {
  .mobile-menu-open header .logo svg {
    margin-top: -1px;
    transform: translate3d(0, 6px, 0);
  }
  .mobile-menu-open header .logo svg * {
    fill: #333;
  }
  .mobile-menu-open header .logo svg .mixers {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  .mobile-menu-open header .menu-icon:before, .mobile-menu-open header .menu-icon:after,
  .mobile-menu-open header .menu-icon .center,
  .mobile-menu-open header .menu-icon .center:before {
    background: #333;
  }
}

footer {
  background: white;
}

footer .container {
  padding: 20px 0;
  text-align: center;
}

@media only screen and (min-width: 900px) {
  footer .container {
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  footer .container {
    width: 100%;
    max-width: 100%;
    padding: 20px 0 0 0;
  }
}

@media only screen and (min-width: 900px) {
  footer .container ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

footer .container ul li {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 10px;
}

@media only screen and (min-width: 900px) {
  footer .container ul li:nth-child(-n + 3) {
    text-align: right;
    margin-left: 5%;
  }
}

@media only screen and (min-width: 1200px) {
  footer .container ul li:nth-child(-n + 3) {
    margin-left: 7%;
  }
}

@media only screen and (min-width: 900px) {
  footer .container ul li:nth-child(n + 4):nth-child(-n + 6) {
    text-align: left;
    margin-right: 4%;
  }
}

@media only screen and (min-width: 1200px) {
  footer .container ul li:nth-child(n + 4):nth-child(-n + 6) {
    margin-right: 6%;
  }
}

@media only screen and (min-width: 900px) {
  footer .container ul li:nth-child(1) {
    margin-left: 3.25em;
  }
}

@media only screen and (min-width: 1200px) {
  footer .container ul li:nth-child(1) {
    margin-left: 2.5em;
  }
}

footer .container ul li.placeholder-li {
  display: none;
}

@media only screen and (min-width: 900px) {
  footer .container ul li.placeholder-li {
    display: block;
    width: 130px;
    margin: 0 4%;
  }
}

@media only screen and (min-width: 1200px) {
  footer .container ul li.placeholder-li {
    margin: 0 7%;
  }
}

footer .container ul li a {
  display: inline-block;
  line-height: 2em;
}

@media only screen and (max-width: 900px) {
  footer .container ul li a {
    display: block;
    border: none;
    padding: 7px 0;
  }
}

@media only screen and (min-width: 1500px) {
  footer .container ul li {
    font-size: 12px;
  }
}

footer .container ul li.q-footer-title {
  background: #000;
  color: #fff;
  margin-top: 20px;
  padding: 10px 0;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 900px) {
  footer .container ul li.q-footer-title {
    margin: 0;
    position: absolute;
    left: 50%;
    font-size: 16px;
    width: 130px;
    margin-left: -65px;
    text-align: center;
    padding: 0;
    padding-left: 0.3em;
    color: #333;
    background: transparent;
  }
}

@media only screen and (min-width: 1200px) {
  footer .container ul li.q-footer-title {
    font-size: 18px;
  }
}

@-webkit-keyframes transition-in {
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes transition-in {
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-ms-keyframes transition-in {
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes transition-in {
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

.content {
  position: relative;
}

.top-image.fancy-entrance {
  opacity: 0;
  transform: scale(1.1);
  animation: transition-in 2s 0s ease forwards;
}

.transition-in {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  position: relative;
  z-index: 3;
}

.transition-in.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.easy-locator-wrap {
  padding-bottom: 7.5%;
}

.easy-locator-wrap iframe#EasyLocator {
  width: 100% !important;
}

.easy-locator-wrap iframe#EasyLocator body {
  border: 3px solid red;
}

.easy-locator-wrap #container {
  width: 100% !important;
  background: blue !important;
}

iframe#EasyLocator {
  height: 472px !important;
}

.home .text-overlay {
  color: #fff;
  width: 100%;
  height: auto;
  position: absolute;
  top: calc(100px + 7%);
  right: 0;
  z-index: 2;
  text-align: center;
  display: block;
}

@media only screen and (min-width: 700px) {
  .home .text-overlay {
    top: calc(100px + 35%);
  }
}

.home .text-overlay.desktop-dark {
  color: #333;
}

.home .text-overlay.desktop-dark .headline .h1-wrap .q-question svg * {
  fill: #333;
}

.home .text-overlay.desktop-light {
  color: #fff;
}

.home .text-overlay.desktop-light .headline .h1-wrap .q-question svg * {
  fill: #fff;
}

@media only screen and (max-width: 700px) {
  .home .text-overlay.mobile-dark {
    color: #333;
  }
  .home .text-overlay.mobile-dark .headline .h1-wrap .q-question svg * {
    fill: #333;
  }
}

@media only screen and (max-width: 700px) {
  .home .text-overlay.mobile-light {
    color: #fff;
  }
  .home .text-overlay.mobile-light .headline .h1-wrap .q-question svg * {
    fill: #fff;
  }
}

@media only screen and (min-width: 700px) {
  .home .text-overlay .container {
    max-width: none;
    width: 90%;
  }
}

@media only screen and (min-width: 1200px) {
  .home .text-overlay .container {
    width: 85%;
  }
}

@media only screen and (min-width: 1200px) {
  .home .text-overlay .container {
    width: 80%;
  }
}

.home .text-overlay .headline {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 15em;
  margin: 0 auto;
  padding-bottom: 5em;
  text-align: center;
  transform: translate3d(0, 50px, 0);
  opacity: 0;
  animation: transition-in 1s 0.5s ease-in-out forwards;
}

@media only screen and (min-width: 450px) {
  .home .text-overlay .headline {
    font-size: 1.5em;
  }
}

@media only screen and (min-width: 700px) {
  .home .text-overlay .headline {
    text-align: left;
    width: 20em;
    max-width: 60%;
    margin: 0;
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 1500px) {
  .home .text-overlay .headline {
    font-size: 2em;
  }
}

.home .text-overlay .headline .h1-wrap {
  display: block;
  position: relative;
}

@media only screen and (min-width: 700px) {
  .home .text-overlay .headline .h1-wrap {
    padding-left: 3.5em;
  }
}

.home .text-overlay .headline .h1-wrap .text {
  display: inline;
}

@media only screen and (min-width: 700px) {
  .home .text-overlay .headline .h1-wrap .text {
    display: block;
  }
}

.home .text-overlay .headline .h1-wrap .q-question {
  display: inline-block;
  width: 2.4em;
  margin-bottom: .5em;
  text-align: left;
  line-height: 1em;
  margin: -.1em -.25em -.7em 0;
}

@media only screen and (min-width: 700px) {
  .home .text-overlay .headline .h1-wrap .q-question {
    display: block;
    position: absolute;
    top: .25em;
    left: 0;
    margin: 0 0 0 -.4em;
    width: 3.75em;
  }
}

.home .text-overlay .headline .h1-wrap .q-question svg {
  display: inline-block;
  vertical-align: middle;
  height: 2em;
  transition: none;
  margin-top: -.2em;
}

@media only screen and (min-width: 700px) {
  .home .text-overlay .headline .h1-wrap .q-question svg {
    height: 3em;
    margin: 0 0 -.7em 0;
  }
}

.home .text-overlay .headline .h1-wrap .q-question svg .mixers {
  display: none;
}

.home .text-overlay .headline .h1-wrap .q-question svg * {
  transition: none;
  fill: #fff;
}

.home .text-overlay .headline .h1-wrap .q-question .colon {
  line-height: 1em;
  margin-top: -.25em;
  margin-left: -.25em;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25em;
}

@media only screen and (min-width: 700px) {
  .home .text-overlay .headline .h1-wrap .q-question .colon {
    margin-left: -.1em;
  }
}

.home-bg-desktop {
  display: none;
}

@media only screen and (min-width: 700px) {
  .home-bg-desktop {
    display: block;
  }
}

.home-bg-mobile {
  display: none;
}

@media only screen and (max-width: 700px) {
  .home-bg-mobile {
    display: block;
  }
}

main.mixers .top-area .top-image {
  height: 250px;
  min-height: 200px;
}

@media only screen and (min-width: 600px) {
  main.mixers .top-area .top-image {
    height: 40vh;
    min-height: 400px;
  }
}

main.mixers .mixers .container {
  padding-bottom: 3.75%;
}

main.mixers .mixer-list .col {
  width: 50%;
  margin-bottom: 7.5%;
}

main.mixers .mixer-list .col img {
  width: 250px;
}

@media only screen and (min-width: 450px) {
  main.mixers .mixer-list .col {
    width: 50%;
  }
}

@media only screen and (min-width: 600px) {
  main.mixers .mixer-list .col {
    width: 33.333%;
  }
}

.mixer-list a {
  display: block;
  border: none;
}

.mixer-list a:hover {
  opacity: .8;
}

.mixer-list a:hover img {
  transform: translate3d(0, -10px, 0);
}

.mixer-list a:hover + .thumb-title {
  border-color: #333;
}

.mixer-list img {
  transition: transform 0.25s ease-in-out;
}

.mixer-list .thumb-title {
  border-bottom: 2px solid transparent;
  display: inline-block;
  transition: border 0.25s ease-in-out;
  padding-bottom: .25em;
}

main.mixer .mixer-intro {
  min-height: 500px;
}

main.mixer .mixer-intro .container.narrow {
  padding: 5% 0 12%;
  max-width: 800px;
}

@media only screen and (min-width: 600px) {
  main.mixer .mixer-intro .container.narrow {
    padding: 5% 0 6%;
  }
}

main.mixer .mixer-intro .img-wrap {
  max-width: 200px;
  margin: 0 auto;
}

@media only screen and (min-width: 600px) {
  main.mixer .mixer-intro .img-wrap {
    max-width: 400px;
    margin-left: -18%;
    margin-right: 2%;
  }
}

main.mixer .mixer-intro .img-wrap img {
  margin: 0 auto;
  display: block;
  max-height: 60vh;
  min-height: 200px;
}

main.mixer .mixer-intro .text-wrap {
  text-align: center;
  margin-top: 7.5%;
}

@media only screen and (min-width: 600px) {
  main.mixer .mixer-intro .text-wrap {
    margin-top: 0;
  }
}

main.mixer .mixer-intro .text-wrap h1 {
  font-size: 1.5rem;
  margin-bottom: .65em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  animation: transition-in .65s ease forwards;
  animation-delay: 0.3s;
  line-height: 1.333em;
}

@media only screen and (min-width: 600px) {
  main.mixer .mixer-intro .text-wrap h1 {
    font-size: 2rem;
  }
}

main.mixer .mixer-intro .text-wrap p {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  animation: transition-in .65s ease forwards;
  animation-delay: 0.4s;
}

main.mixer .mixer-intro .text-wrap p + p {
  animation-delay: 0.5s;
}

main.mixer .ingredient-images {
  overflow: hidden;
}

main.mixer .ingredient-images .container {
  padding-bottom: 7.5%;
  max-width: 1000px;
}

main.mixer .ingredient-images .ingredient-block img {
  width: 400px;
  margin: 0 auto;
  display: block;
}

main.mixer .mixer-recipes {
  min-height: 300px;
  position: relative;
}

main.mixer .mixer-recipes .bg-color {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

main.mixer .mixer-recipes > .container {
  z-index: 2;
}

@media only screen and (min-width: 600px) {
  main.mixer .mixer-recipes > .container {
    width: 75%;
  }
}

@media only screen and (max-width: 600px) {
  main.mixer .mixer-recipes .recipe-card .mobile-hide {
    display: none;
  }
}

main.mixer .mixer-list {
  padding-bottom: 7.5%;
}

main.mixer .mixer-list .col {
  margin-bottom: 15%;
}

main.mixer .mixer-list .col img {
  width: 165px;
}

@media only screen and (min-width: 450px) {
  main.mixer .mixer-list .col {
    width: 50%;
  }
}

@media only screen and (min-width: 600px) {
  main.mixer .mixer-list .col {
    width: 33.333%;
  }
}

@media only screen and (min-width: 1200px) {
  main.mixer .mixer-list .col {
    margin-bottom: 0;
    width: 16.6%;
  }
  main.mixer .mixer-list .col img {
    width: 225px;
  }
  main.mixer .mixer-list .col .thumb-title {
    font-size: 10px;
  }
}

.more-btn-wrap {
  padding: 1.5rem 0 4rem;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .more-btn-wrap {
    padding: 4.5rem 0 4.75rem;
  }
}

@media only screen and (min-width: 1200px) {
  .more-btn-wrap {
    padding: 6rem 0 6rem;
  }
}

.recipe-list {
  overflow: hidden;
}

.recipe-list > .container > .flex-grid {
  margin-top: -5%;
}

.recipe-list .col {
  margin-bottom: 7.5%;
}

@media only screen and (min-width: 450px) {
  .recipe-list .col {
    width: 50%;
  }
}

@media only screen and (min-width: 900px) {
  .recipe-list .col {
    width: 33.333%;
  }
}

.recipe-list .recipe-mixer {
  display: block;
  text-align: center;
  text-transform: capitalize;
  font-size: .875rem;
  line-height: 1.333em;
}

@media only screen and (min-width: 600px) {
  .recipe-list .recipe-mixer {
    font-size: 1rem;
  }
}

.recipe-list .flex-col {
  width: 100%;
  flex-shrink: 0;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 600px) {
  .recipe-list .flex-col {
    margin-top: 5%;
    margin-bottom: 3%;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 600px) {
  .recipe-list .flex-col {
    width: 50%;
  }
}

@media only screen and (min-width: 900px) {
  .recipe-list .flex-col {
    width: 33.333%;
  }
}

.flex-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 3%;
  margin-left: -1.97368%;
  margin-right: -1.97368%;
}

@media only screen and (min-width: 900px) {
  .flex-grid li.flex-col:nth-of-type(n+0) {
    order: 0;
  }
  .flex-grid li.flex-col:nth-of-type(n+4) {
    order: 2;
  }
  .flex-grid li.flex-col:nth-of-type(n+7) {
    order: 4;
  }
  .flex-grid li.flex-col:nth-of-type(n+10) {
    order: 6;
  }
  .flex-grid li.flex-col:nth-of-type(n+13) {
    order: 8;
  }
  .flex-grid li.flex-col:nth-of-type(n+16) {
    order: 10;
  }
  .flex-grid li.flex-col:nth-of-type(n+19) {
    order: 12;
  }
  .flex-grid li.flex-col:nth-of-type(n+22) {
    order: 14;
  }
  .flex-grid li.flex-col:nth-of-type(n+25) {
    order: 16;
  }
  .flex-grid li.flex-col:nth-of-type(n+28) {
    order: 18;
  }
  .flex-grid li.flex-col:nth-of-type(n+31) {
    order: 20;
  }
  .flex-grid li.flex-col:nth-of-type(n+34) {
    order: 22;
  }
  .flex-grid li.flex-col:nth-of-type(n+37) {
    order: 24;
  }
  .flex-grid li.flex-col:nth-of-type(n+40) {
    order: 26;
  }
  .flex-grid li.flex-col:nth-of-type(n+43) {
    order: 28;
  }
  .flex-grid li.flex-col:nth-of-type(n+46) {
    order: 30;
  }
}

@media only screen and (min-width: 900px) {
  .flex-grid div.flex-col:nth-of-type(n+0) {
    order: 1;
  }
  .flex-grid div.flex-col:nth-of-type(n+4) {
    order: 3;
  }
  .flex-grid div.flex-col:nth-of-type(n+7) {
    order: 5;
  }
  .flex-grid div.flex-col:nth-of-type(n+10) {
    order: 7;
  }
  .flex-grid div.flex-col:nth-of-type(n+13) {
    order: 9;
  }
  .flex-grid div.flex-col:nth-of-type(n+16) {
    order: 11;
  }
  .flex-grid div.flex-col:nth-of-type(n+19) {
    order: 13;
  }
  .flex-grid div.flex-col:nth-of-type(n+22) {
    order: 15;
  }
  .flex-grid div.flex-col:nth-of-type(n+25) {
    order: 17;
  }
  .flex-grid div.flex-col:nth-of-type(n+28) {
    order: 19;
  }
  .flex-grid div.flex-col:nth-of-type(n+31) {
    order: 21;
  }
  .flex-grid div.flex-col:nth-of-type(n+34) {
    order: 23;
  }
  .flex-grid div.flex-col:nth-of-type(n+37) {
    order: 25;
  }
  .flex-grid div.flex-col:nth-of-type(n+40) {
    order: 27;
  }
  .flex-grid div.flex-col:nth-of-type(n+43) {
    order: 29;
  }
  .flex-grid div.flex-col:nth-of-type(n+46) {
    order: 31;
  }
  .flex-grid div.flex-col:nth-of-type(n+2):nth-of-type(-n+3), .flex-grid div.flex-col:nth-of-type(n+5):nth-of-type(-n+6), .flex-grid div.flex-col:nth-of-type(n+8):nth-of-type(-n+9), .flex-grid div.flex-col:nth-of-type(n+11):nth-of-type(-n+12), .flex-grid div.flex-col:nth-of-type(n+14):nth-of-type(-n+15), .flex-grid div.flex-col:nth-of-type(n+17):nth-of-type(-n+18), .flex-grid div.flex-col:nth-of-type(n+20):nth-of-type(-n+21), .flex-grid div.flex-col:nth-of-type(n+23):nth-of-type(-n+24), .flex-grid div.flex-col:nth-of-type(n+26):nth-of-type(-n+27), .flex-grid div.flex-col:nth-of-type(n+29):nth-of-type(-n+30), .flex-grid div.flex-col:nth-of-type(n+32):nth-of-type(-n+33), .flex-grid div.flex-col:nth-of-type(n+35):nth-of-type(-n+36), .flex-grid div.flex-col:nth-of-type(n+38):nth-of-type(-n+39), .flex-grid div.flex-col:nth-of-type(n+41):nth-of-type(-n+42), .flex-grid div.flex-col:nth-of-type(n+44):nth-of-type(-n+45), .flex-grid div.flex-col:nth-of-type(n+47):nth-of-type(-n+48) {
    margin-left: -100%;
  }
}

.flex-grid .flex-col {
  padding-left: 1.875%;
  padding-right: 1.875%;
  order: 0;
  position: relative;
}

.flex-grid .flex-col .img-wrap {
  overflow: hidden;
}

.flex-grid .flex-col .img-wrap img {
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease-in-out;
}

.flex-grid .flex-col .recipe-thumb-link {
  display: block;
  border: none;
}

.flex-grid .flex-col .recipe-thumb-link:hover .img-wrap {
  transform-style: preserve-3d;
}

.flex-grid .flex-col .recipe-thumb-link:hover .img-wrap img {
  transform: translate3d(0, 0, 0) scale(1.03);
}

@media only screen and (min-width: 600px) {
  .flex-grid .flex-col:not(.inline-recipe) .nipple-wrap {
    width: 20px;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    height: 0;
  }
  .flex-grid .flex-col:not(.inline-recipe) .nipple-wrap .nipple {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: none;
    border-bottom-color: #ffc99b;
  }
}

.flex-grid .flex-col.inline-recipe {
  min-width: 100%;
  width: 100%;
  flex-grow: 1;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: none;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  height: 0;
  opacity: 0;
  transition: height 0.4s 0.4s ease-in-out, opacity 0.3s 0.4s ease-in-out, color 0.3s 0.4s ease-in-out;
  display: none;
}

@media only screen and (min-width: 900px) {
  .flex-grid .flex-col.inline-recipe {
    display: block;
  }
}

.flex-grid .flex-col.inline-recipe.nipple-left .nipple-wrap .nipple-container {
  transform: translate3d(0, 0, 0);
}

.flex-grid .flex-col.inline-recipe.nipple-right .nipple-wrap .nipple-container {
  transform: translate3d(224.375%, 0, 0);
}

.flex-grid .flex-col.inline-recipe.nipple-center .nipple-wrap .nipple-container {
  transform: translate3d(112.1875%, 0, 0);
}

.flex-grid .flex-col.inline-recipe .close-recipe {
  color: red;
  position: absolute;
  z-index: 5;
  right: -30px;
  top: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-indent: -999px;
  overflow: hidden;
}

.flex-grid .flex-col.inline-recipe .close-recipe:after {
  content: '';
  display: block;
  width: 2px;
  height: 20px;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px -1px;
  background: #333;
}

.flex-grid .flex-col.inline-recipe .close-recipe:before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px -10px;
  background: #333;
}

.flex-grid .flex-col.inline-recipe .nipple-wrap {
  position: absolute;
  top: 1px;
  left: 1.875%;
  right: 1.875%;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s 0.4s ease-in-out;
}

.flex-grid .flex-col.inline-recipe .nipple-wrap .nipple-container {
  width: 30.833%;
  position: absolute;
  left: 0;
  transition: transform .4s ease-in-out;
}

.flex-grid .flex-col.inline-recipe .nipple-wrap .nipple-container div {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: none;
  border-bottom-color: currentcolor;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  transition: border .4s ease-in-out;
}

.flex-grid .flex-col.inline-recipe.visible {
  height: auto;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 1;
}

.flex-grid .flex-col.inline-recipe.visible .container {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: opacity 0.2s 0.4s ease-in-out, transform 0.2s 0.4s ease-in-out;
}

.flex-grid .flex-col.inline-recipe.visible .nipple-wrap {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

@media only screen and (max-width: 900px) {
  .flex-grid .flex-col.inline-recipe.visible {
    display: none;
  }
}

.flex-grid .flex-col.inline-recipe .inline-recipe-wrap {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.flex-grid .flex-col.inline-recipe .bg-color {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  right: -100%;
  margin: 0 -100%;
  background-color: #ffffff;
  z-index: 1;
  transition: background 0.4s ease-in-out;
}

.flex-grid .flex-col.inline-recipe .container {
  color: #333;
  width: 96%;
  z-index: 1;
  padding: 0rem 0 4rem;
  z-index: 2;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

@media only screen and (min-width: 900px) {
  .flex-grid .flex-col.inline-recipe .container {
    padding: 3rem 0;
  }
}

.flex-grid .flex-col.inline-recipe .recipe-section {
  margin-top: 2.475em;
  max-width: 400px;
}

@media only screen and (min-width: 900px) {
  .flex-grid .flex-col.inline-recipe .recipe-section {
    margin-top: 0;
  }
}

.flex-grid .flex-col.inline-recipe .recipe-section h3 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  margin-bottom: 1em;
}

@media only screen and (min-width: 900px) {
  .flex-grid .flex-col.inline-recipe .recipe-section + .recipe-section {
    margin-top: 2.475em;
  }
}

.flex-grid .flex-col.inline-recipe .recipe-section .share-recipe li {
  font-size: 14px;
  letter-spacing: .05em;
  position: relative;
}

.flex-grid .flex-col.inline-recipe .recipe-section .share-recipe li a {
  margin-left: 22px;
}

.flex-grid .flex-col.inline-recipe .recipe-section .share-recipe li a .icon {
  display: block;
  width: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-left: -3px;
  transform: translate3d(0, -52%, 0);
}

.flex-grid .flex-col.inline-recipe .recipe-section .share-recipe li a .icon svg {
  margin: 0 auto;
  transform: scale(0.8);
  display: block;
}

.flex-grid .flex-col.inline-recipe .recipe-section .share-recipe li a .icon svg * {
  fill: #333;
}

.flex-grid .flex-col.inline-recipe .recipe-section .recipe-steps {
  counter-reset: step-counter;
}

.flex-grid .flex-col.inline-recipe .recipe-section .recipe-steps li {
  margin-bottom: 0.825em;
  position: relative;
  padding-left: 32px;
}

@media only screen and (min-width: 900px) {
  .flex-grid .flex-col.inline-recipe .recipe-section .recipe-steps li {
    padding-left: 0;
  }
}

.flex-grid .flex-col.inline-recipe .recipe-section .recipe-steps li:before {
  content: counter(step-counter, decimal-leading-zero);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  padding-right: 15px;
  font-weight: 900;
  font-size: 12px;
  top: -2px;
  letter-spacing: 0.15em;
}

@media only screen and (min-width: 900px) {
  .flex-grid .flex-col.inline-recipe .recipe-section .recipe-steps li:before {
    left: auto;
    right: 100%;
  }
}

main.serve .top-area .top-image.push-down {
  margin-bottom: 7.5%;
}

@media only screen and (min-width: 600px) {
  main.serve .top-area .top-image.push-down {
    margin-bottom: 6rem;
  }
}

main.serve .text-wrap {
  max-width: 30em;
  margin: 0 auto;
}

@media only screen and (max-width: 600px) {
  main.serve .text-wrap p {
    font-size: 1.125rem;
  }
}

main.serve .serve-steps {
  overflow: hidden;
}

main.serve .serve-steps .container {
  padding-bottom: 7.5%;
}

main.inspiration .top-area .top-image.push-down {
  margin-bottom: 7.5%;
}

@media only screen and (min-width: 600px) {
  main.inspiration .top-area .top-image.push-down {
    margin-bottom: 4rem;
  }
}

main.inspiration .text-wrap {
  max-width: 26em;
  margin: 0 auto;
}

@media only screen and (max-width: 600px) {
  main.inspiration .text-wrap p {
    font-size: 1.125rem;
  }
}

main.inspiration .text-wrap:after {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: #333;
  margin: 1.5em auto 0;
}

main.inspiration .inspiration-text .container {
  padding: 2rem 0 0;
}

main.inspiration .signature {
  margin: 1.5rem 0;
}

main.inspiration .signature image {
  max-width: 200px;
}

main.accolades .accolades-list {
  padding-bottom: 3.75%;
  text-align: center;
}

main.accolades .accolades-list section {
  padding-bottom: 15%;
}

@media only screen and (min-width: 600px) {
  main.accolades .accolades-list section {
    padding-bottom: 5.625%;
  }
}

main.accolades .accolades-list section .quote:before {
  content: '“';
}

main.accolades .accolades-list section .quote:after {
  content: '”';
}

main.accolades .accolades-list section .quote-by {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: .5em;
}

@media only screen and (min-width: 700px) {
  main.about {
    position: relative;
    padding-top: 60px;
  }
}

main.about + footer {
  background: #f2f2f3;
}

main.about .split {
  position: relative;
  min-height: 30vh;
}

main.about .split .left {
  position: relative;
  height: 30vh;
  min-height: 200px;
  overflow: hidden;
}

@media only screen and (min-width: 600px) {
  main.about .split .left {
    height: auto;
    min-height: 0;
  }
}

main.about .split .left .top-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

main.about .split .left .bg-image {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

@media only screen and (min-width: 600px) {
  main.about .split .left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
  }
}

main.about .split .right .section-header {
  padding: 0 5%;
}

@media only screen and (min-width: 600px) {
  main.about .split .right .section-header .container {
    padding-top: 3rem;
  }
}

main.about .split .right .section-header h1, main.about .split .right .section-header h2, main.about .split .right .section-header h3, main.about .split .right .section-header h4, main.about .split .right .section-header h5 {
  max-width: 12em;
  margin: 0 auto;
}

@media only screen and (max-width: 1500px) {
  main.about .split .right .section-header h1, main.about .split .right .section-header h2, main.about .split .right .section-header h3, main.about .split .right .section-header h4, main.about .split .right .section-header h5 {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 600px) {
  main.about .split .right {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 50%;
    min-height: 30vh;
    margin-left: 50%;
  }
  main.about .split .right > div {
    width: 100%;
  }
}

main.about nav.secondary {
  background: #000;
  height: 60px;
  text-align: center;
  align-items: center;
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 120px;
  z-index: 9;
  -webkit-transition: top 0.4s ease-in-out;
  -moz-transition: top 0.4s ease-in-out;
  -o-transition: top 0.4s ease-in-out;
}

main.about nav.secondary.collapsed {
  top: 76px;
}

@media only screen and (min-width: 900px) {
  main.about nav.secondary {
    top: 150px;
  }
}

main.about nav.secondary .container {
  max-width: 100%;
  width: 100%;
}

@media only screen and (min-width: 700px) {
  main.about nav.secondary {
    display: flex;
  }
}

main.about nav.secondary li {
  display: inline-block;
  padding: 0 .5em;
}

@media only screen and (min-width: 900px) {
  main.about nav.secondary li {
    padding: 0 1em;
  }
}

main.about nav.secondary li:first-child {
  padding-left: 0;
}

main.about nav.secondary li:last-child {
  padding-right: 0;
}

main.about nav.secondary li a {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 10px;
  line-height: 1.25em;
  margin-bottom: .5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 900px) {
  main.about nav.secondary li a {
    font-size: 12px;
  }
}

main.about nav.secondary li a:hover {
  border-bottom-color: #fff;
}

@media only screen and (min-width: 600px) {
  main.about .about-info .section-header .container {
    padding: 4rem 0 1.333rem;
  }
}

main.about .about-info section {
  padding-bottom: 1.333rem;
}

main.about .about-info section:last-child {
  padding-bottom: 3rem;
}

main.about .about-info .follow-icons a {
  border: none;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
}

main.about .about-info .follow-icons a svg {
  display: block;
}

main.about .about-info hr.tiny {
  margin-bottom: 1rem;
}

main.about .about-info h5 {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 0;
}

main.about .about-info p {
  text-transform: uppercase;
  letter-spacing: .075em;
}

.availability .inline-grid {
  padding-bottom: 2.5%;
}

.availability .inline-grid *[class^="col"] {
  margin-bottom: 7.5%;
}

.availability .inline-grid *[class^="col"] img {
  opacity: .2;
  width: 150px;
  margin: 0 auto;
  display: block;
}

@media only screen and (min-width: 450px) {
  .availability .inline-grid *[class^="col"] {
    width: 33.333%;
  }
}

@media only screen and (min-width: 900px) {
  .availability .inline-grid *[class^="col"] {
    width: 20%;
    margin-left: -.125em !important;
  }
}

.package-configs .container.very-narrow {
  max-width: 30em;
}

.package-configs .inline-grid {
  padding-bottom: 2.5%;
}

.package-configs .inline-grid *[class^="col"] {
  margin-bottom: 7.5%;
  text-align: center;
}

.package-configs .inline-grid *[class^="col"] img {
  margin-bottom: 1rem;
}

.package-configs .inline-grid *[class^="col"] h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
}

.team-list {
  overflow: hidden;
}

.team-list h2 {
  margin-top: 2rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
}

@media only screen and (max-width: 600px) {
  .team-list h2 {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 600px) {
  .team-list > .container > .flex-grid {
    margin-top: -3rem;
  }
}

.team-list .col {
  margin-bottom: 7.5%;
}

@media only screen and (min-width: 450px) {
  .team-list .col {
    width: 50%;
  }
}

@media only screen and (min-width: 600px) {
  .team-list .col {
    width: 33.333%;
  }
}

.team-list .flex-col {
  width: 100%;
  flex-shrink: 0;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 600px) {
  .team-list .flex-col {
    margin-top: 5%;
    margin-bottom: 3%;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 600px) {
  .team-list .flex-col {
    width: 33.333%;
  }
}

.team-list .flex-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 3%;
  margin-left: -1.97368%;
  margin-right: -1.97368%;
}

@media only screen and (min-width: 600px) {
  .team-list .flex-grid li.flex-col:nth-of-type(n+0) {
    order: 0;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+4) {
    order: 2;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+7) {
    order: 4;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+10) {
    order: 6;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+13) {
    order: 8;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+16) {
    order: 10;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+19) {
    order: 12;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+22) {
    order: 14;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+25) {
    order: 16;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+28) {
    order: 18;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+31) {
    order: 20;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+34) {
    order: 22;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+37) {
    order: 24;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+40) {
    order: 26;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+43) {
    order: 28;
  }
  .team-list .flex-grid li.flex-col:nth-of-type(n+46) {
    order: 30;
  }
}

@media only screen and (min-width: 600px) {
  .team-list .flex-grid div.flex-col:nth-of-type(n+0) {
    order: 1;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+4) {
    order: 3;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+7) {
    order: 5;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+10) {
    order: 7;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+13) {
    order: 9;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+16) {
    order: 11;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+19) {
    order: 13;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+22) {
    order: 15;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+25) {
    order: 17;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+28) {
    order: 19;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+31) {
    order: 21;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+34) {
    order: 23;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+37) {
    order: 25;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+40) {
    order: 27;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+43) {
    order: 29;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+46) {
    order: 31;
  }
  .team-list .flex-grid div.flex-col:nth-of-type(n+2):nth-of-type(-n+3), .team-list .flex-grid div.flex-col:nth-of-type(n+5):nth-of-type(-n+6), .team-list .flex-grid div.flex-col:nth-of-type(n+8):nth-of-type(-n+9), .team-list .flex-grid div.flex-col:nth-of-type(n+11):nth-of-type(-n+12), .team-list .flex-grid div.flex-col:nth-of-type(n+14):nth-of-type(-n+15), .team-list .flex-grid div.flex-col:nth-of-type(n+17):nth-of-type(-n+18), .team-list .flex-grid div.flex-col:nth-of-type(n+20):nth-of-type(-n+21), .team-list .flex-grid div.flex-col:nth-of-type(n+23):nth-of-type(-n+24), .team-list .flex-grid div.flex-col:nth-of-type(n+26):nth-of-type(-n+27), .team-list .flex-grid div.flex-col:nth-of-type(n+29):nth-of-type(-n+30), .team-list .flex-grid div.flex-col:nth-of-type(n+32):nth-of-type(-n+33), .team-list .flex-grid div.flex-col:nth-of-type(n+35):nth-of-type(-n+36), .team-list .flex-grid div.flex-col:nth-of-type(n+38):nth-of-type(-n+39), .team-list .flex-grid div.flex-col:nth-of-type(n+41):nth-of-type(-n+42), .team-list .flex-grid div.flex-col:nth-of-type(n+44):nth-of-type(-n+45), .team-list .flex-grid div.flex-col:nth-of-type(n+47):nth-of-type(-n+48) {
    margin-left: -100%;
  }
}

.team-list .flex-grid .flex-col .team-thumb-link {
  display: block;
  border: none;
}

.team-list .flex-grid .flex-col .team-thumb-link:hover .img-wrap {
  transform-style: preserve-3d;
}

.team-list .flex-grid .flex-col .team-thumb-link:hover .img-wrap img {
  transform: translate3d(0, 0, 0) scale(1.03);
}

@media only screen and (max-width: 900px) {
  .team-list .flex-grid .flex-col .thumb-title {
    font-size: 12px;
  }
}

.team-list .flex-grid .flex-col.inline-team {
  background: blue;
  min-width: 100%;
  width: 100%;
  flex-grow: 1;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: none;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  height: 0;
  opacity: 0;
  transition: height 0.4s 0.4s ease-in-out, opacity 0.3s 0.4s ease-in-out, color 0.3s 0.4s ease-in-out;
  display: block;
}

.team-list .flex-grid .flex-col.inline-team.nipple-left .nipple-wrap .nipple-container {
  transform: translate3d(0, 0, 0);
}

@media only screen and (max-width: 600px) {
  .team-list .flex-grid .flex-col.inline-team.nipple-left .nipple-wrap .nipple-container {
    display: block;
    transform: translate3d(112.1875%, 0, 0);
  }
}

.team-list .flex-grid .flex-col.inline-team.nipple-right .nipple-wrap .nipple-container {
  transform: translate3d(224.375%, 0, 0);
}

@media only screen and (max-width: 600px) {
  .team-list .flex-grid .flex-col.inline-team.nipple-right .nipple-wrap .nipple-container {
    display: block;
    transform: translate3d(112.1875%, 0, 0);
  }
}

.team-list .flex-grid .flex-col.inline-team.nipple-center .nipple-wrap .nipple-container {
  transform: translate3d(112.1875%, 0, 0);
}

@media only screen and (max-width: 600px) {
  .team-list .flex-grid .flex-col.inline-team.nipple-center .nipple-wrap .nipple-container {
    display: block;
  }
}

.team-list .flex-grid .flex-col.inline-team .close-team {
  color: red;
  position: absolute;
  z-index: 5;
  right: -30px;
  top: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-indent: -999px;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .team-list .flex-grid .flex-col.inline-team .close-team {
    top: 20px;
    right: 0;
  }
}

.team-list .flex-grid .flex-col.inline-team .close-team:after {
  content: '';
  display: block;
  width: 2px;
  height: 20px;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px -1px;
  background: #333;
}

.team-list .flex-grid .flex-col.inline-team .close-team:before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px -10px;
  background: #333;
}

.team-list .flex-grid .flex-col.inline-team .nipple-wrap {
  width: 100%;
  overflow: visible;
  position: absolute;
  top: 1px;
  left: 1.875%;
  right: 1.875%;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s 0.4s ease-in-out;
}

.team-list .flex-grid .flex-col.inline-team .nipple-wrap .nipple-container {
  width: 30.833%;
  position: absolute;
  left: 0;
  transition: transform .4s ease-in-out;
}

.team-list .flex-grid .flex-col.inline-team .nipple-wrap .nipple-container div {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: none;
  border-bottom-color: currentcolor;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  transition: border .4s ease-in-out;
}

.team-list .flex-grid .flex-col.inline-team.visible {
  height: auto;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 1;
  display: block;
}

.team-list .flex-grid .flex-col.inline-team.visible .container {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: opacity 0.2s 0.4s ease-in-out, transform 0.2s 0.4s ease-in-out;
}

.team-list .flex-grid .flex-col.inline-team.visible .nipple-wrap {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

@media only screen and (max-width: 600px) {
  .team-list .flex-grid .flex-col.inline-team.visible {
    height: auto !important;
    margin-bottom: 2rem;
  }
}

.team-list .flex-grid .flex-col.inline-team .inline-team-wrap {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.team-list .flex-grid .flex-col.inline-team .bg-color {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  right: -100%;
  margin: 0 -100%;
  background-color: #ffffff;
  z-index: 1;
  transition: background 0.4s ease-in-out;
}

.team-list .flex-grid .flex-col.inline-team .container {
  color: #333;
  width: 96%;
  z-index: 1;
  padding: 0rem 0 4rem;
  z-index: 2;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

@media only screen and (min-width: 900px) {
  .team-list .flex-grid .flex-col.inline-team .container {
    padding: 3rem 0;
  }
}

.team-list .flex-grid .flex-col.inline-team .team-section {
  margin-top: 2.475em;
}

@media only screen and (min-width: 900px) {
  .team-list .flex-grid .flex-col.inline-team .team-section {
    margin-top: 0;
  }
}

.team-list .flex-grid .flex-col.inline-team .team-section h3 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  margin-bottom: 0;
}

@media only screen and (min-width: 600px) {
  .team-list .flex-grid .flex-col.inline-team .team-section + .team-section {
    margin-top: 2.475em;
  }
}

.team-list .flex-grid .flex-col.inline-team .team-section .share-team li {
  font-size: 14px;
  letter-spacing: .05em;
  position: relative;
}

.team-list .flex-grid .flex-col.inline-team .team-section .share-team li a {
  margin-left: 22px;
}

.team-list .flex-grid .flex-col.inline-team .team-section .share-team li a .icon {
  display: block;
  width: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-left: -3px;
  transform: translate3d(0, -52%, 0);
}

.team-list .flex-grid .flex-col.inline-team .team-section .share-team li a .icon svg {
  margin: 0 auto;
  transform: scale(0.8);
  display: block;
}

.team-list .flex-grid .flex-col.inline-team .team-section .share-team li a .icon svg * {
  fill: #333;
}

.team-list .flex-grid .flex-col.inline-team .team-section .team-steps {
  counter-reset: step-counter;
}

.team-list .flex-grid .flex-col.inline-team .team-section .team-steps li {
  margin-bottom: 0.825em;
  position: relative;
  padding-left: 32px;
}

@media only screen and (min-width: 900px) {
  .team-list .flex-grid .flex-col.inline-team .team-section .team-steps li {
    padding-left: 0;
  }
}

.team-list .flex-grid .flex-col.inline-team .team-section .team-steps li:before {
  content: counter(step-counter, decimal-leading-zero);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  padding-right: 15px;
  font-weight: 900;
  font-size: 12px;
  top: -2px;
  letter-spacing: 0.15em;
}

@media only screen and (min-width: 900px) {
  .team-list .flex-grid .flex-col.inline-team .team-section .team-steps li:before {
    left: auto;
    right: 100%;
  }
}

.team-list .flex-grid .flex-col.inline-team .team-description {
  column-count: 2;
  column-gap: 30px;
}

@media only screen and (max-width: 900px) {
  .team-list .flex-grid .flex-col.inline-team .team-description {
    column-count: 1;
  }
}

@media only screen and (min-width: 600px) {
  .recipe-card {
    background: #fff;
  }
}

@media only screen and (min-width: 1000px) {
  .recipe-card {
    display: flex;
    align-items: stretch;
  }
}

.recipe-card p {
  margin: 0;
}

.recipe-card p + p {
  margin: 0;
}

.recipe-card .image {
  position: relative;
  overflow: hidden;
  padding-bottom: 66.666%;
  flex-grow: 1;
  display: block;
  border: none;
}

.recipe-card .image .bg-image {
  position: absolute;
  min-height: 100%;
  width: 100%;
}

.recipe-card .image .bg-image img {
  display: none;
}

@media only screen and (min-width: 1000px) {
  .recipe-card .image {
    width: 50%;
    padding-bottom: 50%;
    background: #ccc;
  }
}

.recipe-card .instructions {
  text-align: center;
  transform-style: preserve-3d;
  position: relative;
}

@media only screen and (min-width: 600px) {
  .recipe-card .instructions {
    text-align: left;
  }
}

@media only screen and (min-width: 1000px) {
  .recipe-card .instructions {
    display: flex;
    align-items: center;
    text-align: left;
  }
}

.recipe-card .instructions .container {
  width: 100%;
  padding: 10px 0 0;
}

@media only screen and (min-width: 600px) {
  .recipe-card .instructions .container {
    padding: 40px 50px 55px;
  }
}

@media only screen and (min-width: 1000px) {
  .recipe-card .instructions {
    width: 50%;
  }
}

.recipe-card .instructions .recipe-title {
  font-size: 20px;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-transform: uppercase;
  display: block;
  width: 100%;
  text-align: center;
  margin: .5em 0 .7em;
}

@media only screen and (min-width: 600px) {
  .recipe-card .instructions .recipe-title {
    margin-bottom: 1em;
    margin-top: 0;
    max-width: 85%;
    margin: 0 auto;
  }
}

.recipe-card .instructions .recipe-section-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: .5em;
  margin-top: 2.475rem;
}

.recipe-card .instructions li {
  list-style: none;
}

.recipe-card .curved-serves {
  width: 55px;
  height: 40px;
  position: relative;
  display: block;
  margin: 2em auto 0;
}

@media only screen and (min-width: 600px) {
  .recipe-card .curved-serves {
    margin: 0;
    position: absolute;
    top: 23px;
    right: 30px;
  }
}

.recipe-card .curved-serves .letter {
  position: absolute;
  line-height: 1em;
  height: 40px;
  transform-origin: 50% 100%;
  left: 50%;
  bottom: 0;
  font-size: 10px;
  margin-left: -10px;
  width: 20px;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.recipe-card .curved-serves .letter.s {
  transform: rotate(-45deg);
}

.recipe-card .curved-serves .letter.e {
  transform: rotate(-27deg);
}

.recipe-card .curved-serves .letter.r {
  transform: rotate(-9deg);
}

.recipe-card .curved-serves .letter.v {
  transform: rotate(9deg);
}

.recipe-card .curved-serves .letter.e2 {
  transform: rotate(27deg);
}

.recipe-card .curved-serves .letter.s2 {
  transform: rotate(45deg);
}

.recipe-card .number {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
  font-weight: 700;
  width: 100%;
  font-size: 14px;
  line-height: 1em;
  padding-top: 20px;
  letter-spacing: 0.2em;
  margin-left: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.recipe-slideshow .slick-arrow {
  width: 34px;
  height: 50px;
  text-indent: -1000px;
  overflow: hidden;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  background-size: 34px auto;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease-in-out;
}

@media only screen and (max-width: 600px) {
  .recipe-slideshow .slick-arrow {
    display: none !important;
  }
}

.recipe-slideshow .slick-arrow:active {
  transform: scale(0.7);
}

.recipe-slideshow .slick-arrow.slick-prev {
  left: -64px;
  background-image: url(../images/arrow-left-lg.svg);
}

.recipe-slideshow .slick-arrow.slick-next {
  right: -64px;
  background-image: url(../images/arrow-right-lg.svg);
}

.recipe-slideshow .slick-dots {
  text-align: center;
  padding-top: 15px;
}

@media only screen and (min-width: 600px) {
  .recipe-slideshow .slick-dots {
    display: none !important;
  }
}

.recipe-slideshow .slick-dots li {
  display: inline-block;
  margin-right: 12px;
}

.recipe-slideshow .slick-dots li:last-child {
  margin-right: 0;
}

.recipe-slideshow .slick-dots li.slick-active button {
  background: #333;
}

.recipe-slideshow .slick-dots li button {
  text-indent: -9999px;
  overflow: hidden;
  width: 8px;
  height: 8px;
  border: 2px solid #333;
  background: transparent;
  border-radius: 50%;
  padding: 0;
}

main.recipe .recipe-card .instructions .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 600px;
  width: 85%;
}

@media only screen and (min-width: 600px) {
  main.recipe .recipe-card .instructions .container {
    width: 70%;
  }
}

main.recipe .recipe-card .share-recipe {
  text-align: center;
  width: 100%;
  padding-bottom: 15%;
}

@media only screen and (min-width: 600px) {
  main.recipe .recipe-card .share-recipe {
    padding-bottom: 0;
  }
}

main.recipe .recipe-card .share-recipe li {
  display: inline-block;
  vertical-align: middle;
  padding-top: 2rem;
}

main.recipe .recipe-card .share-recipe li a {
  border: none;
  padding: 12px;
  display: block;
}

main.recipe .recipe-card .share-recipe li a .icon {
  display: block;
}

main.recipe .recipe-card .share-recipe li a .icon svg {
  display: block;
}

main.recipe .recipe-card .share-recipe li a .icon svg * {
  fill: #333;
}

main.recipe .recipe-card .share-recipe li:last-child {
  margin-right: 0;
}

/* Slider */
*:focus {
  outline: none !important;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*# sourceMappingURL=style.css.map */
