@charset "UTF-8";
/***************************
* METEORAX (APP UI)
***************************/
/**********************
*   MORE NORMALIZATION
***********************/
* {
  -moz-user-select: none;
  -moz-tap-highlight-color: rgba(255, 255, 255, 0);
  -moz-box-sizing: border-box;
  -ms-user-select: none;
  -ms-tap-highlight-color: rgba(255, 255, 255, 0);
  -ms-box-sizing: border-box;
  -ms-content-zooming: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: 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;
}
input,
textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
: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: calc(100% - 44px);
  /* this way ios will always scroll the view instead of the page */
  top: 44px;
  left: 0;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background: #fff;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  z-index: 0;
  opacity: 1;
  /* needed by fade animation */
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  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;
}
.view.no_navbar {
  top: 0px;
}
/* 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;
}
.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
***********************/
[data-animation=pushLeft] .view.outgoing,
[data-animation=pushUp] .view.outgoing,
[data-animation=pushRight] .view.outgoing {
  z-index: 2;
}
[data-animation=pushRight] .view.outgoing {
  -webkit-animation: "slideOutRight" 0.2s;
          animation: "slideOutRight" 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
[data-animation=pushLeft] .view.outgoing {
  -webkit-animation: "slideOutLeft" 0.2s;
          animation: "slideOutLeft" 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
[data-animation=pushLeft] .view.incoming,
[data-animation=pushUp] .view.incoming,
[data-animation=pushRight] .view.incoming {
  z-index: -1;
}
[data-animation=pushUp] .view.outgoing {
  -webkit-animation: "slideOutUp" 0.2s;
          animation: "slideOutUp" 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
/**********************
*   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 {
  margin: 15px 15% 0px 15%;
  width: 70%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#navbar .button,
#navbar .backbutton {
  color: inherit;
  font-weight: bold;
  line-height: 32px;
}
#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: 18px;
}
.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;
  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;
  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);
}
.ios #tabbar {
  padding-top: 64px;
}
.sidemenu #tabbar {
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  overflow: hidden;
  z-index: 100;
  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: #fff;
  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-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 {
  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: 100;
  display: block;
  -webkit-transform: translate3d(-260px, 0, 0) /* rotateY(-20deg)*/;
          transform: translate3d(-260px, 0, 0) /* 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: 17px;
  height: auto;
  line-height: 18px;
  padding: 18px 15px 12px 15px;
  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: 30px;
  height: 100%;
  margin: -0.3em 1em 0 0;
  -webkit-flex-direction: column;
}
#tabbar .icon.mdi:before {
  font-size: 25px !important;
}
@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: 101;
  top: 7px;
  left: 10px;
}
/* add room for ios statusbar */
.ios.sidemenu #toggleMenu {
  top: 20px;
}
.sidemenu.openmenu #tabbar #toggleMenu {
  visibility: visible;
  left: 215px;
}
.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);
}
.sidemenu #toggleMenu span:first-child {
  -webkit-transform: rotateZ(90deg) translate3d(5px, 0, 0);
          transform: rotateZ(90deg) translate3d(5px, 0, 0);
}
.sidemenu.openmenu #toggleMenu {
  visibility: hidden;
  -webkit-transition: none;
          transition: none;
}
.sidemenu.openmenu #toggleMenu span {
  -webkit-transform: rotateZ(-45deg) translate3d(0, 0, 0);
          transform: rotateZ(-45deg) translate3d(0, 0, 0);
}
.sidemenu.openmenu #toggleMenu span:first-child {
  -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;
}
/* 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;
  pointer-events: none;
}
/* ----- inputs ----- */
ul.list li label,
ul.list li > input {
  line-height: 44px;
  display: block;
  position: absolute;
  top: 0;
  width: calc(100% - 15px);
  height: 100%;
  background: transparent;
  border: 0;
  color: inherit;
}
ul.list li label span.left {
  left: 0px !important;
  text-align: left !important;
  color: #30373a !important;
  opacity: 1 !important;
  max-width: 41%;
}
ul.list li label input,
ul.list li label div,
ul.list li label select {
  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 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  font-size: 16px;
}
ul.list li label.select:after {
  font-family: "FontAwesome";
  content: '\f078';
  color: inherit;
  position: absolute;
  right: 8px;
  font-size: 14px;
  margin-top: -9px;
  top: 10px;
  opacity: .5;
}
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;
  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;
}
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: 11px;
}
.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: 100008;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  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;
}
#ygg-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 */
/* messages */
.messages {
  background: #555;
  color: #fff;
  position: absolute;
  width: 100%;
  top: auto !important;
  bottom: 44px !important;
  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 {
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 8px 40px 8px 10px;
  font-size: 13px;
  cursor: pointer;
}
.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 > a.noArrow:after {
  display: none;
}
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 .item-label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 32%;
}
ul.list li span {
  position: absolute;
  right: 0px;
  margin-right: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
  max-width: calc(65% - 24px);
  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
***********************/
.ygg-tabs {
  margin: 14px;
}
.ygg-tabs,
.ygg-tabs-container {
  position: relative;
  min-height: 100px;
}
.ygg-tabs .tab {
  overflow: hidden;
  opacity: 0;
  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 */
.ygg-tabs .hidden-tab {
  opacity: 0 !important;
}
.ygg-tabs .tab:nth-of-type(1),
.ygg-tabs .visible-tab {
  opacity: 1;
  position: absolute;
}
.ygg-tabs .tabs-nav {
  margin: 0 0 -1px 14px;
}
.ygg-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;
}
.ygg-tabs .tabs-nav .tabs-nav-element:nth-of-type(1) {
  background: #c44700;
  color: #fff;
  opacity: 1;
}
.ygg-tabs .tabs-nav-element.selected,
.ygg-tabs .tabs-nav-element:active {
  background: #c44700;
  color: #fff;
  opacity: 1;
}
.ygg-tabs .not-selected {
  background: transparent !important;
  color: inherit !important;
  opacity: 0.9 !important;
}
.ygg-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: 0.1s;
  animation-delay: 0.1s;
}
body * > .sequential:nth-of-type(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
body * > .sequential:nth-of-type(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
body * > .sequential:nth-of-type(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
body * > .sequential:nth-of-type(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
body * > .sequential:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
body * > .sequential:nth-of-type(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
body * > .sequential:nth-of-type(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
body * > .sequential:nth-of-type(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.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: 2s;
  animation-delay: 2s;
}
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: 3s;
  animation-delay: 3s;
}
body * > .sequential:nth-of-type(31) {
  -webkit-animation-delay: 3.1s;
  animation-delay: 3.1s;
}
body * > .sequential:nth-of-type(32) {
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s;
}
body * > .sequential:nth-of-type(33) {
  -webkit-animation-delay: 3.3s;
  animation-delay: 3.3s;
}
body * > .sequential:nth-of-type(34) {
  -webkit-animation-delay: 3.4s;
  animation-delay: 3.4s;
}
body * > .sequential:nth-of-type(35) {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
body * > .sequential:nth-of-type(36) {
  -webkit-animation-delay: 3.6s;
  animation-delay: 3.6s;
}
body * > .sequential:nth-of-type(37) {
  -webkit-animation-delay: 3.7s;
  animation-delay: 3.7s;
}
body * > .sequential:nth-of-type(38) {
  -webkit-animation-delay: 3.8s;
  animation-delay: 3.8s;
}
body * > .sequential:nth-of-type(39) {
  -webkit-animation-delay: 3.9s;
  animation-delay: 3.9s;
}
body * > .sequential:nth-of-type(40) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
body * > .sequential:nth-of-type(41) {
  -webkit-animation-delay: 4.1s;
  animation-delay: 4.1s;
}
body * > .sequential:nth-of-type(42) {
  -webkit-animation-delay: 4.2s;
  animation-delay: 4.2s;
}
body * > .sequential:nth-of-type(43) {
  -webkit-animation-delay: 4.3s;
  animation-delay: 4.3s;
}
body * > .sequential:nth-of-type(44) {
  -webkit-animation-delay: 4.4s;
  animation-delay: 4.4s;
}
body * > .sequential:nth-of-type(45) {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
body * > .sequential:nth-of-type(46) {
  -webkit-animation-delay: 4.6s;
  animation-delay: 4.6s;
}
body * > .sequential:nth-of-type(47) {
  -webkit-animation-delay: 4.7s;
  animation-delay: 4.7s;
}
body * > .sequential:nth-of-type(48) {
  -webkit-animation-delay: 4.8s;
  animation-delay: 4.8s;
}
body * > .sequential:nth-of-type(49) {
  -webkit-animation-delay: 4.9s;
  animation-delay: 4.9s;
}
body * > .sequential:nth-of-type(50) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
body * > .sequential:nth-of-type(51) {
  -webkit-animation-delay: 5.1s;
  animation-delay: 5.1s;
}
body * > .sequential:nth-of-type(52) {
  -webkit-animation-delay: 5.2s;
  animation-delay: 5.2s;
}
body * > .sequential:nth-of-type(53) {
  -webkit-animation-delay: 5.3s;
  animation-delay: 5.3s;
}
body * > .sequential:nth-of-type(54) {
  -webkit-animation-delay: 5.4s;
  animation-delay: 5.4s;
}
body * > .sequential:nth-of-type(55) {
  -webkit-animation-delay: 5.5s;
  animation-delay: 5.5s;
}
body * > .sequential:nth-of-type(56) {
  -webkit-animation-delay: 5.6s;
  animation-delay: 5.6s;
}
body * > .sequential:nth-of-type(57) {
  -webkit-animation-delay: 5.7s;
  animation-delay: 5.7s;
}
body * > .sequential:nth-of-type(58) {
  -webkit-animation-delay: 5.8s;
  animation-delay: 5.8s;
}
body * > .sequential:nth-of-type(59) {
  -webkit-animation-delay: 5.9s;
  animation-delay: 5.9s;
}
body * > .sequential:nth-of-type(60) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
body * > .sequential:nth-of-type(61) {
  -webkit-animation-delay: 6.1s;
  animation-delay: 6.1s;
}
body * > .sequential:nth-of-type(62) {
  -webkit-animation-delay: 6.2s;
  animation-delay: 6.2s;
}
body * > .sequential:nth-of-type(63) {
  -webkit-animation-delay: 6.3s;
  animation-delay: 6.3s;
}
body * > .sequential:nth-of-type(64) {
  -webkit-animation-delay: 6.4s;
  animation-delay: 6.4s;
}
body * > .sequential:nth-of-type(65) {
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
}
body * > .sequential:nth-of-type(66) {
  -webkit-animation-delay: 6.6s;
  animation-delay: 6.6s;
}
body * > .sequential:nth-of-type(67) {
  -webkit-animation-delay: 6.7s;
  animation-delay: 6.7s;
}
body * > .sequential:nth-of-type(68) {
  -webkit-animation-delay: 6.8s;
  animation-delay: 6.8s;
}
body * > .sequential:nth-of-type(69) {
  -webkit-animation-delay: 6.9s;
  animation-delay: 6.9s;
}
body * > .sequential:nth-of-type(70) {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
body * > .sequential:nth-of-type(71) {
  -webkit-animation-delay: 7.1s;
  animation-delay: 7.1s;
}
body * > .sequential:nth-of-type(72) {
  -webkit-animation-delay: 7.2s;
  animation-delay: 7.2s;
}
body * > .sequential:nth-of-type(73) {
  -webkit-animation-delay: 7.3s;
  animation-delay: 7.3s;
}
body * > .sequential:nth-of-type(74) {
  -webkit-animation-delay: 7.4s;
  animation-delay: 7.4s;
}
body * > .sequential:nth-of-type(75) {
  -webkit-animation-delay: 7.5s;
  animation-delay: 7.5s;
}
body * > .sequential:nth-of-type(76) {
  -webkit-animation-delay: 7.6s;
  animation-delay: 7.6s;
}
body * > .sequential:nth-of-type(77) {
  -webkit-animation-delay: 7.7s;
  animation-delay: 7.7s;
}
body * > .sequential:nth-of-type(78) {
  -webkit-animation-delay: 7.8s;
  animation-delay: 7.8s;
}
body * > .sequential:nth-of-type(79) {
  -webkit-animation-delay: 7.9s;
  animation-delay: 7.9s;
}
body * > .sequential:nth-of-type(80) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}
body * > .sequential:nth-of-type(81) {
  -webkit-animation-delay: 8.1s;
  animation-delay: 8.1s;
}
body * > .sequential:nth-of-type(82) {
  -webkit-animation-delay: 8.2s;
  animation-delay: 8.2s;
}
body * > .sequential:nth-of-type(83) {
  -webkit-animation-delay: 8.3s;
  animation-delay: 8.3s;
}
body * > .sequential:nth-of-type(84) {
  -webkit-animation-delay: 8.4s;
  animation-delay: 8.4s;
}
body * > .sequential:nth-of-type(85) {
  -webkit-animation-delay: 8.5s;
  animation-delay: 8.5s;
}
body * > .sequential:nth-of-type(86) {
  -webkit-animation-delay: 8.6s;
  animation-delay: 8.6s;
}
body * > .sequential:nth-of-type(87) {
  -webkit-animation-delay: 8.7s;
  animation-delay: 8.7s;
}
body * > .sequential:nth-of-type(88) {
  -webkit-animation-delay: 8.8s;
  animation-delay: 8.8s;
}
body * > .sequential:nth-of-type(89) {
  -webkit-animation-delay: 8.9s;
  animation-delay: 8.9s;
}
body * > .sequential:nth-of-type(90) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
body * > .sequential:nth-of-type(91) {
  -webkit-animation-delay: 9.1s;
  animation-delay: 9.1s;
}
body * > .sequential:nth-of-type(92) {
  -webkit-animation-delay: 9.2s;
  animation-delay: 9.2s;
}
body * > .sequential:nth-of-type(93) {
  -webkit-animation-delay: 9.3s;
  animation-delay: 9.3s;
}
body * > .sequential:nth-of-type(94) {
  -webkit-animation-delay: 9.4s;
  animation-delay: 9.4s;
}
body * > .sequential:nth-of-type(95) {
  -webkit-animation-delay: 9.5s;
  animation-delay: 9.5s;
}
body * > .sequential:nth-of-type(96) {
  -webkit-animation-delay: 9.6s;
  animation-delay: 9.6s;
}
body * > .sequential:nth-of-type(97) {
  -webkit-animation-delay: 9.7s;
  animation-delay: 9.7s;
}
body * > .sequential:nth-of-type(98) {
  -webkit-animation-delay: 9.8s;
  animation-delay: 9.8s;
}
body * > .sequential:nth-of-type(99) {
  -webkit-animation-delay: 9.9s;
  animation-delay: 9.9s;
}
body * > .sequential:nth-of-type(100) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
body * > .sequential:nth-of-type(101) {
  -webkit-animation-delay: 10.1s;
  animation-delay: 10.1s;
}
body * > .sequential:nth-of-type(102) {
  -webkit-animation-delay: 10.2s;
  animation-delay: 10.2s;
}
body * > .sequential:nth-of-type(103) {
  -webkit-animation-delay: 10.3s;
  animation-delay: 10.3s;
}
body * > .sequential:nth-of-type(104) {
  -webkit-animation-delay: 10.4s;
  animation-delay: 10.4s;
}
body * > .sequential:nth-of-type(105) {
  -webkit-animation-delay: 10.5s;
  animation-delay: 10.5s;
}
body * > .sequential:nth-of-type(106) {
  -webkit-animation-delay: 10.6s;
  animation-delay: 10.6s;
}
body * > .sequential:nth-of-type(107) {
  -webkit-animation-delay: 10.7s;
  animation-delay: 10.7s;
}
body * > .sequential:nth-of-type(108) {
  -webkit-animation-delay: 10.8s;
  animation-delay: 10.8s;
}
body * > .sequential:nth-of-type(109) {
  -webkit-animation-delay: 10.9s;
  animation-delay: 10.9s;
}
body * > .sequential:nth-of-type(110) {
  -webkit-animation-delay: 11s;
  animation-delay: 11s;
}
body * > .sequential:nth-of-type(111) {
  -webkit-animation-delay: 11.1s;
  animation-delay: 11.1s;
}
body * > .sequential:nth-of-type(112) {
  -webkit-animation-delay: 11.2s;
  animation-delay: 11.2s;
}
body * > .sequential:nth-of-type(113) {
  -webkit-animation-delay: 11.3s;
  animation-delay: 11.3s;
}
body * > .sequential:nth-of-type(114) {
  -webkit-animation-delay: 11.4s;
  animation-delay: 11.4s;
}
body * > .sequential:nth-of-type(115) {
  -webkit-animation-delay: 11.5s;
  animation-delay: 11.5s;
}
body * > .sequential:nth-of-type(116) {
  -webkit-animation-delay: 11.6s;
  animation-delay: 11.6s;
}
body * > .sequential:nth-of-type(117) {
  -webkit-animation-delay: 11.7s;
  animation-delay: 11.7s;
}
body * > .sequential:nth-of-type(118) {
  -webkit-animation-delay: 11.8s;
  animation-delay: 11.8s;
}
body * > .sequential:nth-of-type(119) {
  -webkit-animation-delay: 11.9s;
  animation-delay: 11.9s;
}
body * > .sequential:nth-of-type(120) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}
body * > .sequential:nth-of-type(121) {
  -webkit-animation-delay: 12.1s;
  animation-delay: 12.1s;
}
body * > .sequential:nth-of-type(122) {
  -webkit-animation-delay: 12.2s;
  animation-delay: 12.2s;
}
body * > .sequential:nth-of-type(123) {
  -webkit-animation-delay: 12.3s;
  animation-delay: 12.3s;
}
body * > .sequential:nth-of-type(124) {
  -webkit-animation-delay: 12.4s;
  animation-delay: 12.4s;
}
body * > .sequential:nth-of-type(125) {
  -webkit-animation-delay: 12.5s;
  animation-delay: 12.5s;
}
body * > .sequential:nth-of-type(126) {
  -webkit-animation-delay: 12.6s;
  animation-delay: 12.6s;
}
body * > .sequential:nth-of-type(127) {
  -webkit-animation-delay: 12.7s;
  animation-delay: 12.7s;
}
body * > .sequential:nth-of-type(128) {
  -webkit-animation-delay: 12.8s;
  animation-delay: 12.8s;
}
body * > .sequential:nth-of-type(129) {
  -webkit-animation-delay: 12.9s;
  animation-delay: 12.9s;
}
body * > .sequential:nth-of-type(130) {
  -webkit-animation-delay: 13s;
  animation-delay: 13s;
}
body * > .sequential:nth-of-type(131) {
  -webkit-animation-delay: 13.1s;
  animation-delay: 13.1s;
}
body * > .sequential:nth-of-type(132) {
  -webkit-animation-delay: 13.2s;
  animation-delay: 13.2s;
}
body * > .sequential:nth-of-type(133) {
  -webkit-animation-delay: 13.3s;
  animation-delay: 13.3s;
}
body * > .sequential:nth-of-type(134) {
  -webkit-animation-delay: 13.4s;
  animation-delay: 13.4s;
}
body * > .sequential:nth-of-type(135) {
  -webkit-animation-delay: 13.5s;
  animation-delay: 13.5s;
}
body * > .sequential:nth-of-type(136) {
  -webkit-animation-delay: 13.6s;
  animation-delay: 13.6s;
}
body * > .sequential:nth-of-type(137) {
  -webkit-animation-delay: 13.7s;
  animation-delay: 13.7s;
}
body * > .sequential:nth-of-type(138) {
  -webkit-animation-delay: 13.8s;
  animation-delay: 13.8s;
}
body * > .sequential:nth-of-type(139) {
  -webkit-animation-delay: 13.9s;
  animation-delay: 13.9s;
}
body * > .sequential:nth-of-type(140) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
body * > .sequential:nth-of-type(141) {
  -webkit-animation-delay: 14.1s;
  animation-delay: 14.1s;
}
body * > .sequential:nth-of-type(142) {
  -webkit-animation-delay: 14.2s;
  animation-delay: 14.2s;
}
body * > .sequential:nth-of-type(143) {
  -webkit-animation-delay: 14.3s;
  animation-delay: 14.3s;
}
body * > .sequential:nth-of-type(144) {
  -webkit-animation-delay: 14.4s;
  animation-delay: 14.4s;
}
body * > .sequential:nth-of-type(145) {
  -webkit-animation-delay: 14.5s;
  animation-delay: 14.5s;
}
body * > .sequential:nth-of-type(146) {
  -webkit-animation-delay: 14.6s;
  animation-delay: 14.6s;
}
body * > .sequential:nth-of-type(147) {
  -webkit-animation-delay: 14.7s;
  animation-delay: 14.7s;
}
body * > .sequential:nth-of-type(148) {
  -webkit-animation-delay: 14.8s;
  animation-delay: 14.8s;
}
body * > .sequential:nth-of-type(149) {
  -webkit-animation-delay: 14.9s;
  animation-delay: 14.9s;
}
body * > .sequential:nth-of-type(150) {
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
}
body * > .sequential:nth-of-type(151) {
  -webkit-animation-delay: 15.1s;
  animation-delay: 15.1s;
}
body * > .sequential:nth-of-type(152) {
  -webkit-animation-delay: 15.2s;
  animation-delay: 15.2s;
}
body * > .sequential:nth-of-type(153) {
  -webkit-animation-delay: 15.3s;
  animation-delay: 15.3s;
}
body * > .sequential:nth-of-type(154) {
  -webkit-animation-delay: 15.4s;
  animation-delay: 15.4s;
}
body * > .sequential:nth-of-type(155) {
  -webkit-animation-delay: 15.5s;
  animation-delay: 15.5s;
}
body * > .sequential:nth-of-type(156) {
  -webkit-animation-delay: 15.6s;
  animation-delay: 15.6s;
}
body * > .sequential:nth-of-type(157) {
  -webkit-animation-delay: 15.7s;
  animation-delay: 15.7s;
}
body * > .sequential:nth-of-type(158) {
  -webkit-animation-delay: 15.8s;
  animation-delay: 15.8s;
}
body * > .sequential:nth-of-type(159) {
  -webkit-animation-delay: 15.9s;
  animation-delay: 15.9s;
}
body * > .sequential:nth-of-type(160) {
  -webkit-animation-delay: 16s;
  animation-delay: 16s;
}
body * > .sequential:nth-of-type(161) {
  -webkit-animation-delay: 16.1s;
  animation-delay: 16.1s;
}
body * > .sequential:nth-of-type(162) {
  -webkit-animation-delay: 16.2s;
  animation-delay: 16.2s;
}
body * > .sequential:nth-of-type(163) {
  -webkit-animation-delay: 16.3s;
  animation-delay: 16.3s;
}
body * > .sequential:nth-of-type(164) {
  -webkit-animation-delay: 16.4s;
  animation-delay: 16.4s;
}
body * > .sequential:nth-of-type(165) {
  -webkit-animation-delay: 16.5s;
  animation-delay: 16.5s;
}
body * > .sequential:nth-of-type(166) {
  -webkit-animation-delay: 16.6s;
  animation-delay: 16.6s;
}
body * > .sequential:nth-of-type(167) {
  -webkit-animation-delay: 16.7s;
  animation-delay: 16.7s;
}
body * > .sequential:nth-of-type(168) {
  -webkit-animation-delay: 16.8s;
  animation-delay: 16.8s;
}
body * > .sequential:nth-of-type(169) {
  -webkit-animation-delay: 16.9s;
  animation-delay: 16.9s;
}
body * > .sequential:nth-of-type(170) {
  -webkit-animation-delay: 17s;
  animation-delay: 17s;
}
body * > .sequential:nth-of-type(171) {
  -webkit-animation-delay: 17.1s;
  animation-delay: 17.1s;
}
body * > .sequential:nth-of-type(172) {
  -webkit-animation-delay: 17.2s;
  animation-delay: 17.2s;
}
body * > .sequential:nth-of-type(173) {
  -webkit-animation-delay: 17.3s;
  animation-delay: 17.3s;
}
body * > .sequential:nth-of-type(174) {
  -webkit-animation-delay: 17.4s;
  animation-delay: 17.4s;
}
body * > .sequential:nth-of-type(175) {
  -webkit-animation-delay: 17.5s;
  animation-delay: 17.5s;
}
body * > .sequential:nth-of-type(176) {
  -webkit-animation-delay: 17.6s;
  animation-delay: 17.6s;
}
body * > .sequential:nth-of-type(177) {
  -webkit-animation-delay: 17.7s;
  animation-delay: 17.7s;
}
body * > .sequential:nth-of-type(178) {
  -webkit-animation-delay: 17.8s;
  animation-delay: 17.8s;
}
body * > .sequential:nth-of-type(179) {
  -webkit-animation-delay: 17.9s;
  animation-delay: 17.9s;
}
body * > .sequential:nth-of-type(180) {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}
body * > .sequential:nth-of-type(181) {
  -webkit-animation-delay: 18.1s;
  animation-delay: 18.1s;
}
body * > .sequential:nth-of-type(182) {
  -webkit-animation-delay: 18.2s;
  animation-delay: 18.2s;
}
body * > .sequential:nth-of-type(183) {
  -webkit-animation-delay: 18.3s;
  animation-delay: 18.3s;
}
body * > .sequential:nth-of-type(184) {
  -webkit-animation-delay: 18.4s;
  animation-delay: 18.4s;
}
body * > .sequential:nth-of-type(185) {
  -webkit-animation-delay: 18.5s;
  animation-delay: 18.5s;
}
body * > .sequential:nth-of-type(186) {
  -webkit-animation-delay: 18.6s;
  animation-delay: 18.6s;
}
body * > .sequential:nth-of-type(187) {
  -webkit-animation-delay: 18.7s;
  animation-delay: 18.7s;
}
body * > .sequential:nth-of-type(188) {
  -webkit-animation-delay: 18.8s;
  animation-delay: 18.8s;
}
body * > .sequential:nth-of-type(189) {
  -webkit-animation-delay: 18.9s;
  animation-delay: 18.9s;
}
body * > .sequential:nth-of-type(190) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
body * > .sequential:nth-of-type(191) {
  -webkit-animation-delay: 19.1s;
  animation-delay: 19.1s;
}
body * > .sequential:nth-of-type(192) {
  -webkit-animation-delay: 19.2s;
  animation-delay: 19.2s;
}
body * > .sequential:nth-of-type(193) {
  -webkit-animation-delay: 19.3s;
  animation-delay: 19.3s;
}
body * > .sequential:nth-of-type(194) {
  -webkit-animation-delay: 19.4s;
  animation-delay: 19.4s;
}
body * > .sequential:nth-of-type(195) {
  -webkit-animation-delay: 19.5s;
  animation-delay: 19.5s;
}
body * > .sequential:nth-of-type(196) {
  -webkit-animation-delay: 19.6s;
  animation-delay: 19.6s;
}
body * > .sequential:nth-of-type(197) {
  -webkit-animation-delay: 19.7s;
  animation-delay: 19.7s;
}
body * > .sequential:nth-of-type(198) {
  -webkit-animation-delay: 19.8s;
  animation-delay: 19.8s;
}
body * > .sequential:nth-of-type(199) {
  -webkit-animation-delay: 19.9s;
  animation-delay: 19.9s;
}
body * > .sequential:nth-of-type(200) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}
body * > .sequential:nth-of-type(201) {
  -webkit-animation-delay: 20.1s;
  animation-delay: 20.1s;
}
body * > .sequential:nth-of-type(202) {
  -webkit-animation-delay: 20.2s;
  animation-delay: 20.2s;
}
body * > .sequential:nth-of-type(203) {
  -webkit-animation-delay: 20.3s;
  animation-delay: 20.3s;
}
body * > .sequential:nth-of-type(204) {
  -webkit-animation-delay: 20.4s;
  animation-delay: 20.4s;
}
body * > .sequential:nth-of-type(205) {
  -webkit-animation-delay: 20.5s;
  animation-delay: 20.5s;
}
body * > .sequential:nth-of-type(206) {
  -webkit-animation-delay: 20.6s;
  animation-delay: 20.6s;
}
body * > .sequential:nth-of-type(207) {
  -webkit-animation-delay: 20.7s;
  animation-delay: 20.7s;
}
body * > .sequential:nth-of-type(208) {
  -webkit-animation-delay: 20.8s;
  animation-delay: 20.8s;
}
body * > .sequential:nth-of-type(209) {
  -webkit-animation-delay: 20.9s;
  animation-delay: 20.9s;
}
body * > .sequential:nth-of-type(210) {
  -webkit-animation-delay: 21s;
  animation-delay: 21s;
}
body * > .sequential:nth-of-type(211) {
  -webkit-animation-delay: 21.1s;
  animation-delay: 21.1s;
}
body * > .sequential:nth-of-type(212) {
  -webkit-animation-delay: 21.2s;
  animation-delay: 21.2s;
}
body * > .sequential:nth-of-type(213) {
  -webkit-animation-delay: 21.3s;
  animation-delay: 21.3s;
}
body * > .sequential:nth-of-type(214) {
  -webkit-animation-delay: 21.4s;
  animation-delay: 21.4s;
}
body * > .sequential:nth-of-type(215) {
  -webkit-animation-delay: 21.5s;
  animation-delay: 21.5s;
}
body * > .sequential:nth-of-type(216) {
  -webkit-animation-delay: 21.6s;
  animation-delay: 21.6s;
}
body * > .sequential:nth-of-type(217) {
  -webkit-animation-delay: 21.7s;
  animation-delay: 21.7s;
}
body * > .sequential:nth-of-type(218) {
  -webkit-animation-delay: 21.8s;
  animation-delay: 21.8s;
}
body * > .sequential:nth-of-type(219) {
  -webkit-animation-delay: 21.9s;
  animation-delay: 21.9s;
}
body * > .sequential:nth-of-type(220) {
  -webkit-animation-delay: 22s;
  animation-delay: 22s;
}
body * > .sequential:nth-of-type(221) {
  -webkit-animation-delay: 22.1s;
  animation-delay: 22.1s;
}
body * > .sequential:nth-of-type(222) {
  -webkit-animation-delay: 22.2s;
  animation-delay: 22.2s;
}
body * > .sequential:nth-of-type(223) {
  -webkit-animation-delay: 22.3s;
  animation-delay: 22.3s;
}
body * > .sequential:nth-of-type(224) {
  -webkit-animation-delay: 22.4s;
  animation-delay: 22.4s;
}
body * > .sequential:nth-of-type(225) {
  -webkit-animation-delay: 22.5s;
  animation-delay: 22.5s;
}
body * > .sequential:nth-of-type(226) {
  -webkit-animation-delay: 22.6s;
  animation-delay: 22.6s;
}
body * > .sequential:nth-of-type(227) {
  -webkit-animation-delay: 22.7s;
  animation-delay: 22.7s;
}
body * > .sequential:nth-of-type(228) {
  -webkit-animation-delay: 22.8s;
  animation-delay: 22.8s;
}
body * > .sequential:nth-of-type(229) {
  -webkit-animation-delay: 22.9s;
  animation-delay: 22.9s;
}
body * > .sequential:nth-of-type(230) {
  -webkit-animation-delay: 23s;
  animation-delay: 23s;
}
body * > .sequential:nth-of-type(231) {
  -webkit-animation-delay: 23.1s;
  animation-delay: 23.1s;
}
body * > .sequential:nth-of-type(232) {
  -webkit-animation-delay: 23.2s;
  animation-delay: 23.2s;
}
body * > .sequential:nth-of-type(233) {
  -webkit-animation-delay: 23.3s;
  animation-delay: 23.3s;
}
body * > .sequential:nth-of-type(234) {
  -webkit-animation-delay: 23.4s;
  animation-delay: 23.4s;
}
body * > .sequential:nth-of-type(235) {
  -webkit-animation-delay: 23.5s;
  animation-delay: 23.5s;
}
body * > .sequential:nth-of-type(236) {
  -webkit-animation-delay: 23.6s;
  animation-delay: 23.6s;
}
body * > .sequential:nth-of-type(237) {
  -webkit-animation-delay: 23.7s;
  animation-delay: 23.7s;
}
body * > .sequential:nth-of-type(238) {
  -webkit-animation-delay: 23.8s;
  animation-delay: 23.8s;
}
body * > .sequential:nth-of-type(239) {
  -webkit-animation-delay: 23.9s;
  animation-delay: 23.9s;
}
body * > .sequential:nth-of-type(240) {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}
body * > .sequential:nth-of-type(241) {
  -webkit-animation-delay: 24.1s;
  animation-delay: 24.1s;
}
body * > .sequential:nth-of-type(242) {
  -webkit-animation-delay: 24.2s;
  animation-delay: 24.2s;
}
body * > .sequential:nth-of-type(243) {
  -webkit-animation-delay: 24.3s;
  animation-delay: 24.3s;
}
body * > .sequential:nth-of-type(244) {
  -webkit-animation-delay: 24.4s;
  animation-delay: 24.4s;
}
body * > .sequential:nth-of-type(245) {
  -webkit-animation-delay: 24.5s;
  animation-delay: 24.5s;
}
body * > .sequential:nth-of-type(246) {
  -webkit-animation-delay: 24.6s;
  animation-delay: 24.6s;
}
body * > .sequential:nth-of-type(247) {
  -webkit-animation-delay: 24.7s;
  animation-delay: 24.7s;
}
body * > .sequential:nth-of-type(248) {
  -webkit-animation-delay: 24.8s;
  animation-delay: 24.8s;
}
body * > .sequential:nth-of-type(249) {
  -webkit-animation-delay: 24.9s;
  animation-delay: 24.9s;
}
body * > .sequential:nth-of-type(250) {
  -webkit-animation-delay: 25s;
  animation-delay: 25s;
}
body * > .sequential:nth-of-type(251) {
  -webkit-animation-delay: 25.1s;
  animation-delay: 25.1s;
}
body * > .sequential:nth-of-type(252) {
  -webkit-animation-delay: 25.2s;
  animation-delay: 25.2s;
}
body * > .sequential:nth-of-type(253) {
  -webkit-animation-delay: 25.3s;
  animation-delay: 25.3s;
}
body * > .sequential:nth-of-type(254) {
  -webkit-animation-delay: 25.4s;
  animation-delay: 25.4s;
}
body * > .sequential:nth-of-type(255) {
  -webkit-animation-delay: 25.5s;
  animation-delay: 25.5s;
}
body * > .sequential:nth-of-type(256) {
  -webkit-animation-delay: 25.6s;
  animation-delay: 25.6s;
}
body * > .sequential:nth-of-type(257) {
  -webkit-animation-delay: 25.7s;
  animation-delay: 25.7s;
}
body * > .sequential:nth-of-type(258) {
  -webkit-animation-delay: 25.8s;
  animation-delay: 25.8s;
}
body * > .sequential:nth-of-type(259) {
  -webkit-animation-delay: 25.9s;
  animation-delay: 25.9s;
}
body * > .sequential:nth-of-type(260) {
  -webkit-animation-delay: 26s;
  animation-delay: 26s;
}
body * > .sequential:nth-of-type(261) {
  -webkit-animation-delay: 26.1s;
  animation-delay: 26.1s;
}
body * > .sequential:nth-of-type(262) {
  -webkit-animation-delay: 26.2s;
  animation-delay: 26.2s;
}
body * > .sequential:nth-of-type(263) {
  -webkit-animation-delay: 26.3s;
  animation-delay: 26.3s;
}
body * > .sequential:nth-of-type(264) {
  -webkit-animation-delay: 26.4s;
  animation-delay: 26.4s;
}
body * > .sequential:nth-of-type(265) {
  -webkit-animation-delay: 26.5s;
  animation-delay: 26.5s;
}
body * > .sequential:nth-of-type(266) {
  -webkit-animation-delay: 26.6s;
  animation-delay: 26.6s;
}
body * > .sequential:nth-of-type(267) {
  -webkit-animation-delay: 26.7s;
  animation-delay: 26.7s;
}
body * > .sequential:nth-of-type(268) {
  -webkit-animation-delay: 26.8s;
  animation-delay: 26.8s;
}
body * > .sequential:nth-of-type(269) {
  -webkit-animation-delay: 26.9s;
  animation-delay: 26.9s;
}
body * > .sequential:nth-of-type(270) {
  -webkit-animation-delay: 27s;
  animation-delay: 27s;
}
body * > .sequential:nth-of-type(271) {
  -webkit-animation-delay: 27.1s;
  animation-delay: 27.1s;
}
body * > .sequential:nth-of-type(272) {
  -webkit-animation-delay: 27.2s;
  animation-delay: 27.2s;
}
body * > .sequential:nth-of-type(273) {
  -webkit-animation-delay: 27.3s;
  animation-delay: 27.3s;
}
body * > .sequential:nth-of-type(274) {
  -webkit-animation-delay: 27.4s;
  animation-delay: 27.4s;
}
body * > .sequential:nth-of-type(275) {
  -webkit-animation-delay: 27.5s;
  animation-delay: 27.5s;
}
body * > .sequential:nth-of-type(276) {
  -webkit-animation-delay: 27.6s;
  animation-delay: 27.6s;
}
body * > .sequential:nth-of-type(277) {
  -webkit-animation-delay: 27.7s;
  animation-delay: 27.7s;
}
body * > .sequential:nth-of-type(278) {
  -webkit-animation-delay: 27.8s;
  animation-delay: 27.8s;
}
body * > .sequential:nth-of-type(279) {
  -webkit-animation-delay: 27.9s;
  animation-delay: 27.9s;
}
body * > .sequential:nth-of-type(280) {
  -webkit-animation-delay: 28s;
  animation-delay: 28s;
}
body * > .sequential:nth-of-type(281) {
  -webkit-animation-delay: 28.1s;
  animation-delay: 28.1s;
}
body * > .sequential:nth-of-type(282) {
  -webkit-animation-delay: 28.2s;
  animation-delay: 28.2s;
}
body * > .sequential:nth-of-type(283) {
  -webkit-animation-delay: 28.3s;
  animation-delay: 28.3s;
}
body * > .sequential:nth-of-type(284) {
  -webkit-animation-delay: 28.4s;
  animation-delay: 28.4s;
}
body * > .sequential:nth-of-type(285) {
  -webkit-animation-delay: 28.5s;
  animation-delay: 28.5s;
}
body * > .sequential:nth-of-type(286) {
  -webkit-animation-delay: 28.6s;
  animation-delay: 28.6s;
}
body * > .sequential:nth-of-type(287) {
  -webkit-animation-delay: 28.7s;
  animation-delay: 28.7s;
}
body * > .sequential:nth-of-type(288) {
  -webkit-animation-delay: 28.8s;
  animation-delay: 28.8s;
}
body * > .sequential:nth-of-type(289) {
  -webkit-animation-delay: 28.9s;
  animation-delay: 28.9s;
}
body * > .sequential:nth-of-type(290) {
  -webkit-animation-delay: 29s;
  animation-delay: 29s;
}
body * > .sequential:nth-of-type(291) {
  -webkit-animation-delay: 29.1s;
  animation-delay: 29.1s;
}
body * > .sequential:nth-of-type(292) {
  -webkit-animation-delay: 29.2s;
  animation-delay: 29.2s;
}
body * > .sequential:nth-of-type(293) {
  -webkit-animation-delay: 29.3s;
  animation-delay: 29.3s;
}
body * > .sequential:nth-of-type(294) {
  -webkit-animation-delay: 29.4s;
  animation-delay: 29.4s;
}
body * > .sequential:nth-of-type(295) {
  -webkit-animation-delay: 29.5s;
  animation-delay: 29.5s;
}
body * > .sequential:nth-of-type(296) {
  -webkit-animation-delay: 29.6s;
  animation-delay: 29.6s;
}
body * > .sequential:nth-of-type(297) {
  -webkit-animation-delay: 29.7s;
  animation-delay: 29.7s;
}
body * > .sequential:nth-of-type(298) {
  -webkit-animation-delay: 29.8s;
  animation-delay: 29.8s;
}
body * > .sequential:nth-of-type(299) {
  -webkit-animation-delay: 29.9s;
  animation-delay: 29.9s;
}
body * > .sequential:nth-of-type(300) {
  -webkit-animation-delay: 30s;
  animation-delay: 30s;
}
body * > .sequential:nth-of-type(301) {
  -webkit-animation-delay: 30.1s;
  animation-delay: 30.1s;
}
body * > .sequential:nth-of-type(302) {
  -webkit-animation-delay: 30.2s;
  animation-delay: 30.2s;
}
body * > .sequential:nth-of-type(303) {
  -webkit-animation-delay: 30.3s;
  animation-delay: 30.3s;
}
body * > .sequential:nth-of-type(304) {
  -webkit-animation-delay: 30.4s;
  animation-delay: 30.4s;
}
body * > .sequential:nth-of-type(305) {
  -webkit-animation-delay: 30.5s;
  animation-delay: 30.5s;
}
body * > .sequential:nth-of-type(306) {
  -webkit-animation-delay: 30.6s;
  animation-delay: 30.6s;
}
body * > .sequential:nth-of-type(307) {
  -webkit-animation-delay: 30.7s;
  animation-delay: 30.7s;
}
body * > .sequential:nth-of-type(308) {
  -webkit-animation-delay: 30.8s;
  animation-delay: 30.8s;
}
body * > .sequential:nth-of-type(309) {
  -webkit-animation-delay: 30.9s;
  animation-delay: 30.9s;
}
body * > .sequential:nth-of-type(310) {
  -webkit-animation-delay: 31s;
  animation-delay: 31s;
}
body * > .sequential:nth-of-type(311) {
  -webkit-animation-delay: 31.1s;
  animation-delay: 31.1s;
}
body * > .sequential:nth-of-type(312) {
  -webkit-animation-delay: 31.2s;
  animation-delay: 31.2s;
}
body * > .sequential:nth-of-type(313) {
  -webkit-animation-delay: 31.3s;
  animation-delay: 31.3s;
}
body * > .sequential:nth-of-type(314) {
  -webkit-animation-delay: 31.4s;
  animation-delay: 31.4s;
}
body * > .sequential:nth-of-type(315) {
  -webkit-animation-delay: 31.5s;
  animation-delay: 31.5s;
}
body * > .sequential:nth-of-type(316) {
  -webkit-animation-delay: 31.6s;
  animation-delay: 31.6s;
}
body * > .sequential:nth-of-type(317) {
  -webkit-animation-delay: 31.7s;
  animation-delay: 31.7s;
}
body * > .sequential:nth-of-type(318) {
  -webkit-animation-delay: 31.8s;
  animation-delay: 31.8s;
}
body * > .sequential:nth-of-type(319) {
  -webkit-animation-delay: 31.9s;
  animation-delay: 31.9s;
}
body * > .sequential:nth-of-type(320) {
  -webkit-animation-delay: 32s;
  animation-delay: 32s;
}
body * > .sequential:nth-of-type(321) {
  -webkit-animation-delay: 32.1s;
  animation-delay: 32.1s;
}
body * > .sequential:nth-of-type(322) {
  -webkit-animation-delay: 32.2s;
  animation-delay: 32.2s;
}
body * > .sequential:nth-of-type(323) {
  -webkit-animation-delay: 32.3s;
  animation-delay: 32.3s;
}
body * > .sequential:nth-of-type(324) {
  -webkit-animation-delay: 32.4s;
  animation-delay: 32.4s;
}
body * > .sequential:nth-of-type(325) {
  -webkit-animation-delay: 32.5s;
  animation-delay: 32.5s;
}
body * > .sequential:nth-of-type(326) {
  -webkit-animation-delay: 32.6s;
  animation-delay: 32.6s;
}
body * > .sequential:nth-of-type(327) {
  -webkit-animation-delay: 32.7s;
  animation-delay: 32.7s;
}
body * > .sequential:nth-of-type(328) {
  -webkit-animation-delay: 32.8s;
  animation-delay: 32.8s;
}
body * > .sequential:nth-of-type(329) {
  -webkit-animation-delay: 32.9s;
  animation-delay: 32.9s;
}
body * > .sequential:nth-of-type(330) {
  -webkit-animation-delay: 33s;
  animation-delay: 33s;
}
body * > .sequential:nth-of-type(331) {
  -webkit-animation-delay: 33.1s;
  animation-delay: 33.1s;
}
body * > .sequential:nth-of-type(332) {
  -webkit-animation-delay: 33.2s;
  animation-delay: 33.2s;
}
body * > .sequential:nth-of-type(333) {
  -webkit-animation-delay: 33.3s;
  animation-delay: 33.3s;
}
body * > .sequential:nth-of-type(334) {
  -webkit-animation-delay: 33.4s;
  animation-delay: 33.4s;
}
body * > .sequential:nth-of-type(335) {
  -webkit-animation-delay: 33.5s;
  animation-delay: 33.5s;
}
body * > .sequential:nth-of-type(336) {
  -webkit-animation-delay: 33.6s;
  animation-delay: 33.6s;
}
body * > .sequential:nth-of-type(337) {
  -webkit-animation-delay: 33.7s;
  animation-delay: 33.7s;
}
body * > .sequential:nth-of-type(338) {
  -webkit-animation-delay: 33.8s;
  animation-delay: 33.8s;
}
body * > .sequential:nth-of-type(339) {
  -webkit-animation-delay: 33.9s;
  animation-delay: 33.9s;
}
body * > .sequential:nth-of-type(340) {
  -webkit-animation-delay: 34s;
  animation-delay: 34s;
}
body * > .sequential:nth-of-type(341) {
  -webkit-animation-delay: 34.1s;
  animation-delay: 34.1s;
}
body * > .sequential:nth-of-type(342) {
  -webkit-animation-delay: 34.2s;
  animation-delay: 34.2s;
}
body * > .sequential:nth-of-type(343) {
  -webkit-animation-delay: 34.3s;
  animation-delay: 34.3s;
}
body * > .sequential:nth-of-type(344) {
  -webkit-animation-delay: 34.4s;
  animation-delay: 34.4s;
}
body * > .sequential:nth-of-type(345) {
  -webkit-animation-delay: 34.5s;
  animation-delay: 34.5s;
}
body * > .sequential:nth-of-type(346) {
  -webkit-animation-delay: 34.6s;
  animation-delay: 34.6s;
}
body * > .sequential:nth-of-type(347) {
  -webkit-animation-delay: 34.7s;
  animation-delay: 34.7s;
}
body * > .sequential:nth-of-type(348) {
  -webkit-animation-delay: 34.8s;
  animation-delay: 34.8s;
}
body * > .sequential:nth-of-type(349) {
  -webkit-animation-delay: 34.9s;
  animation-delay: 34.9s;
}
body * > .sequential:nth-of-type(350) {
  -webkit-animation-delay: 35s;
  animation-delay: 35s;
}
body * > .sequential:nth-of-type(351) {
  -webkit-animation-delay: 35.1s;
  animation-delay: 35.1s;
}
body * > .sequential:nth-of-type(352) {
  -webkit-animation-delay: 35.2s;
  animation-delay: 35.2s;
}
body * > .sequential:nth-of-type(353) {
  -webkit-animation-delay: 35.3s;
  animation-delay: 35.3s;
}
body * > .sequential:nth-of-type(354) {
  -webkit-animation-delay: 35.4s;
  animation-delay: 35.4s;
}
body * > .sequential:nth-of-type(355) {
  -webkit-animation-delay: 35.5s;
  animation-delay: 35.5s;
}
body * > .sequential:nth-of-type(356) {
  -webkit-animation-delay: 35.6s;
  animation-delay: 35.6s;
}
body * > .sequential:nth-of-type(357) {
  -webkit-animation-delay: 35.7s;
  animation-delay: 35.7s;
}
body * > .sequential:nth-of-type(358) {
  -webkit-animation-delay: 35.8s;
  animation-delay: 35.8s;
}
body * > .sequential:nth-of-type(359) {
  -webkit-animation-delay: 35.9s;
  animation-delay: 35.9s;
}
body * > .sequential:nth-of-type(360) {
  -webkit-animation-delay: 36s;
  animation-delay: 36s;
}
body * > .sequential:nth-of-type(361) {
  -webkit-animation-delay: 36.1s;
  animation-delay: 36.1s;
}
body * > .sequential:nth-of-type(362) {
  -webkit-animation-delay: 36.2s;
  animation-delay: 36.2s;
}
body * > .sequential:nth-of-type(363) {
  -webkit-animation-delay: 36.3s;
  animation-delay: 36.3s;
}
body * > .sequential:nth-of-type(364) {
  -webkit-animation-delay: 36.4s;
  animation-delay: 36.4s;
}
body * > .sequential:nth-of-type(365) {
  -webkit-animation-delay: 36.5s;
  animation-delay: 36.5s;
}
body * > .sequential:nth-of-type(366) {
  -webkit-animation-delay: 36.6s;
  animation-delay: 36.6s;
}
body * > .sequential:nth-of-type(367) {
  -webkit-animation-delay: 36.7s;
  animation-delay: 36.7s;
}
body * > .sequential:nth-of-type(368) {
  -webkit-animation-delay: 36.8s;
  animation-delay: 36.8s;
}
body * > .sequential:nth-of-type(369) {
  -webkit-animation-delay: 36.9s;
  animation-delay: 36.9s;
}
body * > .sequential:nth-of-type(370) {
  -webkit-animation-delay: 37s;
  animation-delay: 37s;
}
body * > .sequential:nth-of-type(371) {
  -webkit-animation-delay: 37.1s;
  animation-delay: 37.1s;
}
body * > .sequential:nth-of-type(372) {
  -webkit-animation-delay: 37.2s;
  animation-delay: 37.2s;
}
body * > .sequential:nth-of-type(373) {
  -webkit-animation-delay: 37.3s;
  animation-delay: 37.3s;
}
body * > .sequential:nth-of-type(374) {
  -webkit-animation-delay: 37.4s;
  animation-delay: 37.4s;
}
body * > .sequential:nth-of-type(375) {
  -webkit-animation-delay: 37.5s;
  animation-delay: 37.5s;
}
body * > .sequential:nth-of-type(376) {
  -webkit-animation-delay: 37.6s;
  animation-delay: 37.6s;
}
body * > .sequential:nth-of-type(377) {
  -webkit-animation-delay: 37.7s;
  animation-delay: 37.7s;
}
body * > .sequential:nth-of-type(378) {
  -webkit-animation-delay: 37.8s;
  animation-delay: 37.8s;
}
body * > .sequential:nth-of-type(379) {
  -webkit-animation-delay: 37.9s;
  animation-delay: 37.9s;
}
body * > .sequential:nth-of-type(380) {
  -webkit-animation-delay: 38s;
  animation-delay: 38s;
}
body * > .sequential:nth-of-type(381) {
  -webkit-animation-delay: 38.1s;
  animation-delay: 38.1s;
}
body * > .sequential:nth-of-type(382) {
  -webkit-animation-delay: 38.2s;
  animation-delay: 38.2s;
}
body * > .sequential:nth-of-type(383) {
  -webkit-animation-delay: 38.3s;
  animation-delay: 38.3s;
}
body * > .sequential:nth-of-type(384) {
  -webkit-animation-delay: 38.4s;
  animation-delay: 38.4s;
}
body * > .sequential:nth-of-type(385) {
  -webkit-animation-delay: 38.5s;
  animation-delay: 38.5s;
}
body * > .sequential:nth-of-type(386) {
  -webkit-animation-delay: 38.6s;
  animation-delay: 38.6s;
}
body * > .sequential:nth-of-type(387) {
  -webkit-animation-delay: 38.7s;
  animation-delay: 38.7s;
}
body * > .sequential:nth-of-type(388) {
  -webkit-animation-delay: 38.8s;
  animation-delay: 38.8s;
}
body * > .sequential:nth-of-type(389) {
  -webkit-animation-delay: 38.9s;
  animation-delay: 38.9s;
}
body * > .sequential:nth-of-type(390) {
  -webkit-animation-delay: 39s;
  animation-delay: 39s;
}
body * > .sequential:nth-of-type(391) {
  -webkit-animation-delay: 39.1s;
  animation-delay: 39.1s;
}
body * > .sequential:nth-of-type(392) {
  -webkit-animation-delay: 39.2s;
  animation-delay: 39.2s;
}
body * > .sequential:nth-of-type(393) {
  -webkit-animation-delay: 39.3s;
  animation-delay: 39.3s;
}
body * > .sequential:nth-of-type(394) {
  -webkit-animation-delay: 39.4s;
  animation-delay: 39.4s;
}
body * > .sequential:nth-of-type(395) {
  -webkit-animation-delay: 39.5s;
  animation-delay: 39.5s;
}
body * > .sequential:nth-of-type(396) {
  -webkit-animation-delay: 39.6s;
  animation-delay: 39.6s;
}
body * > .sequential:nth-of-type(397) {
  -webkit-animation-delay: 39.7s;
  animation-delay: 39.7s;
}
body * > .sequential:nth-of-type(398) {
  -webkit-animation-delay: 39.8s;
  animation-delay: 39.8s;
}
body * > .sequential:nth-of-type(399) {
  -webkit-animation-delay: 39.9s;
  animation-delay: 39.9s;
}
body * > .sequential:nth-of-type(400) {
  -webkit-animation-delay: 40s;
  animation-delay: 40s;
}
body * > .sequential:nth-of-type(401) {
  -webkit-animation-delay: 40.1s;
  animation-delay: 40.1s;
}
body * > .sequential:nth-of-type(402) {
  -webkit-animation-delay: 40.2s;
  animation-delay: 40.2s;
}
body * > .sequential:nth-of-type(403) {
  -webkit-animation-delay: 40.3s;
  animation-delay: 40.3s;
}
body * > .sequential:nth-of-type(404) {
  -webkit-animation-delay: 40.4s;
  animation-delay: 40.4s;
}
body * > .sequential:nth-of-type(405) {
  -webkit-animation-delay: 40.5s;
  animation-delay: 40.5s;
}
body * > .sequential:nth-of-type(406) {
  -webkit-animation-delay: 40.6s;
  animation-delay: 40.6s;
}
body * > .sequential:nth-of-type(407) {
  -webkit-animation-delay: 40.7s;
  animation-delay: 40.7s;
}
body * > .sequential:nth-of-type(408) {
  -webkit-animation-delay: 40.8s;
  animation-delay: 40.8s;
}
body * > .sequential:nth-of-type(409) {
  -webkit-animation-delay: 40.9s;
  animation-delay: 40.9s;
}
body * > .sequential:nth-of-type(410) {
  -webkit-animation-delay: 41s;
  animation-delay: 41s;
}
body * > .sequential:nth-of-type(411) {
  -webkit-animation-delay: 41.1s;
  animation-delay: 41.1s;
}
body * > .sequential:nth-of-type(412) {
  -webkit-animation-delay: 41.2s;
  animation-delay: 41.2s;
}
body * > .sequential:nth-of-type(413) {
  -webkit-animation-delay: 41.3s;
  animation-delay: 41.3s;
}
body * > .sequential:nth-of-type(414) {
  -webkit-animation-delay: 41.4s;
  animation-delay: 41.4s;
}
body * > .sequential:nth-of-type(415) {
  -webkit-animation-delay: 41.5s;
  animation-delay: 41.5s;
}
body * > .sequential:nth-of-type(416) {
  -webkit-animation-delay: 41.6s;
  animation-delay: 41.6s;
}
body * > .sequential:nth-of-type(417) {
  -webkit-animation-delay: 41.7s;
  animation-delay: 41.7s;
}
body * > .sequential:nth-of-type(418) {
  -webkit-animation-delay: 41.8s;
  animation-delay: 41.8s;
}
body * > .sequential:nth-of-type(419) {
  -webkit-animation-delay: 41.9s;
  animation-delay: 41.9s;
}
body * > .sequential:nth-of-type(420) {
  -webkit-animation-delay: 42s;
  animation-delay: 42s;
}
body * > .sequential:nth-of-type(421) {
  -webkit-animation-delay: 42.1s;
  animation-delay: 42.1s;
}
body * > .sequential:nth-of-type(422) {
  -webkit-animation-delay: 42.2s;
  animation-delay: 42.2s;
}
body * > .sequential:nth-of-type(423) {
  -webkit-animation-delay: 42.3s;
  animation-delay: 42.3s;
}
body * > .sequential:nth-of-type(424) {
  -webkit-animation-delay: 42.4s;
  animation-delay: 42.4s;
}
body * > .sequential:nth-of-type(425) {
  -webkit-animation-delay: 42.5s;
  animation-delay: 42.5s;
}
body * > .sequential:nth-of-type(426) {
  -webkit-animation-delay: 42.6s;
  animation-delay: 42.6s;
}
body * > .sequential:nth-of-type(427) {
  -webkit-animation-delay: 42.7s;
  animation-delay: 42.7s;
}
body * > .sequential:nth-of-type(428) {
  -webkit-animation-delay: 42.8s;
  animation-delay: 42.8s;
}
body * > .sequential:nth-of-type(429) {
  -webkit-animation-delay: 42.9s;
  animation-delay: 42.9s;
}
body * > .sequential:nth-of-type(430) {
  -webkit-animation-delay: 43s;
  animation-delay: 43s;
}
body * > .sequential:nth-of-type(431) {
  -webkit-animation-delay: 43.1s;
  animation-delay: 43.1s;
}
body * > .sequential:nth-of-type(432) {
  -webkit-animation-delay: 43.2s;
  animation-delay: 43.2s;
}
body * > .sequential:nth-of-type(433) {
  -webkit-animation-delay: 43.3s;
  animation-delay: 43.3s;
}
body * > .sequential:nth-of-type(434) {
  -webkit-animation-delay: 43.4s;
  animation-delay: 43.4s;
}
body * > .sequential:nth-of-type(435) {
  -webkit-animation-delay: 43.5s;
  animation-delay: 43.5s;
}
body * > .sequential:nth-of-type(436) {
  -webkit-animation-delay: 43.6s;
  animation-delay: 43.6s;
}
body * > .sequential:nth-of-type(437) {
  -webkit-animation-delay: 43.7s;
  animation-delay: 43.7s;
}
body * > .sequential:nth-of-type(438) {
  -webkit-animation-delay: 43.8s;
  animation-delay: 43.8s;
}
body * > .sequential:nth-of-type(439) {
  -webkit-animation-delay: 43.9s;
  animation-delay: 43.9s;
}
body * > .sequential:nth-of-type(440) {
  -webkit-animation-delay: 44s;
  animation-delay: 44s;
}
body * > .sequential:nth-of-type(441) {
  -webkit-animation-delay: 44.1s;
  animation-delay: 44.1s;
}
body * > .sequential:nth-of-type(442) {
  -webkit-animation-delay: 44.2s;
  animation-delay: 44.2s;
}
body * > .sequential:nth-of-type(443) {
  -webkit-animation-delay: 44.3s;
  animation-delay: 44.3s;
}
body * > .sequential:nth-of-type(444) {
  -webkit-animation-delay: 44.4s;
  animation-delay: 44.4s;
}
body * > .sequential:nth-of-type(445) {
  -webkit-animation-delay: 44.5s;
  animation-delay: 44.5s;
}
body * > .sequential:nth-of-type(446) {
  -webkit-animation-delay: 44.6s;
  animation-delay: 44.6s;
}
body * > .sequential:nth-of-type(447) {
  -webkit-animation-delay: 44.7s;
  animation-delay: 44.7s;
}
body * > .sequential:nth-of-type(448) {
  -webkit-animation-delay: 44.8s;
  animation-delay: 44.8s;
}
body * > .sequential:nth-of-type(449) {
  -webkit-animation-delay: 44.9s;
  animation-delay: 44.9s;
}
body * > .sequential:nth-of-type(450) {
  -webkit-animation-delay: 45s;
  animation-delay: 45s;
}
body * > .sequential:nth-of-type(451) {
  -webkit-animation-delay: 45.1s;
  animation-delay: 45.1s;
}
body * > .sequential:nth-of-type(452) {
  -webkit-animation-delay: 45.2s;
  animation-delay: 45.2s;
}
body * > .sequential:nth-of-type(453) {
  -webkit-animation-delay: 45.3s;
  animation-delay: 45.3s;
}
body * > .sequential:nth-of-type(454) {
  -webkit-animation-delay: 45.4s;
  animation-delay: 45.4s;
}
body * > .sequential:nth-of-type(455) {
  -webkit-animation-delay: 45.5s;
  animation-delay: 45.5s;
}
body * > .sequential:nth-of-type(456) {
  -webkit-animation-delay: 45.6s;
  animation-delay: 45.6s;
}
body * > .sequential:nth-of-type(457) {
  -webkit-animation-delay: 45.7s;
  animation-delay: 45.7s;
}
body * > .sequential:nth-of-type(458) {
  -webkit-animation-delay: 45.8s;
  animation-delay: 45.8s;
}
body * > .sequential:nth-of-type(459) {
  -webkit-animation-delay: 45.9s;
  animation-delay: 45.9s;
}
body * > .sequential:nth-of-type(460) {
  -webkit-animation-delay: 46s;
  animation-delay: 46s;
}
body * > .sequential:nth-of-type(461) {
  -webkit-animation-delay: 46.1s;
  animation-delay: 46.1s;
}
body * > .sequential:nth-of-type(462) {
  -webkit-animation-delay: 46.2s;
  animation-delay: 46.2s;
}
body * > .sequential:nth-of-type(463) {
  -webkit-animation-delay: 46.3s;
  animation-delay: 46.3s;
}
body * > .sequential:nth-of-type(464) {
  -webkit-animation-delay: 46.4s;
  animation-delay: 46.4s;
}
body * > .sequential:nth-of-type(465) {
  -webkit-animation-delay: 46.5s;
  animation-delay: 46.5s;
}
body * > .sequential:nth-of-type(466) {
  -webkit-animation-delay: 46.6s;
  animation-delay: 46.6s;
}
body * > .sequential:nth-of-type(467) {
  -webkit-animation-delay: 46.7s;
  animation-delay: 46.7s;
}
body * > .sequential:nth-of-type(468) {
  -webkit-animation-delay: 46.8s;
  animation-delay: 46.8s;
}
body * > .sequential:nth-of-type(469) {
  -webkit-animation-delay: 46.9s;
  animation-delay: 46.9s;
}
body * > .sequential:nth-of-type(470) {
  -webkit-animation-delay: 47s;
  animation-delay: 47s;
}
body * > .sequential:nth-of-type(471) {
  -webkit-animation-delay: 47.1s;
  animation-delay: 47.1s;
}
body * > .sequential:nth-of-type(472) {
  -webkit-animation-delay: 47.2s;
  animation-delay: 47.2s;
}
body * > .sequential:nth-of-type(473) {
  -webkit-animation-delay: 47.3s;
  animation-delay: 47.3s;
}
body * > .sequential:nth-of-type(474) {
  -webkit-animation-delay: 47.4s;
  animation-delay: 47.4s;
}
body * > .sequential:nth-of-type(475) {
  -webkit-animation-delay: 47.5s;
  animation-delay: 47.5s;
}
body * > .sequential:nth-of-type(476) {
  -webkit-animation-delay: 47.6s;
  animation-delay: 47.6s;
}
body * > .sequential:nth-of-type(477) {
  -webkit-animation-delay: 47.7s;
  animation-delay: 47.7s;
}
body * > .sequential:nth-of-type(478) {
  -webkit-animation-delay: 47.8s;
  animation-delay: 47.8s;
}
body * > .sequential:nth-of-type(479) {
  -webkit-animation-delay: 47.9s;
  animation-delay: 47.9s;
}
body * > .sequential:nth-of-type(480) {
  -webkit-animation-delay: 48s;
  animation-delay: 48s;
}
body * > .sequential:nth-of-type(481) {
  -webkit-animation-delay: 48.1s;
  animation-delay: 48.1s;
}
body * > .sequential:nth-of-type(482) {
  -webkit-animation-delay: 48.2s;
  animation-delay: 48.2s;
}
body * > .sequential:nth-of-type(483) {
  -webkit-animation-delay: 48.3s;
  animation-delay: 48.3s;
}
body * > .sequential:nth-of-type(484) {
  -webkit-animation-delay: 48.4s;
  animation-delay: 48.4s;
}
body * > .sequential:nth-of-type(485) {
  -webkit-animation-delay: 48.5s;
  animation-delay: 48.5s;
}
body * > .sequential:nth-of-type(486) {
  -webkit-animation-delay: 48.6s;
  animation-delay: 48.6s;
}
body * > .sequential:nth-of-type(487) {
  -webkit-animation-delay: 48.7s;
  animation-delay: 48.7s;
}
body * > .sequential:nth-of-type(488) {
  -webkit-animation-delay: 48.8s;
  animation-delay: 48.8s;
}
body * > .sequential:nth-of-type(489) {
  -webkit-animation-delay: 48.9s;
  animation-delay: 48.9s;
}
body * > .sequential:nth-of-type(490) {
  -webkit-animation-delay: 49s;
  animation-delay: 49s;
}
body * > .sequential:nth-of-type(491) {
  -webkit-animation-delay: 49.1s;
  animation-delay: 49.1s;
}
body * > .sequential:nth-of-type(492) {
  -webkit-animation-delay: 49.2s;
  animation-delay: 49.2s;
}
body * > .sequential:nth-of-type(493) {
  -webkit-animation-delay: 49.3s;
  animation-delay: 49.3s;
}
body * > .sequential:nth-of-type(494) {
  -webkit-animation-delay: 49.4s;
  animation-delay: 49.4s;
}
body * > .sequential:nth-of-type(495) {
  -webkit-animation-delay: 49.5s;
  animation-delay: 49.5s;
}
body * > .sequential:nth-of-type(496) {
  -webkit-animation-delay: 49.6s;
  animation-delay: 49.6s;
}
body * > .sequential:nth-of-type(497) {
  -webkit-animation-delay: 49.7s;
  animation-delay: 49.7s;
}
body * > .sequential:nth-of-type(498) {
  -webkit-animation-delay: 49.8s;
  animation-delay: 49.8s;
}
body * > .sequential:nth-of-type(499) {
  -webkit-animation-delay: 49.9s;
  animation-delay: 49.9s;
}
body * > .sequential:nth-of-type(500) {
  -webkit-animation-delay: 50s;
  animation-delay: 50s;
}
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;
}
.assistant iframe {
  width: 100%;
  height: calc((var(--vh, 1vh) * 100)  - 88px);
  border: none;
}
.assistant_icon::before {
  content: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" fill="blue"><path  fill="white"  d="M8.64805 15.8149L9.57654 17.6719C9.89078 18.3003 10.0479 18.6146 10.2578 18.8869C10.4441 19.1285 10.6607 19.3451 10.9023 19.5314C11.1746 19.7413 11.4888 19.8984 12.1173 20.2127L13.9743 21.1411L12.1173 22.0696C11.4888 22.3839 11.1746 22.541 10.9023 22.7509C10.6607 22.9372 10.4441 23.1538 10.2578 23.3954C10.0479 23.6677 9.89078 23.982 9.57654 24.6104L8.64805 26.4674L7.71955 24.6104C7.40531 23.982 7.24819 23.6677 7.03829 23.3954C6.85204 23.1538 6.63542 22.9372 6.39379 22.7509C6.12148 22.541 5.80725 22.3839 5.17877 22.0696L3.32178 21.1411L5.17877 20.2127C5.80725 19.8984 6.12148 19.7413 6.39379 19.5314C6.63542 19.3451 6.85204 19.1285 7.03829 18.8869C7.24819 18.6146 7.40531 18.3003 7.71955 17.6719L8.64805 15.8149Z" /><path d="M18.7088 2.7951L20.1038 6.4222C20.4376 7.29006 20.6045 7.72399 20.864 8.08899C21.0941 8.41249 21.3767 8.69513 21.7002 8.92515C22.0652 9.18469 22.4991 9.35159 23.367 9.68538L26.9941 11.0804L23.367 12.4755C22.4991 12.8092 22.0652 12.9761 21.7002 13.2357C21.3767 13.4657 21.0941 13.7483 20.864 14.0718C20.6045 14.4368 20.4376 14.8708 20.1038 15.7386L18.7088 19.3657L17.3137 15.7386C16.98 14.8708 16.8131 14.4368 16.5535 14.0718C16.3235 13.7483 16.0409 13.4657 15.7174 13.2357C15.3524 12.9761 14.9184 12.8092 14.0506 12.4755L10.4235 11.0804L14.0506 9.68538C14.9184 9.35159 15.3524 9.18469 15.7174 8.92515C16.0409 8.69513 16.3235 8.41249 16.5535 8.08899C16.8131 7.72399 16.98 7.29006 17.3137 6.4222L18.7088 2.7951Z" fill="white"/></svg>');
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: var(--theme-color);
  border-radius: 50%;
  padding: 5px;
  background: #020024;
  background: -webkit-linear-gradient(0deg, #1f234c 0%, #377685 50%, #4faabf 80%, #83c3d2 100%);
  background: linear-gradient(90deg, #1f234c 0%, #377685 50%, #4faabf 80%, #83c3d2 100%);
  margin-right: 15px;
}
