/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* line 6, ../sass/_normalize.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

/* line 31, ../sass/_normalize.scss */
body {
  line-height: 1;
}

/* line 34, ../sass/_normalize.scss */
ol, ul {
  list-style: none;
}

/* line 37, ../sass/_normalize.scss */
blockquote, q {
  quotes: none;
}

/* line 40, ../sass/_normalize.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 45, ../sass/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 49, ../sass/_normalize.scss */
a {
  text-decoration: none;
}

/* Component (SMACSS module) rules */
/* MAIN */
/* line 2, ../sass/components/_common.scss */
#page {
  width: 100%;
}

/* HEADER NAVIGATION */
/* line 7, ../sass/components/_common.scss */
#header {
  position: fixed;
  z-index: 9;
  width: 100%;
  max-width: 100%;
  max-height: 134px;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 1rem;
  transition: all 0.3s;
  background: #fff;
  text-align: center;
  top: 0;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 7, ../sass/components/_common.scss */
  #header {
    position: fixed !important;
    height: 100vh !important;
    top: 0 !important;
    bottom: 0;
    display: none;
  }
}
/* line 28, ../sass/components/_common.scss */
#header a.menu__link {
  color: #000;
  transition: all 0.3s;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 28, ../sass/components/_common.scss */
  #header a.menu__link {
    position: relative;
  }
}
/* line 35, ../sass/components/_common.scss */
#header a.menu__link:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #0000ff;
  display: block;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  position: absolute;
  opacity: 0;
  transition: 0.2s all;
  left: 50%;
}
/* line 51, ../sass/components/_common.scss */
#header a.menu__link:hover:after {
  opacity: 1;
}
/* line 59, ../sass/components/_common.scss */
#header .logo svg {
  max-width: 200px;
  max-height: 60px;
}
/* line 65, ../sass/components/_common.scss */
#header ul.menu {
  display: inline-block;
  font-family: Menlo, Courier;
  margin-top: 2em;
  transition: all 0.3s;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 65, ../sass/components/_common.scss */
  #header ul.menu {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}
/* line 77, ../sass/components/_common.scss */
#header ul.menu li {
  float: left;
  margin-right: 2em;
  text-transform: uppercase;
  position: relative;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 77, ../sass/components/_common.scss */
  #header ul.menu li {
    margin-right: 0;
    width: 50%;
    text-align: center;
    width: 100%;
    font-size: 1.5rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
  }
}
/* line 95, ../sass/components/_common.scss */
#header ul.menu li:last-child {
  margin-right: 4em;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 95, ../sass/components/_common.scss */
  #header ul.menu li:last-child {
    margin-right: 0;
  }
}
/* line 103, ../sass/components/_common.scss */
#header ul.menu li a.active:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #0000ff;
  display: block;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  position: absolute;
  opacity: 1;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 103, ../sass/components/_common.scss */
  #header ul.menu li a.active:after {
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
  }
}
/* line 125, ../sass/components/_common.scss */
#header .social {
  display: inline-block;
  font-size: 1.5em;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 125, ../sass/components/_common.scss */
  #header .social {
    margin-top: 1rem;
  }
}
/* line 132, ../sass/components/_common.scss */
#header .social a {
  margin-right: 0.5em;
  color: #000;
  transition: 0.3s all;
}
/* line 137, ../sass/components/_common.scss */
#header .social a:last-child {
  margin-right: 0;
}
/* line 141, ../sass/components/_common.scss */
#header .social a:hover {
  color: #0000ff;
}
/* line 147, ../sass/components/_common.scss */
#header.stuck {
  position: fixed !important;
  top: 0 !important;
  z-index: 99;
  background: #fff;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #000;
  padding: 0.5rem 0 !important;
}
/* line 157, ../sass/components/_common.scss */
#header.stuck .wrapper {
  width: 1170px;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 157, ../sass/components/_common.scss */
  #header.stuck .wrapper {
    width: 100%;
    max-width: 100%;
  }
}
/* line 170, ../sass/components/_common.scss */
#header.stuck .logo {
  display: inline-block;
  float: left;
  margin-top: 0.4rem;
}
/* line 174, ../sass/components/_common.scss */
#header.stuck .logo svg {
  height: 2rem;
  width: auto;
}
/* line 180, ../sass/components/_common.scss */
#header.stuck ul.menu {
  margin-top: 1.4rem;
}
/* line 184, ../sass/components/_common.scss */
#header.stuck .social {
  float: right;
  margin-top: 0.7rem;
}
/* line 190, ../sass/components/_common.scss */
#directors #header {
  position: fixed;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  background: white;
  max-width: 100%;
  z-index: 99;
  padding: 2rem 0;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 190, ../sass/components/_common.scss */
  #directors #header {
    position: absolute;
  }
}

/* line 211, ../sass/components/_common.scss */
footer#footer {
  border-top: 1px solid #0000ff;
  padding: 1.5em 0;
  font-family: Menlo, Courier;
  position: relative;
  margin-top: 5rem;
}
/* line 218, ../sass/components/_common.scss */
footer#footer .copyright {
  font-size: 0.7em;
}
/* line 222, ../sass/components/_common.scss */
footer#footer #back-to-top {
  position: absolute;
  top: -100px;
  width: 100px;
  left: 50%;
  margin-left: 540px;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 222, ../sass/components/_common.scss */
  footer#footer #back-to-top {
    left: auto;
    margin-left: 0;
    right: 5%;
    top: -60px;
  }
}
/* line 236, ../sass/components/_common.scss */
footer#footer #back-to-top a {
  display: block;
}
/* line 238, ../sass/components/_common.scss */
footer#footer #back-to-top img {
  height: 35px;
  width: auto;
  display: block;
  padding: 4px 12px;
  border: 1px solid #0000ff;
}
/* line 247, ../sass/components/_common.scss */
.black footer#footer {
  background: #000;
  border-top: 1px solid #fff;
  color: #fff;
}
/* line 252, ../sass/components/_common.scss */
.black footer#footer #back-to-top {
  display: none;
}

/* line 259, ../sass/components/_common.scss */
#mobile-menu {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  z-index: 16;
  width: 100%;
}
/* line 266, ../sass/components/_common.scss */
#mobile-menu a#hamburger {
  padding: 1rem 1rem;
  display: block;
  float: left;
}
/* line 271, ../sass/components/_common.scss */
#mobile-menu a#hamburger img {
  max-width: 9vw;
}
/* line 277, ../sass/components/_common.scss */
#mobile-menu a#mobilelogo svg {
  float: right;
  max-width: 40%;
  height: 5vh;
  margin-top: 1rem;
  margin-right: 0.5rem;
}

@media (min-width: 0px) and (max-width: 783px) {
  /* line 288, ../sass/components/_common.scss */
  #header {
    height: 100vh !important;
    top: 0 !important;
    bottom: 0 !important;
    position: fixed !important;
    max-height: 100vh;
  }
  /* line 295, ../sass/components/_common.scss */
  #header #close-menu {
    text-align: left;
    padding: 0 1rem;
    width: calc(100% - 2rem);
  }
  /* line 299, ../sass/components/_common.scss */
  #header #close-menu img {
    width: 9vw;
    height: 9vw;
  }
}
/* =============================================================================
   Tables
   ========================================================================== */
/* line 5, ../sass/components/_tabledrag.scss */
table {
  table-layout: fixed;
  font-family: Menlo, Courier;
  width: 100%;
}

/* line 11, ../sass/components/_tabledrag.scss */
td, th {
  padding: 20px;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 11, ../sass/components/_tabledrag.scss */
  td, th {
    padding: 10px;
  }
}

/* line 19, ../sass/components/_tabledrag.scss */
td {
  background-color: #ddd;
}

/* line 23, ../sass/components/_tabledrag.scss */
th {
  background-color: #31373d;
  color: white;
  font-weight: bold;
  text-align: left;
}
/* line 29, ../sass/components/_tabledrag.scss */
th:nth-child(even) {
  background-color: #3c4147;
}

/* =============================================================================
   Striping/Table Colours
   ========================================================================== */
/* line 41, ../sass/components/_tabledrag.scss */
.view-videos tbody > tr:nth-child(odd) td:nth-child(odd) {
  background-color: #ddd;
}
/* line 44, ../sass/components/_tabledrag.scss */
.view-videos tbody > tr:nth-child(odd) td:nth-child(even) {
  background-color: #dfdfdf;
}
/* line 50, ../sass/components/_tabledrag.scss */
.view-videos tbody > tr:nth-child(even) td:nth-child(odd) {
  background-color: #d1d1d1;
}
/* line 53, ../sass/components/_tabledrag.scss */
.view-videos tbody > tr:nth-child(even) td:nth-child(even) {
  background-color: #d3d3d3;
}

/* =============================================================================
   Scrolling Mobile Tables
   ========================================================================== */
/* line 64, ../sass/components/_tabledrag.scss */
.table-container {
  overflow-x: scroll;
}
/* line 67, ../sass/components/_tabledrag.scss */
.table-container table {
  min-width: 720px;
}

/* =============================================================================
   Tabledrag Specific
   ========================================================================== */
/* line 77, ../sass/components/_tabledrag.scss */
.tabledrag-toggle-weight-wrapper,
.tabledrag-changed-warning {
  font-family: Menlo, Courier;
  padding: 20px;
}

/* line 83, ../sass/components/_tabledrag.scss */
.tabledrag-changed-warning {
  background-color: #0000ff;
  color: white;
}

/* line 88, ../sass/components/_tabledrag.scss */
.draggable a.tabledrag-handle {
  height: 15px;
}

/* line 92, ../sass/components/_tabledrag.scss */
.view-videos .form-submit {
  background-color: #0000ff;
  border: none;
  color: white;
  cursor: pointer;
  font-family: GiorgioSans-BoldItalic, Helvetica;
  font-size: 20px;
  padding: 10px;
  text-transform: uppercase;
  width: 100%;
}

/* line 3, ../sass/_panels.scss */
.panel-pane {
  max-width: 1180px;
  padding: 0 10px;
  margin: 0 auto;
  text-align: center;
  clear: both;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 3, ../sass/_panels.scss */
  .panel-pane {
    padding: 0;
  }
}
/* line 13, ../sass/_panels.scss */
.panel-pane h2.pane-title {
  color: #0000ff;
  font-family: GiorgioSans-BoldItalic, Helvetica;
  font-size: 2.5em;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 auto;
  width: auto !important;
  padding: 8px 15px 12px;
  border: 3px solid #0000ff;
  line-height: 1em;
  margin-bottom: 1.3rem;
}
/* line 27, ../sass/_panels.scss */
.panel-pane.full-width {
  max-width: 100%;
  padding: 0;
  position: relative;
}

/* line 34, ../sass/_panels.scss */
#homepage-carousel,
#contact-header {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
  cursor: pointer;
  margin-bottom: -0.2em;
  position: relative;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 34, ../sass/_panels.scss */
  #homepage-carousel,
  #contact-header {
    margin-top: 4rem;
  }
}
/* line 47, ../sass/_panels.scss */
#homepage-carousel h2.pane-title,
#contact-header h2.pane-title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: auto;
  z-index: 100;
  border: 0;
  color: #fff;
  letter-spacing: 1px;
  font-size: 3rem;
  border: 2px solid #fff;
  padding: 8px 2rem 12px 2rem;
  max-width: 820px !important;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 47, ../sass/_panels.scss */
  #homepage-carousel h2.pane-title,
  #contact-header h2.pane-title {
    display: none;
  }
}
/* line 69, ../sass/_panels.scss */
#homepage-carousel #views_slideshow_cycle_teaser_section_carousel-block,
#contact-header #views_slideshow_cycle_teaser_section_carousel-block {
  width: 100% !important;
}
/* line 73, ../sass/_panels.scss */
#homepage-carousel .view-header,
#contact-header .view-header {
  position: fixed;
  top: 0;
  z-index: 101;
  text-align: center;
  width: 100%;
  height: 100vh;
  background: #000;
  transition: all 0.5s;
  opacity: 1;
}
/* line 84, ../sass/_panels.scss */
#homepage-carousel .view-header img,
#contact-header .view-header img {
  max-width: 50vw;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
}
/* line 96, ../sass/_panels.scss */
#homepage-carousel .view-header.hidden,
#contact-header .view-header.hidden {
  opacity: 0;
  pointer-events: none;
}
/* line 102, ../sass/_panels.scss */
#homepage-carousel .view-id-carousel,
#contact-header .view-id-carousel {
  position: relative;
}
/* line 106, ../sass/_panels.scss */
#homepage-carousel .views_slideshow_cycle_slide,
#contact-header .views_slideshow_cycle_slide {
  width: 100% !important;
}
/* line 109, ../sass/_panels.scss */
#homepage-carousel .views_slideshow_cycle_slide img,
#contact-header .views_slideshow_cycle_slide img {
  width: 100%;
  height: calc(100%/16*9);
}
/* line 116, ../sass/_panels.scss */
#homepage-carousel .views-slideshow-controls-text .views-slideshow-controls-text-pause,
#contact-header .views-slideshow-controls-text .views-slideshow-controls-text-pause {
  display: none;
}
/* line 120, ../sass/_panels.scss */
#homepage-carousel .views-slideshow-controls-text .views-slideshow-controls-text-previous,
#contact-header .views-slideshow-controls-text .views-slideshow-controls-text-previous {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  left: 0;
}
/* line 130, ../sass/_panels.scss */
#homepage-carousel .views-slideshow-controls-text .views-slideshow-controls-text-previous a,
#contact-header .views-slideshow-controls-text .views-slideshow-controls-text-previous a {
  display: block;
  padding: 5px 10px 2px;
  background: #fff;
}
/* line 136, ../sass/_panels.scss */
#homepage-carousel .views-slideshow-controls-text .views-slideshow-controls-text-previous img,
#contact-header .views-slideshow-controls-text .views-slideshow-controls-text-previous img {
  width: 38px;
}
/* line 141, ../sass/_panels.scss */
#homepage-carousel .views-slideshow-controls-text .views-slideshow-controls-text-next,
#contact-header .views-slideshow-controls-text .views-slideshow-controls-text-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  right: 0;
}
/* line 149, ../sass/_panels.scss */
#homepage-carousel .views-slideshow-controls-text .views-slideshow-controls-text-next a,
#contact-header .views-slideshow-controls-text .views-slideshow-controls-text-next a {
  display: block;
  padding: 5px 10px 2px;
  background: #fff;
}
/* line 155, ../sass/_panels.scss */
#homepage-carousel .views-slideshow-controls-text .views-slideshow-controls-text-next img,
#contact-header .views-slideshow-controls-text .views-slideshow-controls-text-next img {
  width: 38px;
}

/* line 162, ../sass/_panels.scss */
.triple-col {
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 162, ../sass/_panels.scss */
  .triple-col {
    width: 92%;
    margin: 0 4%;
  }
}
/* line 169, ../sass/_panels.scss */
.triple-col .view-content {
  display: inline-block;
  width: 100%;
}
/* line 174, ../sass/_panels.scss */
.triple-col .views-row {
  width: 32%;
  float: left;
  margin-right: 2%;
  margin-bottom: 1em;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 174, ../sass/_panels.scss */
  .triple-col .views-row {
    width: 100%;
    clear: both;
  }
}
/* line 185, ../sass/_panels.scss */
.triple-col .views-row:nth-child(3n) {
  margin-right: 0;
}
/* line 189, ../sass/_panels.scss */
.triple-col .views-row.hide {
  margin-left: -999rem;
}
/* line 193, ../sass/_panels.scss */
.triple-col .views-row.hidden {
  opacity: 0;
}
/* line 197, ../sass/_panels.scss */
.triple-col .views-row .field-content {
  position: relative;
}
/* line 202, ../sass/_panels.scss */
.triple-col .views-row .field-background img {
  width: 100%;
  display: block;
}
/* line 208, ../sass/_panels.scss */
.triple-col .views-row .content-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: all 0.3s;
}
/* line 217, ../sass/_panels.scss */
.triple-col .views-row .content-top {
  padding: 0;
  pointer-events: none;
}
/* line 222, ../sass/_panels.scss */
.triple-col .views-row .field-title {
  color: #fff;
  font-family: GiorgioSans-MediumItalic, Helvetica;
  font-size: 1.9rem;
  padding: 0.7rem 1rem 0.1rem 0;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}
/* line 233, ../sass/_panels.scss */
.triple-col .views-row .field-title span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 0.1em;
  padding-right: 0.5rem;
  padding-left: 0.7rem;
}
/* line 241, ../sass/_panels.scss */
.triple-col .views-row .field-title span:after {
  content: '';
  background: blue;
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 0%;
  top: 0;
  z-index: -1;
  left: 0;
  transition: all 0.3s;
  padding: 0rem 0rem 0.1rem 0rem;
}
/* line 257, ../sass/_panels.scss */
.triple-col .views-row .field-client {
  color: #fff;
  font-family: GiorgioSans-Light, Helvetica;
  font-size: 1.3rem;
  text-transform: uppercase;
  line-height: 1.3em;
  pointer-events: none;
  transition: all 0.3s;
  margin: -0.1em 0 0 0;
  padding-left: 0.7rem;
  opacity: 0;
  letter-spacing: 1px;
}
/* line 271, ../sass/_panels.scss */
.triple-col .views-row .field-date {
  position: absolute;
  bottom: 1em;
  left: 1em;
  width: 4em;
  color: #fff;
  font-family: Menlo, Courier;
  font-size: 0.9em;
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s;
  opacity: 0;
}
/* line 285, ../sass/_panels.scss */
.triple-col .views-row .field-director {
  position: absolute;
  bottom: 1em;
  left: 5em;
  width: 10em;
  width: calc(100% - 5em);
  color: #fff;
  font-family: Menlo, Courier;
  font-size: 0.9em;
  z-index: 0;
  transition: all 0.3s;
  opacity: 0;
}
/* line 300, ../sass/_panels.scss */
.triple-col .views-row.hover .content-wrapper {
  background: rgba(0, 0, 0, 0.5);
}
/* line 303, ../sass/_panels.scss */
.triple-col .views-row.hover .content-wrapper .field-title span:after {
  width: 100%;
}
/* line 308, ../sass/_panels.scss */
.triple-col .views-row.hover .content-wrapper .field-client,
.triple-col .views-row.hover .content-wrapper .field-date,
.triple-col .views-row.hover .content-wrapper .field-director {
  opacity: 1;
}
/* line 318, ../sass/_panels.scss */
.triple-col ul.pager {
  font-family: Menlo, Courier;
}
/* line 321, ../sass/_panels.scss */
.triple-col ul.pager a {
  color: #000;
  position: relative;
}
/* line 325, ../sass/_panels.scss */
.triple-col ul.pager a:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #0000ff;
  display: block;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  position: absolute;
  opacity: 0;
  transition: 0.3s all;
}
/* line 341, ../sass/_panels.scss */
.triple-col ul.pager a:hover:after {
  opacity: 1;
}
/* line 349, ../sass/_panels.scss */
.triple-col ul.pager .throbber {
  display: none;
}

/* line 362, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper {
  font-size: 0.8rem;
  padding: 1rem 0;
}
/* line 366, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper label,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper label {
  float: left;
  font-family: Menlo, Courier;
  font-weight: normal;
  margin-right: 0.5em;
  cursor: pointer;
  position: relative;
}
/* line 374, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper label:after,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper label:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #0000ff;
  display: block;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  opacity: 0;
  transition: 0.2s all;
}
/* line 389, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper label:hover:after,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper label:hover:after {
  opacity: 1;
}
/* line 395, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper label.selected:after,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper label.selected:after {
  opacity: 1;
}
/* line 402, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper label[for="edit-field-category-tid"]:hover:after,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper label[for="edit-field-category-tid"]:hover:after {
  opacity: 0;
}
/* line 409, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper > .views-widget,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper > .views-widget {
  float: left;
}
/* line 413, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper .form-type-radio,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper .form-type-radio {
  float: left;
  font-family: Menlo, Courier;
  margin-right: 0.5em;
  position: relative;
  cursor: pointer;
}
/* line 420, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper .form-type-radio input[type="radio"],
#views-exposed-form-directors-block #edit-field-category-tid-wrapper .form-type-radio input[type="radio"] {
  display: none;
}
/* line 424, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper .form-type-radio:after,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper .form-type-radio:after {
  position: relative;
  width: 1em;
  content: '-';
  float: left;
  margin-left: 0.5em;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 424, ../sass/_panels.scss */
  #views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper .form-type-radio:after,
  #views-exposed-form-directors-block #edit-field-category-tid-wrapper .form-type-radio:after {
    display: none;
  }
}
/* line 436, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 #edit-field-category-tid-wrapper .form-type-radio:last-child:after,
#views-exposed-form-directors-block #edit-field-category-tid-wrapper .form-type-radio:last-child:after {
  display: none;
}
/* line 443, ../sass/_panels.scss */
#views-exposed-form-videos-panel-pane-1 .views-submit-button,
#views-exposed-form-directors-block .views-submit-button {
  display: none;
}

/* line 448, ../sass/_panels.scss */
.view-empty {
  font-family: Menlo, Courier;
}

/* line 452, ../sass/_panels.scss */
#video-player {
  display: inline-block;
  text-align: left;
  padding: 4rem 0;
  margin-top: 2rem;
  border-top: 1px solid #000;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 452, ../sass/_panels.scss */
  #video-player {
    padding: 3rem 4%;
    width: 92%;
  }
}
/* line 463, ../sass/_panels.scss */
#video-player .title {
  float: left;
  margin-right: 1rem;
  font-family: GiorgioSans-BoldItalic, Helvetica;
  background: #000;
  text-transform: uppercase;
  color: #fff;
  padding: 0 0.5em 0.1em 0.2em;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
/* line 467, ../sass/_panels.scss */
#video-player .client {
  float: left;
  font-family: GiorgioSans-MediumItalic, Helvetica;
  color: #000;
  text-transform: uppercase;
  font-size: 2.5rem;
}
/* line 475, ../sass/_panels.scss */
#video-player .player {
  width: 100%;
  height: 664px;
  float: left;
  clear: both;
  margin-top: 1.5rem;
  position: relative;
  z-index: 98;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 475, ../sass/_panels.scss */
  #video-player .player {
    height: auto;
  }
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 488, ../sass/_panels.scss */
  #video-player iframe {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* line 499, ../sass/_panels.scss */
.node-type-director .pane-node-title h1 {
  float: left;
  margin-right: 1rem;
  font-family: GiorgioSans-BoldItalic, Helvetica;
  background: #000;
  text-transform: uppercase;
  color: #fff;
  padding: 0 0.5em 0.1em 0.2em;
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
/* line 504, ../sass/_panels.scss */
.node-type-director .panel-pane.pane-node-body {
  width: 860px;
  font-family: Menlo, Courier;
  text-align: left;
  line-height: 1.3em;
  margin: 3rem auto;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 504, ../sass/_panels.scss */
  .node-type-director .panel-pane.pane-node-body {
    width: 90%;
    margin: 2rem 5%;
  }
}
/* line 515, ../sass/_panels.scss */
.node-type-director .panel-pane.pane-node-body h2.pane-title {
  border: 0;
  color: #000;
  font-size: 2em;
  padding: 0;
  text-align: left;
  display: block;
}
/* line 524, ../sass/_panels.scss */
.node-type-director .panel-pane.pane-node-body .field-name-body {
  font-size: 0.9em;
}
/* line 528, ../sass/_panels.scss */
.node-type-director .panel-pane.pane-node-body p {
  margin-bottom: 1rem;
}
/* line 533, ../sass/_panels.scss */
.node-type-director #block-directors-bio {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
/* line 537, ../sass/_panels.scss */
.node-type-director #block-directors-bio h2.pane-title {
  margin-bottom: 2.5rem;
}
/* line 543, ../sass/_panels.scss */
.node-type-director .view-id-directors.view-display-id-block .item-list {
  margin-top: 2rem;
}

/* line 553, ../sass/_panels.scss */
.page-news #header {
  padding-top: 2rem;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 553, ../sass/_panels.scss */
  .page-news #header {
    padding-top: 1rem;
  }
}
/* line 562, ../sass/_panels.scss */
.page-news #news-block {
  width: 540px;
  text-align: left;
  padding-bottom: 4rem;
  margin-top: 11.5rem;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 562, ../sass/_panels.scss */
  .page-news #news-block {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
    margin-top: 4rem;
  }
}
/* line 574, ../sass/_panels.scss */
.page-news #news-block h2.pane-title {
  width: 6em !important;
  line-height: 0.9em !important;
  text-align: center;
  display: block;
}
/* line 581, ../sass/_panels.scss */
.page-news #news-block .views-row {
  border-bottom: 1px solid #0000ff;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
/* line 586, ../sass/_panels.scss */
.page-news #news-block .views-row:last-child {
  border-bottom: 0px;
}
/* line 592, ../sass/_panels.scss */
.page-news #news-block .views-field-field-thumbnail img {
  max-width: 540px;
  height: auto;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 592, ../sass/_panels.scss */
  .page-news #news-block .views-field-field-thumbnail img {
    width: 100%;
  }
}
/* line 601, ../sass/_panels.scss */
.page-news #news-block .views-field-title {
  display: inline-block;
  margin: 1.5rem 0 1rem 0;
}
/* line 605, ../sass/_panels.scss */
.page-news #news-block .views-field-title h2 {
  float: left;
  margin-right: 1rem;
  font-family: GiorgioSans-BoldItalic, Helvetica;
  background: #000;
  text-transform: uppercase;
  color: #fff;
  padding: 0 0.5em 0.1em 0.2em;
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-style: normal;
  font-family: GiorgioSans-Medium, Helvetica;
}
/* line 610, ../sass/_panels.scss */
.page-news #news-block .views-field-title h2 a {
  color: #fff;
}
/* line 616, ../sass/_panels.scss */
.page-news #news-block .views-field-created {
  font-family: Menlo, Courier;
  font-size: 0.9rem;
  margin-bottom: 1em;
}
/* line 622, ../sass/_panels.scss */
.page-news #news-block .views-field-body {
  font-family: Menlo, Courier;
  font-size: 0.9rem;
  line-height: 1.3em;
}
/* line 628, ../sass/_panels.scss */
.page-news #news-block .views-field-field-blog-tags {
  margin: 1rem 0;
  font-family: Menlo, Courier;
  font-size: 0.9rem;
}
/* line 633, ../sass/_panels.scss */
.page-news #news-block .views-field-field-blog-tags .field-content {
  display: inline-block;
}
/* line 637, ../sass/_panels.scss */
.page-news #news-block .views-field-field-blog-tags a {
  color: #000;
}
/* line 642, ../sass/_panels.scss */
.page-news #news-block .views-field-nothing {
  font-family: Menlo, Courier;
  font-size: 0.9rem;
  position: relative;
}
/* line 647, ../sass/_panels.scss */
.page-news #news-block .views-field-nothing .field-content {
  font-size: 1.7rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 655, ../sass/_panels.scss */
.page-news #news-block .views-field-nothing a {
  color: #0000ff;
}
/* line 660, ../sass/_panels.scss */
.page-news #news-block ul.pager {
  font-family: Menlo, Courier;
  font-size: 1rem;
  text-align: center;
}
/* line 665, ../sass/_panels.scss */
.page-news #news-block ul.pager a {
  color: #000;
}

/* line 675, ../sass/_panels.scss */
#contact #header {
  top: 0;
  padding: 2rem 0;
}
/* line 680, ../sass/_panels.scss */
#contact #contact-header {
  margin-top: 11.5rem;
  max-height: 85vh;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 680, ../sass/_panels.scss */
  #contact #contact-header {
    margin-top: 4rem;
  }
}
/* line 689, ../sass/_panels.scss */
#contact #contact-header .background-image img {
  width: 100%;
}
/* line 693, ../sass/_panels.scss */
#contact #contact-header .header-copy {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  width: 100%;
  font-family: GiorgioSans-MediumItalic, Helvetica;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 707, ../sass/_panels.scss */
#contact #footer {
  margin-top: 0;
}

/* line 714, ../sass/_panels.scss */
.pane-clients.first-child {
  padding-top: 2rem;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 714, ../sass/_panels.scss */
  .pane-clients.first-child {
    padding: 2rem 4% 0 4%;
    width: 92%;
  }
}
/* line 724, ../sass/_panels.scss */
.pane-clients h2.pane-title {
  margin-bottom: 4rem;
}
/* line 728, ../sass/_panels.scss */
.pane-clients .view-id-clients {
  display: inline-block;
}
/* line 732, ../sass/_panels.scss */
.pane-clients .views-content {
  display: inline-block;
}
/* line 735, ../sass/_panels.scss */
.pane-clients .views-row {
  float: left;
  width: 150px;
  overflow: hidden;
  margin-right: 21px;
  margin-bottom: 21px;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 735, ../sass/_panels.scss */
  .pane-clients .views-row {
    margin: 0;
    width: 50%;
    text-align: center;
  }
}
/* line 747, ../sass/_panels.scss */
.pane-clients .views-row:nth-child(7n) {
  margin-right: 0;
}
/* line 751, ../sass/_panels.scss */
.pane-clients .views-row img {
  width: 100%;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 751, ../sass/_panels.scss */
  .pane-clients .views-row img {
    width: 92%;
  }
}

/* line 759, ../sass/_panels.scss */
#contact-panel {
  padding-bottom: 8rem;
  background: #000;
  color: #fff;
  font-family: Menlo, Courier;
  padding: 4rem 0 8rem;
}
/* line 766, ../sass/_panels.scss */
#contact-panel h2 {
  color: #fff;
  border-color: #fff;
  letter-spacing: 1px;
}
/* line 772, ../sass/_panels.scss */
#contact-panel .wrapper {
  width: 940px;
  margin: 4rem auto 0;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 772, ../sass/_panels.scss */
  #contact-panel .wrapper {
    width: 92%;
    padding: 0 4%;
  }
}
/* line 781, ../sass/_panels.scss */
#contact-panel #contact-details {
  width: 350px;
  float: left;
  margin-right: 100px;
  display: block;
  text-align: left;
  font-size: 0.8rem;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 781, ../sass/_panels.scss */
  #contact-panel #contact-details {
    width: 100%;
    margin-right: 0;
  }
}
/* line 793, ../sass/_panels.scss */
#contact-panel #contact-details svg {
  width: 165px;
  height: 50px;
}
/* line 798, ../sass/_panels.scss */
#contact-panel #contact-details a {
  color: #fff;
}
/* line 802, ../sass/_panels.scss */
#contact-panel #contact-details .address {
  margin: 1rem 0;
  line-height: 1.3em;
}
/* line 806, ../sass/_panels.scss */
#contact-panel #contact-details .address a {
  margin-top: 1rem;
  display: block;
}
/* line 812, ../sass/_panels.scss */
#contact-panel #contact-details .social {
  font-size: 1.5rem;
}
/* line 815, ../sass/_panels.scss */
#contact-panel #contact-details .social a {
  transition: all 0.3s;
}
/* line 818, ../sass/_panels.scss */
#contact-panel #contact-details .social a:hover {
  color: blue;
}
/* line 825, ../sass/_panels.scss */
#contact-panel #contact-positions {
  width: 490px;
  clear: left;
  display: inline-block;
  text-align: left;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 825, ../sass/_panels.scss */
  #contact-panel #contact-positions {
    width: 100%;
    margin-top: 4rem;
  }
}
/* line 835, ../sass/_panels.scss */
#contact-panel #contact-positions .row {
  margin-bottom: 1.3rem;
}
/* line 839, ../sass/_panels.scss */
#contact-panel #contact-positions h3 {
  background: blue;
  color: #fff;
  font-family: GiorgioSans-MediumItalic, Helvetica;
  font-size: 2rem;
  padding: 0rem 1rem 0.2rem 0.4rem;
  text-transform: uppercase;
  display: inline-block;
}
/* line 849, ../sass/_panels.scss */
#contact-panel #contact-positions p {
  margin: 0.7em 0 1em;
  font-size: 0.8rem;
}
/* line 854, ../sass/_panels.scss */
#contact-panel #contact-positions a {
  color: #fff;
  text-decoration: underline;
  transition: all 0.3s;
}
/* line 859, ../sass/_panels.scss */
#contact-panel #contact-positions a:hover {
  text-decoration: none;
}

/* line 866, ../sass/_panels.scss */
body.dimmed {
  background: rgba(0, 0, 0, 0.5);
}
/* line 869, ../sass/_panels.scss */
body.dimmed #header {
  opacity: 0;
}

/* line 873, ../sass/_panels.scss */
.blackout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* line 885, ../sass/_panels.scss */
#homepage #header {
  position: absolute;
  width: 100%;
  max-width: 100%;
  padding: 2rem 0 1rem;
  background: #fff;
  top: initial;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 885, ../sass/_panels.scss */
  #homepage #header {
    padding: 1rem 0;
  }
}
/* line 898, ../sass/_panels.scss */
#homepage #views_slideshow_cycle_teaser_section_carousel-block .views-field-field-carousel-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  width: 100%;
  font-family: GiorgioSans-BoldItalic, Helvetica;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* line 913, ../sass/_panels.scss */
#homepage .pane-views-exp-videos-panel-pane-1 {
  padding-top: 11rem;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 913, ../sass/_panels.scss */
  #homepage .pane-views-exp-videos-panel-pane-1 {
    width: 92%;
    margin: 0 4%;
    padding-top: 2rem;
  }
}
/* line 921, ../sass/_panels.scss */
#homepage #logo-takeover {
  width: 100%;
  height: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  z-index: 99;
}

/* line 933, ../sass/_panels.scss */
#directors .panel-pane:nth-child(2) {
  margin-top: 11.5rem;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 933, ../sass/_panels.scss */
  #directors .panel-pane:nth-child(2) {
    margin-top: 4rem;
  }
}
/* line 941, ../sass/_panels.scss */
#directors .pane-node-field-thumbnail iframe {
  position: relative;
  z-index: 98;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 946, ../sass/_panels.scss */
  #directors .pane-node-field-thumbnail img {
    width: 100%;
    height: auto;
  }
}
/* line 956, ../sass/_panels.scss */
#directors .pane-directors {
  border-bottom: 1px solid blue;
  padding: 0 0 2rem 0;
  margin-left: auto;
  margin-right: auto;
}
/* line 962, ../sass/_panels.scss */
#directors .pane-directors .view-directors {
  position: relative;
  z-index: 98;
}
/* line 967, ../sass/_panels.scss */
#directors .pane-directors iframe {
  max-width: 100%;
}
@media (min-width: 0px) and (max-width: 783px) {
  /* line 967, ../sass/_panels.scss */
  #directors .pane-directors iframe {
    height: auto;
    height: calc(100vw / 16 * 9);
  }
}

/* line 979, ../sass/_panels.scss */
#takeover {
  width: 100%;
  height: 100vh;
  max-width: 100%;
  padding: 0;
  background: #000;
  position: fixed;
  top: 0;
  z-index: 101;
}
/* line 989, ../sass/_panels.scss */
#takeover img {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 50%;
  left: 50%;
}

@media (min-width: 0px) and (max-width: 783px) {
  /* line 1009, ../sass/_panels.scss */
  #edit-field-category-tid-wrapper > label {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  /* line 1015, ../sass/_panels.scss */
  #edit-field-category-tid-wrapper .views-widget {
    width: 100%;
  }

  /* line 1020, ../sass/_panels.scss */
  #edit-field-category-tid .form-item:nth-child(1),
  #edit-field-category-tid .form-item:nth-child(2),
  #edit-field-category-tid .form-item:nth-child(3),
  #edit-field-category-tid .form-item:nth-child(4),
  #edit-field-category-tid .form-item:nth-child(5) {
    width: 33%;
    margin: 0;
    margin-right: 0 !important;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  /* line 1031, ../sass/_panels.scss */
  #edit-field-category-tid .form-item:nth-child(1) label,
  #edit-field-category-tid .form-item:nth-child(2) label,
  #edit-field-category-tid .form-item:nth-child(3) label,
  #edit-field-category-tid .form-item:nth-child(4) label,
  #edit-field-category-tid .form-item:nth-child(5) label {
    width: 100%;
    text-align: center;
  }
  /* line 1037, ../sass/_panels.scss */
  #edit-field-category-tid .form-item:nth-child(4) {
    margin-left: 16.6%;
  }
}
/* line 1047, ../sass/_panels.scss */
#views-form-directors-block-2,
#views-form-videos-panel-pane-3 {
  font-family: Menlo, Courier;
}
/* line 1051, ../sass/_panels.scss */
#views-form-directors-block-2 table,
#views-form-videos-panel-pane-3 table {
  width: 100%;
}

/* line 1058, ../sass/_panels.scss */
.not-logged-in.page-user #content {
  text-align: center;
  font-family: Menlo, Courier;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
/* line 1071, ../sass/_panels.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 1078, ../sass/_panels.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 1083, ../sass/_panels.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 1088, ../sass/_panels.scss */
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

/* line 1094, ../sass/_panels.scss */
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* line 1183, ../sass/_panels.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 1224, ../sass/_panels.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 1303, ../sass/_panels.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* line 1342, ../sass/_panels.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/* line 1401, ../sass/_panels.scss */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 1462, ../sass/_panels.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 1628, ../sass/_panels.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1701, ../sass/_panels.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1774, ../sass/_panels.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1847, ../sass/_panels.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 1920, ../sass/_panels.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
/* line 1963, ../sass/_panels.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 2006, ../sass/_panels.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 2039, ../sass/_panels.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 2072, ../sass/_panels.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 2115, ../sass/_panels.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* line 2140, ../sass/_panels.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2173, ../sass/_panels.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2206, ../sass/_panels.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2239, ../sass/_panels.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2272, ../sass/_panels.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2305, ../sass/_panels.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2338, ../sass/_panels.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2371, ../sass/_panels.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2404, ../sass/_panels.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 2429, ../sass/_panels.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 2458, ../sass/_panels.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 2487, ../sass/_panels.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 2516, ../sass/_panels.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 2545, ../sass/_panels.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 2574, ../sass/_panels.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 2603, ../sass/_panels.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 2632, ../sass/_panels.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 2661, ../sass/_panels.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 2813, ../sass/_panels.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 2886, ../sass/_panels.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
/* line 2931, ../sass/_panels.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
/* line 2976, ../sass/_panels.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 3035, ../sass/_panels.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
/* line 3066, ../sass/_panels.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 3109, ../sass/_panels.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 3150, ../sass/_panels.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 3191, ../sass/_panels.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 3232, ../sass/_panels.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 3273, ../sass/_panels.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
/* line 3310, ../sass/_panels.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
/* line 3347, ../sass/_panels.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 3384, ../sass/_panels.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 3421, ../sass/_panels.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
/* line 3458, ../sass/_panels.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
/* line 3531, ../sass/_panels.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/* line 3626, ../sass/_panels.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

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

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

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

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
/* line 3827, ../sass/_panels.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
/* line 3909, ../sass/_panels.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
/* line 3946, ../sass/_panels.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

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

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 4022, ../sass/_panels.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 4053, ../sass/_panels.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 4084, ../sass/_panels.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 4115, ../sass/_panels.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 4146, ../sass/_panels.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 4177, ../sass/_panels.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 4208, ../sass/_panels.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 4239, ../sass/_panels.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
