@charset "UTF-8";
@font-face {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-style: normal;
}
/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Variables
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/
/* Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}
/* For devices larger than 550px */
@media (min-width: 600px) {
  .container {
    width: 90%;
  }
  .column,
  .columns {
    margin-left: 4%;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
  .one.column,
  .one.columns {
    width: 4.6666666667%;
  }
  .two.columns {
    width: 13.3333333333%;
  }
  .three.columns {
    width: 22%;
  }
  .four.columns {
    width: 30.6666666667%;
  }
  .five.columns {
    width: 39.3333333333%;
  }
  .six.columns {
    width: 48%;
  }
  .seven.columns {
    width: 56.6666666667%;
  }
  .eight.columns {
    width: 65.3333333333%;
  }
  .nine.columns {
    width: 74%;
  }
  .ten.columns {
    width: 82.6666666667%;
  }
  .eleven.columns {
    width: 91.3333333333%;
  }
  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }
  .one-third.column {
    width: 30.6666666667%;
  }
  .two-thirds.column {
    width: 65.3333333333%;
  }
  .one-half.column {
    width: 48%;
  }
  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.6666666667%;
  }
  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }
  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }
  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }
  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }
  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }
  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78%;
  }
  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }
  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }
  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 52%;
  }
}
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}

h3 {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: -0.1rem;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: -0.08rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.05rem;
}

h6 {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
}

/* Larger than phablet */
@media (min-width: 550px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4.2rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3rem;
  }
  h5 {
    font-size: 2.4rem;
  }
  h6 {
    font-size: 1.5rem;
  }
}
p {
  margin-top: 0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB;
}

a:hover {
  color: #0FA0CE;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.button:focus,
button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type=submit].button-primary:hover,
input[type=reset].button-primary:hover,
input[type=button].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:focus,
input[type=button].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: normal;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol, ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
}

li {
  margin-bottom: 1rem;
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

figcaption {
  margin: 15px 40px 25px 40px;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
/* Larger than mobile */
@media (min-width: 400px) {
  .container {
    width: 360px;
  }
}
/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
  .container {
    width: 510px;
  }
}
/* Larger than tablet */
@media (min-width: 768px) {
  .container {
    width: 670px;
  }
}
/* Larger than desktop */
@media (min-width: 1000px) {
  .container {
    width: 920px;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .container {
    width: 1120px;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1600px) {
  .container {
    width: 1520px;
  }
}
/* Lima Charlie addons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container.full-width {
  width: 100%;
  max-width: 100%;
  /* Larger than Desktop HD */
  /* Larger than Desktop HD */
}
@media (min-width: 0px) and (max-width: 999px) {
  .container.full-width {
    padding: 0 30px;
  }
}
@media (max-width: 359px) {
  .container.full-width {
    padding: 0 30px;
  }
}
@media (max-width: 599px) {
  .container.full-width {
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .container.full-width {
    width: 1580px;
    max-width: 1240px;
  }
}
@media (min-width: 1440px) {
  .container.full-width {
    width: 1850px;
    max-width: 1800px;
  }
}
.container.full-width.small {
  max-width: 920px;
}
.container.full-width.large {
  max-width: 1580px;
  /* Larger than Desktop HD */
  /* Larger than Desktop HD */
}
@media (min-width: 1440px) {
  .container.full-width.large {
    width: 1380px;
  }
}
@media (min-width: 1620px) {
  .container.full-width.large {
    width: 1560px;
  }
}
.container.full-width.larger {
  max-width: 1800px;
  /* Larger than Desktop HD */
  /* Larger than Desktop HD */
  /* Larger than Desktop HD */
}
@media (min-width: 1440px) {
  .container.full-width.larger {
    width: 1380px;
  }
}
@media (min-width: 1620px) {
  .container.full-width.larger {
    width: 1560px;
  }
}
@media (min-width: 1840px) {
  .container.full-width.larger {
    width: 1780px;
  }
}
@media (max-width: 599px) {
  .container.full-width.full-width-mobile {
    width: 100%;
    max-width: 100%;
    padding: 0px;
  }
}
.container.full-width.full-width {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0px;
  margin: 0px;
}
.container.full-width.full-width-limit {
  width: 100%;
  box-sizing: border-box;
  max-width: 1240px;
  padding: 0px;
  margin: 0px auto;
}
.container.full-width.full-width-limit.large {
  max-width: 1580px;
}
.container.full-width.full-width-limit.larger {
  max-width: 1800px;
}

.vertical-middle {
  vertical-align: middle;
}

@media (min-width: 550px) {
  .one-fifth.columns {
    width: 19%;
    margin: 0 0.5%;
  }
  .container.no-margin .column,
  .container.no-margin .columns {
    margin-left: 0%;
  }
  .container.no-margin .column:first-child,
  .container.no-margin .columns:first-child {
    margin-left: 0;
  }
  .container.no-margin .one.column,
  .container.no-margin .one.columns {
    width: 8.3333333333%;
  }
  .container.no-margin .two.columns {
    width: 16.6666666667%;
  }
  .container.no-margin .three.columns {
    width: 25%;
  }
  .container.no-margin .four.columns {
    width: 33.3333333333%;
  }
  .container.no-margin .five.columns {
    width: 41.6666666667%;
  }
  .container.no-margin .six.columns {
    width: 50%;
  }
  .container.no-margin .seven.columns {
    width: 58.3333333333%;
  }
  .container.no-margin .eight.columns {
    width: 66.6666666667%;
  }
  .container.no-margin .nine.columns {
    width: 75%;
  }
  .container.no-margin .ten.columns {
    width: 83.3333333333%;
  }
  .container.no-margin .eleven.columns {
    width: 91.6666666667%;
  }
  .container.no-margin .twelve.columns {
    width: 100%;
  }
  .container.no-margin .one-third.column {
    width: 33.3333333333%;
  }
  .container.no-margin .two-thirds.column {
    width: 66.6666666667%;
  }
  .container.no-margin .one-half.column {
    width: 50%;
  }
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

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

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

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

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

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

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

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

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

@-webkit-keyframes fadeOutDownSmall {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
}
@keyframes fadeOutDownSmall {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
}
.fadeOutDownSmall {
  -webkit-animation-name: fadeOutDownSmall;
  animation-name: fadeOutDownSmall;
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

* {
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.0075em !important;
}
*.centered {
  text-align: center;
}

html, body {
  margin: 0;
  padding: 0;
  background: #e0dfe1;
  color: #222025 !important;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
}

html.is-collaborator,
body.is-collaborator {
  background: #d8c7c8;
}

#main h1, #main h2, #main h3, #main h4, #main h5, #main h6,
#header h1,
#header h2,
#header h3,
#header h4,
#header h5,
#header h6,
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6 {
  font-weight: normal;
  font-family: "Open Sans", sans-serif;
  line-height: 0.9;
}
#main h1,
#header h1,
#footer h1 {
  font-weight: normal;
  font-size: 32px;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 1649px) {
  #main h1,
  #header h1,
  #footer h1 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  #main h1,
  #header h1,
  #footer h1 {
    font-size: 24px;
  }
}
#main h1, #main h1 a,
#header h1,
#header h1 a,
#footer h1,
#footer h1 a {
  text-decoration: none;
}
#main h2,
#header h2,
#footer h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 90%;
  margin-top: 60px;
  margin-bottom: 25px;
}
@media (max-width: 1649px) {
  #main h2,
  #header h2,
  #footer h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  #main h2,
  #header h2,
  #footer h2 {
    font-size: 20px;
  }
}
#main h3,
#header h3,
#footer h3 {
  margin-bottom: 5px;
  line-height: 1.2;
  font-weight: bold;
  font-size: 24px;
}
@media (max-width: 1649px) {
  #main h3,
  #header h3,
  #footer h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #main h3,
  #header h3,
  #footer h3 {
    font-size: 18px;
  }
}
#main h4,
#header h4,
#footer h4 {
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: 20px;
}
@media (max-width: 1649px) {
  #main h4,
  #header h4,
  #footer h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #main h4,
  #header h4,
  #footer h4 {
    font-size: 16px;
  }
}
#main p, #main pre,
#header p,
#header pre,
#footer p,
#footer pre {
  margin-bottom: 25px;
  line-height: 1.4;
}
#main ol li,
#header ol li,
#footer ol li {
  margin-bottom: 0;
}
#main ul,
#header ul,
#footer ul {
  list-style-position: outside;
  margin-left: 1em;
}
#main ul li,
#header ul li,
#footer ul li {
  margin-bottom: 0;
}
#main pre,
#header pre,
#footer pre {
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  box-sizing: border-box;
  padding: 0;
  line-height: normal;
  word-break: break-all;
  border: 1px solid #dedde1;
  padding: 16px;
  white-space: pre-wrap;
}
@media (max-width: 599px) {
  #main blockquote,
  #main figcaption,
  #main figure,
  #header blockquote,
  #header figcaption,
  #header figure,
  #footer blockquote,
  #footer figcaption,
  #footer figure {
    margin-left: 0;
    margin-right: 0;
  }
}

#main {
  padding: 60px 0 120px;
  background: #f5f8fa;
}
#main button,
#main a.button,
#main div.button,
#main input.button {
  padding: 10px 15px;
  background: #746c79;
  color: #FFF;
  border: 0;
  border-radius: 10px;
  font-size: 18px;
  line-height: normal;
  text-transform: none;
  height: auto;
  white-space: normal;
  -webkit-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 1649px) {
  #main button,
  #main a.button,
  #main div.button,
  #main input.button {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #main button,
  #main a.button,
  #main div.button,
  #main input.button {
    font-size: 14px;
  }
}
#main button:hover,
#main a.button:hover,
#main div.button:hover,
#main input.button:hover {
  background: #8e8593;
}
#main button:last-child,
#main a.button:last-child,
#main div.button:last-child,
#main input.button:last-child {
  margin-bottom: 0;
}
#main button.disabled,
#main a.button.disabled,
#main div.button.disabled,
#main input.button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main button.full-width,
#main a.button.full-width,
#main div.button.full-width,
#main input.button.full-width {
  width: 100%;
}
#main h1.page-title {
  margin-bottom: 1.5em;
  color: #746c79;
}

body.is-collaborator #main,
body.is-management #main,
body.is-logged-in #main {
  background: #f2e9e9;
}
body.is-collaborator #main button,
body.is-collaborator #main a.button,
body.is-collaborator #main div.button,
body.is-collaborator #main input.button,
body.is-management #main button,
body.is-management #main a.button,
body.is-management #main div.button,
body.is-management #main input.button,
body.is-logged-in #main button,
body.is-logged-in #main a.button,
body.is-logged-in #main div.button,
body.is-logged-in #main input.button {
  background: #8b5f5f;
}
body.is-collaborator #main button:hover,
body.is-collaborator #main a.button:hover,
body.is-collaborator #main div.button:hover,
body.is-collaborator #main input.button:hover,
body.is-management #main button:hover,
body.is-management #main a.button:hover,
body.is-management #main div.button:hover,
body.is-management #main input.button:hover,
body.is-logged-in #main button:hover,
body.is-logged-in #main a.button:hover,
body.is-logged-in #main div.button:hover,
body.is-logged-in #main input.button:hover {
  background: #6f5151;
}

.in-view {
  opacity: 0;
}

h1.hidden {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

figcaption {
  text-align: center;
}

hr {
  margin: 20px 0;
  border-top: 1px solid #000 !important;
}

a {
  color: #222025;
  text-decoration: underline;
  -webkit-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a:hover {
  color: #a86bc2;
}

:root {
  --dt-row-selected: 13, 110, 253;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-selected-link: 9, 10, 11;
}

table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}

table.dataTable td.dt-control:before {
  height: 1em;
  width: 1em;
  margin-top: -9px;
  display: inline-block;
  color: white;
  border: 0.15em solid white;
  border-radius: 1em;
  box-shadow: 0 0 0.2em #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: "Courier New", Courier, monospace;
  line-height: 1em;
  content: "+";
  background-color: #31b131;
}

table.dataTable tr.dt-hasChild td.dt-control:before {
  content: "-";
  background-color: #d33333;
}

table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled, table.dataTable thead > tr > td.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting_asc_disabled, table.dataTable thead > tr > td.sorting_desc_disabled {
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}

table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > td.sorting:before, table.dataTable thead > tr > td.sorting:after, table.dataTable thead > tr > td.sorting_asc:before, table.dataTable thead > tr > td.sorting_asc:after, table.dataTable thead > tr > td.sorting_desc:before, table.dataTable thead > tr > td.sorting_desc:after, table.dataTable thead > tr > td.sorting_asc_disabled:before, table.dataTable thead > tr > td.sorting_asc_disabled:after, table.dataTable thead > tr > td.sorting_desc_disabled:before, table.dataTable thead > tr > td.sorting_desc_disabled:after {
  position: absolute;
  display: block;
  opacity: 0.125;
  right: 10px;
  line-height: 9px;
  font-size: 0.8em;
}

table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > td.sorting:before, table.dataTable thead > tr > td.sorting_asc:before, table.dataTable thead > tr > td.sorting_desc:before, table.dataTable thead > tr > td.sorting_asc_disabled:before, table.dataTable thead > tr > td.sorting_desc_disabled:before {
  bottom: 50%;
  content: "▲";
}

table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > td.sorting:after, table.dataTable thead > tr > td.sorting_asc:after, table.dataTable thead > tr > td.sorting_desc:after, table.dataTable thead > tr > td.sorting_asc_disabled:after, table.dataTable thead > tr > td.sorting_desc_disabled:after {
  top: 50%;
  content: "▼";
}

table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > td.sorting_asc:before, table.dataTable thead > tr > td.sorting_desc:after {
  opacity: 0.6;
}

table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > td.sorting_desc_disabled:after, table.dataTable thead > tr > td.sorting_asc_disabled:before {
  display: none;
}

table.dataTable thead > tr > th:active, table.dataTable thead > tr > td:active {
  outline: none;
}

div.dataTables_scrollBody table.dataTable thead > tr > th:before, div.dataTables_scrollBody table.dataTable thead > tr > th:after, div.dataTables_scrollBody table.dataTable thead > tr > td:before, div.dataTables_scrollBody table.dataTable thead > tr > td:after {
  display: none;
}

div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 2px;
}

div.dataTables_processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}

div.dataTables_processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: 13 110 253;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

div.dataTables_processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}

div.dataTables_processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}

div.dataTables_processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}

div.dataTables_processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}

table.dataTable th.dt-left, table.dataTable td.dt-left {
  text-align: left;
}

table.dataTable th.dt-center, table.dataTable td.dt-center, table.dataTable td.dataTables_empty {
  text-align: center;
}

table.dataTable th.dt-right, table.dataTable td.dt-right {
  text-align: right;
}

table.dataTable th.dt-justify, table.dataTable td.dt-justify {
  text-align: justify;
}

table.dataTable th.dt-nowrap, table.dataTable td.dt-nowrap {
  white-space: nowrap;
}

table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
  text-align: left;
}

table.dataTable thead th.dt-head-left, table.dataTable thead td.dt-head-left, table.dataTable tfoot th.dt-head-left, table.dataTable tfoot td.dt-head-left {
  text-align: left;
}

table.dataTable thead th.dt-head-center, table.dataTable thead td.dt-head-center, table.dataTable tfoot th.dt-head-center, table.dataTable tfoot td.dt-head-center {
  text-align: center;
}

table.dataTable thead th.dt-head-right, table.dataTable thead td.dt-head-right, table.dataTable tfoot th.dt-head-right, table.dataTable tfoot td.dt-head-right {
  text-align: right;
}

table.dataTable thead th.dt-head-justify, table.dataTable thead td.dt-head-justify, table.dataTable tfoot th.dt-head-justify, table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}

table.dataTable thead th.dt-head-nowrap, table.dataTable thead td.dt-head-nowrap, table.dataTable tfoot th.dt-head-nowrap, table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}

table.dataTable tbody th.dt-body-left, table.dataTable tbody td.dt-body-left {
  text-align: left;
}

table.dataTable tbody th.dt-body-center, table.dataTable tbody td.dt-body-center {
  text-align: center;
}

table.dataTable tbody th.dt-body-right, table.dataTable tbody td.dt-body-right {
  text-align: right;
}

table.dataTable tbody th.dt-body-justify, table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}

table.dataTable tbody th.dt-body-nowrap, table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
}

table.dataTable thead th, table.dataTable tfoot th {
  font-weight: bold;
}

table.dataTable thead th, table.dataTable thead td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

table.dataTable thead th:active, table.dataTable thead td:active {
  outline: none;
}

table.dataTable tfoot th, table.dataTable tfoot td {
  padding: 10px 10px 6px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

table.dataTable tbody tr {
  background-color: transparent;
}

table.dataTable tbody tr.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
  color: rgb(255, 255, 255);
  color: rgb(var(--dt-row-selected-text));
}

table.dataTable tbody tr.selected a {
  color: rgb(9, 10, 11);
  color: rgb(var(--dt-row-selected-link));
}

table.dataTable tbody th, table.dataTable tbody td {
  padding: 8px 10px;
}

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

table.dataTable.row-border tbody tr:first-child th, table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th, table.dataTable.display tbody tr:first-child td {
  border-top: none;
}

table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

table.dataTable.cell-border tbody tr th:first-child, table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

table.dataTable.cell-border tbody tr:first-child th, table.dataTable.cell-border tbody tr:first-child td {
  border-top: none;
}

table.dataTable.stripe > tbody > tr.odd > *, table.dataTable.display > tbody > tr.odd > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
}

table.dataTable.stripe > tbody > tr.odd.selected > *, table.dataTable.display > tbody > tr.odd.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.923));
}

table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
}

table.dataTable.hover > tbody > tr.selected:hover > *, table.dataTable.display > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px #0d6efd !important;
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 1)) !important;
}

table.dataTable.order-column > tbody tr > .sorting_1, table.dataTable.order-column > tbody tr > .sorting_2, table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1, table.dataTable.display > tbody tr > .sorting_2, table.dataTable.display > tbody tr > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
}

table.dataTable.order-column > tbody tr.selected > .sorting_1, table.dataTable.order-column > tbody tr.selected > .sorting_2, table.dataTable.order-column > tbody tr.selected > .sorting_3, table.dataTable.display > tbody tr.selected > .sorting_1, table.dataTable.display > tbody tr.selected > .sorting_2, table.dataTable.display > tbody tr.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.919));
}

table.dataTable.display > tbody > tr.odd > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
}

table.dataTable.display > tbody > tr.odd > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
}

table.dataTable.display > tbody > tr.odd > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
}

table.dataTable.display > tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.954));
}

table.dataTable.display > tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.947));
}

table.dataTable.display > tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.939));
}

table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
}

table.dataTable.display > tbody > tr.even > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
}

table.dataTable.display > tbody > tr.even > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
}

table.dataTable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.919));
}

table.dataTable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.911));
}

table.dataTable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.903));
}

table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
}

table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
}

table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
}

table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.982));
}

table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.974));
}

table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected, 0.962));
}

table.dataTable.no-footer {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

table.dataTable.compact thead th, table.dataTable.compact thead td, table.dataTable.compact tfoot th, table.dataTable.compact tfoot td, table.dataTable.compact tbody th, table.dataTable.compact tbody td {
  padding: 4px;
}

table.dataTable th, table.dataTable td {
  box-sizing: content-box;
}

.dataTables_wrapper {
  position: relative;
  clear: both;
}

.dataTables_wrapper .dataTables_length {
  float: left;
}

.dataTables_wrapper .dataTables_length select {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  padding: 4px;
}

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}

.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  margin-left: 3px;
}

.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: inherit !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(230, 230, 230, 0.1);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -o-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear-gradient(to bottom, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111;
  background-color: #585858;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
  background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
  background: -moz-linear-gradient(top, #585858 0%, #111 100%);
  background: -ms-linear-gradient(top, #585858 0%, #111 100%);
  background: -o-linear-gradient(top, #585858 0%, #111 100%);
  background: linear-gradient(to bottom, #585858 0%, #111 100%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #2b2b2b;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  box-shadow: inset 0 0 3px #111;
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  color: inherit;
}

.dataTables_wrapper .dataTables_scroll {
  clear: both;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  -webkit-overflow-scrolling: touch;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: middle;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable, .dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
  border-bottom: none;
}

.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}
#main .box {
  position: relative;
  background: #e0dfe1;
  padding: 30px;
  left: -30px;
  box-sizing: content-box;
  margin-bottom: 25px;
}
@media (max-width: 599px) {
  #main .box {
    padding: 20px;
    left: -20px;
  }
}
#main .box h1:first-child,
#main .box h2:first-child {
  margin-top: 0;
}
#main .box p:last-child {
  margin-bottom: 0;
}
#main .box a.button {
  display: block;
  margin: 0 auto 10px;
  padding: 15px 10px;
  width: 100%;
  max-width: 500px;
  border: 0;
  border-radius: 15px;
}
#main .box a.button:last-child {
  margin-bottom: 0;
}

body.is-collaborator #main .box,
body.is-management #main .box,
body.is-logged-in #main .box {
  background: #eadede;
}

.checkbox input[type=checkbox],
.checkbox input[type=radio] {
  opacity: 0;
}

.checkbox label {
  position: relative;
  display: inline-block;
  /*16px width of fake checkbox + 12px distance between fake checkbox and text*/
  padding-left: 28px;
}

.checkbox label::before,
.checkbox label::after {
  position: absolute;
  content: "";
  /*Needed for the line-height to take effect*/
  display: inline-block;
}

/*Outer box of the fake checkbox*/
.checkbox label::before {
  height: 16px;
  width: 16px;
  border: 1px solid;
  left: 0px;
  /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
   *to vertically center it.
   */
  top: 3px;
}

/*Checkmark of the fake checkbox*/
.checkbox label::after {
  height: 5px;
  width: 9px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  left: 4px;
  top: 7px;
}

/*Hide the checkmark by default*/
.checkbox input[type=checkbox] + label::after,
.checkbox input[type=radio] + label::after {
  content: none;
}

/*Unhide on the checked state*/
.checkbox input[type=checkbox]:checked + label::after,
.checkbox input[type=radio]:checked + label::after {
  content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type=checkbox]:focus + label::before,
.checkbox input[type=radio]:focus + label::before {
  outline: rgb(59, 153, 252) auto 5px;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #686769;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #686769 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#main .error-message {
  background: #f8eeee;
  color: #BF2226;
  border: 1px #BF2226 solid;
  padding: 20px;
  line-height: normal;
}
#main .error-message p:last-child {
  margin-bottom: 0;
}
#main .error-message .error-label {
  font-weight: bold;
}

#header {
  background: #dedde1;
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
#header .container::after {
  content: unset;
}
#header .logo {
  height: 30px;
  width: auto;
}
#header .title {
  padding: 10px 20px;
  flex-grow: 1;
  color: #746c79;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#header .title a {
  font-weight: normal;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 32px;
  margin-bottom: 0;
  line-height: 1;
  text-decoration: none;
}
@media (max-width: 1649px) {
  #header .title a {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  #header .title a {
    font-size: 24px;
  }
}
#header #main-menu {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  height: auto;
  gap: 20px;
}
#header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  height: 100%;
  justify-content: flex-end;
}
#header ul.icon-menu {
  flex-wrap: nowrap;
}
#header ul li {
  display: inline-flex;
  margin: 0;
  padding: 0;
  text-align: right;
}
#header ul li a {
  color: #746c79;
  padding: 2px 0px 2px 15px;
  text-decoration: none;
}
#header ul li a:hover {
  text-decoration: underline;
}
#header ul li.user, #header ul li.language-switcher {
  flex-direction: row;
  height: 100%;
  display: inline-flex;
  justify-content: center;
}
#header ul li.user a, #header ul li.language-switcher a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  -webkit-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#header ul li.user a:hover, #header ul li.language-switcher a:hover {
  background: #e8e7ea;
}
#header ul li.user a img, #header ul li.language-switcher a img {
  position: relative;
  display: inline-block;
  height: 35px;
  width: 35px;
  min-width: 20px;
}
#header ul li.user a span, #header ul li.language-switcher a span {
  display: none;
}
#header ul li.user {
  background: #cac8cc;
}
#header ul li.language-switcher {
  background: #d5d4d7;
  font-weight: bold;
}
#header ul li.language-switcher a {
  text-decoration: none;
}
#header ul li.mobile-only {
  display: none;
}
@media (max-width: 599px) {
  #header ul {
    margin-right: 20px;
  }
  #header ul li.mobile-only {
    display: inline-flex;
  }
  #header ul:last-child {
    display: none;
  }
}
#header #secondary-menu {
  background: #746c79;
  padding: 0 20px;
}
#header #secondary-menu .container {
  padding-top: 5px;
  padding-bottom: 5px;
  justify-content: flex-end;
}
#header #secondary-menu a {
  font-size: 0.9em;
  color: #dedde1;
}

body.is-collaborator #header {
  background: #d8c7c8;
}
body.is-collaborator #header .title {
  color: #6f5151;
}
body.is-collaborator #header ul li a {
  color: #6f5151;
}
body.is-collaborator #header ul li.user {
  background: #cdb7b8;
}
body.is-collaborator #header ul li.language-switcher {
  background: #e4d7d8;
}
body.is-collaborator #header ul li.user a:hover, body.is-collaborator #header ul li.language-switcher a:hover {
  background: #e9dddd;
}
body.is-collaborator #header #secondary-menu {
  background: #8b5f5f;
}
body.is-collaborator #header #secondary-menu a {
  color: #f2e9e9;
}

#footer {
  background: #e0dfe1;
  padding: 24px 20px;
  font-size: 0.8em;
}
#footer .footer-external-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
#footer .footer-external-links::after {
  content: unset;
}
#footer h2 {
  flex: 0 0 auto;
  color: #746c79;
  margin: 0;
  font-size: 16px;
}
#footer nav {
  flex: 1 1 auto;
  min-width: 0;
}
#footer ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer ul li {
  margin: 0;
  padding: 0;
}
#footer ul li a {
  display: inline-flex;
  color: #746c79;
  padding: 2px 0;
  text-decoration: none;
}
#footer ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 599px) {
  #footer .footer-external-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  #footer ul {
    align-items: flex-start;
    gap: 6px 14px;
  }
}

body.is-collaborator #footer {
  background: #d8c7c8;
}
body.is-collaborator #footer h2,
body.is-collaborator #footer ul li a {
  color: #6f5151;
}

#main[data-barba-namespace=search] .report-search-form,
#main[data-barba-namespace=associations] .report-search-form {
  margin: 0;
}
#main[data-barba-namespace=search] .search-field,
#main[data-barba-namespace=associations] .search-field {
  display: flex;
  position: relative;
  width: 100%;
  flex-flow: row;
  justify-content: stretch;
  align-items: center;
}
#main[data-barba-namespace=search] .search-field input[type=text],
#main[data-barba-namespace=associations] .search-field input[type=text] {
  height: 72px;
  margin: 0;
  flex-grow: 1;
  padding: 26px 20px;
  border: 0;
  font-size: 16px;
  line-height: normal;
  border-radius: 10px 0 0 10px;
}
#main[data-barba-namespace=search] .search-field input[type=button],
#main[data-barba-namespace=search] .search-field input[type=submit],
#main[data-barba-namespace=associations] .search-field input[type=button],
#main[data-barba-namespace=associations] .search-field input[type=submit] {
  height: 72px;
  margin: 0;
  display: inline-block;
  width: 150px;
  padding: 26px 20px;
  font-size: 16px;
  border-radius: 0 10px 10px 0;
}
#main[data-barba-namespace=search] .search-autocomplete-panel,
#main[data-barba-namespace=associations] .search-autocomplete-panel {
  position: absolute;
  z-index: 20;
  top: 72px;
  left: 0;
  right: 150px;
  max-height: 320px;
  overflow-y: auto;
  margin: 0;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-top: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
#main[data-barba-namespace=search] .search-autocomplete-panel[hidden],
#main[data-barba-namespace=associations] .search-autocomplete-panel[hidden] {
  display: none;
}
#main[data-barba-namespace=search] .search-autocomplete-option,
#main[data-barba-namespace=associations] .search-autocomplete-option {
  display: block;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 8px 14px;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
  background: #fff;
  color: #222;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
  cursor: pointer;
}
#main[data-barba-namespace=search] .search-autocomplete-option:hover, #main[data-barba-namespace=search] .search-autocomplete-option.is-active,
#main[data-barba-namespace=associations] .search-autocomplete-option:hover,
#main[data-barba-namespace=associations] .search-autocomplete-option.is-active {
  background: #f2f7f8;
  color: #111;
}
#main[data-barba-namespace=search] .search-autocomplete-option:last-child,
#main[data-barba-namespace=associations] .search-autocomplete-option:last-child {
  border-bottom: 0;
}
#main[data-barba-namespace=search] .search-autocomplete-label,
#main[data-barba-namespace=search] .search-autocomplete-detail,
#main[data-barba-namespace=associations] .search-autocomplete-label,
#main[data-barba-namespace=associations] .search-autocomplete-detail {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#main[data-barba-namespace=search] .search-autocomplete-label,
#main[data-barba-namespace=associations] .search-autocomplete-label {
  font-size: 15px;
  font-weight: 700;
}
#main[data-barba-namespace=search] .search-autocomplete-detail,
#main[data-barba-namespace=associations] .search-autocomplete-detail {
  margin-top: 2px;
  color: #696969;
  font-size: 13px;
}
#main[data-barba-namespace=search] .search-live-spinner,
#main[data-barba-namespace=associations] .search-live-spinner {
  position: absolute;
  z-index: 21;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: search-live-spinner 0.75s linear infinite;
  pointer-events: none;
}
#main[data-barba-namespace=search] .search-live-spinner[hidden],
#main[data-barba-namespace=associations] .search-live-spinner[hidden] {
  display: none;
}
#main[data-barba-namespace=search] .search-type,
#main[data-barba-namespace=associations] .search-type {
  display: block;
  margin-top: 10px;
  font-size: 16px;
}
#main[data-barba-namespace=search] .search-type .checkbox,
#main[data-barba-namespace=associations] .search-type .checkbox {
  display: inline-block;
  margin: 0 20px 0 0;
}
#main[data-barba-namespace=search] .search-type .checkbox input,
#main[data-barba-namespace=associations] .search-type .checkbox input {
  position: absolute;
}
#main[data-barba-namespace=search] .search-type .checkbox label,
#main[data-barba-namespace=associations] .search-type .checkbox label {
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  #main[data-barba-namespace=search] .search-field,
  #main[data-barba-namespace=associations] .search-field {
    flex-flow: column;
    align-items: stretch;
  }
  #main[data-barba-namespace=search] .search-field input[type=text],
  #main[data-barba-namespace=associations] .search-field input[type=text] {
    border-radius: 10px 10px 0 0;
  }
  #main[data-barba-namespace=search] .search-field input[type=button],
  #main[data-barba-namespace=search] .search-field input[type=submit],
  #main[data-barba-namespace=associations] .search-field input[type=button],
  #main[data-barba-namespace=associations] .search-field input[type=submit] {
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
  #main[data-barba-namespace=search] .search-autocomplete-panel,
  #main[data-barba-namespace=associations] .search-autocomplete-panel {
    top: 72px;
    right: 0;
  }
  #main[data-barba-namespace=search] .search-live-spinner,
  #main[data-barba-namespace=associations] .search-live-spinner {
    top: 108px;
  }
}
@keyframes search-live-spinner {
  to {
    transform: rotate(360deg);
  }
}
body.is-collaborator #main[data-barba-namespace=search] .search-field input[type=text],
body.is-collaborator #main[data-barba-namespace=associations] .search-field input[type=text],
body.is-management #main[data-barba-namespace=search] .search-field input[type=text],
body.is-management #main[data-barba-namespace=associations] .search-field input[type=text],
body.is-logged-in #main[data-barba-namespace=search] .search-field input[type=text],
body.is-logged-in #main[data-barba-namespace=associations] .search-field input[type=text] {
  background: #fffafa;
  box-shadow: inset 0 0 0 1px #d8c7c8;
}

#main[data-barba-namespace=search-results], #main[data-barba-namespace=associations], #main[data-barba-namespace=db-schema] {
  padding-top: 6px;
  padding-bottom: 0;
}
#main[data-barba-namespace=search-results] .report-results-container, #main[data-barba-namespace=associations] .report-results-container, #main[data-barba-namespace=db-schema] .report-results-container {
  width: calc(100% - 16px);
  max-width: none;
  margin-left: 8px;
  margin-right: 8px;
  padding-left: 0;
  padding-right: 0;
}
#main[data-barba-namespace=search-results] .report-top-actions, #main[data-barba-namespace=associations] .report-top-actions, #main[data-barba-namespace=db-schema] .report-top-actions {
  margin-bottom: 2px;
}
#main[data-barba-namespace=search-results] a.report-back-button, #main[data-barba-namespace=associations] a.report-back-button, #main[data-barba-namespace=db-schema] a.report-back-button {
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}
#main[data-barba-namespace=search-results] .report-title-row, #main[data-barba-namespace=associations] .report-title-row, #main[data-barba-namespace=db-schema] .report-title-row {
  margin-bottom: 8px;
}
#main[data-barba-namespace=search-results] .report-title-column, #main[data-barba-namespace=associations] .report-title-column, #main[data-barba-namespace=db-schema] .report-title-column {
  min-height: 34px;
}
#main[data-barba-namespace=search-results] .report-title-actions:empty, #main[data-barba-namespace=associations] .report-title-actions:empty, #main[data-barba-namespace=db-schema] .report-title-actions:empty {
  display: none;
}
#main[data-barba-namespace=search-results] .report-title-actions .report-search-actions, #main[data-barba-namespace=associations] .report-title-actions .report-search-actions, #main[data-barba-namespace=db-schema] .report-title-actions .report-search-actions {
  margin-bottom: 0;
}
#main[data-barba-namespace=search-results] .report-page-title, #main[data-barba-namespace=associations] .report-page-title, #main[data-barba-namespace=db-schema] .report-page-title {
  margin: 4px 0 0;
  text-align: center;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.1;
}
#main[data-barba-namespace=search-results] .loader, #main[data-barba-namespace=associations] .loader, #main[data-barba-namespace=db-schema] .loader {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: 50%;
  margin-left: -40px;
}
#main[data-barba-namespace=search-results] .loader.loading, #main[data-barba-namespace=associations] .loader.loading, #main[data-barba-namespace=db-schema] .loader.loading {
  opacity: 1;
}
#main[data-barba-namespace=search-results] .results, #main[data-barba-namespace=associations] .results, #main[data-barba-namespace=db-schema] .results {
  box-sizing: border-box;
  position: relative;
  min-height: 146px;
}
#main[data-barba-namespace=search-results] .report-scroll-pane, #main[data-barba-namespace=associations] .report-scroll-pane, #main[data-barba-namespace=db-schema] .report-scroll-pane {
  min-width: 0;
}
#main[data-barba-namespace=search-results] .report-side-pane, #main[data-barba-namespace=associations] .report-side-pane, #main[data-barba-namespace=db-schema] .report-side-pane {
  background: #d4d1d7;
}
@media (min-width: 768px) {
  #main[data-barba-namespace=search-results] .report-title-column, #main[data-barba-namespace=associations] .report-title-column, #main[data-barba-namespace=db-schema] .report-title-column {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr) minmax(220px, 1fr);
    align-items: center;
    column-gap: 12px;
  }
  #main[data-barba-namespace=search-results] .report-title-actions, #main[data-barba-namespace=associations] .report-title-actions, #main[data-barba-namespace=db-schema] .report-title-actions {
    grid-column: 1;
    justify-self: start;
    align-self: center;
  }
  #main[data-barba-namespace=search-results] .report-page-title, #main[data-barba-namespace=associations] .report-page-title, #main[data-barba-namespace=db-schema] .report-page-title {
    grid-column: 2;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row, #main[data-barba-namespace=associations] .report-scroll-row, #main[data-barba-namespace=db-schema] .report-scroll-row {
    display: flex;
    align-items: stretch;
    column-gap: 0;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row::before, #main[data-barba-namespace=associations] .report-scroll-row::before, #main[data-barba-namespace=db-schema] .report-scroll-row::before, #main[data-barba-namespace=search-results] .report-scroll-row::after, #main[data-barba-namespace=associations] .report-scroll-row::after, #main[data-barba-namespace=db-schema] .report-scroll-row::after {
    content: none;
    display: none;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row > .six.columns, #main[data-barba-namespace=associations] .report-scroll-row > .six.columns, #main[data-barba-namespace=db-schema] .report-scroll-row > .six.columns {
    float: none;
    margin-left: 0;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row > .report-results-pane, #main[data-barba-namespace=associations] .report-scroll-row > .report-results-pane, #main[data-barba-namespace=db-schema] .report-scroll-row > .report-results-pane {
    width: 66%;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row > .report-side-pane, #main[data-barba-namespace=associations] .report-scroll-row > .report-side-pane, #main[data-barba-namespace=db-schema] .report-scroll-row > .report-side-pane {
    width: 34%;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row.report-single-column > .report-results-pane, #main[data-barba-namespace=associations] .report-scroll-row.report-single-column > .report-results-pane, #main[data-barba-namespace=db-schema] .report-scroll-row.report-single-column > .report-results-pane {
    width: 100%;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row.report-collaborator > .report-results-pane .report-section.box, #main[data-barba-namespace=associations] .report-scroll-row.report-collaborator > .report-results-pane .report-section.box, #main[data-barba-namespace=db-schema] .report-scroll-row.report-collaborator > .report-results-pane .report-section.box {
    background: #d8c2c2;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row.report-collaborator > .report-side-pane, #main[data-barba-namespace=associations] .report-scroll-row.report-collaborator > .report-side-pane, #main[data-barba-namespace=db-schema] .report-scroll-row.report-collaborator > .report-side-pane {
    background: #cbb2b2;
    border-left-color: #9b7373;
    scrollbar-color: #8b5f5f #baa0a0;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row.report-collaborator > .report-side-pane::-webkit-scrollbar-track, #main[data-barba-namespace=associations] .report-scroll-row.report-collaborator > .report-side-pane::-webkit-scrollbar-track, #main[data-barba-namespace=db-schema] .report-scroll-row.report-collaborator > .report-side-pane::-webkit-scrollbar-track {
    background: #baa0a0;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row.report-collaborator > .report-side-pane::-webkit-scrollbar-thumb, #main[data-barba-namespace=associations] .report-scroll-row.report-collaborator > .report-side-pane::-webkit-scrollbar-thumb, #main[data-barba-namespace=db-schema] .report-scroll-row.report-collaborator > .report-side-pane::-webkit-scrollbar-thumb {
    background: #8b5f5f;
    border-color: #baa0a0;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row.report-collaborator > .report-side-pane::-webkit-scrollbar-thumb:hover, #main[data-barba-namespace=associations] .report-scroll-row.report-collaborator > .report-side-pane::-webkit-scrollbar-thumb:hover, #main[data-barba-namespace=db-schema] .report-scroll-row.report-collaborator > .report-side-pane::-webkit-scrollbar-thumb:hover {
    background: #734b4b;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row.report-collaborator .report-toc-wrapper, #main[data-barba-namespace=associations] .report-scroll-row.report-collaborator .report-toc-wrapper, #main[data-barba-namespace=db-schema] .report-scroll-row.report-collaborator .report-toc-wrapper {
    border-color: #8b5f5f;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row.report-collaborator button.moca-xyz-zoom-lock-toggle, #main[data-barba-namespace=associations] .report-scroll-row.report-collaborator button.moca-xyz-zoom-lock-toggle, #main[data-barba-namespace=db-schema] .report-scroll-row.report-collaborator button.moca-xyz-zoom-lock-toggle {
    background: #8b5f5f;
  }
  #main[data-barba-namespace=search-results] .report-scroll-row.report-collaborator button.moca-xyz-zoom-lock-toggle:hover, #main[data-barba-namespace=associations] .report-scroll-row.report-collaborator button.moca-xyz-zoom-lock-toggle:hover, #main[data-barba-namespace=db-schema] .report-scroll-row.report-collaborator button.moca-xyz-zoom-lock-toggle:hover {
    background: #734b4b;
  }
  #main[data-barba-namespace=search-results] .report-scroll-pane, #main[data-barba-namespace=associations] .report-scroll-pane, #main[data-barba-namespace=db-schema] .report-scroll-pane {
    height: var(--report-pane-height, calc(100vh - 24px));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 10px;
    scrollbar-gutter: stable;
  }
  #main[data-barba-namespace=search-results] .report-side-pane, #main[data-barba-namespace=associations] .report-side-pane, #main[data-barba-namespace=db-schema] .report-side-pane {
    overflow-y: scroll;
    padding: 18px 12px 18px 18px;
    border-left: 4px solid #b8b5bc;
    scrollbar-color: #746c79 #c7c4cb;
    scrollbar-width: auto;
  }
  #main[data-barba-namespace=search-results] .report-side-pane::-webkit-scrollbar, #main[data-barba-namespace=associations] .report-side-pane::-webkit-scrollbar, #main[data-barba-namespace=db-schema] .report-side-pane::-webkit-scrollbar {
    width: 14px;
  }
  #main[data-barba-namespace=search-results] .report-side-pane::-webkit-scrollbar-track, #main[data-barba-namespace=associations] .report-side-pane::-webkit-scrollbar-track, #main[data-barba-namespace=db-schema] .report-side-pane::-webkit-scrollbar-track {
    background: #c7c4cb;
  }
  #main[data-barba-namespace=search-results] .report-side-pane::-webkit-scrollbar-thumb, #main[data-barba-namespace=associations] .report-side-pane::-webkit-scrollbar-thumb, #main[data-barba-namespace=db-schema] .report-side-pane::-webkit-scrollbar-thumb {
    background: #746c79;
    border: 3px solid #c7c4cb;
  }
  #main[data-barba-namespace=search-results] .report-side-pane::-webkit-scrollbar-thumb:hover, #main[data-barba-namespace=associations] .report-side-pane::-webkit-scrollbar-thumb:hover, #main[data-barba-namespace=db-schema] .report-side-pane::-webkit-scrollbar-thumb:hover {
    background: #5f5864;
  }
}
@media (max-width: 767px) {
  #main[data-barba-namespace=search-results] .report-title-column, #main[data-barba-namespace=associations] .report-title-column, #main[data-barba-namespace=db-schema] .report-title-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  #main[data-barba-namespace=search-results] .report-title-actions, #main[data-barba-namespace=associations] .report-title-actions, #main[data-barba-namespace=db-schema] .report-title-actions {
    align-self: flex-start;
  }
}
#main[data-barba-namespace=search-results] .box, #main[data-barba-namespace=associations] .box, #main[data-barba-namespace=db-schema] .box {
  width: 100%;
}
#main[data-barba-namespace=search-results] .report-section.box, #main[data-barba-namespace=associations] .report-section.box, #main[data-barba-namespace=db-schema] .report-section.box {
  left: 0;
  width: auto;
  box-sizing: border-box;
  padding: 24px;
}
#main[data-barba-namespace=search-results] .report-search-actions, #main[data-barba-namespace=associations] .report-search-actions, #main[data-barba-namespace=db-schema] .report-search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
#main[data-barba-namespace=search-results] button.report-expand-all-button, #main[data-barba-namespace=associations] button.report-expand-all-button, #main[data-barba-namespace=db-schema] button.report-expand-all-button,
#main[data-barba-namespace=search-results] button.report-collapse-all-button,
#main[data-barba-namespace=associations] button.report-collapse-all-button,
#main[data-barba-namespace=db-schema] button.report-collapse-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 28px;
  background: #746c79;
  padding: 0 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}
#main[data-barba-namespace=search-results] button.report-expand-all-button:hover, #main[data-barba-namespace=associations] button.report-expand-all-button:hover, #main[data-barba-namespace=db-schema] button.report-expand-all-button:hover,
#main[data-barba-namespace=search-results] button.report-collapse-all-button:hover,
#main[data-barba-namespace=associations] button.report-collapse-all-button:hover,
#main[data-barba-namespace=db-schema] button.report-collapse-all-button:hover {
  background: #8e8593;
}
#main[data-barba-namespace=search-results] .report-toc-wrapper, #main[data-barba-namespace=associations] .report-toc-wrapper, #main[data-barba-namespace=db-schema] .report-toc-wrapper {
  margin-bottom: 30px;
  padding: 18px;
  background: #fff;
  border: 4px solid #746c79;
}
#main[data-barba-namespace=search-results] .report-toc-title, #main[data-barba-namespace=associations] .report-toc-title, #main[data-barba-namespace=db-schema] .report-toc-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
#main[data-barba-namespace=search-results] .report-toc-list, #main[data-barba-namespace=associations] .report-toc-list, #main[data-barba-namespace=db-schema] .report-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#main[data-barba-namespace=search-results] .report-toc-list li, #main[data-barba-namespace=associations] .report-toc-list li, #main[data-barba-namespace=db-schema] .report-toc-list li {
  margin: 0;
}
#main[data-barba-namespace=search-results] .report-toc-link, #main[data-barba-namespace=associations] .report-toc-link, #main[data-barba-namespace=db-schema] .report-toc-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #dedde1;
  color: #222025;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
}
#main[data-barba-namespace=search-results] .report-toc-link:hover, #main[data-barba-namespace=associations] .report-toc-link:hover, #main[data-barba-namespace=db-schema] .report-toc-link:hover {
  color: #a86bc2;
}
#main[data-barba-namespace=search-results] .report-toc-list li:first-child .report-toc-link, #main[data-barba-namespace=associations] .report-toc-list li:first-child .report-toc-link, #main[data-barba-namespace=db-schema] .report-toc-list li:first-child .report-toc-link {
  border-top: 0;
  padding-top: 0;
}
#main[data-barba-namespace=search-results] .report-toc-list li:last-child .report-toc-link, #main[data-barba-namespace=associations] .report-toc-list li:last-child .report-toc-link, #main[data-barba-namespace=db-schema] .report-toc-list li:last-child .report-toc-link {
  padding-bottom: 0;
}
#main[data-barba-namespace=search-results] .report-toc-label, #main[data-barba-namespace=associations] .report-toc-label, #main[data-barba-namespace=db-schema] .report-toc-label {
  min-width: 0;
  overflow-wrap: anywhere;
}
#main[data-barba-namespace=search-results] .report-toc-count, #main[data-barba-namespace=associations] .report-toc-count, #main[data-barba-namespace=db-schema] .report-toc-count {
  flex: 0 0 auto;
  color: #5f5864;
  font-weight: 700;
}
#main[data-barba-namespace=search-results] .report-section-title, #main[data-barba-namespace=associations] .report-section-title, #main[data-barba-namespace=db-schema] .report-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
#main[data-barba-namespace=search-results] .report-section-title-text, #main[data-barba-namespace=associations] .report-section-title-text, #main[data-barba-namespace=db-schema] .report-section-title-text {
  min-width: 0;
  overflow-wrap: anywhere;
}
#main[data-barba-namespace=search-results] .report-section-notice, #main[data-barba-namespace=associations] .report-section-notice, #main[data-barba-namespace=db-schema] .report-section-notice {
  margin: 0 0 12px;
  color: #4f2626;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em !important;
  line-height: 1.25;
}
#main[data-barba-namespace=search-results] .report-section-intro, #main[data-barba-namespace=associations] .report-section-intro, #main[data-barba-namespace=db-schema] .report-section-intro {
  margin: 0 0 18px;
  color: #3d3942;
  font-size: 15px;
  line-height: 1.55;
}
#main[data-barba-namespace=search-results] .report-section-intro p, #main[data-barba-namespace=associations] .report-section-intro p, #main[data-barba-namespace=db-schema] .report-section-intro p {
  margin: 0 0 10px;
}
#main[data-barba-namespace=search-results] .report-section-intro p:last-child, #main[data-barba-namespace=associations] .report-section-intro p:last-child, #main[data-barba-namespace=db-schema] .report-section-intro p:last-child {
  margin-bottom: 0;
}
#main[data-barba-namespace=search-results] button.report-collapse-toggle, #main[data-barba-namespace=associations] button.report-collapse-toggle, #main[data-barba-namespace=db-schema] button.report-collapse-toggle {
  all: unset;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #746c79;
  background: #fff;
  color: #252329;
  cursor: pointer;
}
#main[data-barba-namespace=search-results] button.report-collapse-toggle:hover, #main[data-barba-namespace=associations] button.report-collapse-toggle:hover, #main[data-barba-namespace=db-schema] button.report-collapse-toggle:hover {
  background: #e8e7ea;
}
#main[data-barba-namespace=search-results] button.report-collapse-toggle:focus-visible, #main[data-barba-namespace=associations] button.report-collapse-toggle:focus-visible, #main[data-barba-namespace=db-schema] button.report-collapse-toggle:focus-visible {
  outline: 2px solid #746c79;
  outline-offset: 2px;
}
#main[data-barba-namespace=search-results] .report-collapse-icon, #main[data-barba-namespace=associations] .report-collapse-icon, #main[data-barba-namespace=db-schema] .report-collapse-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  transform-origin: 45% 50%;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#main[data-barba-namespace=search-results] .report-section-collapsible.is-expanded .report-collapse-icon, #main[data-barba-namespace=associations] .report-section-collapsible.is-expanded .report-collapse-icon, #main[data-barba-namespace=db-schema] .report-section-collapsible.is-expanded .report-collapse-icon {
  transform: rotate(90deg);
}
#main[data-barba-namespace=search-results] .report-section-collapsible.is-collapsed .report-section-title, #main[data-barba-namespace=associations] .report-section-collapsible.is-collapsed .report-section-title, #main[data-barba-namespace=db-schema] .report-section-collapsible.is-collapsed .report-section-title {
  margin-bottom: 0;
}
#main[data-barba-namespace=search-results] .report-section-collapsible.is-collapsed .report-section-body, #main[data-barba-namespace=associations] .report-section-collapsible.is-collapsed .report-section-body, #main[data-barba-namespace=db-schema] .report-section-collapsible.is-collapsed .report-section-body {
  display: none;
}
#main[data-barba-namespace=search-results] .results[data-type=association] .box, #main[data-barba-namespace=associations] .results[data-type=association] .box, #main[data-barba-namespace=db-schema] .results[data-type=association] .box {
  box-sizing: border-box;
}
#main[data-barba-namespace=search-results] .aladin-widget, #main[data-barba-namespace=associations] .aladin-widget, #main[data-barba-namespace=db-schema] .aladin-widget {
  margin-bottom: 50px;
}
#main[data-barba-namespace=search-results] .aladin-lock-wrapper, #main[data-barba-namespace=associations] .aladin-lock-wrapper, #main[data-barba-namespace=db-schema] .aladin-lock-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 50px;
}
#main[data-barba-namespace=search-results] .aladin-lock-wrapper .aladin-widget, #main[data-barba-namespace=associations] .aladin-lock-wrapper .aladin-widget, #main[data-barba-namespace=db-schema] .aladin-lock-wrapper .aladin-widget {
  margin-bottom: 0;
}
#main[data-barba-namespace=search-results] .report-side-pane .aladin-widget, #main[data-barba-namespace=associations] .report-side-pane .aladin-widget, #main[data-barba-namespace=db-schema] .report-side-pane .aladin-widget {
  width: calc(100% - 36px) !important;
  margin-right: 36px;
}
#main[data-barba-namespace=search-results] button.aladin-zoom-lock-toggle, #main[data-barba-namespace=associations] button.aladin-zoom-lock-toggle, #main[data-barba-namespace=db-schema] button.aladin-zoom-lock-toggle {
  align-self: flex-end;
  margin: 0 36px 8px 0;
  padding: 6px 10px;
  min-width: 105px;
  background: #746c79;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#main[data-barba-namespace=search-results] button.aladin-zoom-lock-toggle:hover, #main[data-barba-namespace=associations] button.aladin-zoom-lock-toggle:hover, #main[data-barba-namespace=db-schema] button.aladin-zoom-lock-toggle:hover {
  background: #5f5864;
}
#main[data-barba-namespace=search-results] .aladin-lock-wrapper.is-zoom-unlocked button.aladin-zoom-lock-toggle, #main[data-barba-namespace=associations] .aladin-lock-wrapper.is-zoom-unlocked button.aladin-zoom-lock-toggle, #main[data-barba-namespace=db-schema] .aladin-lock-wrapper.is-zoom-unlocked button.aladin-zoom-lock-toggle {
  background: #8b5f5f;
}
#main[data-barba-namespace=search-results] .aladin-lock-wrapper.is-zoom-unlocked button.aladin-zoom-lock-toggle:hover, #main[data-barba-namespace=associations] .aladin-lock-wrapper.is-zoom-unlocked button.aladin-zoom-lock-toggle:hover, #main[data-barba-namespace=db-schema] .aladin-lock-wrapper.is-zoom-unlocked button.aladin-zoom-lock-toggle:hover {
  background: #734b4b;
}
#main[data-barba-namespace=search-results] .aladin-lock-wrapper.is-zoom-locked .aladin-widget, #main[data-barba-namespace=associations] .aladin-lock-wrapper.is-zoom-locked .aladin-widget, #main[data-barba-namespace=db-schema] .aladin-lock-wrapper.is-zoom-locked .aladin-widget {
  touch-action: pan-y;
}
#main[data-barba-namespace=search-results] .aladin-lock-wrapper.is-zoom-locked .aladin-fov, #main[data-barba-namespace=associations] .aladin-lock-wrapper.is-zoom-locked .aladin-fov, #main[data-barba-namespace=db-schema] .aladin-lock-wrapper.is-zoom-locked .aladin-fov {
  opacity: 0.42;
  pointer-events: none;
}
#main[data-barba-namespace=search-results] .finder-chart-caption, #main[data-barba-namespace=associations] .finder-chart-caption, #main[data-barba-namespace=db-schema] .finder-chart-caption {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}
#main[data-barba-namespace=search-results] .moca-cmd-widget, #main[data-barba-namespace=associations] .moca-cmd-widget, #main[data-barba-namespace=db-schema] .moca-cmd-widget,
#main[data-barba-namespace=search-results] .moca-xyz-widget,
#main[data-barba-namespace=associations] .moca-xyz-widget,
#main[data-barba-namespace=db-schema] .moca-xyz-widget {
  --moca-cmd-panel: #dedde1;
  --moca-cmd-panel-light: #e8e7ea;
  --moca-cmd-plot-bg: #fff;
  --moca-cmd-ink: #252329;
  --moca-cmd-muted: #5f5864;
  --moca-cmd-line: #b8b5bc;
  --moca-cmd-danger: #9c2f2f;
  margin-bottom: 34px;
  background: var(--moca-cmd-panel);
  color: var(--moca-cmd-ink);
  border: 1px solid var(--moca-cmd-line);
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
}
#main[data-barba-namespace=search-results] .moca-cmd-topbar, #main[data-barba-namespace=associations] .moca-cmd-topbar, #main[data-barba-namespace=db-schema] .moca-cmd-topbar,
#main[data-barba-namespace=search-results] .moca-xyz-topbar,
#main[data-barba-namespace=associations] .moca-xyz-topbar,
#main[data-barba-namespace=db-schema] .moca-xyz-topbar {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px;
  background: #746c79;
  border-bottom: 1px solid #5e5663;
}
#main[data-barba-namespace=search-results] .moca-cmd-brand, #main[data-barba-namespace=associations] .moca-cmd-brand, #main[data-barba-namespace=db-schema] .moca-cmd-brand,
#main[data-barba-namespace=search-results] .moca-xyz-brand,
#main[data-barba-namespace=associations] .moca-xyz-brand,
#main[data-barba-namespace=db-schema] .moca-xyz-brand {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.15;
  color: #000;
}
#main[data-barba-namespace=search-results] .moca-cmd-status, #main[data-barba-namespace=associations] .moca-cmd-status, #main[data-barba-namespace=db-schema] .moca-cmd-status,
#main[data-barba-namespace=search-results] .moca-xyz-status,
#main[data-barba-namespace=associations] .moca-xyz-status,
#main[data-barba-namespace=db-schema] .moca-xyz-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#main[data-barba-namespace=search-results] .moca-cmd-status.error, #main[data-barba-namespace=associations] .moca-cmd-status.error, #main[data-barba-namespace=db-schema] .moca-cmd-status.error,
#main[data-barba-namespace=search-results] .moca-xyz-status.error,
#main[data-barba-namespace=associations] .moca-xyz-status.error,
#main[data-barba-namespace=db-schema] .moca-xyz-status.error {
  color: var(--moca-cmd-danger);
}
#main[data-barba-namespace=search-results] .moca-cmd-status.loading::before, #main[data-barba-namespace=associations] .moca-cmd-status.loading::before, #main[data-barba-namespace=db-schema] .moca-cmd-status.loading::before,
#main[data-barba-namespace=search-results] .moca-xyz-status.loading::before,
#main[data-barba-namespace=associations] .moca-xyz-status.loading::before,
#main[data-barba-namespace=db-schema] .moca-xyz-status.loading::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.22);
  border-top-color: #000;
  animation: mocaCmdSpin 0.8s linear infinite;
}
#main[data-barba-namespace=search-results] .moca-cmd-visual-area, #main[data-barba-namespace=associations] .moca-cmd-visual-area, #main[data-barba-namespace=db-schema] .moca-cmd-visual-area {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(430px, 58vh) auto auto;
  row-gap: 0;
  align-content: start;
  background: var(--moca-cmd-panel);
  overflow: hidden;
}
#main[data-barba-namespace=search-results] .moca-cmd-plot-frame, #main[data-barba-namespace=associations] .moca-cmd-plot-frame, #main[data-barba-namespace=db-schema] .moca-cmd-plot-frame {
  position: relative;
  z-index: 0;
  min-width: 0;
  min-height: 430px;
  justify-self: center;
  width: 100%;
  height: 100%;
  background: var(--moca-cmd-plot-bg);
}
#main[data-barba-namespace=search-results] #moca-cmd-plot, #main[data-barba-namespace=associations] #moca-cmd-plot, #main[data-barba-namespace=db-schema] #moca-cmd-plot,
#main[data-barba-namespace=search-results] #moca-object-cmd-plot,
#main[data-barba-namespace=associations] #moca-object-cmd-plot,
#main[data-barba-namespace=db-schema] #moca-object-cmd-plot {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  background: var(--moca-cmd-plot-bg);
}
#main[data-barba-namespace=search-results] #moca-cmd-plot .modebar, #main[data-barba-namespace=associations] #moca-cmd-plot .modebar, #main[data-barba-namespace=db-schema] #moca-cmd-plot .modebar,
#main[data-barba-namespace=search-results] #moca-object-cmd-plot .modebar,
#main[data-barba-namespace=associations] #moca-object-cmd-plot .modebar,
#main[data-barba-namespace=db-schema] #moca-object-cmd-plot .modebar {
  opacity: 1 !important;
  visibility: visible !important;
}
#main[data-barba-namespace=search-results] .moca-object-cmd-target-overlay, #main[data-barba-namespace=associations] .moca-object-cmd-target-overlay, #main[data-barba-namespace=db-schema] .moca-object-cmd-target-overlay {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#main[data-barba-namespace=search-results] .moca-object-cmd-target-ring, #main[data-barba-namespace=associations] .moca-object-cmd-target-ring, #main[data-barba-namespace=db-schema] .moca-object-cmd-target-ring,
#main[data-barba-namespace=search-results] .moca-object-cmd-target-dot,
#main[data-barba-namespace=associations] .moca-object-cmd-target-dot,
#main[data-barba-namespace=db-schema] .moca-object-cmd-target-dot {
  position: absolute;
  box-sizing: border-box;
  border-radius: 999px;
}
#main[data-barba-namespace=search-results] .moca-object-cmd-target-ring.outer, #main[data-barba-namespace=associations] .moca-object-cmd-target-ring.outer, #main[data-barba-namespace=db-schema] .moca-object-cmd-target-ring.outer {
  inset: 0;
  border: 3.2px solid #d71920;
}
#main[data-barba-namespace=search-results] .moca-object-cmd-target-ring.inner, #main[data-barba-namespace=associations] .moca-object-cmd-target-ring.inner, #main[data-barba-namespace=db-schema] .moca-object-cmd-target-ring.inner {
  inset: 8px;
  border: 2.8px solid #d71920;
}
#main[data-barba-namespace=search-results] .moca-object-cmd-target-dot, #main[data-barba-namespace=associations] .moca-object-cmd-target-dot, #main[data-barba-namespace=db-schema] .moca-object-cmd-target-dot {
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  background: #d71920;
  border: 0.8px solid #fff;
}
#main[data-barba-namespace=search-results] .moca-xyz-visual-area, #main[data-barba-namespace=associations] .moca-xyz-visual-area, #main[data-barba-namespace=db-schema] .moca-xyz-visual-area {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(360px, 48vh) auto;
  row-gap: 0;
  align-content: start;
  background: var(--moca-cmd-panel);
  overflow: hidden;
}
#main[data-barba-namespace=search-results] .moca-xyz-scene-frame, #main[data-barba-namespace=associations] .moca-xyz-scene-frame, #main[data-barba-namespace=db-schema] .moca-xyz-scene-frame {
  position: relative;
  z-index: 0;
  min-width: 0;
  min-height: 360px;
  width: 100%;
  height: 100%;
  background-color: #08090c;
  overflow: hidden;
}
#main[data-barba-namespace=search-results] button.moca-xyz-zoom-lock-toggle, #main[data-barba-namespace=associations] button.moca-xyz-zoom-lock-toggle, #main[data-barba-namespace=db-schema] button.moca-xyz-zoom-lock-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 7;
  min-width: 104px;
  margin: 0;
  padding: 6px 10px;
  background: #746c79;
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#main[data-barba-namespace=search-results] button.moca-xyz-zoom-lock-toggle:hover, #main[data-barba-namespace=associations] button.moca-xyz-zoom-lock-toggle:hover, #main[data-barba-namespace=db-schema] button.moca-xyz-zoom-lock-toggle:hover {
  background: #5f5864;
}
#main[data-barba-namespace=search-results] .moca-xyz-scene-frame.is-zoom-unlocked button.moca-xyz-zoom-lock-toggle, #main[data-barba-namespace=associations] .moca-xyz-scene-frame.is-zoom-unlocked button.moca-xyz-zoom-lock-toggle, #main[data-barba-namespace=db-schema] .moca-xyz-scene-frame.is-zoom-unlocked button.moca-xyz-zoom-lock-toggle {
  background: #8b5f5f;
}
#main[data-barba-namespace=search-results] .moca-xyz-scene-frame.is-zoom-unlocked button.moca-xyz-zoom-lock-toggle:hover, #main[data-barba-namespace=associations] .moca-xyz-scene-frame.is-zoom-unlocked button.moca-xyz-zoom-lock-toggle:hover, #main[data-barba-namespace=db-schema] .moca-xyz-scene-frame.is-zoom-unlocked button.moca-xyz-zoom-lock-toggle:hover {
  background: #734b4b;
}
#main[data-barba-namespace=search-results] #moca-xyz-scene, #main[data-barba-namespace=associations] #moca-xyz-scene, #main[data-barba-namespace=db-schema] #moca-xyz-scene,
#main[data-barba-namespace=search-results] #moca-uvw-scene,
#main[data-barba-namespace=associations] #moca-uvw-scene,
#main[data-barba-namespace=db-schema] #moca-uvw-scene {
  min-width: 0;
  min-height: 360px;
  width: 100%;
  height: 100%;
  background-color: #08090c;
  background-position: center;
  background-size: cover;
  cursor: grab;
  touch-action: none;
}
#main[data-barba-namespace=search-results] #moca-xyz-scene.is-dragging, #main[data-barba-namespace=associations] #moca-xyz-scene.is-dragging, #main[data-barba-namespace=db-schema] #moca-xyz-scene.is-dragging,
#main[data-barba-namespace=search-results] #moca-uvw-scene.is-dragging,
#main[data-barba-namespace=associations] #moca-uvw-scene.is-dragging,
#main[data-barba-namespace=db-schema] #moca-uvw-scene.is-dragging {
  cursor: grabbing;
}
#main[data-barba-namespace=search-results] #moca-xyz-scene canvas, #main[data-barba-namespace=associations] #moca-xyz-scene canvas, #main[data-barba-namespace=db-schema] #moca-xyz-scene canvas,
#main[data-barba-namespace=search-results] #moca-uvw-scene canvas,
#main[data-barba-namespace=associations] #moca-uvw-scene canvas,
#main[data-barba-namespace=db-schema] #moca-uvw-scene canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
#main[data-barba-namespace=search-results] #moca-xyz-scene, #main[data-barba-namespace=associations] #moca-xyz-scene, #main[data-barba-namespace=db-schema] #moca-xyz-scene {
  background-image: url("https://cdn.eso.org/images/screen/eso0932a.jpg");
}
#main[data-barba-namespace=search-results] .moca-xyz-legend, #main[data-barba-namespace=associations] .moca-xyz-legend, #main[data-barba-namespace=db-schema] .moca-xyz-legend {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  max-width: calc(100% - 20px);
  padding: 7px 9px;
  background: rgba(8, 9, 12, 0.74);
  color: #f4f2f5;
  font-size: 11px;
  line-height: 1.2;
  pointer-events: none;
}
#main[data-barba-namespace=search-results] .moca-xyz-legend span, #main[data-barba-namespace=associations] .moca-xyz-legend span, #main[data-barba-namespace=db-schema] .moca-xyz-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
#main[data-barba-namespace=search-results] .moca-xyz-swatch, #main[data-barba-namespace=associations] .moca-xyz-swatch, #main[data-barba-namespace=db-schema] .moca-xyz-swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: #e52638;
}
#main[data-barba-namespace=search-results] .moca-xyz-swatch.good, #main[data-barba-namespace=associations] .moca-xyz-swatch.good, #main[data-barba-namespace=db-schema] .moca-xyz-swatch.good {
  background: #ffea00;
}
#main[data-barba-namespace=search-results] .moca-xyz-swatch.model, #main[data-barba-namespace=associations] .moca-xyz-swatch.model, #main[data-barba-namespace=db-schema] .moca-xyz-swatch.model {
  background: #009e73;
  border-radius: 0;
}
#main[data-barba-namespace=search-results] .moca-cmd-loader, #main[data-barba-namespace=associations] .moca-cmd-loader, #main[data-barba-namespace=db-schema] .moca-cmd-loader,
#main[data-barba-namespace=search-results] .moca-xyz-loader,
#main[data-barba-namespace=associations] .moca-xyz-loader,
#main[data-barba-namespace=db-schema] .moca-xyz-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  place-items: center;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.62);
}
#main[data-barba-namespace=search-results] .moca-cmd-loader.is-visible, #main[data-barba-namespace=associations] .moca-cmd-loader.is-visible, #main[data-barba-namespace=db-schema] .moca-cmd-loader.is-visible,
#main[data-barba-namespace=search-results] .moca-xyz-loader.is-visible,
#main[data-barba-namespace=associations] .moca-xyz-loader.is-visible,
#main[data-barba-namespace=db-schema] .moca-xyz-loader.is-visible {
  display: grid;
}
#main[data-barba-namespace=search-results] .moca-xyz-loader, #main[data-barba-namespace=associations] .moca-xyz-loader, #main[data-barba-namespace=db-schema] .moca-xyz-loader {
  background: rgba(8, 9, 12, 0.68);
}
#main[data-barba-namespace=search-results] .moca-cmd-loader-ring, #main[data-barba-namespace=associations] .moca-cmd-loader-ring, #main[data-barba-namespace=db-schema] .moca-cmd-loader-ring,
#main[data-barba-namespace=search-results] .moca-xyz-loader-ring,
#main[data-barba-namespace=associations] .moca-xyz-loader-ring,
#main[data-barba-namespace=db-schema] .moca-xyz-loader-ring {
  width: 36px;
  height: 36px;
  border: 4px solid rgba(0, 0, 0, 0.18);
  border-top-color: #746c79;
  border-radius: 999px;
  animation: mocaCmdSpin 0.8s linear infinite;
}
#main[data-barba-namespace=search-results] .moca-xyz-loader-ring, #main[data-barba-namespace=associations] .moca-xyz-loader-ring, #main[data-barba-namespace=db-schema] .moca-xyz-loader-ring {
  border-color: rgba(255, 255, 255, 0.25);
  border-top-color: #e69f00;
}
#main[data-barba-namespace=search-results] .moca-cmd-toolbar, #main[data-barba-namespace=associations] .moca-cmd-toolbar, #main[data-barba-namespace=db-schema] .moca-cmd-toolbar,
#main[data-barba-namespace=search-results] .moca-xyz-toolbar,
#main[data-barba-namespace=associations] .moca-xyz-toolbar,
#main[data-barba-namespace=db-schema] .moca-xyz-toolbar {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 12px;
  background: var(--moca-cmd-panel-light);
  border-top: 1px solid var(--moca-cmd-line);
  border-bottom: 1px solid var(--moca-cmd-line);
  color: var(--moca-cmd-muted);
}
#main[data-barba-namespace=search-results] .moca-cmd-summary, #main[data-barba-namespace=associations] .moca-cmd-summary, #main[data-barba-namespace=db-schema] .moca-cmd-summary,
#main[data-barba-namespace=search-results] .moca-xyz-summary,
#main[data-barba-namespace=associations] .moca-xyz-summary,
#main[data-barba-namespace=db-schema] .moca-xyz-summary {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.45;
}
#main[data-barba-namespace=search-results] .moca-cmd-dataviz, #main[data-barba-namespace=associations] .moca-cmd-dataviz, #main[data-barba-namespace=db-schema] .moca-cmd-dataviz,
#main[data-barba-namespace=search-results] .moca-xyz-dataviz,
#main[data-barba-namespace=associations] .moca-xyz-dataviz,
#main[data-barba-namespace=db-schema] .moca-xyz-dataviz {
  line-height: 1.45;
}
#main[data-barba-namespace=search-results] .moca-cmd-dataviz a, #main[data-barba-namespace=associations] .moca-cmd-dataviz a, #main[data-barba-namespace=db-schema] .moca-cmd-dataviz a,
#main[data-barba-namespace=search-results] .moca-xyz-dataviz a,
#main[data-barba-namespace=associations] .moca-xyz-dataviz a,
#main[data-barba-namespace=db-schema] .moca-xyz-dataviz a {
  color: var(--moca-cmd-ink);
  font-weight: 700;
}
#main[data-barba-namespace=search-results] .moca-cmd-selection, #main[data-barba-namespace=associations] .moca-cmd-selection, #main[data-barba-namespace=db-schema] .moca-cmd-selection {
  max-height: 230px;
  overflow: auto;
  background: #fff;
  color: var(--moca-cmd-ink);
}
#main[data-barba-namespace=search-results] .moca-cmd-selection table, #main[data-barba-namespace=associations] .moca-cmd-selection table, #main[data-barba-namespace=db-schema] .moca-cmd-selection table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: 12px;
}
#main[data-barba-namespace=search-results] .moca-cmd-selection th, #main[data-barba-namespace=associations] .moca-cmd-selection th, #main[data-barba-namespace=db-schema] .moca-cmd-selection th,
#main[data-barba-namespace=search-results] .moca-cmd-selection td,
#main[data-barba-namespace=associations] .moca-cmd-selection td,
#main[data-barba-namespace=db-schema] .moca-cmd-selection td {
  padding: 6px 8px;
  border-bottom: 1px solid var(--moca-cmd-line);
  text-align: left;
  white-space: nowrap;
}
#main[data-barba-namespace=search-results] .moca-cmd-selection th, #main[data-barba-namespace=associations] .moca-cmd-selection th, #main[data-barba-namespace=db-schema] .moca-cmd-selection th {
  position: sticky;
  top: 0;
  background: var(--moca-cmd-panel-light);
  z-index: 1;
}
#main[data-barba-namespace=search-results] .moca-cmd-selection-title, #main[data-barba-namespace=associations] .moca-cmd-selection-title, #main[data-barba-namespace=db-schema] .moca-cmd-selection-title {
  padding: 8px 10px;
  border-bottom: 1px solid var(--moca-cmd-line);
  background: var(--moca-cmd-panel-light);
  font-weight: 700;
}
@keyframes mocaCmdSpin {
  to {
    transform: rotate(360deg);
  }
}
#main[data-barba-namespace=search-results] .field, #main[data-barba-namespace=associations] .field, #main[data-barba-namespace=db-schema] .field {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  background: #FFF;
  border: 1px solid #000;
  padding: 8px;
  line-height: 1.25em;
}
#main[data-barba-namespace=search-results] .field:not(:last-child), #main[data-barba-namespace=associations] .field:not(:last-child), #main[data-barba-namespace=db-schema] .field:not(:last-child) {
  border-bottom: 0;
}
#main[data-barba-namespace=search-results] .field .field-name, #main[data-barba-namespace=associations] .field .field-name, #main[data-barba-namespace=db-schema] .field .field-name {
  width: 35%;
  min-width: 200px;
  margin-right: 20px;
}
#main[data-barba-namespace=search-results] .field .field-values, #main[data-barba-namespace=associations] .field .field-values, #main[data-barba-namespace=db-schema] .field .field-values {
  width: 65%;
  min-width: 200px;
}
#main[data-barba-namespace=search-results] .field .field-values > div, #main[data-barba-namespace=associations] .field .field-values > div, #main[data-barba-namespace=db-schema] .field .field-values > div {
  overflow-wrap: break-word;
}
#main[data-barba-namespace=search-results] .field .field-values .field-main-value, #main[data-barba-namespace=associations] .field .field-values .field-main-value, #main[data-barba-namespace=db-schema] .field .field-values .field-main-value {
  font-weight: bold;
}
@media (max-width: 767px) {
  #main[data-barba-namespace=search-results] .field, #main[data-barba-namespace=associations] .field, #main[data-barba-namespace=db-schema] .field {
    flex-direction: column;
  }
  #main[data-barba-namespace=search-results] .field .field-name, #main[data-barba-namespace=associations] .field .field-name, #main[data-barba-namespace=db-schema] .field .field-name {
    min-width: 0;
    width: 100%;
  }
  #main[data-barba-namespace=search-results] .field .field-values, #main[data-barba-namespace=associations] .field .field-values, #main[data-barba-namespace=db-schema] .field .field-values {
    min-width: 0;
    width: 100%;
  }
}

#main[data-barba-namespace=db-schema] .field .field-name {
  font-weight: bold;
  overflow-wrap: break-word;
}
#main[data-barba-namespace=db-schema] .field .field-values .field-main-value {
  font-weight: normal;
}

#main[data-barba-namespace=db-query] .loader {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: 50%;
  margin-left: -40px;
}
#main[data-barba-namespace=db-query] .loader.loading {
  opacity: 1;
}
#main[data-barba-namespace=db-query] .search-field {
  display: flex;
  margin-bottom: 1px;
}
#main[data-barba-namespace=db-query] .no-result {
  color: #000;
  text-align: center;
  font-weight: bold;
}
#main[data-barba-namespace=db-query] #query {
  font-family: monospace;
  font-size: 16px;
  line-height: normal;
  width: 100%;
  margin-bottom: 0;
  min-height: 100px;
  min-width: 100%;
  max-width: 100%;
  padding: 26px 20px;
  border: 0;
  line-height: normal;
  border-radius: 10px 10px 0 0;
}
#main[data-barba-namespace=db-query] .limit-custom-field {
  font-family: monospace;
  font-size: 16px;
  background: #FFF;
  padding: 5px 26px 20px;
  border-radius: 0 0 10px 10px;
}
#main[data-barba-namespace=db-query] .limit-custom-field input[type=number] {
  margin-bottom: 0;
  -moz-appearance: textfield;
  font-family: monospace;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #746c79;
  text-align: center;
  width: 80px;
}
#main[data-barba-namespace=db-query] .limit-custom-field input[type=number]::-webkit-outer-spin-button, #main[data-barba-namespace=db-query] .limit-custom-field input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#main[data-barba-namespace=db-query] .submit-field {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
#main[data-barba-namespace=db-query] #search-submit {
  margin: 0;
  display: inline-block;
  width: 150px;
  padding: 16px 20px;
  font-size: 16px;
  border-radius: 10px;
}
#main[data-barba-namespace=db-query] #results-table_wrapper .dt-buttons button {
  font-size: 12px;
  padding: 6px 25px;
}
#main[data-barba-namespace=db-query] #results-table_wrapper .paginate_button {
  border-radius: 10px;
  padding: 8px 10px;
  line-height: normal;
  min-width: 35px;
}
#main[data-barba-namespace=db-query] #results-table_wrapper .paginate_button:hover {
  border: 1px solid #dedde1;
  background: #dedde1;
  color: #746c79 !important;
}
#main[data-barba-namespace=db-query] #results-table_wrapper .paginate_button.current {
  border: 1px solid #746c79;
  background: #dedde1;
}
#main[data-barba-namespace=db-query] #results-table_wrapper #results-table {
  width: 100%;
}
#main[data-barba-namespace=db-query] #results-table_wrapper #results-table td {
  line-height: normal;
  padding: 4px 10px;
}
#main[data-barba-namespace=db-query] #results-table_wrapper #results-table td .td-content {
  display: -webkit-box;
  max-height: 100px;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
#main[data-barba-namespace=db-query] #additional-info {
  margin-top: 120px;
}

#main[data-barba-namespace=associations] #dataviz-iframe {
  border: none;
  display: block;
  width: 100%;
  height: 1100px;
  margin-bottom: 60px;
  background: #dedde1;
}
@media (max-width: 767px) {
  #main[data-barba-namespace=associations] #dataviz-iframe {
    height: 1280px;
  }
}

#main[data-barba-namespace=profile] #login-form {
  margin: 0;
}
#main[data-barba-namespace=profile] #login-form input[type=text],
#main[data-barba-namespace=profile] #login-form input[type=password] {
  margin: 0 0 20px;
  flex-grow: 1;
  padding: 26px 20px;
  border: 0;
  font-size: 16px;
  line-height: normal;
  border-radius: 10px;
  width: 100%;
}
#main[data-barba-namespace=profile] #login-form .submit-field {
  display: flex;
  margin-top: 20px;
}
#main[data-barba-namespace=profile] #login-form .submit-field #login-submit {
  padding: 15px 40px;
}
#main[data-barba-namespace=profile] .loader {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: 50%;
  margin-left: -40px;
}
#main[data-barba-namespace=profile] .loader.loading {
  opacity: 1;
}
#main[data-barba-namespace=profile] #moca-disk-space {
  margin-top: 40px;
  font-size: 13px;
  opacity: 0.8;
}

#main[data-barba-namespace=overview] .loader {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: 50%;
  margin-left: -40px;
}
#main[data-barba-namespace=overview] .loader.loading {
  opacity: 1;
}
#main[data-barba-namespace=overview] .image-wrapper {
  display: flex;
  background: #e0dfe1;
  min-height: 200px;
}

/*# sourceMappingURL=styles.css.map */