@charset "UTF-8";
/***************************
 * METEORAX (APP UI)
 ***************************/
/**********************
*   MORE NORMALIZATION
***********************/
* {
  -moz-tap-highlight-color: rgba(255, 255, 255, 0);
  -moz-box-sizing: border-box;
  -ms-tap-highlight-color: rgba(255, 255, 255, 0);
  -ms-box-sizing: border-box;
  -ms-content-zooming: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  tap-highlight-color: rgba(255, 255, 255, 0);
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  -ms-overflow-style: none;
  /* Hides the scrollbar. */
  -ms-scroll-chaining: none;
  /* Prevents Metro from swiping to the next tab or app. */
}
html {
  font: normal 16px/1.4 Avenir-Light, Helvetica, Arial, sans-serif;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: inherit !important;
  background-image: none !important;
  color: inherit !important;
  -webkit-box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: #666666 !important;
}
:focus {
  outline: 0;
}
::-webkit-scrollbar {
  display: none;
}
.preloader {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  opacity: 0.1;
}
figure {
  margin: 0;
}
/**********************
*   BASE STRUCTURE
***********************/
html,
body,
#content,
#fnApp {
  height: 100%;
  width: 100%;
  overflow: hidden;
  -ms-touch-action: none;
  /* fix some of windows bounce scroll */
}
#content {
  position: relative;
}
.no-touches {
  pointer-events: none;
}
/* we have to add a background to the body when we use the menu */
.sidemenu body {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #c44700), color-stop(1, #802e00));
  background-image: -webkit-linear-gradient(top, #c44700 0%, #802e00 100%);
  background-image: linear-gradient(to bottom, #c44700 0%, #802e00 100%);
}
/* the views only are the scrolling context */
.view {
  position: absolute;
  width: 100%;
  height: 100%;
  /* this way ios will always scroll the view instead of the page */
  top: 0;
  left: 0;
  padding-top: 44px;
  padding-bottom: 44px;
  padding-left: 0;
  padding-right: 0;
  background: #fff;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s ease-out;
          transition: all 0.4s ease-out;
  overflow: auto;
  z-index: 0;
  opacity: 1;
  /* needed by fade animation */
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.5);
  z-index: 1;
}
/* add room for status bar */
.ios .view {
  padding-top: 64px;
}
/* not in browser, though */
.ios.inbrowser .view {
  padding-top: 44px;
}
.view.standalone {
  display: block;
  padding-top: 0 !important;
  overflow: auto !important;
  text-align: center;
  margin-bottom: 0px;
  height: auto;
  padding: 44px 0;
}
/* in ios we are stealing all touchmove events to prevent body scroll, except for views, navbars and the .scrollable elements */
.scrollable {
  overflow: scroll !important;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
  overflow-scrolling: touch;
  max-height: 100%;
}
/* android patches */
html.androidversion2,
.androidversion2 body,
.androidversion2 #content,
.androidversion2 #fnApp {
  height: auto;
  width: 100%;
  overflow: visible;
  position: static;
  -webkit-overflow-scrolling: none;
}
.androidversion2 #content {
  position: static;
}
.androidversion2 .view {
  -webkit-transform: translate(0px, 0px);
  -webkit-transition-property: opacity, margin, position, -webkit-transform, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
  height: auto;
  min-height: 100%;
  overflow: visible;
}
.android .view {
  box-shadow: none;
}
.view .view-content {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}
/* avoid windows phone scrolling the page. we could use nodrag class in window scroll fix for ios, but needs to be worked. */
.nodrag,
.draggable {
  -ms-touch-action: none;
}
#furnax_splashscreen {
  position: absolute;
  z-index: 9999999999999999;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flexbox-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
/**********************
*   VIEW TRANSITIONS
***********************/
.view.incoming {
  -webkit-transition: all 0s 0.01s !important;
          transition: all 0s 0.01s !important;
}
[data-animation=pushLeft] .view.incoming {
  -webkit-transform: translate3d(100%, 0, 0) !important;
          transform: translate3d(100%, 0, 0) !important;
  visibility: hidden;
}
[data-animation=pushLeft] .view.incoming,
[data-animation=pushRight] .view.outgoing {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  z-index: 2;
}
[data-animation=hardPushLeft] .view.incoming {
  -webkit-transition: none !important;
          transition: none !important;
  -webkit-animation: slideInLeft 0.6s;
          animation: slideInLeft 0.6s;
}
[data-animation=hardPushLeft] .view.outgoing {
  -webkit-transition: none !important;
          transition: none !important;
  -webkit-animation: slideOutLeft 0.6s;
          animation: slideOutLeft 0.6s;
}
[data-animation=pushRight] .view.outgoing {
  -webkit-animation: "slideOutRight" 0.5s;
          animation: "slideOutRight" 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
[data-animation=pushLeft] .view.outgoing,
[data-animation=pushRight] .view.incoming {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  z-index: -1;
}
[data-animation=fade] .view.outgoing {
  z-index: 0;
}
[data-animation=fade] .view.incoming {
  opacity: 0;
  z-index: 1;
}
[data-animation=pushUp] .view.incoming,
[data-animation=pushDown] .view.outgoing {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  z-index: 1;
}
[data-animation=pushUp] .view.outgoing,
[data-animation=pushDown] .view.incoming {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  z-index: -1;
}
[data-animation=flip] #content {
  -webkit-perspective: 2000;
          perspective: 2000;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
[data-animation=flip] .view {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform .6s;
          transition: transform .6s;
}
[data-animation=flip] .view.incoming {
  -webkit-transform: rotateY(180deg) translate3d(0, 0, 1000px);
          transform: rotateY(180deg) translate3d(0, 0, 1000px);
  z-index: -20;
}
[data-animation=flip] .view.outgoing {
  -webkit-transform: rotateY(-180deg) translate3d(0, 0, 1000px);
          transform: rotateY(-180deg) translate3d(0, 0, 1000px);
  z-index: -10;
}
/**********************
*   FLEX MODEL CLASSES
***********************/
.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: flex;
}
.vertical-flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flexbox-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.vertical-flex-container-justified {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
}
.horizontal-flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -ms-flexbox-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-1 {
  -webkit-box-flex: 1;
  -ms-box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flex-2 {
  -webkit-box-flex: 2;
  -ms-box-flex: 2;
  -webkit-flex: 2;
  -moz-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.winphone .flex-1,
.winphone .flex-2 {
  -ms-flex: none;
  -webkit-box-flex: 0;
  -webkit-flex: none;
          flex: none;
}
/**********************
*   BUTTONS
***********************/
.view .button:active,
.button:active,
.button.filled {
  background: #c44700;
  color: #fff;
}
.noStory .backbutton {
  display: none;
}
.backbutton {
  white-space: nowrap;
  z-index: 100;
  text-decoration: none;
  position: absolute;
  left: 0px;
}
/* when the sidebar is shown we must move the button */
.sidemenu .backbutton {
  left: 42px;
}
.button,
.backbutton {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 10px;
  color: #c44700;
  text-align: center;
  height: 36px;
  margin: 4px;
  line-height: 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  opacity: 1;
  -webkit-transition: all .3s;
          transition: all .3s;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  cursor: pointer;
}
.button.deactivated {
  opacity: 0.5;
  -webkit-transform: scale3d(0.9, 0.9, 0.9);
          transform: scale3d(0.9, 0.9, 0.9);
  pointer-events: none;
}
.button.even,
.button.large {
  width: 80%;
  margin: 10px 10%;
}
#navbar .button,
#navbar .backbutton {
  color: inherit;
  font-weight: bold;
}
#navbar .button.filled {
  color: #c44700;
  background: #fff;
}
.button.focus,
.backbutton.focus {
  border: 1px solid #fff;
  font-weight: inherit;
  border-color: inherit;
}
#navbar .button.align-right {
  float: right;
}
#navbar .button.align-left {
  white-space: nowrap;
  z-index: 100;
  text-decoration: none;
  position: absolute;
  left: 0px;
}
.sidemenu #navbar .button.align-left {
  left: 60px;
}
#navbar .button:active,
#navbar .backbutton:active {
  background: #fff;
  color: #c44700;
}
.androidversion40 .button.icon:before,
.androidversion41 .button.icon:before {
  -webkit-transform: translate(-10px, -2px) !important;
}
/**********************
*   OTHER GENERAL STUFF
***********************/
.view h1,
.singleTicket h1,
.view h2,
.singleTicket h2,
.view h3,
.singleTicket h3,
.view h4,
.singleTicket h4,
.view h5,
.singleTicket h5 {
  padding: 1em 0;
  color: #c44700;
  font-weight: normal;
  text-align: center;
}
.view h1,
.singleTicket h1 {
  font-size: 24px;
}
.view h2,
.singleTicket h2 {
  font-size: 22px;
}
.view h3,
.singleTicket h3 {
  font-size: 20px;
}
.view h4,
.singleTicket h4 {
  font-size: 16px;
}
.view h5,
.singleTicket h5 {
  font-size: 14px;
}
.view > p {
  padding-left: 1em;
  padding-right: 1em;
}
img {
  max-width: 100%;
}
fieldset {
  margin: 44px 0 0 0;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  padding: 0 0 0 15px;
  width: 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.errormessage {
  position: absolute;
  left: -6px;
  top: 36px;
  font-size: 13px;
  z-index: 20;
  color: #f00;
}
input.error,
textarea.error,
select.error,
input.error:-webkit-autofill,
textarea.error:-webkit-autofill,
select.error:-webkit-autofill {
  color: #EA5959 !important;
  -webkit-text-fill-color: #EA5959 !important;
}
.info-popup {
  position: absolute;
  top: 54px;
  left: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 4px;
  border-radius: 6px;
  z-index: 10000;
  display: none;
}
.ios .info-popup {
  top: 74px;
}
.install-step {
  font-size: 1.1em;
  line-height: 1.1em;
  margin: 0 0 10px;
  vertical-align: middle;
}
.install-step span {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: url(../images/install-button.png) no-repeat;
  background-size: cover;
  position: relative;
  top: 15px;
}
.install-step:first-child {
  margin-top: -34px;
}
/**********************
*   HEADERS / NAVBAR
***********************/
.view .navbar {
  display: none;
}
#navbar {
  background-image: none;
  background-color: #c44700;
  box-shadow: 0px 0 1px 1px rgba(0, 0, 0, 0.1);
  border: none;
  color: #fff;
  height: 44px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: opacity 0.4s ease-out;
          transition: opacity 0.4s ease-out;
  opacity: 0.95;
}
#navbar > * {
  -webkit-animation: fadeIn .5s;
          animation: fadeIn .5s;
}
/* add room for status bar */
.ios #navbar {
  padding-top: 20px;
  height: 64px;
}
/* on the browser, the navbar is smaller */
.ios.inbrowser #navbar {
  padding-top: 0px;
  height: 44px;
}
#navbar a {
  z-index: 1000;
}
#navbar h1 {
  text-shadow: none;
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 44px;
  position: absolute;
  width: 200px;
  margin: 0 0 0 -100px;
  left: 50%;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
}
#tabbar {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  box-shadow: 0 -1px 1px 0.5px rgba(0, 0, 0, 0.1);
  height: 44px;
  opacity: 1;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.6s;
          transition: all 0.6s;
  display: block;
  z-index: 100;
  position: fixed;
  width: 100%;
  text-align: center;
  color: #444444;
  opacity: 0.95;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: flex;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.sidemenu #tabbar {
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  overflow: scroll;
  z-index: 101;
  overflow-scrolling: touch;
}
.winphone #tabbar {
  bottom: 20px;
}
#tabbar a {
  color: inherit;
  height: 44px;
  line-height: 44px;
  width: 20%;
  font-family: inherit;
  font-weight: normal;
  font-size: 13px;
  margin-left: -4px;
  text-align: center;
  text-decoration: none;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-flex: 1;
  flex: 1;
  display: block;
}
/* tabbar items need display: inline-block for older devices. but there's a new bug in android, where they need display: block in order to grow. */
/* since iOS gets flex, we don't need the inline-block negative margin */
.ios #tabbar a {
  display: block;
  margin-left: 0;
}
#tabbar a.icon {
  line-height: 22px;
  white-space: normal;
}
#tabbar a.large {
  width: 50%;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  -moz-flex: 2;
  flex: 2;
}
#tabbar a:active,
#tabbar a:focus,
#tabbar a:active:focus,
#tabbar a.selected {
  color: #c44700;
  box-shadow: none;
  background: transparent;
  border: none;
}
#tabbar .icon:before {
  line-height: 24px;
  text-align: center;
  position: relative;
  top: 4px;
  left: 0;
  font-size: 24px;
  width: 100%;
  display: inline-block;
  margin: 0;
  pointer-events: none !important;
}
figure.badge {
  width: 20px;
  border: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  line-height: 20px;
  padding: 0;
  display: block;
  background: #c44700;
  color: #fff;
  position: absolute;
  display: none;
  z-index: 100;
}
.badge.tc {
  margin: 0 0 0 -10px;
  top: -9px;
  left: 50%;
}
.badge.tr {
  margin: 0 0 0 -10px;
  top: -14px;
  right: -2%;
}
/**********************
*   SIDE MENU (alternative to tabbar)
***********************/
.sidemenu {
  -webkit-transform: scale(1) translate3d(0, 0, 0);
          transform: scale(1) translate3d(0, 0, 0);
}
.sidemenu body {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform: scale(1) translate3d(0, 0, 0);
          transform: scale(1) translate3d(0, 0, 0);
}
.sidemenu #fnApp {
  -webkit-animation: door_close .7s;
          animation: door_close .7s;
  -webkit-transform: scale(1) translate3d(0, 0, 0);
          transform: scale(1) translate3d(0, 0, 0);
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  fill-mode: both;
}
.sidemenu.openmenu #fnApp {
  -webkit-animation: door_open .7s;
          animation: door_open .7s;
  -webkit-transform: scale(0.9) translate3d(0, 0, 0) rotateY(-10deg);
          transform: scale(0.9) translate3d(0, 0, 0) rotateY(-10deg);
  overflow: visible;
  -animation-fill-mode: both;
  fill-mode: both;
}
.openmenu #navbar {
  -webkit-transform: scale(1) translate3d(0, 0, 0);
          transform: scale(1) translate3d(0, 0, 0);
}
.sidemenu.openmenu body {
  overflow: visible;
}
.sidemenu #tabbar {
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  overflow: scroll;
  z-index: 101;
  display: block;
  -webkit-transform: translate3d(-260px, 0, 50px) rotateY(-20deg);
          transform: translate3d(-260px, 0, 50px) rotateY(-20deg);
  -webkit-transition: all .3s;
          transition: all .3s;
}
.sidemenu.openmenu #tabbar {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.sidemenu #tabbar a.large {
  padding: 2em 0 2em;
  height: auto;
}
.sidemenu #tabbar a.large:first-child {
  padding-top: 5em;
}
.sidemenu #tabbar a:first-child {
  padding-top: 3em;
}
.sidemenu #tabbar a,
.sidemenu #tabbar a.icon {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  display: block;
  width: auto;
  text-align: left;
  vertical-align: bottom;
  font-size: 1.3em;
  height: auto;
  line-height: 1em;
  padding: 1.5em 1em;
  margin: 0 auto;
}
.sidemenu #tabbar a.icon span.label {
  display: block;
  font-size: 0.66em;
  margin-left: 5em;
}
.sidemenu #tabbar .icon:before {
  vertical-align: middle;
  float: left;
  width: 20%;
  height: 100%;
  margin: -0.3em 1em 0 0;
  -webkit-flex-direction: column;
}
@media (max-height: 500px) {
  .sidemenu #tabbar a.large:first-child {
    padding-top: 3em;
  }
  .sidemenu #tabbar a,
  .sidemenu #tabbar a.icon {
    font-size: 1em;
    padding: 1em;
  }
}
/* menu button */
.sidemenu #toggleMenu {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 102;
  top: 7px;
  left: 194px;
  -webkit-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
  -webkit-transform: translate3d(-180px, 0, 0);
          transform: translate3d(-180px, 0, 0);
}
/* add room for ios statusbar */
.ios.sidemenu #toggleMenu {
  top: 20px;
}
.sidemenu.openmenu #toggleMenu {
  -webkit-transform: translate3d(0, 28px, 50px);
          transform: translate3d(0, 28px, 50px);
}
.sidemenu #toggleMenu span {
  display: block;
  width: 4px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -1px;
  -webkit-transform: rotateZ(90deg) translate3d(-5px, 0, 0);
          transform: rotateZ(90deg) translate3d(-5px, 0, 0);
  -webkit-animation: closingToggle1 .8s;
          animation: closingToggle1 .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  fill-mode: both;
}
.sidemenu #toggleMenu span:first-child {
  -webkit-transform: rotateZ(90deg) translate3d(5px, 0, 0);
          transform: rotateZ(90deg) translate3d(5px, 0, 0);
  -webkit-animation: closingToggle2 .8s;
          animation: closingToggle2 .8s;
}
.sidemenu.openmenu #toggleMenu span {
  background: #c44700;
  -webkit-transform: rotateZ(-45deg) translate3d(0, 0, 0);
          transform: rotateZ(-45deg) translate3d(0, 0, 0);
  -webkit-animation: openingToggle1 .8s;
          animation: openingToggle1 .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  fill-mode: both;
}
.sidemenu.openmenu #toggleMenu span:first-child {
  -webkit-transform: rotateZ(-135deg) translate3d(0, 0, 0);
          transform: rotateZ(-135deg) translate3d(0, 0, 0);
  -webkit-animation: openingToggle2 .8s;
          animation: openingToggle2 .8s;
}
@-webkit-keyframes door_open {
  from {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
  }
  45% {
    -webkit-transform: scale(0.77) translate3d(0, 0, 0) rotateY(-20deg);
            transform: scale(0.77) translate3d(0, 0, 0) rotateY(-20deg);
  }
  55% {
    -webkit-transform: scale(0.77) translate3d(0, 0, 0) rotateY(-20deg);
            transform: scale(0.77) translate3d(0, 0, 0) rotateY(-20deg);
  }
  to {
    -webkit-transform: scale(0.9) translate3d(0, 0, 0) rotateY(-10deg);
            transform: scale(0.9) translate3d(0, 0, 0) rotateY(-10deg);
  }
}
@keyframes door_open {
  from {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
  }
  45% {
    -webkit-transform: scale(0.77) translate3d(0, 0, 0) rotateY(-20deg);
            transform: scale(0.77) translate3d(0, 0, 0) rotateY(-20deg);
  }
  55% {
    -webkit-transform: scale(0.77) translate3d(0, 0, 0) rotateY(-20deg);
            transform: scale(0.77) translate3d(0, 0, 0) rotateY(-20deg);
  }
  to {
    -webkit-transform: scale(0.9) translate3d(0, 0, 0) rotateY(-10deg);
            transform: scale(0.9) translate3d(0, 0, 0) rotateY(-10deg);
  }
}
@-webkit-keyframes door_close {
  from {
    -webkit-transform: scale(0.9) translate3d(0, 0, 0) rotateY(-10deg);
            transform: scale(0.9) translate3d(0, 0, 0) rotateY(-10deg);
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
  }
}
@-webkit-keyframes closingToggle1 {
  from {
    -webkit-transform: rotateZ(-45deg) translate3d(0, 0, 0);
            transform: rotateZ(-45deg) translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: rotateZ(90deg) translate3d(0, 0, 0);
            transform: rotateZ(90deg) translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: rotateZ(90deg) translate3d(-5px, 0, 0);
            transform: rotateZ(90deg) translate3d(-5px, 0, 0);
  }
}
@-webkit-keyframes closingToggle2 {
  from {
    -webkit-transform: rotateZ(-135deg) translate3d(0, 0, 0);
            transform: rotateZ(-135deg) translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: rotateZ(90deg) translate3d(0, 0, 0);
            transform: rotateZ(90deg) translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: rotateZ(90deg) translate3d(5px, 0, 0);
            transform: rotateZ(90deg) translate3d(5px, 0, 0);
  }
}
@keyframes closingToggle1 {
  from {
    -webkit-transform: rotateZ(-45deg) translate3d(0, 0, 0);
            transform: rotateZ(-45deg) translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: rotateZ(90deg) translate3d(0, 0, 0);
            transform: rotateZ(90deg) translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: rotateZ(90deg) translate3d(-5px, 0, 0);
            transform: rotateZ(90deg) translate3d(-5px, 0, 0);
  }
}
@keyframes closingToggle2 {
  from {
    -webkit-transform: rotateZ(-135deg) translate3d(0, 0, 0);
            transform: rotateZ(-135deg) translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: rotateZ(90deg) translate3d(0, 0, 0);
            transform: rotateZ(90deg) translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: rotateZ(90deg) translate3d(5px, 0, 0);
            transform: rotateZ(90deg) translate3d(5px, 0, 0);
  }
}
@-webkit-keyframes openingToggle1 {
  from {
    -webkit-transform: rotateZ(90deg) translate3d(5px, 0, 0);
            transform: rotateZ(90deg) translate3d(5px, 0, 0);
  }
  50% {
    -webkit-transform: rotateZ(90deg) translate3d(0, 0, 0);
            transform: rotateZ(90deg) translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: rotateZ(-45deg) translate3d(0, 0, 0);
            transform: rotateZ(-45deg) translate3d(0, 0, 0);
  }
}
@-webkit-keyframes openingToggle2 {
  from {
    -webkit-transform: rotateZ(90deg) translate3d(-5px, 0, 0);
            transform: rotateZ(90deg) translate3d(-5px, 0, 0);
  }
  50% {
    -webkit-transform: rotateZ(90deg) translate3d(0, 0, 0);
            transform: rotateZ(90deg) translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: rotateZ(-135deg) translate3d(0, 0, 0);
            transform: rotateZ(-135deg) translate3d(0, 0, 0);
  }
}
@keyframes openingToggle1 {
  from {
    -webkit-transform: rotateZ(90deg) translate3d(5px, 0, 0);
            transform: rotateZ(90deg) translate3d(5px, 0, 0);
  }
  50% {
    -webkit-transform: rotateZ(90deg) translate3d(0, 0, 0);
            transform: rotateZ(90deg) translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: rotateZ(-45deg) translate3d(0, 0, 0);
            transform: rotateZ(-45deg) translate3d(0, 0, 0);
  }
}
@keyframes openingToggle2 {
  from {
    -webkit-transform: rotateZ(90deg) translate3d(-5px, 0, 0);
            transform: rotateZ(90deg) translate3d(-5px, 0, 0);
  }
  50% {
    -webkit-transform: rotateZ(90deg) translate3d(0, 0, 0);
            transform: rotateZ(90deg) translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: rotateZ(-135deg) translate3d(0, 0, 0);
            transform: rotateZ(-135deg) translate3d(0, 0, 0);
  }
}
/**********************
*   INPUT FIXES
***********************/
.stand-alone input {
  background: #fff;
  border: none;
  border-radius: 4px;
  width: 80%;
  margin: 4px 10%;
  height: 34px;
  padding: 6px;
  font-size: 14px;
}
.stand-alone input[type=submit] {
  background-color: #c44700;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
::-webkit-input-placeholder {
  color: #ccc;
  font-weight: lighter;
  font-family: Avenir-Light, Helvetica, sans-serif;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #ccc;
  font-weight: lighter;
  font-family: Avenir-Light, Helvetica, sans-serif;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #ccc;
  font-weight: lighter;
  font-family: Avenir-Light, Helvetica, sans-serif;
}
:-ms-input-placeholder {
  color: #ccc;
  font-weight: lighter;
  font-family: Avenir-Light, Helvetica, sans-serif;
}
/* ----- inputs hacks and fixes ----- */
/* android double input */
.android input {
  -webkit-user-modify: read-write-plaintext-only;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
/* fixes for buggy ios7 scrolling */
.ios .with-keyboard #content {
  overflow: visible;
  height: auto !important;
  min-height: 100%;
}
.ios body.with-keyboard,
.ios .with-keyboard #fnApp,
.ios .with-keyboard #content {
  overflow: visible;
}
.ios .with-keyboard .view.active {
  overflow: scroll;
  padding-bottom: 400px;
}
.ios .with-keyboard #navbar {
  -webkit-transition: top 0.4s ease-out;
          transition: top 0.4s ease-out;
}
/* we should always add a done button on on the navbar, to help close the keyboard, and hide other buttons */
#navbar .endinput,
#navbar .doneinput {
  display: none;
}
.with-keyboard #navbar a {
  display: none;
}
.with-keyboard #navbar .endinput,
.with-keyboard #navbar .doneinput {
  display: block;
}
/* hide tabbar */
.with-keyboard #tabbar {
  bottom: -200px;
  opacity: 0;
  -webkit-transition: top 0.6s, bottom .6;
          transition: top 0.6s, bottom .6;
  pointer-events: none;
}
/* ----- inputs ----- */
ul.list li label,
ul.list li > input {
  line-height: 44px;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  color: inherit;
}
ul.list li label input {
  width: 70%;
  /* iphone should use this */
  position: absolute;
  height: 43px;
  right: 7px;
  display: block;
  top: 0;
  background: transparent;
  border: 0;
  padding-left: 0;
  font-size: 16px;
  color: inherit;
}
ul.list li label input[type=checkbox],
ul.list li label input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: inset 0px 0px 0px 1px #e6e6e6;
  border-radius: 15px;
  background-color: #fff;
  padding: 1px;
  display: inline-block;
  width: 52px;
  height: 31px;
  position: absolute;
  right: 10px;
  left: auto;
  top: 6px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
  margin: 0px;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  /* to change size */
}
ul.list li label input[type=checkbox]:checked,
ul.list li label input[type=radio]:checked {
  box-shadow: inset 0px 0px 0px 20px #53d76a;
}
ul.list li label input[type=checkbox]:after,
ul.list li label input[type=radio]:after {
  content: "";
  position: absolute;
  width: 29px;
  height: 29px;
  border-radius: 15px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2), 1px 6px 0px -2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background-color: #fff;
  -webkit-transition: all 0.1s ease-in 0.1s;
          transition: all 0.1s ease-in 0.1s;
  -webkit-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
          transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-property: all;
          transition-property: all;
}
ul.list li label input[type="checkbox"]:checked:after,
ul.list li label input[type="radio"]:checked:after {
  left: 22px;
}
ul.list li label span {
  right: 50px;
  top: 13px;
}
.androidversion2 ul.list li label input[type=checkbox],
.androidversion2 ul.list li label input[type=radio] {
  -webkit-appearance: radio;
  -webkit-transform: scale(1.5);
}
.androidversion2 ul.list li label input[type=radio]:after,
.androidversion2 ul.list li label input[type=checkbox]:after {
  display: none !important;
}
/* textarea */
.textarea {
  width: 100%;
  border: none;
  padding: 14px;
  margin: 14px 0;
  min-height: 8em;
}
ul.list li .textarea {
  padding: 0;
  margin: 0;
}
/**********************
*   MASK, POPUPS AND ALERTS
***********************/
#mask {
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
  display: none;
}
#loading-container {
  background: rgba(255, 255, 255, 0.94);
  opacity: 0;
  margin-left: -25px;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  position: fixed;
  z-index: 1001;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  display: block;
  -webkit-transition: all 0.2s;
          transition: all 0.2s;
}
#furnax-loading {
  background-color: transparent;
  background-size: contain;
  background-image: url(../images/svg-loaders/three-dots.svg);
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin: 13px;
}
/* popups */
.furnax-popup {
  background: rgba(255, 255, 255, 0.94);
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 250px;
  top: 30%;
  left: 50%;
  text-align: center;
  border-radius: 8px;
  margin: auto;
  z-index: 1001;
  margin-left: -125px;
  display: none;
  -webkit-transition: all 0.3s cubic-bezier(0.225, 0.5, 0.165, 1), top 0 0;
          transition: all 0.3s cubic-bezier(0.225, 0.5, 0.165, 1), top 0 0;
  /* initial state */
  opacity: 0;
  -webkit-transform: scale(1.25);
      -ms-transform: scale(1.25);
          transform: scale(1.25);
  visibility: hidden;
}
.furnax-popup.in {
  -webkit-animation: popupIn;
          animation: popupIn;
}
.furnax-popup header {
  font-size: 17px;
  padding: 22px 0;
  font-weight: bold;
  margin: 0;
  position: static;
}
.furnax-popup .popup-contents {
  font-size: 15px;
  margin: 0px 8px 18px;
}
.furnax-popup footer {
  border-top: 1px solid #ddd;
  width: 100%;
  position: relative;
  height: 44px;
}
.furnax-popup footer a {
  width: 50%;
  height: 100%;
  line-height: 44px;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.furnax-popup footer a#action1.popup3 {
  width: 100%;
  border-bottom: 1px solid #d2d2d2;
  border-radius: 0px;
}
.furnax-popup footer a:active {
  background: rgba(0, 0, 0, 0.05);
  color: #222;
}
.furnax-popup footer #cancel {
  border-right: 1px solid #ddd;
  border-radius: 0 0 0 8px;
}
.furnax-popup footer a#action,
.furnax-popup footer a#action1 {
  font-weight: bold;
  border-radius: 0 0 8px 0;
}
.furnax-popup footer .center {
  width: 100%;
  height: 100%;
  border: none !important;
  float: none;
  border-radius: 0 0 8px 8px;
}
/* messages */
.messages {
  background: #555;
  color: #fff;
  position: absolute;
  width: 100%;
  top: 0px;
  -webkit-transition: all .4s;
          transition: all .4s;
  overflow: visible;
  -animation-fill-mode: both;
  fill-mode: both;
  z-index: 1;
}
.messages.info {
  background: #555;
}
.messages.error {
  background: #EA5959;
}
.messages.warning {
  background: #FFCB5B;
}
.messages.success {
  background: #68B592;
}
.messages p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 8px 40px 8px 10px;
  font-size: 13px;
}
.messages .fa {
  position: absolute;
  right: 10px;
  top: 8px;
}
/* uiblock */
#uiblock {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
}
/*
 * Lists
 */
/* lists */
.listlabel {
  color: #929292;
  font-size: 13px;
  padding: 23px 15px 5px;
  height: 44px;
  display: block;
  text-transform: uppercase;
  text-align: left;
}
ul.list {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  color: inherit;
  display: block;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
ul.list li {
  padding: 13px 0;
  /* top and bottom 13px */
  display: block;
  margin-left: 15px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  width: auto;
  border: 0;
  text-align: left;
  min-height: 44px;
  position: relative;
}
ul.list li > img {
  display: inline-block;
  margin-bottom: -5px;
}
ul.list li.no-padding {
  padding: 0;
  margin: 0;
}
ul.list li.has-icon,
ul.list li.icon {
  margin-left: 44px;
}
ul.list li:last-child {
  box-shadow: none;
}
ul.list li.has-icon:last-child,
ul li.icon:last-child {
  box-shadow: none;
}
ul.list li.icon:before {
  margin-left: -34px;
  margin-right: 10px;
  font-size: 1.6em;
  line-height: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  color: inherit;
}
ul.list li.icon:active:before {
  color: #c44700;
}
ul.list li.has-icon > img,
ul.list li > figure {
  width: 34px;
  height: 34px;
  position: absolute;
  left: -40px;
  top: 50%;
  margin-top: -17px;
  border-radius: 4px;
  text-align: center;
}
ul.list li.has-icon figure > img {
  max-width: 100%;
  max-height: 100%;
  display: inline;
}
ul.list li.has-icon > .icon:before {
  left: -45px;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  font-size: 26px;
}
ul.list li > a {
  display: block;
  width: auto;
  font: inherit;
  text-decoration: inherit;
  color: inherit;
  padding-left: 0;
  border: 0;
  padding-right: 20px;
}
ul.list li > a:after {
  font-family: "furnicon", "icon";
  content: '\e801';
  color: inherit;
  position: absolute;
  right: 8px;
  font-size: 14px;
  margin-top: -9px;
  top: 50%;
  opacity: .5;
}
ul.list li span a {
  background: transparent;
  border: 1px solid #ccc;
  height: auto;
  padding: 5px 10px;
  border-radius: 6px;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  line-height: 14px;
  display: inline-block;
}
ul.list li.not-valid {
  height: 60px;
}
ul.list li > a:active:after {
  color: #c44700;
  opacity: 1;
}
ul.list li:after {
  display: none;
}
ul.list li span {
  position: absolute;
  right: 0px;
  margin-right: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
  max-width: 200px;
  top: 50%;
  margin-top: -0.7em;
  opacity: 0.5;
}
ul.list li span span {
  display: inline;
  position: static;
  margin: 0;
  padding: 0;
  text-align: inherit;
  float: none;
}
ul.list li > p {
  color: #666;
}
ul.list li > p {
  color: #666;
}
/* android fixes */
.androidversion2 ul.list,
.androidversion3 ul.list {
  background-color: #fff;
  border-bottom: 1px solid #aaa;
}
.androidversion2 ul.list li,
.androidversion3 ul.list li {
  border-top: 1px solid #aaa;
}
ul.list li.search:not(.icon) {
  height: 44px;
  min-height: 54px !important;
  padding: 5px 0;
  background: #eee;
  box-shadow: -70px 0 0 #eeeeee;
}
ul.list li.search input {
  width: 100%;
  margin: 5px 0 0 -7px;
  height: 34px;
  font-size: 1em;
  text-align: center;
  display: block;
  -webkit-appearance: none;
  border-radius: 5px;
  box-shadow: none;
  border: none;
}
/* comment list */
.comment-list ul li {
  padding: 5px;
  line-height: 14px;
  font-size: 14px;
}
.comment-list ul li b {
  padding-right: 4px;
  color: #485A70;
}
.comment-list ul li .meta {
  padding: 5px 0;
}
.comment-list ul li .meta i {
  color: #485A70;
  font-size: 11px;
  padding-right: 10px;
}
.comment-list ul li .meta u {
  color: #aaa;
  text-decoration: none;
  font-size: 11px;
}
.comment-list ul li.has-icon > img {
  width: 40px;
  height: 40px;
  top: 5px;
  margin-top: 0;
}
.comment-list ul li .embed {
  cursor: pointer;
}
.comment-list ul li .embed > img {
  float: left;
  max-width: 100px;
  max-height: 70px;
  margin-right: 5px;
}
.comment-list ul li .embed > u {
  color: #ccc;
  font-size: 11px;
}
.comment-list ul li .embed > p {
  color: #777;
}
/**********************
*   TABS
***********************/
.furnax-tabs {
  margin: 14px;
}
.furnax-tabs,
.furnax-tabs-container {
  position: relative;
  min-height: 100px;
}
.furnax-tabs .tab {
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all .2s;
          transition: all .2s;
  border: 1px solid #c44700;
  padding: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 6px;
}
/* the first is shown simply via css. then the javascript adds a .hidden class to all, except selected one which gets the .visible one */
.furnax-tabs .hidden-tab {
  opacity: 0 !important;
}
.furnax-tabs .tab:nth-of-type(1),
.furnax-tabs .visible-tab {
  opacity: 1;
  position: absolute;
}
.furnax-tabs .tabs-nav {
  margin: 0 0 -1px 14px;
}
.furnax-tabs .tabs-nav .tabs-nav-element {
  display: inline-block;
  font-size: 18px;
  line-height: 2em;
  padding: .5em 2em;
  position: relative;
  margin-right: -1px;
  border-top: 1px solid #c44700;
  border-left: 1px solid #c44700;
  border-right: 1px solid #c44700;
  border-radius: 6px 6px 0 0;
  opacity: 0.9;
}
.furnax-tabs .tabs-nav .tabs-nav-element:nth-of-type(1) {
  background: #c44700;
  color: #fff;
  opacity: 1;
}
.furnax-tabs .tabs-nav-element.selected,
.furnax-tabs .tabs-nav-element:active {
  background: #c44700;
  color: #fff;
  opacity: 1;
}
.furnax-tabs .not-selected {
  background: transparent !important;
  color: inherit !important;
  opacity: 0.9 !important;
}
.furnax-tabs .tabs-nav .tabs-nav-element img {
  max-height: 2em;
  margin-right: 1em;
  vertical-align: middle;
}
/**********************
*   MINIMAL TABS
***********************/
.tab-container > div {
  display: none;
}
.tab-container > div.selected {
  display: block;
}
.tab-container .tab-bar-nav {
  text-align: center;
  margin: 10px 0;
  cursor: pointer;
}
.tab-container .tab-bar-nav ul {
  border: 2px solid #666;
  border-radius: 4px;
  display: inline-block;
}
.tab-container .tab-bar-nav ul li {
  display: inline-block;
  padding: 0 10px;
}
.tab-container .tab-bar-nav ul li.selected {
  background: #666;
  color: #fff;
}
/**********************
*   CSS ANIMATIONS
***********************/
body * > .sequential:nth-of-type(1) {
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}
body * > .sequential:nth-of-type(2) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}
body * > .sequential:nth-of-type(3) {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
body * > .sequential:nth-of-type(4) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}
body * > .sequential:nth-of-type(5) {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}
body * > .sequential:nth-of-type(6) {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}
body * > .sequential:nth-of-type(7) {
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}
body * > .sequential:nth-of-type(8) {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
}
body * > .sequential:nth-of-type(9) {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}
body * > .sequential:nth-of-type(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
body * > .sequential:nth-of-type(11) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
body * > .sequential:nth-of-type(12) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
body * > .sequential:nth-of-type(13) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
body * > .sequential:nth-of-type(14) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
body * > .sequential:nth-of-type(15) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
body * > .sequential:nth-of-type(16) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
body * > .sequential:nth-of-type(17) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
body * > .sequential:nth-of-type(18) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
body * > .sequential:nth-of-type(19) {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
body * > .sequential:nth-of-type(20) {
  -webkit-animation-delay: 2.0s;
  animation-delay: 2.0s;
}
body * > .sequential:nth-of-type(21) {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
body * > .sequential:nth-of-type(22) {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}
body * > .sequential:nth-of-type(23) {
  -webkit-animation-delay: 2.3s;
  animation-delay: 2.3s;
}
body * > .sequential:nth-of-type(24) {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}
body * > .sequential:nth-of-type(25) {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
body * > .sequential:nth-of-type(26) {
  -webkit-animation-delay: 2.6s;
  animation-delay: 2.6s;
}
body * > .sequential:nth-of-type(27) {
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}
body * > .sequential:nth-of-type(28) {
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}
body * > .sequential:nth-of-type(29) {
  -webkit-animation-delay: 2.9s;
  animation-delay: 2.9s;
}
body * > .sequential:nth-of-type(30) {
  -webkit-animation-delay: 3.0s;
  animation-delay: 3.0s;
}
body * > .sequential {
  -webkit-animation-delay: 3.1s;
  animation-delay: 3.1s;
}
.spin {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* apply to any item to play this on show/hide */
.popout {
  -webkit-animation: popout .4s ease;
          animation: popout .4s ease;
}
.fastpopout {
  -webkit-animation: popout .2s ease;
          animation: popout .2s ease;
}
@keyframes popout {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  80% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes popout {
  from {
    -webkit-transform: scale(0);
  }
  80% {
    -webkit-transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
  }
}
.margindown {
  -webkit-animation: margindown .4s;
          animation: margindown .4s;
}
@keyframes margindown {
  from {
    margin-top: -130px;
  }
  to {
    margin-top: 0px;
  }
}
@-webkit-keyframes margindown {
  from {
    margin-top: -130px;
  }
  to {
    margin-top: 0px;
  }
}
.marginup {
  -webkit-animation: marginup .4s;
          animation: marginup .4s;
}
@keyframes marginup {
  from {
    margin-top: 0px;
  }
  to {
    margin-top: -130px;
  }
}
@-webkit-keyframes marginup {
  from {
    margin-top: 0px;
  }
  to {
    margin-top: -130px;
  }
}
.popin {
  -webkit-animation: popin .4s;
          animation: popin .4s;
}
.fastpopin {
  -webkit-animation: popin .3s;
          animation: popin .3s;
}
@keyframes popin {
  from {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes popin {
  from {
    -webkit-transform: scale(1.3);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
.animated.fast {
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
}
.animated.slower {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
.delayed {
  display: none !important;
}
@-webkit-keyframes slideDown {
  0% {
    max-height: 0;
    min-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  50% {
    max-height: 100px;
    opacity: .5;
  }
  100% {
    max-height: 800px;
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    max-height: 0;
    min-height: 0;
  }
  50% {
    max-height: 100px;
    opacity: .5;
  }
  100% {
    max-height: 800px;
  }
}
.slideDown {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
/*
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  fill-mode: both;
}
.fast-animated {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -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.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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 {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    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 {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -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 {
  0%,
  100% {
    -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 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);
  }
  100% {
    -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);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -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);
  }
  100% {
    -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 {
  0% {
    -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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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, -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);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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, -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);
  }
  100% {
    -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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -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;
  }
  100% {
    -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 {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -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 {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -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 {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -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;
  }
  100% {
    -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 {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -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;
  }
  100% {
    -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 {
  0% {
    -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;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -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;
  }
  100% {
    -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 {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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;
  }
  100% {
    -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;
  }
  100% {
    -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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    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 {
  0% {
    opacity: 1;
  }
  100% {
    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 {
  0% {
    opacity: 1;
  }
  100% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
