@charset "UTF-8";
/**
 * Colors
 */
/**
 * Typography
 */
/**
 * HTML tags variables
 */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/** paceholder */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
 *  Styles for default link
 */
a {
  word-break: break-word;
  text-decoration: none;
  cursor: pointer;
  color: #1562AD;
}

a:link, a:visited, a:hover, a:active {
  color: #1562AD;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  outline: none;
  outline-offset: 0;
  -moz-outline-style: none;
}

/*!
 *  Common - Main SCSS module
 */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(0, 0, 0, 0.72);
}

body #wrapper {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: rgba(0, 0, 0, 0.72);
}

h1 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 60px;
  line-height: 82px;
  font-weight: 300;
  letter-spacing: -0.5px;
  text-decoration: inherit;
  text-transform: inherit;
}

h2 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 48px;
  line-height: 64px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
}

h3 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 40px;
  line-height: 53px;
  font-weight: 500;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
}

h4 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 34px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
}

h5 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
}

h6 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
}

p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
}

p.default-text {
  padding: 15px 30px;
}

sup,
sub {
  font-size: 75%;
}

sup {
  top: auto;
  vertical-align: super;
}

sub {
  bottom: auto;
  vertical-align: sub;
}

[id]:target {
  margin-top: -97px !important;
  padding-top: 97px !important;
}

/*!
 *  Common - Buttons SCSS module
 */
/*!
 *  Common - Ziuziu-effect (background changing gradually) for CTA links.
 */
/**
 * Colors
 */
/**
 * Typography
 */
/**
 * HTML tags variables
 */
/**
 * Colors
 */
/**
 * Typography
 */
/**
 * HTML tags variables
 */
.field-slide-link a,
.field-teaserlink a, div > span.field-slide-call-to-action, div > span.field-mobile-slide-call-to-action {
  position: relative;
  padding: 0 0 0 43px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  color: #1562AD;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.field-slide-link a:before,
.field-teaserlink a:before, div > span.field-slide-call-to-action:before, div > span.field-mobile-slide-call-to-action:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  position: absolute;
  top: -9px;
  bottom: 31px;
  left: 0;
  width: 30px;
  height: 30px;
  padding: 0 0 0 4px;
  border-radius: 50%;
  background: #1562AD;
  font-size: 12px;
  line-height: 30px;
  color: #FFF;
  text-align: center;
  font-weight: normal;
}

.field-slide-link,
.field-teaserlink {
  margin: 12px 0 0 0;
}

@media only screen and (min-width: 600px) {
  .field-slide-link,
  .field-teaserlink {
    margin: 16px 0 0 0;
  }
}

@media only screen and (min-width: 1080px) {
  .field-slide-link,
  .field-teaserlink {
    margin: 32px 0 0 0;
  }
}

div > span.field-slide-call-to-action, div > span.field-mobile-slide-call-to-action {
  display: block;
  margin: 20px 0 0 0;
}

div > span.field-slide-call-to-action:before, div > span.field-mobile-slide-call-to-action:before {
  top: -2px;
}

@media only screen and (min-width: 600px) {
  div > span.field-slide-call-to-action, div > span.field-mobile-slide-call-to-action {
    margin: 8px 0 0 0;
  }
}

@media only screen and (min-width: 1080px) {
  div > span.field-slide-call-to-action, div > span.field-mobile-slide-call-to-action {
    margin: 16px 0 0 0;
  }
}

div > span.field-slide-call-to-action {
  display: none;
}

@media only screen and (min-width: 1080px) {
  div > span.field-slide-call-to-action {
    display: block;
  }
}

@media only screen and (min-width: 1080px) {
  div > span.field-mobile-slide-call-to-action {
    display: none;
  }
}

/*!
 *  Common - White gradient SCSS module
 */
.white-gradient-cover:before, .component.second-level-header:not(.second-level-header--text) .component-content .field-mainimage:before {
  width: 100%;
  height: 40%;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  content: " ";
}

.white-gradient-cover-l:before {
  height: 75%;
}

.white-gradient-cover:before, .component.second-level-header:not(.second-level-header--text) .component-content .field-mainimage:before {
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

/*!
 *  Components - Fade effect SCSS module
 *  component-fade-effect
 */
.enable-fade-effect .section-heading, .enable-fade-effect
.story-teaser, .enable-fade-effect
.story-teaser .section-description, .enable-fade-effect
.story-teaser .field-teaserimage, .enable-fade-effect
.link-list, .enable-fade-effect
.featured-content.featured-tile, .enable-fade-effect
.featured-products, .enable-fade-effect
.message-map, .enable-fade-effect
.topic-slider, .enable-fade-effect
.topic-slider .topicslider-leftside-titles, .enable-fade-effect
.topic-slider .topicslider-images, .enable-fade-effect
.topic-slider .topicslider-descriptions {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
}

body.enable-fade-effect .section-heading, body.enable-fade-effect
.story-teaser, body.enable-fade-effect
.story-teaser .section-description, body.enable-fade-effect
.story-teaser .field-teaserimage, body.enable-fade-effect
.link-list, body.enable-fade-effect
.featured-content.featured-tile, body.enable-fade-effect
.featured-products, body.enable-fade-effect
.message-map, body.enable-fade-effect
.topic-slider, body.enable-fade-effect
.topic-slider .topicslider-leftside-titles, body.enable-fade-effect
.topic-slider .topicslider-images, body.enable-fade-effect
.topic-slider .topicslider-descriptions {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}

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

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

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

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

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

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

.animated.delay-quick {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.animated.delay-long {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.animated.delay-halfSecond {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

/*!
 *  badge component scss
 */
.live {
  border-radius: 8px;
  background: #E0003C;
  padding: 5px 8px;
  color: #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.live::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  font-size: 24px;
}

.live::after {
  content: attr(data-live);
  padding-left: 4px;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  vertical-align: top;
}

.sc-button {
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.sc-button button,
.sc-button input,
.sc-button a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: auto;
  font-weight: 700;
  letter-spacing: 1.25px;
  text-decoration: inherit;
  text-transform: uppercase;
  min-width: 64px;
  line-height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 12px;
  border-radius: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  vertical-align: middle;
  min-height: 40px;
  -webkit-transition: background .2s;
  transition: background .2s;
}

@media only screen and (min-width: 1080px) {
  .sc-button button,
  .sc-button input,
  .sc-button a {
    padding: 16px;
    min-height: 48px;
  }
}

.sc-button--text-btn button,
.sc-button--text-btn input,
.sc-button--text-btn a {
  color: #1562AD;
  border: 1px solid transparent;
}

.sc-button--text-btn button:hover,
.sc-button--text-btn input:hover,
.sc-button--text-btn a:hover {
  background: rgba(204, 224, 244, 0.25);
}

.sc-button--text-btn button:focus,
.sc-button--text-btn input:focus,
.sc-button--text-btn a:focus {
  background: rgba(204, 224, 244, 0.5);
}

.sc-button--text-btn button[disabled],
.sc-button--text-btn input[disabled],
.sc-button--text-btn a[disabled] {
  color: #BCBCBB;
  cursor: default;
  pointer-events: none;
}

.sc-button--text-btn button[disabled]:hover,
.sc-button--text-btn input[disabled]:hover,
.sc-button--text-btn a[disabled]:hover {
  background: none;
}

.sc-button--text-btn.ripple:after {
  background-image: -webkit-radial-gradient(circle, #1562AD 10%, transparent 10%);
  background-image: radial-gradient(circle, #1562AD 10%, transparent 10%);
}

.sc-button--outlined button,
.sc-button--outlined input,
.sc-button--outlined a {
  color: #1562AD;
  border: 1px solid #1562AD;
}

.sc-button--outlined button:hover,
.sc-button--outlined input:hover,
.sc-button--outlined a:hover {
  background: rgba(204, 224, 244, 0.25);
}

.sc-button--outlined button:focus,
.sc-button--outlined input:focus,
.sc-button--outlined a:focus {
  background: rgba(204, 224, 244, 0.5);
}

.sc-button--outlined button:disabled,
.sc-button--outlined input:disabled,
.sc-button--outlined a:disabled {
  color: #BCBCBB;
  cursor: default;
  border-color: #BCBCBB;
}

.sc-button--outlined button:disabled:hover,
.sc-button--outlined input:disabled:hover,
.sc-button--outlined a:disabled:hover {
  background: none;
}

.sc-button--outlined.ripple:after {
  background-image: -webkit-radial-gradient(circle, #1562AD 10%, transparent 10%);
  background-image: radial-gradient(circle, #1562AD 10%, transparent 10%);
}

.sc-button--contained button,
.sc-button--contained input,
.sc-button--contained a {
  color: #FFF;
  background: #1562AD;
  border: none;
}

.sc-button--contained button:hover,
.sc-button--contained input:hover,
.sc-button--contained a:hover {
  color: #FFF;
  background: #1B3067;
}

.sc-button--contained button:focus,
.sc-button--contained input:focus,
.sc-button--contained a:focus {
  color: #FFF;
  background: #87A6D5;
}

.sc-button--contained button:disabled,
.sc-button--contained input:disabled,
.sc-button--contained a:disabled {
  color: #BCBCBB;
  background: #F3F3F3;
  cursor: default;
}

.sc-button--contained.ripple:after {
  background-image: -webkit-radial-gradient(circle, #1B3067 10%, transparent 10%);
  background-image: radial-gradient(circle, #1B3067 10%, transparent 10%);
}

.sc-button-with-icon--contained {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #1562AD;
  color: #FFF;
}

.sc-button-with-icon--contained:hover {
  color: #FFF;
  background: #1B3067;
}

.sc-button-with-icon--contained:focus {
  color: #FFF;
  background: #87A6D5;
}

.sc-button-with-icon--contained:disabled {
  color: #BCBCBB;
  background: #F3F3F3;
  cursor: default;
}

.sc-button-with-icon--contained span[class^='icon'] {
  font-size: 0.00001rem;
  padding-left: 12px;
}

.sc-button-with-icon--contained span[class^='icon']::before {
  font-size: 24px;
  vertical-align: middle;
}

@media only screen and (min-width: 1080px) {
  .sc-button-with-icon--contained span[class^='icon'] {
    padding-left: 16px;
  }
}

.sc-button-with-icon--contained span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.sc-button-with-icon--contained a {
  padding: 0 12px 0 8px;
  color: currentColor;
}

@media only screen and (min-width: 1080px) {
  .sc-button-with-icon--contained a {
    padding-right: 16px;
  }
}

.sc-button-with-icon--contained.ripple:after {
  background-image: -webkit-radial-gradient(circle, #1B3067 10%, transparent 10%);
  background-image: radial-gradient(circle, #1B3067 10%, transparent 10%);
}

.sc-button--disabled:after {
  content: none !important;
}

.sc-button--icon.icon-left button,
.sc-button--icon.icon-left a {
  padding: 7px 16px 7px 12px;
}

@media only screen and (min-width: 1080px) {
  .sc-button--icon.icon-left button,
  .sc-button--icon.icon-left a {
    padding: 11px 16px 11px 12px;
  }
}

.sc-button--icon.icon-right button,
.sc-button--icon.icon-right a {
  padding: 7px 12px 7px 16px;
}

@media only screen and (min-width: 1080px) {
  .sc-button--icon.icon-right button,
  .sc-button--icon.icon-right a {
    padding: 11px 12px 11px 16px;
  }
}

.sc-button--icon button [class^='icon-'],
.sc-button--icon button [class*=' icon-'],
.sc-button--icon a [class^='icon-'],
.sc-button--icon a [class*=' icon-'] {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.sc-button--icon.icon-left [class^='icon-'],
.sc-button--icon.icon-left [class*=' icon-'] {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  margin-right: 8px;
}

.sc-button--icon.icon-right [class^='icon-'],
.sc-button--icon.icon-right [class*=' icon-'] {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-left: 8px;
}

.ripple {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
  -ms-transform: scale(10, 10);
  transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .2s;
  transition: opacity 1s, -webkit-transform .2s;
  transition: transform .2s, opacity 1s;
  transition: transform .2s, opacity 1s, -webkit-transform .2s;
}

.ripple:active:after {
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}

/*!
 *  Component which provide styles for navigation and pagination for components featured-content and featured-products
 *  component-slick-slider-navigation
 */
.featured-products .slick-track,
.featured-content .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.featured-products .slick-navigation-wrap,
.featured-content .slick-navigation-wrap {
  text-align: center;
}

.featured-products .slick-navigation-wrap .slick-navigation,
.featured-content .slick-navigation-wrap .slick-navigation {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0 70px;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-arrow,
.featured-content .slick-navigation-wrap .slick-navigation .slick-arrow {
  position: absolute;
  top: 24px;
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #dadada;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-arrow:hover,
.featured-content .slick-navigation-wrap .slick-navigation .slick-arrow:hover {
  border-color: silver;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-arrow:before,
.featured-content .slick-navigation-wrap .slick-navigation .slick-arrow:before {
  position: absolute;
  top: 13px;
  font-size: 12px;
  font-weight: 100;
  color: rgba(0, 0, 0, 0.72);
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-arrow.slick-prev,
.featured-content .slick-navigation-wrap .slick-navigation .slick-arrow.slick-prev {
  left: 0;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-arrow.slick-prev:before,
.featured-content .slick-navigation-wrap .slick-navigation .slick-arrow.slick-prev:before {
  left: 15px;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-arrow.slick-next,
.featured-content .slick-navigation-wrap .slick-navigation .slick-arrow.slick-next {
  right: 0;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-arrow.slick-next:before,
.featured-content .slick-navigation-wrap .slick-navigation .slick-arrow.slick-next:before {
  right: 15px;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-dots,
.featured-content .slick-navigation-wrap .slick-navigation .slick-dots {
  display: inline-block;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-dots li,
.featured-content .slick-navigation-wrap .slick-navigation .slick-dots li {
  display: inline-block;
  padding: 40px 0 0 0;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-dots li:only-child,
.featured-content .slick-navigation-wrap .slick-navigation .slick-dots li:only-child {
  display: none;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-dots li > button,
.featured-content .slick-navigation-wrap .slick-navigation .slick-dots li > button {
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: 0;
  margin: 0;
  cursor: pointer;
  color: #BCBCBB;
  font-size: 16px;
  line-height: 16px;
  padding: 10px 8px 7px 8px;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

@media only screen and (min-width: 1284px) {
  .featured-products .slick-navigation-wrap .slick-navigation .slick-dots li > button,
  .featured-content .slick-navigation-wrap .slick-navigation .slick-dots li > button {
    font-size: 17px;
    line-height: 17px;
  }
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-dots li > button:before,
.featured-content .slick-navigation-wrap .slick-navigation .slick-dots li > button:before {
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -1px;
  content: '';
  display: none;
  width: 2px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0.72);
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-dots li > button:hover,
.featured-content .slick-navigation-wrap .slick-navigation .slick-dots li > button:hover {
  color: rgba(0, 0, 0, 0.72);
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-dots li.slick-active > button,
.featured-content .slick-navigation-wrap .slick-navigation .slick-dots li.slick-active > button {
  color: rgba(0, 0, 0, 0.72);
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
}

.featured-products .slick-navigation-wrap .slick-navigation .slick-dots li.slick-active > button:before,
.featured-content .slick-navigation-wrap .slick-navigation .slick-dots li.slick-active > button:before {
  display: block;
}

.featured-image-category-title .slick-navigation-wrap,
.featured-webinar .slick-navigation-wrap,
.featured-session .slick-navigation-wrap {
  text-align: center;
}

.featured-image-category-title .slick-list,
.featured-webinar .slick-list,
.featured-session .slick-list {
  width: 100%;
}

.featured-image-category-title .slick-arrow,
.featured-webinar .slick-arrow,
.featured-session .slick-arrow {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: 48px;
  width: 48px;
  position: absolute;
  background-color: #FFF;
  opacity: 0.8;
  -webkit-box-shadow: 0px 0px 8px rgba(8, 35, 48, 0.24);
  box-shadow: 0px 0px 8px rgba(8, 35, 48, 0.24);
  border-color: unset;
  top: 40%;
}

@media only screen and (min-width: 1284px) {
  .featured-image-category-title .slick-arrow,
  .featured-webinar .slick-arrow,
  .featured-session .slick-arrow {
    top: 35%;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .slick-arrow,
  .featured-webinar .slick-arrow,
  .featured-session .slick-arrow {
    top: 40%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: auto;
    background-color: unset;
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: unset;
    color: #1562AD;
    font-size: 36px;
  }
}

.featured-image-category-title .slick-arrow:before,
.featured-webinar .slick-arrow:before,
.featured-session .slick-arrow:before {
  padding-top: 18px;
  padding-left: 20px;
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .slick-arrow:before,
  .featured-webinar .slick-arrow:before,
  .featured-session .slick-arrow:before {
    padding: 0;
  }
}

.featured-image-category-title .slick-arrow.arrow-mobile-hidden,
.featured-webinar .slick-arrow.arrow-mobile-hidden,
.featured-session .slick-arrow.arrow-mobile-hidden {
  visibility: hidden;
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .slick-arrow.arrow-mobile-hidden,
  .featured-webinar .slick-arrow.arrow-mobile-hidden,
  .featured-session .slick-arrow.arrow-mobile-hidden {
    visibility: visible;
  }
}

.featured-image-category-title .slick-arrow.slick-disabled,
.featured-webinar .slick-arrow.slick-disabled,
.featured-session .slick-arrow.slick-disabled {
  visibility: hidden;
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .slick-arrow.slick-disabled,
  .featured-webinar .slick-arrow.slick-disabled,
  .featured-session .slick-arrow.slick-disabled {
    visibility: visible;
    color: #F3F3F3;
  }
}

.featured-image-category-title .slick-arrow.slick-prev,
.featured-webinar .slick-arrow.slick-prev,
.featured-session .slick-arrow.slick-prev {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 1;
}

@media only screen and (min-width: 1284px) {
  .featured-image-category-title .slick-arrow.slick-prev,
  .featured-webinar .slick-arrow.slick-prev,
  .featured-session .slick-arrow.slick-prev {
    border-radius: 8px;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .slick-arrow.slick-prev,
  .featured-webinar .slick-arrow.slick-prev,
  .featured-session .slick-arrow.slick-prev {
    right: 100%;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .slick-arrow.slick-prev:before,
  .featured-webinar .slick-arrow.slick-prev:before,
  .featured-session .slick-arrow.slick-prev:before {
    margin-right: 40px;
  }
}

.featured-image-category-title .slick-arrow.slick-next,
.featured-webinar .slick-arrow.slick-next,
.featured-session .slick-arrow.slick-next {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  right: -12px;
}

@media only screen and (min-width: 1284px) {
  .featured-image-category-title .slick-arrow.slick-next,
  .featured-webinar .slick-arrow.slick-next,
  .featured-session .slick-arrow.slick-next {
    border-radius: 8px;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .slick-arrow.slick-next,
  .featured-webinar .slick-arrow.slick-next,
  .featured-session .slick-arrow.slick-next {
    left: 100%;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .slick-arrow.slick-next:before,
  .featured-webinar .slick-arrow.slick-next:before,
  .featured-session .slick-arrow.slick-next:before {
    margin-left: 40px;
  }
}

.featured-image-category-title .slick-dots,
.featured-webinar .slick-dots,
.featured-session .slick-dots {
  display: inline-block;
}

.featured-image-category-title .slick-dots li,
.featured-webinar .slick-dots li,
.featured-session .slick-dots li {
  display: inline-block;
  padding: 40px 0 0 0;
}

.featured-image-category-title .slick-dots li:only-child,
.featured-webinar .slick-dots li:only-child,
.featured-session .slick-dots li:only-child {
  display: none;
}

.featured-image-category-title .slick-dots li > button,
.featured-webinar .slick-dots li > button,
.featured-session .slick-dots li > button {
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: 0;
  margin: 0;
  cursor: pointer;
  color: #BCBCBB;
  font-size: 16px;
  line-height: 16px;
  padding: 10px 8px 7px 8px;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

@media only screen and (min-width: 1284px) {
  .featured-image-category-title .slick-dots li > button,
  .featured-webinar .slick-dots li > button,
  .featured-session .slick-dots li > button {
    font-size: 17px;
    line-height: 17px;
  }
}

.featured-image-category-title .slick-dots li > button:before,
.featured-webinar .slick-dots li > button:before,
.featured-session .slick-dots li > button:before {
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -1px;
  content: '';
  display: none;
  width: 2px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0.72);
}

.featured-image-category-title .slick-dots li > button:hover,
.featured-webinar .slick-dots li > button:hover,
.featured-session .slick-dots li > button:hover {
  color: rgba(0, 0, 0, 0.72);
}

.featured-image-category-title .slick-dots li.slick-active > button,
.featured-webinar .slick-dots li.slick-active > button,
.featured-session .slick-dots li.slick-active > button {
  color: rgba(0, 0, 0, 0.72);
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
}

.featured-image-category-title .slick-dots li.slick-active > button:before,
.featured-webinar .slick-dots li.slick-active > button:before,
.featured-session .slick-dots li.slick-active > button:before {
  display: block;
}

.use-dots .slick-navigation-wrap .slick-navigation .slick-arrow {
  top: 8px;
}

@media only screen and (min-width: 600px) {
  .use-dots .slick-navigation-wrap .slick-navigation .slick-arrow {
    top: 40px;
  }
}

.use-dots .slick-navigation-wrap .slick-navigation .slick-dots li {
  padding-top: 16px;
}

@media only screen and (min-width: 600px) {
  .use-dots .slick-navigation-wrap .slick-navigation .slick-dots li {
    padding-top: 48px;
  }
}

.use-dots .slick-navigation-wrap .slick-navigation .slick-dots li > button {
  display: block;
  width: 20px;
  height: 24px;
  padding: 0 6px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.use-dots .slick-navigation-wrap .slick-navigation .slick-dots li > button:before {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  line-height: 24px;
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 20px;
  background-color: #BCBCBB;
}

.use-dots .slick-navigation-wrap .slick-navigation .slick-dots li.slick-active button:before {
  background-color: rgba(0, 0, 0, 0.72);
}

/*!
 *  Components - Link list SCSS module
 *  component-link-list
 */
/*!
 *  Common - Ziuziu-effect (background changing gradually) for CTA links.
 */
/**
 * Colors
 */
/**
 * Typography
 */
/**
 * HTML tags variables
 */
.link-list.link-list-with-icons {
  margin: 0 0 72px 0;
}

.link-list.link-list-with-icons .component-content > ul {
  margin: 0;
  width: auto;
  display: block;
}

.link-list.link-list-with-icons .component-content > ul::after {
  content: '';
  display: table;
  clear: both;
}

@media only screen and (min-width: 600px) {
  .link-list.link-list-with-icons .component-content > ul {
    margin: 0;
  }
}

@media only screen and (min-width: 1080px) {
  .link-list.link-list-with-icons .component-content > ul {
    margin: 0 -12px;
  }
}

.link-list.link-list-with-icons .component-content > ul > li {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  border-bottom: 1px #BCBCBB solid;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.link-list.link-list-with-icons .component-content > ul > li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #1562AD;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.link-list.link-list-with-icons .component-content > ul > li:hover {
  color: #1562AD;
}

.link-list.link-list-with-icons .component-content > ul > li:hover:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.link-list.link-list-with-icons .component-content > ul > li:disabled {
  color: inherit;
}

.link-list.link-list-with-icons .component-content > ul > li:disabled:before {
  display: none;
}

@media only screen and (min-width: 600px) {
  .link-list.link-list-with-icons .component-content > ul > li {
    margin: 0 12px 0 0;
    width: -webkit-calc(50% - 12px);
    width: calc(50% - 12px);
    float: left;
  }
  .link-list.link-list-with-icons .component-content > ul > li:nth-child(even) {
    float: right;
    margin: 0 0 0 12px;
  }
}

@media only screen and (min-width: 1080px) {
  .link-list.link-list-with-icons .component-content > ul > li, .link-list.link-list-with-icons .component-content > ul > li:nth-child(even) {
    margin: 0 12px;
    width: -webkit-calc((100% / 3.0001) - 24px);
    width: calc((100% / 3.0001) - 24px);
    float: left;
  }
}

.link-list.link-list-with-icons .component-content > ul > li > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  font-size: 0;
  line-height: 0;
  z-index: 1;
}

.link-list.link-list-with-icons .component-content > ul > li > span:before {
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 56px;
  line-height: 1;
  width: auto;
  color: #1043AA;
  -webkit-transition: color .2s ease-in;
  transition: color .2s ease-in;
}

.link-list.link-list-with-icons .component-content > ul > li > span.icon-link-download::before {
  left: 28px;
}

.link-list.link-list-with-icons .component-content > ul > li > span.icon-support:before {
  font-size: 48px;
}

.link-list.link-list-with-icons .component-content > ul > li > span.icon-website:before {
  font-size: 41px;
}

.link-list.link-list-with-icons .component-content > ul > li > span.icon-tools:before {
  left: 25px;
}

.link-list.link-list-with-icons .component-content > ul > li > .field-link-location {
  position: relative;
  z-index: 2;
}

.link-list.link-list-with-icons .component-content > ul > li > .field-link-location > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  min-height: 120px;
  padding: 0 30px 0 105px;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-transition: color .2s ease-in, -webkit-transform .2s ease-in;
  transition: color .2s ease-in, -webkit-transform .2s ease-in;
  transition: color .2s ease-in, transform .2s ease-in;
  transition: color .2s ease-in, transform .2s ease-in, -webkit-transform .2s ease-in;
  width: -webkit-calc(100% + 10px);
  width: calc(100% + 10px);
}

@media only screen and (min-width: 600px) {
  .link-list.link-list-with-icons .component-content > ul > li > .field-link-location > a {
    min-height: 108px;
  }
}

.link-list.link-list-with-icons .component-content > ul > li > .field-link-location > a:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #FFF;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in;
  opacity: 0;
}

.link-list.link-list-with-icons .component-content > ul > li:hover > span:before {
  color: #FFF;
}

.link-list.link-list-with-icons .component-content > ul > li:hover > .field-link-location > a {
  color: #FFF;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.link-list.link-list-with-icons .component-content > ul > li:hover > .field-link-location > a:after {
  opacity: 1;
}

/*!
 *  Components - Second level header SCSS module
 *  component-second-level-header
 */
.component.second-level-header {
  position: relative;
  height: 440px;
  margin-bottom: 64px;
}

@media only screen and (min-width: 360px) and (max-width: 599px) {
  .component.second-level-header {
    height: 320px;
  }
}

.component.second-level-header .component-content {
  height: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (min-width: 600px) {
  .component.second-level-header .component-content {
    width: 670px;
  }
}

@media only screen and (min-width: 1080px) {
  .component.second-level-header .component-content {
    width: 996px;
  }
}

@media only screen and (min-width: 1284px) {
  .component.second-level-header .component-content {
    width: 1280px;
  }
}

.component.second-level-header .component-content .field-mainimage {
  background-color: transparent;
  height: 100%;
}

.component.second-level-header .component-content .field-mainimage.image-background img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.component.second-level-header .component-content .field-title-wrapper {
  position: absolute;
  width: 100%;
  top: 192px;
  z-index: 2;
  margin: 0 auto;
}

@media only screen and (min-width: 360px) and (max-width: 599px) {
  .component.second-level-header .component-content .field-title-wrapper {
    text-align: center;
    top: 140px;
  }
}

.component.second-level-header .component-content .field-title-wrapper .field-title {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-style: normal;
  font-size: 48px;
  line-height: 56px;
  padding-bottom: 20px;
  color: #1043AA;
  padding-left: 0;
}

@media only screen and (min-width: 360px) and (max-width: 599px) {
  .component.second-level-header .component-content .field-title-wrapper .field-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.component.second-level-header + .search-box {
  width: 100%;
  position: absolute;
  top: 37%;
  z-index: 1;
}

.component.second-level-header + .search-box .component-content .search-box-wrapper {
  padding: 20px;
}

.component.second-level-header--text {
  height: auto;
}

.component.second-level-header--text .component-content .field-mainimage {
  background: #1043AA;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.component.second-level-header--text .component-content .field-mainimage::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(27, 48, 103, 0.8);
  content: '';
}

.component.second-level-header--text .component-content .field-title-wrapper {
  position: relative;
  top: 0;
  text-align: center;
}

.component.second-level-header--text .component-content .field-title-wrapper .field-title {
  padding: 36px 0;
  font-size: 36px;
  line-height: 48px;
  color: #FFF !important;
}

@media only screen and (min-width: 360px) and (max-width: 599px) {
  .component.second-level-header--text .component-content .field-title-wrapper .field-title {
    padding: 16px 0;
    font-size: 20px;
    line-height: 24px;
  }
}

.white-text .component.second-level-header .component-content .field-title-wrapper .field-title {
  color: #FFF;
}

/*!
 *  Components - Section heading SCSS module
 *  component-section-heading
 */
.section-heading {
  margin: 0 0 24px 0;
}

.section-heading h3 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 34px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  margin: 0;
}

@media only screen and (min-width: 600px) {
  .section-heading h3 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    line-height: 53px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.section-heading h3 .field-heading {
  display: inline;
  font-weight: 500;
}

.section-heading h3 span,
.section-heading h3 .field-subheading {
  display: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: 300;
  text-align: inherit;
}

@media only screen and (min-width: 600px) {
  .section-heading h3 span,
  .section-heading h3 .field-subheading {
    display: inline;
    font-size: inherit;
  }
}

.section-heading h6 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: inherit;
  text-transform: inherit;
  margin: 0 0 -8px;
}

@media only screen and (min-width: 1080px) {
  .section-heading h6 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
    margin: 0;
  }
}

.section-heading h6 .field-heading,
.section-heading h6 .field-subheading,
.section-heading h6 span {
  display: inline;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
  font-weight: inherit;
}

/*!
 *  Components - Story teaser SCSS module
 *  component-story-teaser
 */
.story-teaser {
  margin: 0 0 72px 0;
}

.story-teaser .av-container {
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.story-teaser .av-container > .section-description {
  width: 100%;
}

.story-teaser .component-content {
  position: relative;
  z-index: 10;
  background: #f3f7fc;
}

@media only screen and (min-width: 600px) {
  .story-teaser .component-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.story-teaser.story-teaser-default .component-content:before, .story-teaser.story-teaser-default .component-content:after, .story-teaser.story-teaser-alternative .component-content:before, .story-teaser.story-teaser-alternative .component-content:after {
  z-index: 9;
  content: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f3f7fc;
}

@media only screen and (min-width: 600px) {
  .story-teaser.story-teaser-default .component-content:before, .story-teaser.story-teaser-default .component-content:after, .story-teaser.story-teaser-alternative .component-content:before, .story-teaser.story-teaser-alternative .component-content:after {
    content: '';
  }
}

.story-teaser.story-teaser-default .component-content:after {
  right: -100%;
}

.story-teaser.story-teaser-alternative .component-content:before {
  left: -100%;
}

.story-teaser .field-teaserimage {
  position: relative;
  z-index: 11;
  width: 100%;
}

.story-teaser .field-teaserimage img {
  display: block;
  background-size: cover;
  background-position: center;
  height: 358px;
  width: 100%;
}

@media only screen and (min-width: 1080px) {
  .story-teaser .field-teaserimage img {
    height: 520px;
  }
}

@media only screen and (min-width: 1284px) {
  .story-teaser .field-teaserimage img {
    height: 620px;
  }
}

.story-teaser .section-description {
  position: relative;
  z-index: 11;
  width: 100%;
  padding: 40px;
}

@media only screen and (min-width: 600px) {
  .story-teaser .section-description {
    width: 50%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

@media only screen and (min-width: 1284px) {
  .story-teaser .section-description {
    padding: 48px 90px;
  }
}

.story-teaser .section-description h3 {
  margin: 0 0 25px 0;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 34px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 1080px) {
  .story-teaser .section-description h3 {
    margin: 0 0 35px 0;
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    line-height: 53px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.story-teaser .section-description p.caption-medium {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  margin: 0 0 25px 0;
  color: rgba(0, 0, 0, 0.72);
}

.story-teaser .section-description p.qia-body1 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  margin: 0 0 25px 0;
  color: rgba(0, 0, 0, 0.72);
}

/*!
 *  Components - Topics slider SCSS module
 *  component-topics-slider
 */
.topic-slider {
  float: left;
  width: 100%;
  margin: 0 0 72px 0;
  opacity: 0;
}

.topic-slider.active {
  opacity: 1;
}

.topic-slider .topicslider-main-section {
  float: left;
  width: 100%;
  padding: 0 0 20px 0;
}

.topic-slider .topicslider-leftside-titles {
  display: inline-block;
  float: left;
  width: 100%;
  padding: 50px 0 0 0;
  background: #FFF;
}

@media only screen and (min-width: 600px) {
  .topic-slider .topicslider-leftside-titles {
    width: 41%;
    padding: 50px 20px 0 0;
  }
}

@media only screen and (min-width: 1080px) {
  .topic-slider .topicslider-leftside-titles {
    width: 45.3%;
    padding: 40px 60px 0 0;
  }
}

.topic-slider .topicslider-leftside-titles ul li {
  position: relative;
  width: 100%;
  margin: 0 0 10px 0;
}

.topic-slider .topicslider-leftside-titles ul li a {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  position: relative;
  display: block;
  width: 100%;
  padding: 13px 0 19px 0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  color: #BCBCBB;
  text-decoration: none;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.topic-slider .topicslider-leftside-titles ul li a:focus, .topic-slider .topicslider-leftside-titles ul li a:active {
  text-decoration: none;
}

@media only screen and (min-width: 600px) {
  .topic-slider .topicslider-leftside-titles ul li a {
    width: 80%;
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (min-width: 1080px) {
  .topic-slider .topicslider-leftside-titles ul li a {
    width: 71.5%;
    font-size: 22px;
    line-height: 30px;
  }
}

.topic-slider .topicslider-leftside-titles ul li div {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .topic-slider .topicslider-leftside-titles ul li div {
    width: 80%;
  }
}

@media only screen and (min-width: 1080px) {
  .topic-slider .topicslider-leftside-titles ul li div {
    width: 76%;
  }
}

.topic-slider .topicslider-leftside-titles ul li div:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #BCBCBB;
}

.topic-slider .topicslider-leftside-titles ul li div:after {
  content: none;
  position: absolute;
  border-radius: 50%;
  right: 0;
  bottom: -4px;
  width: 9px;
  height: 9px;
  background-color: #E0003C;
}

.topic-slider .topicslider-leftside-titles ul li:hover a, .topic-slider .topicslider-leftside-titles ul li.active a {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  color: #1043AA;
  text-decoration: none;
}

.topic-slider .topicslider-leftside-titles ul li:hover div, .topic-slider .topicslider-leftside-titles ul li.active div {
  width: 100%;
}

.topic-slider .topicslider-leftside-titles ul li:hover div:before, .topic-slider .topicslider-leftside-titles ul li.active div:before {
  background-color: #E0003C;
}

.topic-slider .topicslider-leftside-titles ul li:hover div:after, .topic-slider .topicslider-leftside-titles ul li.active div:after {
  content: '';
}

.topic-slider .topicslider-rightside {
  display: inline-block;
  float: left;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .topic-slider .topicslider-rightside {
    width: 55%;
  }
}

@media only screen and (min-width: 1080px) {
  .topic-slider .topicslider-rightside {
    width: 50%;
  }
}

.topic-slider .topicslider-images ul {
  position: relative;
  min-height: 430px;
}

@media only screen and (min-width: 600px) {
  .topic-slider .topicslider-images ul {
    min-height: 420px;
  }
}

@media only screen and (min-width: 1080px) {
  .topic-slider .topicslider-images ul {
    min-height: 430px;
  }
}

.topic-slider .topicslider-images ul li {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 94%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.topic-slider .topicslider-images ul li a {
  display: block;
}

.topic-slider .topicslider-images ul li a img {
  display: block;
  background-size: cover;
  background-position: center;
  height: 430px;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .topic-slider .topicslider-images ul li a img {
    height: 420px;
  }
}

@media only screen and (min-width: 1080px) {
  .topic-slider .topicslider-images ul li a img {
    height: 430px;
  }
}

.topic-slider .topicslider-images ul li + li {
  left: 5%;
  z-index: 900;
  -webkit-transform: scale3d(0.95, 0.95, 1);
  transform: scale3d(0.95, 0.95, 1);
}

.topic-slider .topicslider-images ul li + li + li {
  left: 10%;
  z-index: 800;
  -webkit-transform: scale3d(0.9, 0.9, 1);
  transform: scale3d(0.9, 0.9, 1);
}

.topic-slider .topicslider-descriptions {
  margin: 20px 0 0 0;
}

.topic-slider .topicslider-descriptions.visible-md {
  display: none !important;
}

@media only screen and (min-width: 1080px) {
  .topic-slider .topicslider-descriptions.visible-md {
    display: block !important;
  }
}

.topic-slider .topicslider-descriptions.hidden-md {
  display: block !important;
  float: left;
  width: 100%;
}

@media only screen and (min-width: 1080px) {
  .topic-slider .topicslider-descriptions.hidden-md {
    display: none !important;
  }
}

.topic-slider .topicslider-descriptions ul {
  display: block;
}

.topic-slider .topicslider-descriptions ul li {
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  text-align: left;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 600px) {
  .topic-slider .topicslider-descriptions ul li {
    padding: 5px 120px 5px 15px;
    border-left: 1px solid #BCBCBB;
  }
}

/*!
 *  Components - Featured products SCSS module
 *  component-featured-products
 */
.featured-products {
  margin: 0 0 72px 0;
}

.featured-products-web-component {
  margin: 0 0 72px 0;
}

.featured-products .items {
  display: none;
  margin: 0 -8px;
}

@media only screen and (min-width: 600px) {
  .featured-products .items {
    margin-right: -12px;
    margin-left: -12px;
  }
}

.featured-products .items.slick-initialized {
  display: block;
}

.featured-products .item {
  position: relative;
  height: auto;
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.72);
  padding: 0 0 90px 0;
  background-color: rgba(243, 243, 243, 0.5);
}

@media only screen and (min-width: 600px) {
  .featured-products .item {
    margin-right: 12px;
    margin-left: 12px;
  }
}

.featured-products .item .field-productcategory {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  padding: 20px 20px 0 20px;
}

.featured-products .item .field-productimage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 60px 20px 20px 20px;
}

.featured-products .item .field-productimage img {
  display: block;
  width: auto;
  max-height: 243px;
}

@media only screen and (min-width: 600px) {
  .featured-products .item .field-productimage img {
    max-height: 155px;
  }
}

@media only screen and (min-width: 1284px) {
  .featured-products .item .field-productimage img {
    max-height: 200px;
  }
}

.featured-products .item .field-productname {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  padding: 0 20px;
  margin: 0 0 20px 0;
}

@media only screen and (min-width: 600px) {
  .featured-products .item .field-productname {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1284px) {
  .featured-products .item .field-productname {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.featured-products .item .field-productdescription {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  padding: 0 20px;
}

@media only screen and (min-width: 600px) {
  .featured-products .item .field-productdescription {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.featured-products .item .sc-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media only screen and (min-width: 1284px) {
  .featured-products .item .sc-button {
    right: auto;
    left: 20px;
  }
}

.privacy-warning {
  display: none;
  padding: 15px 16px 20px;
  position: fixed;
  top: 0;
  z-index: 10002;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.72);
  text-align: center;
  color: #FFF;
}

@media only screen and (min-width: 600px) {
  .privacy-warning {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 15px 16px;
  }
}

@media only screen and (min-width: 1080px) {
  .privacy-warning {
    padding: 15px 24px;
  }
}

.privacy-warning.not-accepted {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.privacy-warning .info {
  display: inline-block;
  margin-bottom: 20px;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 600px) {
  .privacy-warning .info {
    margin-right: 20px;
    margin-bottom: 0;
  }
}

.privacy-warning .close {
  position: absolute;
  display: none;
  float: none;
}

.privacy-warning .submit {
  display: inline-block;
}

.privacy-warning .submit a {
  display: inline;
  padding: 10px 20px 6px;
  border-radius: 4px;
  cursor: pointer;
  background: #F3F3F3;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 600px) {
  .privacy-warning .submit a {
    display: block;
  }
}

.component.hero-image {
  padding: 0;
}

.component.hero-image .component-content {
  width: 100vw;
  height: 53.33vh;
  position: relative;
}

.component.hero-image .field-image img {
  display: block;
  width: 100vw;
  height: 53.33vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center;';
}

.component.hero-image .field-image svg {
  position: absolute;
  top: 0;
  overflow: visible;
}

.component.hero-image .field-slide-video {
  display: none;
  width: 100vw;
  position: absolute;
  top: 0;
}

@media only screen and (min-width: 1080px) {
  .component.hero-image .field-slide-video {
    display: block;
  }
}

.component.hero-image .field-slide-video video {
  display: block;
  width: 100vw;
  height: 53.33vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.component.hero-image .slide-text-box {
  position: absolute;
  left: -16px;
  bottom: 40px;
  max-width: 100%;
  padding: 16px;
  overflow: hidden;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media only screen and (min-width: 600px) {
  .component.hero-image .slide-text-box {
    left: -20px;
    max-width: 80%;
  }
}

@media only screen and (min-width: 1080px) {
  .component.hero-image .slide-text-box {
    left: -42px;
    max-width: 540px;
    padding: 24px 40px;
  }
}

@media only screen and (min-width: 1284px) {
  .component.hero-image .slide-text-box {
    left: -52px;
    bottom: 48px;
    max-width: 640px;
  }
}

.component.hero-image .slide-text-box [class^='icon-'],
.component.hero-image .slide-text-box [class*=' icon-'] {
  display: inline-block;
  position: absolute;
  font-size: 0;
  line-height: 0;
  color: rgba(0, 0, 0, 0.72);
}

.component.hero-image .slide-text-box [class^='icon-']::before,
.component.hero-image .slide-text-box [class*=' icon-']::before {
  font-size: 24px;
  line-height: 25px;
  font-weight: normal;
}

@media only screen and (min-width: 600px) {
  .component.hero-image .slide-text-box [class^='icon-']::before,
  .component.hero-image .slide-text-box [class*=' icon-']::before {
    font-size: 28px;
    line-height: 30px;
  }
}

.component.hero-image .slide-text-box .field-category {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 25px;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 600px) {
  .component.hero-image .slide-text-box .field-category {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.component.hero-image .slide-text-box [class^="icon-"] + .field-category {
  padding-left: 32px;
}

@media only screen and (min-width: 600px) {
  .component.hero-image .slide-text-box [class^="icon-"] + .field-category {
    padding-left: 40px;
  }
}

.component.hero-image .slide-text-box .field-rich-text-title {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  text-align: left;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 600px) {
  .component.hero-image .slide-text-box .field-rich-text-title {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 48px;
    line-height: 64px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.component.hero-image .slide-text-box .field-rich-text-title p,
.component.hero-image .slide-text-box .field-rich-text-title span {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

.component.hero-image .slide-text-box .field-rich-text-title strong {
  font-weight: bold;
}

.component.hero-image .slide-text-box .field-rich-text-title sub,
.component.hero-image .slide-text-box .field-rich-text-title sup {
  font-size: 0.6em;
}

.component.hero-image .slide-text-box.blue [class^='icon-'],
.component.hero-image .slide-text-box.blue [class*=' icon-'],
.component.hero-image .slide-text-box.blue .field-category,
.component.hero-image .slide-text-box.blue .field-rich-text-title {
  color: #1562AD;
}

/*!
 *  Components - Message map SCSS module
 *  component-message-map
 */
.message-map {
  margin: 0 0 72px 0;
  padding-right: 16px;
  padding-left: 16px;
}

@media only screen and (min-width: 1080px) {
  .message-map {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.message-map .message-map-main-section {
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 600px) {
  .message-map .message-map-main-section {
    padding: 25px 0 0 0;
    background: #F9F9F9;
  }
}

@media only screen and (min-width: 1080px) {
  .message-map .message-map-main-section {
    padding: 35px 0 0 0;
  }
}

.message-map .message-map-main-section:before, .message-map .message-map-main-section:after {
  z-index: 9;
  content: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #F9F9F9;
}

@media only screen and (min-width: 600px) {
  .message-map .message-map-main-section:before, .message-map .message-map-main-section:after {
    content: '';
  }
}

.message-map .message-map-main-section:after {
  right: -100%;
}

.message-map .message-map-main-section:before {
  left: -100%;
}

.message-map .slider-slide-message-map {
  width: 100%;
  margin: 0 0 24px 0;
}

@media only screen and (min-width: 600px) {
  .message-map .slider-slide-message-map {
    margin: 0;
  }
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-slide-message-map {
    margin: 0 0 25px 0;
  }
}

.message-map .slider-slide-message-map .slick-list {
  overflow: initial;
}

@media only screen and (min-width: 600px) {
  .message-map .slider-slide-message-map .slick-list {
    overflow: hidden;
  }
}

.message-map .slider-slide-message-map .slick-slide {
  position: relative;
  margin: 0 15px;
  background: #F9F9F9;
}

@media only screen and (min-width: 600px) {
  .message-map .slider-slide-message-map .slick-slide {
    background: none;
    margin-right: 0;
    margin-left: 0;
  }
}

.message-map .slider-slide-message-map .slick-slide > div > div + div {
  position: relative;
  margin-bottom: 25px;
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-slide-message-map .slick-slide > div > div + div {
    margin-bottom: 0;
  }
}

.message-map .slider-slide-message-map .slick-slide > div > div + div:before, .message-map .slider-slide-message-map .slick-slide > div > div + div:after {
  content: '';
  position: absolute;
  top: 0;
  width: 15px;
  z-index: 1;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#D8D8D8), to(#F9F9F9));
  background-image: -webkit-linear-gradient(#D8D8D8, #F9F9F9);
  background-image: linear-gradient(#D8D8D8, #F9F9F9);
}

@media only screen and (min-width: 600px) {
  .message-map .slider-slide-message-map .slick-slide > div > div + div:before, .message-map .slider-slide-message-map .slick-slide > div > div + div:after {
    content: none;
  }
}

.message-map .slider-slide-message-map .slick-slide > div > div + div:before {
  left: -15px;
}

.message-map .slider-slide-message-map .slick-slide > div > div + div:after {
  right: -15px;
}

.message-map .slider-slide-message-map .slick-slide:before, .message-map .slider-slide-message-map .slick-slide:after {
  content: '';
  position: absolute;
  top: 0;
  width: 15px;
  height: 100%;
  background-color: #F9F9F9;
}

@media only screen and (min-width: 600px) {
  .message-map .slider-slide-message-map .slick-slide:before, .message-map .slider-slide-message-map .slick-slide:after {
    content: none;
  }
}

.message-map .slider-slide-message-map .slick-slide:before {
  left: -30px;
}

.message-map .slider-slide-message-map .slick-slide:after {
  right: -30px;
}

.message-map .slider-slide-message-map .slick-slide > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-slide-message-map .slick-slide > .row {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.message-map .slider-slide-message-map h5 {
  margin: 0 15px 15px 15px;
}

@media only screen and (min-width: 600px) {
  .message-map .slider-slide-message-map h5 {
    margin: 0 0 20px 0;
  }
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-slide-message-map h5 {
    margin: 0 0 24px 0;
  }
}

.message-map .slider-slide-message-map h5,
.message-map .slider-slide-message-map h5 p {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-slide-message-map h5,
  .message-map .slider-slide-message-map h5 p {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.message-map .slider-slide-message-map .description {
  margin: 0 15px 24px 15px;
}

@media only screen and (min-width: 600px) {
  .message-map .slider-slide-message-map .description {
    margin: 0 0 24px 0;
  }
}

.message-map .slider-slide-message-map .description,
.message-map .slider-slide-message-map .description p {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

.message-map .slider-slide-message-map .sc-button {
  margin: 0 15px 15px 15px;
}

@media only screen and (min-width: 600px) {
  .message-map .slider-slide-message-map .sc-button {
    margin: 0 0 35px 0;
  }
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-slide-message-map .sc-button {
    margin: 0 0 24px 0;
  }
}

.message-map .slider-slide-message-map img {
  margin: 0 auto 0 auto;
  height: auto;
  max-width: 100%;
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-slide-message-map img {
    margin: 0;
  }
}

.message-map .slider-nav-message-map {
  width: 100%;
  display: none;
}

@media only screen and (min-width: 600px) {
  .message-map .slider-nav-message-map {
    display: block;
  }
}

.message-map .slider-nav-message-map .slick-list {
  margin: 0 -20px;
}

.message-map .slider-nav-message-map .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.message-map .slider-nav-message-map .slick-slide {
  margin: 0 20px;
  height: auto;
  cursor: pointer;
  padding: 0 0 15px 0;
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-nav-message-map .slick-slide {
    padding: 0 0 24px 0;
  }
}

.message-map .slider-nav-message-map .slick-slide.slick-current.slick-active {
  padding: 0 0 11px 0;
  border-bottom: 4px solid #1562AD;
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-nav-message-map .slick-slide.slick-current.slick-active {
    padding: 0 0 20px 0;
  }
}

.message-map .slider-nav-message-map .slick-slide.slick-current.slick-active h6 {
  color: rgba(0, 0, 0, 0.72);
}

.message-map .slider-nav-message-map .slick-slide.slick-current.slick-active img {
  opacity: 1;
}

.message-map .slider-nav-message-map img {
  display: none;
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-nav-message-map img {
    display: block;
    margin: 0 0 20px 0;
    max-width: 100%;
    height: auto;
    opacity: 0.5;
  }
}

.message-map .slider-nav-message-map h6,
.message-map .slider-nav-message-map h6 p {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  color: #BCBCBB;
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-nav-message-map h6,
  .message-map .slider-nav-message-map h6 p {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.message-map .slider-nav-message-map .video-thumbnail {
  position: relative;
}

.message-map .slider-nav-message-map .video-thumbnail:before {
  display: none;
}

@media only screen and (min-width: 1080px) {
  .message-map .slider-nav-message-map .video-thumbnail:before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-image: url("https://video.qiagen.com/files/26783992/bigplaysource-frimay04201815:51:06gmt0200cest.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
  }
}

.message-map .slick-navigation,
.message-map .slick-navigation-wrap {
  position: static;
}

.message-map .slick-arrow.slick-prev, .message-map .slick-arrow.slick-next {
  cursor: pointer;
  position: absolute;
  z-index: 11;
  top: 35.5%;
  font-size: 28px;
  line-height: 28px;
  color: #BCBCBB;
}

@media only screen and (min-width: 1080px) {
  .message-map .slick-arrow.slick-prev, .message-map .slick-arrow.slick-next {
    top: 50%;
    font-size: 50px;
    line-height: 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.message-map .slick-arrow.slick-prev {
  left: 0;
}

@media only screen and (min-width: 600px) {
  .message-map .slick-arrow.slick-prev {
    left: 5%;
  }
}

@media only screen and (min-width: 1080px) {
  .message-map .slick-arrow.slick-prev {
    left: 2%;
  }
}

@media only screen and (min-width: 1284px) {
  .message-map .slick-arrow.slick-prev {
    left: 2.5%;
  }
}

@media only screen and (min-width: 1630px) {
  .message-map .slick-arrow.slick-prev {
    left: -90px;
  }
}

.message-map .slick-arrow.slick-next {
  right: 0;
}

@media only screen and (min-width: 600px) {
  .message-map .slick-arrow.slick-next {
    right: 5%;
  }
}

@media only screen and (min-width: 1080px) {
  .message-map .slick-arrow.slick-next {
    right: 2%;
  }
}

@media only screen and (min-width: 1284px) {
  .message-map .slick-arrow.slick-next {
    right: 2.5%;
  }
}

@media only screen and (min-width: 1630px) {
  .message-map .slick-arrow.slick-next {
    right: -90px;
  }
}

.message-map .slick-dots {
  display: block;
  width: 100%;
  padding: 10px 0 0 0;
  margin: 0;
  background: #FFF;
  list-style: none;
  text-align: center;
}

.message-map .slick-dots li {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 16px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.message-map .slick-dots li.slick-active button:before {
  background-color: #1562AD;
}

.message-map .slick-dots li button {
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.message-map .slick-dots li button:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 16px;
  background-color: #BCBCBB;
}

/*!
 *  Components - Breadcrumbs SCSS module
 *  component-breadcrumbs
 */
.breadcrumb {
  margin: 32px 0;
  padding: 0 16px;
  background: none;
  border-radius: 0;
}

@media only screen and (min-width: 1080px) {
  .breadcrumb {
    padding: 0 24px;
  }
}

.breadcrumb nav ol li {
  float: left;
}

.breadcrumb nav ol li a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  color: #8A8886;
}

@media only screen and (min-width: 600px) {
  .breadcrumb nav ol li a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1284px) {
  .breadcrumb nav ol li a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.breadcrumb nav ol li a:hover {
  color: #1562AD;
}

.breadcrumb nav ol li.last a {
  color: #1562AD;
}

.breadcrumb nav ol li .field-navigationtitle,
.breadcrumb nav ol li .separator {
  float: left;
}

.breadcrumb nav ol li .separator {
  position: relative;
  margin: 0 15px 0 14px;
}

.breadcrumb nav ol li .separator:before {
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  font-size: 8px;
  line-height: 8px;
  color: #8A8886;
}

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/** paceholder */
.component.media-teaser,
.component.image,
.component.lightboxed-image {
  margin: 0 0 72px 0;
}

.component.media-teaser img,
.component.image img,
.component.lightboxed-image img {
  display: block;
  width: 100%;
  height: auto;
}

.component.media-teaser .field-imagecaption,
.component.image .field-imagecaption,
.component.lightboxed-image .field-imagecaption {
  display: block;
  margin-top: 8px;
  padding-left: 8px;
  border-left: 1px solid #8A8886;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  color: #8A8886;
}

@media only screen and (min-width: 600px) {
  .component.media-teaser .field-imagecaption,
  .component.image .field-imagecaption,
  .component.lightboxed-image .field-imagecaption {
    margin-top: 16px;
    padding-left: 14px;
    border-width: 2px;
  }
}

.component.media-teaser .field-imagecaption p,
.component.image .field-imagecaption p,
.component.lightboxed-image .field-imagecaption p {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.component.media-teaser .field-imagecaption strong,
.component.image .field-imagecaption strong,
.component.lightboxed-image .field-imagecaption strong {
  font-weight: 500;
}

.component.media-teaser .component-content > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 1080px) {
  .component.media-teaser .component-content > .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.component.media-teaser .component-content > .row .image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-bottom: 16px;
}

@media only screen and (min-width: 600px) {
  .component.media-teaser .component-content > .row .image {
    margin-bottom: 24px;
  }
}

@media only screen and (min-width: 1080px) {
  .component.media-teaser .component-content > .row .image {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 0;
  }
  .component.media-teaser .component-content > .row .image:first-of-type {
    padding-right: 12px;
  }
  .component.media-teaser .component-content > .row .image:last-of-type {
    padding-left: 12px;
  }
}

.component.media-teaser .component-content > .row .text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media only screen and (min-width: 1080px) {
  .component.media-teaser .component-content > .row .text {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .component.media-teaser .component-content > .row .text:first-of-type {
    padding-right: 12px;
  }
  .component.media-teaser .component-content > .row .text:last-of-type {
    padding-left: 12px;
  }
}

@media only screen and (min-width: 1080px) {
  .component.media-teaser.align-center .text {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

.component.media-teaser .field-text {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.media-teaser .field-text::after {
  content: '';
  display: table;
  clear: both;
}

.component.media-teaser .field-text h3 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 600px) {
  .component.media-teaser .field-text h3 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    line-height: 53px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 600px) {
  .component.media-teaser .sc-button {
    margin-top: 8px;
  }
}

.component.media-teaser .sc-button a {
  padding-top: 9px;
  padding-bottom: 9px;
  line-height: 22px;
  white-space: normal;
}

@media only screen and (min-width: 1080px) {
  .component.media-teaser .sc-button a {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

.component.media-teaser .field-image {
  width: 100%;
  position: relative;
}

.component.restricted-video h3,
.component.restricted-video .field-headline {
  display: inline;
  vertical-align: middle;
}

.component.media-teaser .field-text, .component.rich-text, .featured-content .field-position,
.featured-content .field-featured-description, .video-module-speaker-description,
.event-module-speaker-description, .video-module-description,
.event-module-description,
.virtual-event-module-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

.component.media-teaser .field-text h1, .component.rich-text h1, .featured-content .field-position h1, .featured-content .field-featured-description h1, .video-module-speaker-description h1, .event-module-speaker-description h1, .video-module-description h1, .event-module-description h1, .virtual-event-module-description h1,
.component.media-teaser .field-text h2,
.component.rich-text h2,
.featured-content .field-position h2,
.featured-content .field-featured-description h2,
.video-module-speaker-description h2,
.event-module-speaker-description h2,
.video-module-description h2,
.event-module-description h2,
.virtual-event-module-description h2,
.component.media-teaser .field-text h3,
.component.rich-text h3,
.featured-content .field-position h3,
.featured-content .field-featured-description h3,
.video-module-speaker-description h3,
.event-module-speaker-description h3,
.video-module-description h3,
.event-module-description h3,
.virtual-event-module-description h3,
.component.media-teaser .field-text h4,
.component.rich-text h4,
.featured-content .field-position h4,
.featured-content .field-featured-description h4,
.video-module-speaker-description h4,
.event-module-speaker-description h4,
.video-module-description h4,
.event-module-description h4,
.virtual-event-module-description h4,
.component.media-teaser .field-text h5,
.component.rich-text h5,
.featured-content .field-position h5,
.featured-content .field-featured-description h5,
.video-module-speaker-description h5,
.event-module-speaker-description h5,
.video-module-description h5,
.event-module-description h5,
.virtual-event-module-description h5,
.component.media-teaser .field-text h6,
.component.rich-text h6,
.featured-content .field-position h6,
.featured-content .field-featured-description h6,
.video-module-speaker-description h6,
.event-module-speaker-description h6,
.video-module-description h6,
.event-module-description h6,
.virtual-event-module-description h6 {
  margin: 0 0 16px 0;
}

.component.media-teaser .field-text p, .component.rich-text p, .featured-content .field-position p, .featured-content .field-featured-description p, .video-module-speaker-description p, .event-module-speaker-description p, .video-module-description p, .event-module-description p, .virtual-event-module-description p,
.component.media-teaser .field-text span,
.component.rich-text span,
.featured-content .field-position span,
.featured-content .field-featured-description span,
.video-module-speaker-description span,
.event-module-speaker-description span,
.video-module-description span,
.event-module-description span,
.virtual-event-module-description span {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

.component.media-teaser .field-text p, .component.rich-text p, .featured-content .field-position p, .featured-content .field-featured-description p, .video-module-speaker-description p, .event-module-speaker-description p, .video-module-description p, .event-module-description p, .virtual-event-module-description p {
  margin-bottom: 16px;
}

.component.media-teaser .field-text sup, .component.rich-text sup, .featured-content .field-position sup, .featured-content .field-featured-description sup, .video-module-speaker-description sup, .event-module-speaker-description sup, .video-module-description sup, .event-module-description sup, .virtual-event-module-description sup,
.component.media-teaser .field-text sub,
.component.rich-text sub,
.featured-content .field-position sub,
.featured-content .field-featured-description sub,
.video-module-speaker-description sub,
.event-module-speaker-description sub,
.video-module-description sub,
.event-module-description sub,
.virtual-event-module-description sub {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  font-size: 75%;
}

.component.media-teaser .field-text strong, .component.rich-text strong, .featured-content .field-position strong, .featured-content .field-featured-description strong, .video-module-speaker-description strong, .event-module-speaker-description strong, .video-module-description strong, .event-module-description strong, .virtual-event-module-description strong,
.component.media-teaser .field-text b,
.component.rich-text b,
.featured-content .field-position b,
.featured-content .field-featured-description b,
.video-module-speaker-description b,
.event-module-speaker-description b,
.video-module-description b,
.event-module-description b,
.virtual-event-module-description b {
  font-weight: bold;
}

.component.media-teaser .field-text em, .component.rich-text em, .featured-content .field-position em, .featured-content .field-featured-description em, .video-module-speaker-description em, .event-module-speaker-description em, .video-module-description em, .event-module-description em, .virtual-event-module-description em,
.component.media-teaser .field-text i,
.component.rich-text i,
.featured-content .field-position i,
.featured-content .field-featured-description i,
.video-module-speaker-description i,
.event-module-speaker-description i,
.video-module-description i,
.event-module-description i,
.virtual-event-module-description i {
  font-style: italic;
}

.component.media-teaser .field-text blockquote, .component.rich-text blockquote, .featured-content .field-position blockquote, .featured-content .field-featured-description blockquote, .video-module-speaker-description blockquote, .event-module-speaker-description blockquote, .video-module-description blockquote, .event-module-description blockquote, .virtual-event-module-description blockquote {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
  margin: 31px 20px 20px 20px;
}

.component.media-teaser .field-text span.quote-border, .component.rich-text span.quote-border, .featured-content .field-position span.quote-border, .featured-content .field-featured-description span.quote-border, .video-module-speaker-description span.quote-border, .event-module-speaker-description span.quote-border, .video-module-description span.quote-border, .event-module-description span.quote-border, .virtual-event-module-description span.quote-border {
  border-top: 1px solid #8A8886;
  border-bottom: 1px solid #8A8886;
  display: block;
  margin: 60px 0 12px 0;
}

.component.media-teaser .field-text cite, .component.rich-text cite, .featured-content .field-position cite, .featured-content .field-featured-description cite, .video-module-speaker-description cite, .event-module-speaker-description cite, .video-module-description cite, .event-module-description cite, .virtual-event-module-description cite {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-decoration: inherit;
  text-transform: uppercase;
  margin: 0 20px 30px;
  display: block;
}

.component.media-teaser .field-text ul, .component.rich-text ul, .featured-content .field-position ul, .featured-content .field-featured-description ul, .video-module-speaker-description ul, .event-module-speaker-description ul, .video-module-description ul, .event-module-description ul, .virtual-event-module-description ul,
.component.media-teaser .field-text ol,
.component.rich-text ol,
.featured-content .field-position ol,
.featured-content .field-featured-description ol,
.video-module-speaker-description ol,
.event-module-speaker-description ol,
.video-module-description ol,
.event-module-description ol,
.virtual-event-module-description ol {
  margin-bottom: 16px;
  padding-left: 18px;
}

.component.media-teaser .field-text ul li, .component.rich-text ul li, .featured-content .field-position ul li, .featured-content .field-featured-description ul li, .video-module-speaker-description ul li, .event-module-speaker-description ul li, .video-module-description ul li, .event-module-description ul li, .virtual-event-module-description ul li,
.component.media-teaser .field-text ol li,
.component.rich-text ol li,
.featured-content .field-position ol li,
.featured-content .field-featured-description ol li,
.video-module-speaker-description ol li,
.event-module-speaker-description ol li,
.video-module-description ol li,
.event-module-description ol li,
.virtual-event-module-description ol li {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  padding-top: 8px;
}


.component.media-teaser .field-text ol,
.component.rich-text ol,
.featured-content .field-position ol,
.featured-content .field-featured-description ol,
.video-module-speaker-description ol,
.event-module-speaker-description ol,
.video-module-description ol,
.event-module-description ol,
.virtual-event-module-description ol {
  list-style: decimal;
}

.component.media-teaser .field-text ul, .component.rich-text ul, .featured-content .field-position ul, .featured-content .field-featured-description ul, .video-module-speaker-description ul, .event-module-speaker-description ul, .video-module-description ul, .event-module-description ul, .virtual-event-module-description ul {
  list-style-type: disc;
}

.component.media-teaser .field-text address, .component.rich-text address, .featured-content .field-position address, .featured-content .field-featured-description address, .video-module-speaker-description address, .event-module-speaker-description address, .video-module-description address, .event-module-description address, .virtual-event-module-description address,
.component.media-teaser .field-text menu,
.component.rich-text menu,
.featured-content .field-position menu,
.featured-content .field-featured-description menu,
.video-module-speaker-description menu,
.event-module-speaker-description menu,
.video-module-description menu,
.event-module-description menu,
.virtual-event-module-description menu,
.component.media-teaser .field-text dt,
.component.rich-text dt,
.featured-content .field-position dt,
.featured-content .field-featured-description dt,
.video-module-speaker-description dt,
.event-module-speaker-description dt,
.video-module-description dt,
.event-module-description dt,
.virtual-event-module-description dt,
.component.media-teaser .field-text pre,
.component.rich-text pre,
.featured-content .field-position pre,
.featured-content .field-featured-description pre,
.video-module-speaker-description pre,
.event-module-speaker-description pre,
.video-module-description pre,
.event-module-description pre,
.virtual-event-module-description pre,
.component.media-teaser .field-text footer,
.component.rich-text footer,
.featured-content .field-position footer,
.featured-content .field-featured-description footer,
.video-module-speaker-description footer,
.event-module-speaker-description footer,
.video-module-description footer,
.event-module-description footer,
.virtual-event-module-description footer {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  padding: 10px 0;
}

.component.media-teaser .field-text :not(li) > ul, .component.rich-text :not(li) > ul, .featured-content .field-position :not(li) > ul, .featured-content .field-featured-description :not(li) > ul, .video-module-speaker-description :not(li) > ul, .event-module-speaker-description :not(li) > ul, .video-module-description :not(li) > ul, .event-module-description :not(li) > ul, .virtual-event-module-description :not(li) > ul,
.component.media-teaser .field-text :not(li) > ol,
.component.rich-text :not(li) > ol,
.featured-content .field-position :not(li) > ol,
.featured-content .field-featured-description :not(li) > ol,
.video-module-speaker-description :not(li) > ol,
.event-module-speaker-description :not(li) > ol,
.video-module-description :not(li) > ol,
.event-module-description :not(li) > ol,
.virtual-event-module-description :not(li) > ol {
  padding: 4px 0 8px 18px;
}

.component.media-teaser .field-text .qia-subtitle1, .component.rich-text .qia-subtitle1, .featured-content .field-position .qia-subtitle1, .featured-content .field-featured-description .qia-subtitle1, .video-module-speaker-description .qia-subtitle1, .event-module-speaker-description .qia-subtitle1, .video-module-description .qia-subtitle1, .event-module-description .qia-subtitle1, .virtual-event-module-description .qia-subtitle1 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.media-teaser .field-text .qia-subtitle2, .component.rich-text .qia-subtitle2, .featured-content .field-position .qia-subtitle2, .featured-content .field-featured-description .qia-subtitle2, .video-module-speaker-description .qia-subtitle2, .event-module-speaker-description .qia-subtitle2, .video-module-description .qia-subtitle2, .event-module-description .qia-subtitle2, .virtual-event-module-description .qia-subtitle2 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.media-teaser .field-text .qia-body1, .component.rich-text .qia-body1, .featured-content .field-position .qia-body1, .featured-content .field-featured-description .qia-body1, .video-module-speaker-description .qia-body1, .event-module-speaker-description .qia-body1, .video-module-description .qia-body1, .event-module-description .qia-body1, .virtual-event-module-description .qia-body1 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.media-teaser .field-text .qia-body2, .component.rich-text .qia-body2, .featured-content .field-position .qia-body2, .featured-content .field-featured-description .qia-body2, .video-module-speaker-description .qia-body2, .event-module-speaker-description .qia-body2, .video-module-description .qia-body2, .event-module-description .qia-body2, .virtual-event-module-description .qia-body2 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.media-teaser .field-text .qia-button, .component.rich-text .qia-button, .featured-content .field-position .qia-button, .featured-content .field-featured-description .qia-button, .video-module-speaker-description .qia-button, .event-module-speaker-description .qia-button, .video-module-description .qia-button, .event-module-description .qia-button, .virtual-event-module-description .qia-button {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: auto;
  font-weight: 700;
  letter-spacing: 1.25px;
  text-decoration: inherit;
  text-transform: uppercase;
}

.component.media-teaser .field-text .qia-caption, .component.rich-text .qia-caption, .featured-content .field-position .qia-caption, .featured-content .field-featured-description .qia-caption, .video-module-speaker-description .qia-caption, .event-module-speaker-description .qia-caption, .video-module-description .qia-caption, .event-module-description .qia-caption, .virtual-event-module-description .qia-caption {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.media-teaser .field-text .qia-caption-medium, .component.rich-text .qia-caption-medium, .featured-content .field-position .qia-caption-medium, .featured-content .field-featured-description .qia-caption-medium, .video-module-speaker-description .qia-caption-medium, .event-module-speaker-description .qia-caption-medium, .video-module-description .qia-caption-medium, .event-module-description .qia-caption-medium, .virtual-event-module-description .qia-caption-medium {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.media-teaser .field-text .qia-caption-small, .component.rich-text .qia-caption-small, .featured-content .field-position .qia-caption-small, .featured-content .field-featured-description .qia-caption-small, .video-module-speaker-description .qia-caption-small, .event-module-speaker-description .qia-caption-small, .video-module-description .qia-caption-small, .event-module-description .qia-caption-small, .virtual-event-module-description .qia-caption-small {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.media-teaser .field-text .qia-overline, .component.rich-text .qia-overline, .featured-content .field-position .qia-overline, .featured-content .field-featured-description .qia-overline, .video-module-speaker-description .qia-overline, .event-module-speaker-description .qia-overline, .video-module-description .qia-overline, .event-module-description .qia-overline, .virtual-event-module-description .qia-overline {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-decoration: inherit;
  text-transform: uppercase;
}

.component.media-teaser .field-text .qia-subtitle1, .component.rich-text .qia-subtitle1, .featured-content .field-position .qia-subtitle1, .featured-content .field-featured-description .qia-subtitle1, .video-module-speaker-description .qia-subtitle1, .event-module-speaker-description .qia-subtitle1, .video-module-description .qia-subtitle1, .event-module-description .qia-subtitle1, .virtual-event-module-description .qia-subtitle1, .component.media-teaser .field-text .qia-subtitle2, .component.rich-text .qia-subtitle2, .featured-content .field-position .qia-subtitle2, .featured-content .field-featured-description .qia-subtitle2, .video-module-speaker-description .qia-subtitle2, .event-module-speaker-description .qia-subtitle2, .video-module-description .qia-subtitle2, .event-module-description .qia-subtitle2, .virtual-event-module-description .qia-subtitle2, .component.media-teaser .field-text .qia-body1, .component.rich-text .qia-body1, .featured-content .field-position .qia-body1, .featured-content .field-featured-description .qia-body1, .video-module-speaker-description .qia-body1, .event-module-speaker-description .qia-body1, .video-module-description .qia-body1, .event-module-description .qia-body1, .virtual-event-module-description .qia-body1, .component.media-teaser .field-text .qia-body2, .component.rich-text .qia-body2, .featured-content .field-position .qia-body2, .featured-content .field-featured-description .qia-body2, .video-module-speaker-description .qia-body2, .event-module-speaker-description .qia-body2, .video-module-description .qia-body2, .event-module-description .qia-body2, .virtual-event-module-description .qia-body2, .component.media-teaser .field-text .qia-button, .component.rich-text .qia-button, .featured-content .field-position .qia-button, .featured-content .field-featured-description .qia-button, .video-module-speaker-description .qia-button, .event-module-speaker-description .qia-button, .video-module-description .qia-button, .event-module-description .qia-button, .virtual-event-module-description .qia-button, .component.media-teaser .field-text .qia-caption, .component.rich-text .qia-caption, .featured-content .field-position .qia-caption, .featured-content .field-featured-description .qia-caption, .video-module-speaker-description .qia-caption, .event-module-speaker-description .qia-caption, .video-module-description .qia-caption, .event-module-description .qia-caption, .virtual-event-module-description .qia-caption, .component.media-teaser .field-text .qia-caption-medium, .component.rich-text .qia-caption-medium, .featured-content .field-position .qia-caption-medium, .featured-content .field-featured-description .qia-caption-medium, .video-module-speaker-description .qia-caption-medium, .event-module-speaker-description .qia-caption-medium, .video-module-description .qia-caption-medium, .event-module-description .qia-caption-medium, .virtual-event-module-description .qia-caption-medium, .component.media-teaser .field-text .qia-caption-small, .component.rich-text .qia-caption-small, .featured-content .field-position .qia-caption-small, .featured-content .field-featured-description .qia-caption-small, .video-module-speaker-description .qia-caption-small, .event-module-speaker-description .qia-caption-small, .video-module-description .qia-caption-small, .event-module-description .qia-caption-small, .virtual-event-module-description .qia-caption-small, .component.media-teaser .field-text .qia-overline, .component.rich-text .qia-overline, .featured-content .field-position .qia-overline, .featured-content .field-featured-description .qia-overline, .video-module-speaker-description .qia-overline, .event-module-speaker-description .qia-overline, .video-module-description .qia-overline, .event-module-description .qia-overline, .virtual-event-module-description .qia-overline {
  display: block;
}

.component.media-teaser .field-text .glossary, .component.rich-text .glossary, .featured-content .field-position .glossary, .featured-content .field-featured-description .glossary, .video-module-speaker-description .glossary, .event-module-speaker-description .glossary, .video-module-description .glossary, .event-module-description .glossary, .virtual-event-module-description .glossary {
  display: none;
  font: normal 14px "Futura W01", Arial, Helvetica, sans-serif;
  line-height: 24px;
  margin-bottom: 20px;
  padding: 10px 15px;
  text-decoration: none;
  position: absolute;
  left: 10%;
  background-color: #1562AD;
  width: 300px;
  color: #FFF;
  margin-top: 7px;
}

.component.media-teaser .field-text .glossary:before, .component.rich-text .glossary:before, .featured-content .field-position .glossary:before, .featured-content .field-featured-description .glossary:before, .video-module-speaker-description .glossary:before, .event-module-speaker-description .glossary:before, .video-module-description .glossary:before, .event-module-description .glossary:before, .virtual-event-module-description .glossary:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  border: 10px solid;
  border-color: transparent transparent #1562AD transparent;
  left: 10px;
  top: -20px;
}

.component.media-teaser .field-text .glossary.right, .component.rich-text .glossary.right, .featured-content .field-position .glossary.right, .featured-content .field-featured-description .glossary.right, .video-module-speaker-description .glossary.right, .event-module-speaker-description .glossary.right, .video-module-description .glossary.right, .event-module-description .glossary.right, .virtual-event-module-description .glossary.right {
  left: -290px;
}

.component.media-teaser .field-text .glossary.right:before, .component.rich-text .glossary.right:before, .featured-content .field-position .glossary.right:before, .featured-content .field-featured-description .glossary.right:before, .video-module-speaker-description .glossary.right:before, .event-module-speaker-description .glossary.right:before, .video-module-description .glossary.right:before, .event-module-description .glossary.right:before, .virtual-event-module-description .glossary.right:before {
  left: 290px;
}

.component.media-teaser .field-text .glossary-link, .component.rich-text .glossary-link, .featured-content .field-position .glossary-link, .featured-content .field-featured-description .glossary-link, .video-module-speaker-description .glossary-link, .event-module-speaker-description .glossary-link, .video-module-description .glossary-link, .event-module-description .glossary-link, .virtual-event-module-description .glossary-link {
  color: #1562AD;
  font: normal 16px "Futura W01 Book", Arial, Helvetica, sans-serif;
  cursor: pointer;
  position: relative;
  line-height: 24px;
}

.component.media-teaser .field-text .glossary-link:hover .glossary, .component.rich-text .glossary-link:hover .glossary, .featured-content .field-position .glossary-link:hover .glossary, .featured-content .field-featured-description .glossary-link:hover .glossary, .video-module-speaker-description .glossary-link:hover .glossary, .event-module-speaker-description .glossary-link:hover .glossary, .video-module-description .glossary-link:hover .glossary, .event-module-description .glossary-link:hover .glossary, .virtual-event-module-description .glossary-link:hover .glossary {
  display: block;
}

.component.media-teaser .field-text .glossary-title, .component.rich-text .glossary-title, .featured-content .field-position .glossary-title, .featured-content .field-featured-description .glossary-title, .video-module-speaker-description .glossary-title, .event-module-speaker-description .glossary-title, .video-module-description .glossary-title, .event-module-description .glossary-title, .virtual-event-module-description .glossary-title {
  font: normal 18px "Futura W01 Book", Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
  display: block;
}

.component.media-teaser .field-text .field-publication-date, .component.rich-text .field-publication-date, .featured-content .field-position .field-publication-date, .featured-content .field-featured-description .field-publication-date, .video-module-speaker-description .field-publication-date, .event-module-speaker-description .field-publication-date, .video-module-description .field-publication-date, .event-module-description .field-publication-date, .virtual-event-module-description .field-publication-date {
  font: normal 14px "Futura W01 Book", Arial, Helvetica, sans-serif;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.component.rich-text {
  margin: 0 0 72px 0;
}

.component.rich-text .component-content > :last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.component.rich-text .sc-button {
  display: block;
  margin-top: 16px;
  margin-bottom: 16px;
}

@media only screen and (min-width: 600px) {
  .component.rich-text .sc-button {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

.component.rich-text.text-field {
  position: relative;
  margin: 20px 0;
}

.component.rich-text.text-field .component-content {
  margin: 0 10px;
  padding: 0 -webkit-calc(200%/12);
  padding: 0 calc(200%/12);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.component.second-level-header + .component.container .component.rich-text.text-field {
  margin-top: 60px;
}

.white-text:not(body) .component.rich-text h1, .white-text:not(body) .component.rich-text h2, .white-text:not(body) .component.rich-text h3 {
  color: #FFF;
}

@media only screen and (min-width: 600px) {
  .component.rich-text.text-field {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
  }
  .component.rich-text.text-field .component-content {
    padding: 0 20px;
  }
  .component.second-level-header + .component.container .component.rich-text.text-field {
    margin-top: 20px;
  }
  .component.rich-text.text-field h1,
  .component.rich-text.text-field h2 {
    margin: 0 0 10px 0;
  }
  .component.rich-text.text-field h4,
  .component.rich-text.text-field h5 {
    margin: 0 0 20px 0;
  }
}

@media print {
  .component.rich-text.text-field .component-content div {
    padding: 0 !important;
  }
  .component.rich-text.text-field .component-content iframe {
    display: none;
    height: 0;
  }
}

/*!
 *  Common - Ziuziu-effect (background changing gradually) for CTA links.
 */
/**
 * Colors
 */
/**
 * Typography
 */
/**
 * HTML tags variables
 */
.inpage-navigation {
  margin-bottom: 48px;
}

.inpage-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-left: -12px;
  margin-right: -12px;
}

.inpage-navigation ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  max-width: -webkit-calc(100% / 3.0001);
  max-width: calc(100% / 3.0001);
  margin-top: 24px;
  padding-left: 12px;
  padding-right: 12px;
  width: -webkit-calc(100% / 3.0001);
  width: calc(100% / 3.0001);
}

.inpage-navigation ul li:nth-child(1), .inpage-navigation ul li:nth-child(2) {
  max-width: 50%;
}

@media only screen and (max-width: 1079px) {
  .inpage-navigation ul li:nth-child(1), .inpage-navigation ul li:nth-child(2) {
    width: 100%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 599px) {
  .inpage-navigation ul li:nth-child(1), .inpage-navigation ul li:nth-child(2) {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1079px) {
  .inpage-navigation ul li {
    width: 100%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 599px) {
  .inpage-navigation ul li {
    max-width: 100%;
  }
}

.inpage-navigation .field-link {
  position: relative;
  overflow: hidden;
  background: #F2F7FC;
  border-radius: 10px;
  height: 100%;
}

.inpage-navigation .field-link:hover [class*=" icon-"],
.inpage-navigation .field-link:hover [class^=icon-] {
  color: #FFF;
  -webkit-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}

.inpage-navigation .field-link a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
  width: -webkit-calc(100% + 10px);
  width: calc(100% + 10px);
  padding: 16px 48px 16px 26px;
  color: rgba(0, 0, 0, 0.72);
  height: 100%;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-transition: color .2s ease-in, -webkit-transform .2s ease-in;
  transition: color .2s ease-in, -webkit-transform .2s ease-in;
  transition: color .2s ease-in, transform .2s ease-in;
  transition: color .2s ease-in, transform .2s ease-in, -webkit-transform .2s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inpage-navigation .field-link a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #1562AD;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.inpage-navigation .field-link a:hover {
  color: #FFF;
}

.inpage-navigation .field-link a:hover:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.inpage-navigation .field-link a:disabled {
  color: inherit;
}

.inpage-navigation .field-link a:disabled:before {
  display: none;
}

.inpage-navigation .field-link--color-white {
  background-color: #FFF;
}

.inpage-navigation .field-link--color-white a {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
  font-size: 24px;
  line-height: 32px;
  padding: 12px 48px 12px 16px;
  color: #1562AD;
}

.inpage-navigation .field-link--color-white a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #F2F7FC;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.inpage-navigation .field-link--color-white a:hover {
  color: #1562AD;
}

.inpage-navigation .field-link--color-white a:hover:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.inpage-navigation .field-link--color-white a:disabled {
  color: inherit;
}

.inpage-navigation .field-link--color-white a:disabled:before {
  display: none;
}

.inpage-navigation .field-link--color-white a:before {
  display: none;
}

.inpage-navigation .field-link--color-white a:hover {
  background-color: #F2F7FC;
}

.inpage-navigation .field-link--color-white [class*=" icon-"],
.inpage-navigation .field-link--color-white [class^=icon-], .inpage-navigation .field-link--color-white:hover [class*=" icon-"],
.inpage-navigation .field-link--color-white:hover [class^=icon-] {
  right: 14px !important;
  color: #1562AD;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.inpage-navigation [class*=" icon-"],
.inpage-navigation [class^=icon-] {
  width: 24px;
  height: 24px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: color .2s ease-in, -webkit-transform .2s ease-in;
  transition: color .2s ease-in, -webkit-transform .2s ease-in;
  transition: color .2s ease-in, transform .2s ease-in;
  transition: color .2s ease-in, transform .2s ease-in, -webkit-transform .2s ease-in;
}

.inpage-navigation.two-columns ul li {
  width: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 1080px) {
  .inpage-navigation.two-columns ul li {
    width: 100%;
    max-width: 50%;
  }
}

.inpage-navigation.two-columns .field-link [class*=" icon-"],
.inpage-navigation.two-columns .field-link [class^=icon-], .inpage-navigation.two-columns .field-link:hover [class*=" icon-"],
.inpage-navigation.two-columns .field-link:hover [class^=icon-] {
  color: rgba(0, 0, 0, 0.72);
}

.inpage-navigation.two-columns .field-link a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 600px) {
  .inpage-navigation.two-columns .field-link a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1080px) {
  .inpage-navigation.two-columns .field-link a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.inpage-navigation.two-columns .field-link a span {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  display: block;
  white-space: normal;
  text-overflow: clip;
  overflow: visible;
}

.nav-group-container {
  float: left;
  margin: 0 0 48px 0;
  padding: 0 20px;
}

@media only screen and (min-width: 1080px) {
  .nav-group-container {
    padding: 0 32px;
  }
}

.nav-group-container > .component-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media only screen and (max-width: 1079px) {
  .nav-group-container > .component-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 599px) {
  .nav-group-container > .component-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.nav-group-container > .component-content .inpage-navigation {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: -webkit-calc(100% / 3.0001);
  width: calc(100% / 3.0001);
  max-width: -webkit-calc(100% / 3.0001);
  max-width: calc(100% / 3.0001);
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 0;
}

.nav-group-container > .component-content .inpage-navigation:nth-child(1), .nav-group-container > .component-content .inpage-navigation:nth-child(2) {
  max-width: 50%;
}

@media only screen and (max-width: 1079px) {
  .nav-group-container > .component-content .inpage-navigation:nth-child(1), .nav-group-container > .component-content .inpage-navigation:nth-child(2) {
    width: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 599px) {
  .nav-group-container > .component-content .inpage-navigation:nth-child(1), .nav-group-container > .component-content .inpage-navigation:nth-child(2) {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1079px) {
  .nav-group-container > .component-content .inpage-navigation {
    width: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 599px) {
  .nav-group-container > .component-content .inpage-navigation {
    width: 100%;
    max-width: 100%;
  }
}

.nav-group-container > .component-content .inpage-navigation ul li {
  max-width: 100%;
  width: 100%;
}

/*!
 *  Components - Featured-content SCSS module
 *  component-featured-content
 */
.featured-content {
  margin: 0 0 72px 0;
}

.featured-content .field-image ~ .field-title,
.featured-content .field-image ~ .field-name,
.featured-content .field-mainimage ~ .field-title,
.featured-content .field-mainimage ~ .field-name {
  padding-top: 0;
}

.featured-content .field-title,
.featured-content .field-name,
.featured-content .field-featured-title,
.featured-content .title-with-icon {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 16px;
  padding-top: 16px;
  padding-right: 16px;
  padding-left: 16px;
}

@media only screen and (min-width: 600px) {
  .featured-content .field-title,
  .featured-content .field-name,
  .featured-content .field-featured-title,
  .featured-content .title-with-icon {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1284px) {
  .featured-content .field-title,
  .featured-content .field-name,
  .featured-content .field-featured-title,
  .featured-content .title-with-icon {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
    margin-bottom: 24px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.featured-content .field-position,
.featured-content .field-featured-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 16px;
  padding-right: 16px;
  padding-left: 16px;
}

.featured-content .field-position::after,
.featured-content .field-featured-description::after {
  content: '';
  display: table;
  clear: both;
}

@media only screen and (min-width: 600px) {
  .featured-content .field-position,
  .featured-content .field-featured-description {
    margin-bottom: auto;
  }
}

@media only screen and (min-width: 1284px) {
  .featured-content .field-position,
  .featured-content .field-featured-description {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.featured-content .field-position > :last-child,
.featured-content .field-featured-description > :last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.featured-content .field-position b a,
.featured-content .field-position strong a,
.featured-content .field-featured-description b a,
.featured-content .field-featured-description strong a {
  font-weight: 500;
}

.featured-content img {
  height: auto;
  max-width: 100%;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1284px) {
  .featured-content img {
    margin-bottom: 24px;
  }
}

.featured-content .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 100%;
  margin-right: -8px;
  margin-left: -8px;
}

@media only screen and (min-width: 600px) {
  .featured-content .items {
    margin-right: -12px;
    margin-left: -12px;
  }
}

.featured-content .items .item {
  width: 100%;
  margin-bottom: 16px;
  padding-right: 8px;
  padding-left: 8px;
}

@media only screen and (min-width: 600px) {
  .featured-content .items .item {
    width: -webkit-calc(100% / 3.0001);
    width: calc(100% / 3.0001);
    margin-bottom: 24px;
    padding-right: 12px;
    padding-left: 12px;
  }
}

.featured-content .items .item > div {
  min-height: 100%;
  padding-bottom: 24px;
  background: #F9F9F9;
}

@media only screen and (min-width: 600px) {
  .featured-content .items .item > div {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (min-width: 600px) {
  .featured-content .items .item > div .featured-link {
    width: 100%;
    margin-top: 16px;
  }
}

.featured-content .items .item > div .featured-link a:not(.save-to-list) {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: auto;
  font-weight: 700;
  letter-spacing: 1.25px;
  text-decoration: inherit;
  text-transform: uppercase;
  line-height: 26px;
  color: #1562AD;
  display: inline-block;
  margin-right: 16px;
  margin-left: 16px;
}

@media only screen and (min-width: 1284px) {
  .featured-content .items .item > div .featured-link a:not(.save-to-list) {
    margin-right: 24px;
    margin-left: 24px;
  }
}

.featured-content .items .item > div .featured-link a:not(.save-to-list):hover {
  color: #1B3067;
}

.featured-content.paginated .items {
  display: block;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media only screen and (min-width: 600px) {
  .featured-content.no-pagination .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .featured-content.no-pagination .items .item {
    width: 50%;
  }
}

@media only screen and (max-width: 1079px) {
  .featured-content.no-pagination .items .item {
    margin-bottom: 8px;
  }
}

.featured-content.two-columns .item, .featured-content.four-columns .item {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .featured-content.two-columns .field-title,
  .featured-content.two-columns .field-name {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 600px) {
  .featured-content.two-columns .item {
    width: 50%;
  }
}

@media only screen and (min-width: 1284px) {
  .featured-content.four-columns .field-title,
  .featured-content.four-columns .field-name {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 600px) {
  .featured-content.four-columns .item {
    width: -webkit-calc(100% / 3.0001);
    width: calc(100% / 3.0001);
  }
}

@media only screen and (min-width: 1080px) {
  .featured-content.four-columns .item {
    width: 25%;
  }
}

.featured-content .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 100%;
}

.featured-content .slick-track .slick-slide {
  height: auto;
}

/*!
 *  Components - Featured-tile SCSS module.
 *  component-featured-tile
 *	Featured tile component is a variant of featured content component. Below styles of featured tile module mainly overrides styles for featured content module.
 */
.featured-tile .featured-category {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-decoration: inherit;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 16px;
  padding-left: 16px;
  text-transform: none;
}

.featured-tile .field-title,
.featured-tile .field-name {
  margin-bottom: 16px;
  padding-top: 0;
  padding-right: 16px;
  padding-left: 16px;
}

.featured-tile .field-position {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
  padding-right: 16px;
  padding-left: 16px;
}

@media only screen and (min-width: 600px) {
  .featured-tile .field-position {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 600px) {
  .featured-tile .field-position,
  .featured-tile .field-featured-description {
    margin-bottom: 16px;
  }
}

@media only screen and (min-width: 1284px) {
  .featured-tile.four-columns .items .item:nth-child(1) .field-title,
  .featured-tile.four-columns .items .item:nth-child(1) .field-name, .featured-tile.four-columns .items .item:nth-child(2) .field-title,
  .featured-tile.four-columns .items .item:nth-child(2) .field-name {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.featured-tile .items {
  display: block;
  margin-right: -4px;
  margin-left: -4px;
}

@media only screen and (min-width: 1080px) {
  .featured-tile .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -12px;
    margin-left: -12px;
  }
}

.featured-tile .items .slick-list {
  overflow: visible;
}

@media only screen and (min-width: 1080px) {
  .featured-tile .items .slick-list {
    overflow: hidden;
  }
}

.featured-tile .items .item {
  padding-right: 4px;
  padding-left: 4px;
  margin-bottom: 0;
}

@media only screen and (min-width: 1080px) {
  .featured-tile .items .item {
    margin-bottom: 24px;
    padding-right: 12px;
    padding-left: 12px;
  }
}

.featured-tile .items .item .field-image,
.featured-tile .items .item .field-featured-image {
  position: relative;
  height: 0;
  margin-bottom: 16px;
  padding: 0 0 56.25% 0;
  overflow: hidden;
}

.featured-tile .items .item .field-image img,
.featured-tile .items .item .field-featured-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media only screen and (min-width: 1080px) {
  .featured-tile .items .item:first-child {
    width: -webkit-calc(100% / 3.0001 * 2);
    width: calc(100% / 3.0001 * 2);
  }
  .featured-tile .items .item:first-child > div {
    position: relative;
    padding: 0;
    height: 100%;
    background: none;
  }
  .featured-tile .items .item:first-child .field-image,
  .featured-tile .items .item:first-child .field-featured-image {
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 0;
  }
  .featured-tile .items .item:first-child .tile-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #F3F3F3;
    border-radius: 24px 24px 0 0;
    padding: 16px 0 24px 0;
  }
  .featured-tile .items .item:first-child .tile-content .tile-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .featured-tile .items .item:first-child .tile-content .tile-cta {
    margin-left: auto;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .featured-tile .items .item:first-child .tile-content .tile-cta .featured-link {
    position: static;
    bottom: auto;
  }
  .featured-tile .items .item:first-child .tile-content .tile-cta .featured-link a {
    max-width: 100%;
    margin-right: 24px;
  }
}

@media only screen and (min-width: 1080px) {
  .featured-tile .items .item:nth-child(2) {
    width: -webkit-calc(100% / 3.0001);
    width: calc(100% / 3.0001);
  }
}

@media only screen and (min-width: 600px) {
  .featured-tile .items .item > div {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: 43px;
    /* This padding include height of button which is positioned absolute */
  }
}

@media only screen and (min-width: 600px) {
  .featured-tile .items .item > div .featured-link {
    position: absolute;
    bottom: 24px;
    margin-top: 0;
  }
}

.featured-tile .items .item > div .featured-link a:not(.save-to-list) {
  margin-right: 16px;
  margin-left: 16px;
  max-width: -webkit-calc(100% - 32px);
  max-width: calc(100% - 32px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
}

@media only screen and (min-width: 1284px) {
  .featured-tile .items .item > div .featured-link a:not(.save-to-list) {
    max-width: -webkit-calc(100% - 48px);
    max-width: calc(100% - 48px);
  }
}

.featured-image-category-title .items {
  margin-bottom: 16px;
  margin-right: -8px;
  margin-left: -8px;
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .items {
    margin-bottom: 72px;
    margin-right: -12px;
    margin-left: -12px;
  }
}

.featured-image-category-title .items .item {
  margin-right: 8px;
  margin-left: 8px;
  width: -webkit-calc(33.33333% - 16px);
  width: calc(33.33333% - 16px);
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .items .item {
    margin-right: 12px;
    margin-left: 12px;
    width: -webkit-calc(33.33333% - 24px);
    width: calc(33.33333% - 24px);
  }
}

.featured-image-category-title .items .item > div {
  background: #F9F9F9;
}

.featured-image-category-title .field-image {
  height: 164px;
}

.featured-image-category-title .field-image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 0;
  width: 100%;
  min-height: 100%;
}

.featured-image-category-title .field-featured-category {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  padding: 16px;
}

@media only screen and (min-width: 1080px) {
  .featured-image-category-title .field-featured-category {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
    padding: 16px 24px 8px 24px;
  }
}

.featured-image-category-title .field-featured-title {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  padding: 0 16px 16px 16px;
  min-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .featured-image-category-title .field-featured-title {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
    -webkit-line-clamp: 2;
    min-height: 68px;
  }
}

@media only screen and (min-width: 1080px) {
  .featured-image-category-title .field-featured-title {
    -webkit-line-clamp: 3;
    min-height: 90px;
    padding: 0 24px 16px 24px;
  }
}

.featured-image-category-title .slick-navigation-wrap {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1080px) {
  .featured-image-category-title .slick-navigation-wrap {
    margin-bottom: 32px;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-image-category-title .slick-navigation-wrap {
    display: none;
  }
}

.featured-image-category-title .slick-navigation-wrap .slick-navigation .slick-dots li {
  padding-top: 0;
}

/*!
 *  Components - Featured-webinar SCSS module
 *  component-featured-webinar
 */
.featured-webinar .items {
  margin-bottom: 16px;
  margin-right: -8px;
  margin-left: -8px;
}

@media only screen and (min-width: 1440px) {
  .featured-webinar .items {
    margin-bottom: 40px;
    margin-right: -12px;
    margin-left: -12px;
  }
}

.featured-webinar .items .item {
  margin-right: 8px;
  margin-left: 8px;
}

@media only screen and (min-width: 1440px) {
  .featured-webinar .items .item {
    margin-right: 12px;
    margin-left: 12px;
  }
}

.featured-webinar .items .item > div {
  background: #F9F9F9;
}

.featured-webinar .field-image {
  height: 224px;
  min-height: 100%;
}

.featured-webinar .field-image img {
  height: 0;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.featured-webinar .tile-content {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  padding: 16px;
}

.featured-webinar .tile-text {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  grid-template-rows: auto 90px;
  -ms-grid-rows: 23px 16px 90px;
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .featured-webinar .tile-text {
    grid-template-rows: auto 68px;
    -ms-grid-rows: 23px 16px 68px;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar .tile-text {
    gap: 8px;
  }
}

.featured-webinar .tile-text .field-start-date {
  -ms-grid-row: 1;
  grid-row: 1;
}

.featured-webinar .tile-text .field-title {
  grid-row: 2;
  -ms-grid-row: 3;
}

.featured-webinar .field-start-date {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.featured-webinar .field-end-date {
  display: none;
}

.featured-webinar .field-title {
  padding: 0;
  margin: 0;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .featured-webinar .field-title {
    -webkit-line-clamp: 2;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .featured-webinar .field-title a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.featured-webinar .field-title a:hover {
  text-decoration: underline !important;
}

.featured-webinar .field-description {
  display: none;
}

.featured-webinar .tile-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 16px;
  -ms-grid-row: 2;
  grid-row: 2;
  width: 100%;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .featured-webinar .tile-tags {
    margin-bottom: 16px;
  }
}

.featured-webinar .tile-tags div {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  background-color: #FFF;
  border-radius: 8px;
  padding: 4px 8px;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%;
}

.featured-webinar .tile-tags div:first-child {
  width: -webkit-fill-available;
  width: -moz-available;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .featured-webinar .tile-tags div:first-child {
    margin-right: 16px;
  }
}

.featured-webinar .tile-speaker {
  display: none;
}

.featured-webinar .tile-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-row: 3;
  grid-row: 3;
}

.featured-webinar .tile-cta .field-save-to-list {
  margin-top: auto;
  margin-bottom: auto;
}

.featured-webinar .tile-cta .field-save-to-list .ml-save-to-list-link {
  margin: 0;
}

.featured-webinar .slick-navigation-wrap {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1080px) {
  .featured-webinar .slick-navigation-wrap {
    margin-bottom: 32px;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar .slick-navigation-wrap {
    display: none;
  }
}

.featured-webinar .slick-navigation-wrap .slick-navigation .slick-dots li {
  padding-top: 0;
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .items {
    margin: 0;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .items .item {
    margin: 0 0 40px 0;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .items .item > div {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 522px auto;
    -ms-grid-columns: 522px 1fr;
  }
}

.featured-webinar:not(.featured-content-with-slider) .field-image {
  -ms-grid-column: 1;
  grid-column: 1;
}

.featured-webinar:not(.featured-content-with-slider) .field-image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 0;
  min-height: 100%;
  width: 100%;
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-content {
    padding: 24px;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr auto;
    -ms-grid-columns: 1fr 1fr;
    gap: 16px 40px;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-text {
    grid-template-rows: auto 1fr auto;
    -ms-grid-rows: 23px 16px 1fr 16px 56px;
    gap: 16px;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-text .field-start-date {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-text .field-title {
    -webkit-line-clamp: 2;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-text .field-title a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-text .field-description {
    display: block;
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: inherit;
    text-transform: inherit;
    color: rgba(0, 0, 0, 0.72);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -ms-grid-row: 5;
  }
}

.featured-webinar:not(.featured-content-with-slider) .tile-speaker {
  -ms-grid-row: 3;
  grid-row: 3;
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-speaker {
    -ms-grid-column: 1;
    grid-column: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-self: flex-start;
    overflow: hidden;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-speaker > div {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: inherit;
    text-transform: inherit;
    color: rgba(0, 0, 0, 0.72);
    background-color: #FFF;
    border-radius: 8px;
    padding: 4px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.featured-webinar:not(.featured-content-with-slider) .tile-speaker > div:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  font-size: 24px;
  padding-right: 4px;
  vertical-align: bottom;
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-cta .field-save-to-list {
    margin-right: 40px;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-cta {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    margin-top: auto;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) .tile-content-speaker .tile-cta {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/4;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar:not(.featured-content-with-slider) :not(.tile-content-speaker) .tile-tags {
    margin-top: auto;
    margin-bottom: auto;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar.featured-content-with-slider .tile-content .tile-text {
    margin-bottom: 8px;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar.featured-content-with-slider .tile-content .tile-text .field-title a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
    -webkit-line-clamp: 3;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-webinar.featured-content-with-slider .tile-content .tile-cta {
    padding-top: 8px;
  }
}

/*!
 *  Components - Featured-webinar SCSS module
 *  component-featured-webinar
 */
.featured-session .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 16px;
  margin-right: -8px;
  margin-left: -8px;
}

@media only screen and (min-width: 1440px) {
  .featured-session .items {
    margin-right: -12px;
    margin-left: -12px;
  }
}

.featured-session .items .item {
  margin-right: 8px;
  margin-left: 8px;
  width: -webkit-calc(33.33333% - 16px);
  width: calc(33.33333% - 16px);
}

@media only screen and (min-width: 1440px) {
  .featured-session .items .item {
    margin-right: 12px;
    margin-left: 12px;
    width: -webkit-calc(33.33333% - 24px);
    width: calc(33.33333% - 24px);
  }
}

.featured-session .items .item > div {
  background: #F9F9F9;
}

.featured-session .field-image {
  height: 224px;
}

.featured-session .field-image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 0;
  width: 100%;
  min-height: 100%;
}

.featured-session .tile-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .featured-session .tile-content {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.featured-session .tile-text {
  display: -ms-grid;
  display: grid;
  margin: 16px 0 48px 0;
  -ms-grid-rows: 90px;
  grid-template-rows: 90px;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .featured-session .tile-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .featured-session .tile-text {
    -ms-grid-rows: 72px;
    grid-template-rows: 72px;
    margin-bottom: 48px;
  }
}

.featured-session .tile-text.tile-text-speaker {
  -ms-grid-rows: 24px 8px 90px;
  grid-template-rows: 24px 90px;
  gap: 8px;
  margin-bottom: 16px;
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .featured-session .tile-text.tile-text-speaker {
    -ms-grid-rows: 24px 72px;
    grid-template-rows: 24px 72px;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .featured-session .tile-text.tile-text-speaker .field-title {
    -ms-grid-row: 3;
  }
}

.featured-session .tile-text .tile-speaker {
  -ms-grid-row: 1;
  grid-row: 1;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  max-width: 100%;
  overflow: hidden;
}

.featured-session .tile-text .tile-speaker .field-speaker {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.featured-session .tile-text .tile-speaker .field-speaker::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  font-size: 24px;
  vertical-align: bottom;
  padding-right: 4px;
}

.featured-session .tile-text .field-title {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -ms-grid-row: 1;
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .featured-session .tile-text .field-title {
    -webkit-line-clamp: 2;
    -ms-grid-row: 2;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .featured-session .tile-text .field-title a {
    white-space: pre-wrap;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .featured-session .tile-text .field-title a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.featured-session .tile-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
  align-self: flex-start;
  overflow: hidden;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
}

.featured-session .tile-tags .tile-tag {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  background-color: #FFF;
  border-radius: 8px;
  padding: 4px 8px;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%;
}

.featured-session .tile-tags .tile-tag:first-child {
  width: -webkit-fill-available;
  width: -moz-available;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .featured-session .tile-tags .tile-tag:first-child {
    margin-right: 16px;
  }
}

.featured-session .tile-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.featured-session .tile-cta .field-save-to-list .ml-save-to-list-link {
  margin: 0;
}

@media only screen and (min-width: 1440px) {
  .featured-session:not(.featured-content-with-slider) .items .item {
    margin-bottom: 32px;
  }
}

.featured-session .slick-navigation-wrap {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1080px) {
  .featured-session .slick-navigation-wrap {
    margin-bottom: 32px;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-session .slick-navigation-wrap {
    display: none;
  }
}

.featured-session .slick-navigation-wrap .slick-navigation .slick-dots li {
  padding-top: 0;
}

/*!
 *  Components - CTA box SCSS module
 *  component-cta-box
 */
.cta-box {
  margin: 0 0 72px 0;
}

.cta-box .component-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  background: #F2F7FC;
  border-radius: 4px;
}

@media only screen and (min-width: 1080px) {
  .cta-box .component-content {
    padding: 24px;
  }
}

.cta-box span[class*=" icon-"],
.cta-box span[class^="icon-"] {
  margin: 0 16px 0 0;
  font-size: 0;
  line-height: 0;
}

@media only screen and (min-width: 1080px) {
  .cta-box span[class*=" icon-"],
  .cta-box span[class^="icon-"] {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 0 40px 0 0;
  }
}

.cta-box span[class*=" icon-"]:before,
.cta-box span[class^="icon-"]:before {
  font-size: 48px;
  line-height: 1;
  color: #87A6D5;
}

@media only screen and (min-width: 600px) {
  .cta-box span[class*=" icon-"]:before,
  .cta-box span[class^="icon-"]:before {
    font-size: 72px;
  }
}

@media only screen and (min-width: 1080px) {
  .cta-box span[class*=" icon-"]:before,
  .cta-box span[class^="icon-"]:before {
    font-size: 128px;
  }
}

.cta-box .cta-content {
  padding: 8px 0;
}

@media only screen and (min-width: 1080px) {
  .cta-box .cta-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 16px 0;
  }
}

.cta-box .cta-box-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 0 8px 0;
}

@media only screen and (min-width: 600px) {
  .cta-box .cta-box-text {
    margin: 0 0 16px 0;
  }
}

@media only screen and (min-width: 1080px) {
  .cta-box .cta-box-text {
    margin: 0 40px 0 0;
  }
}

.cta-box .field-headline {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 1080px) {
  .cta-box .field-headline {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    line-height: 53px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.cta-box .field-headline h1,
.cta-box .field-headline h2,
.cta-box .field-headline h3,
.cta-box .field-headline h4,
.cta-box .field-headline h5,
.cta-box .field-headline h6,
.cta-box .field-headline p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  color: inherit;
}

.cta-box .field-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 360px) {
  .cta-box .field-description {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1080px) {
  .cta-box .field-description {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
    margin-top: 8px;
  }
}

.cta-box .field-description h1,
.cta-box .field-description h2,
.cta-box .field-description h3,
.cta-box .field-description h4,
.cta-box .field-description h5,
.cta-box .field-description h6,
.cta-box .field-description p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  color: inherit;
}

.cta-box .quote-image {
  position: relative;
  margin: 0 0 16px 0;
  overflow: hidden;
}

@media only screen and (min-width: 600px) {
  .cta-box .quote-image {
    margin: 8px 16px 8px 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
    height: 130px;
  }
}

@media only screen and (min-width: 1080px) {
  .cta-box .quote-image {
    margin: -24px 24px -24px -24px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 288px;
    flex: 0 0 288px;
    height: auto;
    min-height: 288px;
  }
}

@media only screen and (min-width: 600px) {
  .cta-box .quote-image-right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 8px 0 8px 16px;
  }
}

@media only screen and (min-width: 1080px) {
  .cta-box .quote-image-right {
    margin: -24px -24px -24px 24px;
  }
}

.cta-box .quote-image img {
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 600px) {
  .cta-box .quote-image img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.cta-box .sc-button {
  overflow: visible;
}

@media only screen and (min-width: 1080px) {
  .cta-box .sc-button {
    margin-left: auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

.cta-box .sc-button a {
  display: block;
  padding-top: 9px;
  padding-bottom: 9px;
  line-height: 22px;
  white-space: normal;
}

@media only screen and (min-width: 1080px) {
  .cta-box .sc-button a {
    padding-top: 13px;
    padding-bottom: 13px;
    white-space: nowrap;
  }
}

.cta-box.cta-quote-box .cta-box-text {
  margin: 0;
  padding: 8px 0;
}

@media only screen and (min-width: 1080px) {
  .cta-box.cta-quote-box .cta-box-text {
    padding: 16px 0;
  }
}

.cta-box.cta-quote-box .field-headline {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 360px) {
  .cta-box.cta-quote-box .field-headline {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1080px) {
  .cta-box.cta-quote-box .field-headline {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    line-height: 53px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.cta-box.cta-quote-box .field-headline h1,
.cta-box.cta-quote-box .field-headline h2,
.cta-box.cta-quote-box .field-headline h3,
.cta-box.cta-quote-box .field-headline h4,
.cta-box.cta-quote-box .field-headline h5,
.cta-box.cta-quote-box .field-headline h6,
.cta-box.cta-quote-box .field-headline p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  color: inherit;
}

.cta-box.cta-quote-box .field-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-top: 8px;
}

@media only screen and (min-width: 360px) {
  .cta-box.cta-quote-box .field-description {
    margin-top: 16px;
  }
}

@media only screen and (min-width: 1080px) {
  .cta-box.cta-quote-box .field-description {
    margin-top: 24px;
  }
}

.cta-box.cta-quote-box-image .component-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 600px) {
  .cta-box.cta-quote-box-image .component-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media only screen and (min-width: 1080px) {
  .cta-box.cta-quote-box-image .cta-box-text {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    padding: 16px;
  }
}

.cta-box.cta-alternate .component-content {
  background: #1562AD;
}

.cta-box.cta-alternate span[class*=" icon-"]:before,
.cta-box.cta-alternate span[class^="icon-"]:before {
  color: #FFF;
}

.cta-box.cta-alternate .field-headline {
  color: #FFF;
}

.cta-box.cta-alternate .field-description {
  color: #FFF;
}

.cta-box.cta-alternate .sc-button a {
  color: #FFF;
}

.cta-box.cta-alternate .sc-button--contained a {
  background-color: #FFF;
  color: #1562AD;
}

.cta-box.cta-alternate .sc-button--contained a:hover {
  background-color: #1B3067;
  color: #FFF;
}

.mini-navigation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 40px 0;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.mini-navigation-container .mini-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mini-navigation-container .mini-nav-container.next-container {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container.next-container {
    margin-bottom: 0;
    margin-left: 24px;
  }
}

.mini-navigation-container .mini-nav-container-hidden {
  display: none;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container-hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
  }
}

.mini-navigation-container .mini-nav-container .caption {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  color: #8A8886;
  margin-bottom: 8px;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container .caption-next {
    text-align: right;
  }
}

.mini-navigation-container .mini-nav-container .mini-nav-link {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: inherit;
  text-transform: inherit;
  padding: 16px;
  border-radius: 4px;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container .mini-nav-link {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
  }
}

.mini-navigation-container .mini-nav-container .mini-nav-link-next {
  color: #FFF;
  background-color: #1562AD;
  position: relative;
  padding-right: 48px;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container .mini-nav-link-next {
    padding-right: 56px;
  }
  .mini-navigation-container .mini-nav-container .mini-nav-link-next:hover {
    background-color: #1B3067;
  }
}

.mini-navigation-container .mini-nav-container .mini-nav-link-next:not([href]) {
  padding-right: 16px;
}

.mini-navigation-container .mini-nav-container .mini-nav-link-next:not([href]):before {
  display: none;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container .mini-nav-link-next:not([href]):hover {
    background-color: #1562AD;
  }
}

.mini-navigation-container .mini-nav-container .mini-nav-link-next:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  font-size: 12px;
  position: absolute;
  top: 22px;
  right: 24px;
  display: block;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container .mini-nav-link-next:before {
    font-size: 16px;
    top: 24px;
    right: 27px;
  }
}

.mini-navigation-container .mini-nav-container .mini-nav-link-prev {
  color: #1562AD;
  background-color: #F9F9F9;
  padding-left: 48px;
  position: relative;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container .mini-nav-link-prev {
    padding-left: 56px;
  }
  .mini-navigation-container .mini-nav-container .mini-nav-link-prev:hover {
    background-color: #F3F3F3;
  }
}

.mini-navigation-container .mini-nav-container .mini-nav-link-prev:not([href]) {
  padding-left: 16px;
}

.mini-navigation-container .mini-nav-container .mini-nav-link-prev:not([href]):before {
  display: none;
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container .mini-nav-link-prev:not([href]):hover {
    background-color: #F9F9F9;
  }
}

.mini-navigation-container .mini-nav-container .mini-nav-link-prev:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  font-size: 12px;
  position: absolute;
  top: 22px;
  left: 24px;
  display: block;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media only screen and (min-width: 1080px) {
  .mini-navigation-container .mini-nav-container .mini-nav-link-prev:before {
    font-size: 16px;
    top: 24px;
    left: 27px;
  }
}

/*!
 *  Components - Side menu SCSS module
 *  component-side-menu
 */
.qia-side-menu {
  color: #1562AD;
  list-style: none;
  margin: 0;
  padding: 0;
}

.qia-side-menu a {
  text-decoration: none;
}

.qia-side-menu-l1 {
  color: #1562AD;
  list-style: none;
  margin: 0;
  padding: 0;
}

.qia-side-menu-l1 a {
  text-decoration: none;
}

.qia-side-menu-l1 .qia-side-menu-header-l1 {
  margin-bottom: 12px;
}

.qia-side-menu-l1 .qia-side-menu-link-l1 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  display: inline-block;
}

.qia-side-menu-l1 .qia-side-menu-link-active {
  padding: 2px 4px;
  border-radius: 4px;
  background-color: #E5EFF9;
}

.qia-side-menu-l2 {
  color: #1562AD;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 32px;
  margin-bottom: 12px;
}

.qia-side-menu-l2 a {
  text-decoration: none;
}

.qia-side-menu-l2 .qia-side-menu-link-l2 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  display: inline-block;
}

.qia-side-menu-l2 .qia-side-menu-link-active {
  padding: 2px 4px;
  border-radius: 4px;
  background-color: #E5EFF9;
}

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/** paceholder */
.component.qiagen-accordion {
  margin: 0 0 40px 0;
}

@media only screen and (min-width: 1080px) {
  .component.qiagen-accordion {
    margin: 0 0 72px 0;
  }
}

/*!
 *  video-component and events-and-webinars component scss
 */
.video-module {
  grid-template-areas: "info" "content" "categories";
}

@media only screen and (min-width: 1080px) {
  .video-module {
    grid-template-areas: "content info" "content categories" "content .";
  }
}

.event-module {
  grid-template-areas: "sidebar" "save" "content" "categories";
}

@media only screen and (min-width: 1080px) {
  .event-module {
    grid-template-areas: "content sidebar" "content categories" "content save" "content .";
  }
}

.virtual-event-module {
  grid-template-areas: "sidebar" "content";
}

@media only screen and (min-width: 1080px) {
  .virtual-event-module {
    grid-template-areas: "content sidebar" "content ." "agenda .";
  }
}

.virtual-event-module-info-sidebar.sidebar-sticky {
  top: 6rem;
  z-index: 9999;
}

@media only screen and (max-width: 1079px) {
  .virtual-event-module-info-sidebar.sidebar-sticky {
    background: white;
    -webkit-box-shadow: 0px -2px 4px rgba(8, 35, 48, 0.24);
    box-shadow: 0px -2px 4px rgba(8, 35, 48, 0.24);
    top: -webkit-calc(100% - 64px);
    top: calc(100% - 64px);
    left: auto !important;
    margin-left: -24px;
    margin-right: -24px;
    width: -webkit-calc(100% + 48px);
    width: calc(100% + 48px);
  }
  .virtual-event-module-info-sidebar.sidebar-sticky wca-event-info-box-wrapper {
    display: none;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: white;
    height: 64px;
    margin-bottom: 0;
    width: 100vw;
    min-width: 100vw;
    padding: 0;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info .live {
    display: none;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-header {
    display: none;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-title {
    display: none;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-date {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 16px;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-date .date-from,
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-date .date-to {
    font-size: 0.1px;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-date .date-from::after,
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-date .date-to::after {
    content: attr(data-date-formated);
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: inherit;
    text-transform: inherit;
    vertical-align: middle;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-button {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-button wca-event-registration-button {
    margin-right: 8px;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info-button .link-container {
    display: none;
  }
}

@media only screen and (max-width: 1079px) and (max-width: 599px) {
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info.add-to-calendar .virtual-event-module-info-date {
    display: none;
  }
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-info.add-to-calendar .virtual-event-module-info-button {
    margin: auto;
  }
}

@media only screen and (max-width: 1079px) {
  .virtual-event-module-info-sidebar.sidebar-sticky .virtual-event-module-save {
    display: none;
  }
}

.virtual-event-module-info {
  margin-bottom: 24px;
}

.virtual-event-module-info-header {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-decoration: inherit;
  text-transform: uppercase;
}

.virtual-event-module-info-title {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .virtual-event-module-info-title {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.virtual-event-module-info-date .date-from,
.virtual-event-module-info-date .date-to {
  display: inline-block;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
}

.virtual-event-module-info-button {
  margin-top: 16px;
}

.video-module-container,
.event-module-container {
  margin-bottom: 24px;
}

@media only screen and (min-width: 600px) {
  .video-module-container,
  .event-module-container {
    margin-bottom: 16px;
  }
}

@media only screen and (min-width: 1080px) {
  .video-module-container,
  .event-module-container {
    margin-bottom: 0;
  }
}

.video-module-container > :last-child,
.event-module-container > :last-child {
  margin-bottom: 0;
}

.video-module-info .video-module-duration,
.event-module-info .video-module-duration {
  margin-bottom: 16px;
}

.video-module-info .video-module-release,
.event-module-info .video-module-release {
  margin-bottom: 16px;
}

.video-module-info .video-module-duration,
.video-module-info .video-module-release,
.event-module-info .video-module-duration,
.event-module-info .video-module-release {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.video-module-info .video-module-duration-text,
.video-module-info .video-module-release-text,
.event-module-info .video-module-duration-text,
.event-module-info .video-module-release-text {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  -ms-grid-column: 1;
}

.video-module-info .video-module-duration-time, .video-module-info .video-module-duration-date,
.video-module-info .video-module-release-time,
.video-module-info .video-module-release-date,
.event-module-info .video-module-duration-time,
.event-module-info .video-module-duration-date,
.event-module-info .video-module-release-time,
.event-module-info .video-module-release-date {
  -ms-grid-column: 2;
  text-align: right;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  white-space: nowrap;
}

.video-module-info .event-module-start-date,
.event-module-info .event-module-start-date {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .video-module-info .event-module-start-date,
  .event-module-info .event-module-start-date {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.video-module-info .event-module-time-span,
.event-module-info .event-module-time-span {
  margin-bottom: 16px;
}

.video-module-info .event-module-time-span span,
.event-module-info .event-module-time-span span {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 1080px) {
  .video-module-info .event-module-time-span span,
  .event-module-info .event-module-time-span span {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.video-module-info .event-module-time-span .event-module-hyphen + span,
.event-module-info .event-module-time-span .event-module-hyphen + span {
  display: block;
}

.video-module-info .event-module-duration,
.event-module-info .event-module-duration {
  margin-bottom: 16px;
}

.video-module-info .event-module-duration-text, .video-module-info .event-module-duration-time,
.event-module-info .event-module-duration-text,
.event-module-info .event-module-duration-time {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
}

.video-module-info .event-module-duration-text,
.event-module-info .event-module-duration-text {
  margin-right: 5px;
}

.video-module-categories,
.event-module-categories {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  background-color: #F9F9F9;
  border-radius: 4px;
  grid-area: categories;
  padding: 16px 16px 0 16px;
}

.event-module > .video-module-categories,
.event-module > .event-module-categories {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}

@media only screen and (min-width: 1080px) {
  .video-module-categories,
  .event-module-categories {
    padding: 24px 24px 8px 24px;
  }
}

.video-module-categories-subtitle,
.event-module-categories-subtitle {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
}

.video-module-categories-list,
.event-module-categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.video-module-categories-item,
.event-module-categories-item {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  background-color: #FFF;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 0 16px 16px 0;
}

.video-module-categories .categories-video-icon,
.event-module-categories .categories-video-icon {
  padding-left: 32px;
}

.video-module-categories .categories-video-icon:before,
.event-module-categories .categories-video-icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
}

.video-module-categories .categories-virtual-demo-icon,
.event-module-categories .categories-virtual-demo-icon {
  padding-left: 35px;
}

.video-module-categories .categories-virtual-demo-icon:before,
.event-module-categories .categories-virtual-demo-icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
}

.video-module-categories .categories-video-icon,
.video-module-categories .categories-virtual-demo-icon,
.event-module-categories .categories-video-icon,
.event-module-categories .categories-virtual-demo-icon {
  position: relative;
}

.video-module-categories .categories-video-icon:before,
.video-module-categories .categories-virtual-demo-icon:before,
.event-module-categories .categories-video-icon:before,
.event-module-categories .categories-virtual-demo-icon:before {
  font-size: 20px;
  line-height: 28px;
  position: absolute;
  left: 8px;
  top: 1px;
}

.video-module-speakers,
.event-module-speakers {
  background-color: #F9F9F9;
  padding: 16px 0;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.video-module-speakers:before, .video-module-speakers:after,
.event-module-speakers:before,
.event-module-speakers:after {
  z-index: 9;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #F9F9F9;
}

@media only screen and (min-width: 1080px) {
  .video-module-speakers:before, .video-module-speakers:after,
  .event-module-speakers:before,
  .event-module-speakers:after {
    content: none;
  }
}

.video-module-speakers:after,
.event-module-speakers:after {
  right: -100%;
}

.video-module-speakers:before,
.event-module-speakers:before {
  left: -100%;
}

@media only screen and (min-width: 1080px) {
  .video-module-speakers,
  .event-module-speakers {
    padding: 24px;
    margin: 0;
  }
}

.video-module-speakers-header,
.event-module-speakers-header {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-decoration: inherit;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 16px;
}

.video-module-speaker,
.event-module-speaker {
  margin-bottom: 16px;
}

@media only screen and (min-width: 600px) {
  .video-module-speaker,
  .event-module-speaker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (min-width: 1080px) {
  .video-module-speaker,
  .event-module-speaker {
    margin-bottom: 24px;
  }
}

.video-module-speaker:last-child,
.event-module-speaker:last-child {
  margin-bottom: 0;
}

.video-module-speaker-image,
.event-module-speaker-image {
  width: 50%;
  margin-bottom: 24px;
}

@media only screen and (min-width: 600px) {
  .video-module-speaker-image,
  .event-module-speaker-image {
    width: 25%;
    margin-bottom: 0;
  }
}

.video-module-speaker-image img,
.event-module-speaker-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 600px) {
  .video-module-speaker-data-wrapper:only-child,
  .event-module-speaker-data-wrapper:only-child {
    width: 100%;
    margin-left: 0;
  }
}

@media only screen and (min-width: 600px) {
  .video-module-speaker-data-wrapper,
  .event-module-speaker-data-wrapper {
    width: 75%;
    margin-left: 24px;
  }
}

.video-module-speaker-data,
.event-module-speaker-data {
  margin-bottom: 16px;
}

.video-module-speaker span.event-module-speaker-name, .video-module-speaker span.event-module-speaker-title,
.event-module-speaker span.event-module-speaker-name,
.event-module-speaker span.event-module-speaker-title {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
}

.video-module-speaker-company,
.event-module-speaker-company {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
}

.video-module-speaker-description,
.event-module-speaker-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

.video-module-speaker-description::after,
.event-module-speaker-description::after {
  content: '';
  display: table;
  clear: both;
}

.video-module-description,
.event-module-description {
  margin-bottom: 32px;
}

@media only screen and (min-width: 600px) {
  .video-module-description,
  .event-module-description {
    margin-bottom: 24px;
  }
}

@media only screen and (min-width: 1080px) {
  .video-module-description,
  .event-module-description {
    margin-bottom: 32px;
  }
}

.video-module,
.event-module,
.virtual-event-module {
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 1080px) {
  .video-module,
  .event-module,
  .virtual-event-module {
    -ms-grid-columns: 2fr 24px 1fr;
    grid-template-columns: 2fr 1fr;
    margin-bottom: 72px;
  }
}

.video-module-container,
.event-module-container,
.virtual-event-module-container {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: content;
}

.event-module > .video-module-container,
.event-module > .event-module-container,
.event-module > .virtual-event-module-container {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
}

.virtual-event-module > .video-module-container,
.virtual-event-module > .event-module-container,
.virtual-event-module > .virtual-event-module-container {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
}

.video-module-container web-component,
.video-module-container .video-module-iframe,
.video-module-container .field-image,
.event-module-container web-component,
.event-module-container .video-module-iframe,
.event-module-container .field-image,
.virtual-event-module-container web-component,
.virtual-event-module-container .video-module-iframe,
.virtual-event-module-container .field-image {
  display: block;
  margin-bottom: 24px;
}

@media only screen and (min-width: 1080px) {
  .video-module-container web-component,
  .video-module-container .video-module-iframe,
  .video-module-container .field-image,
  .event-module-container web-component,
  .event-module-container .video-module-iframe,
  .event-module-container .field-image,
  .virtual-event-module-container web-component,
  .virtual-event-module-container .video-module-iframe,
  .virtual-event-module-container .field-image {
    margin-bottom: 40px;
  }
}

.video-module-container .field-image img,
.event-module-container .field-image img,
.virtual-event-module-container .field-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.video-module-container .video-module-iframe,
.event-module-container .video-module-iframe,
.virtual-event-module-container .video-module-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.video-module-container .video-module-iframe iframe,
.event-module-container .video-module-iframe iframe,
.virtual-event-module-container .video-module-iframe iframe {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.video-module-info-sidebar,
.event-module-info-sidebar,
.virtual-event-module-info-sidebar {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sidebar;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.virtual-event-module > .video-module-info-sidebar,
.virtual-event-module > .event-module-info-sidebar,
.virtual-event-module > .virtual-event-module-info-sidebar {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.video-module-info,
.event-module-info,
.virtual-event-module-info {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  background-color: #F2F7FC;
  border-radius: 4px;
  grid-area: info;
  padding: 16px;
  display: -ms-grid;
  display: grid;
}

.video-module-info > *:nth-child(1),
.event-module-info > *:nth-child(1),
.virtual-event-module-info > *:nth-child(1) {
  -ms-grid-row: 1;
}

.video-module-info > *:nth-child(2),
.event-module-info > *:nth-child(2),
.virtual-event-module-info > *:nth-child(2) {
  -ms-grid-row: 2;
}

.video-module-info > *:nth-child(3),
.event-module-info > *:nth-child(3),
.virtual-event-module-info > *:nth-child(3) {
  -ms-grid-row: 3;
}

.video-module-info > *:nth-child(4),
.event-module-info > *:nth-child(4),
.virtual-event-module-info > *:nth-child(4) {
  -ms-grid-row: 4;
}

.video-module-info > *:nth-child(5),
.event-module-info > *:nth-child(5),
.virtual-event-module-info > *:nth-child(5) {
  -ms-grid-row: 5;
}

@media only screen and (min-width: 1080px) {
  .video-module-info,
  .event-module-info,
  .virtual-event-module-info {
    padding: 24px;
  }
}

.video-module-info .live,
.event-module-info .live,
.virtual-event-module-info .live {
  margin-bottom: 16px;
}

.video-module-info wca-restricted-button,
.video-module-info wca-event-registration-button,
.event-module-info wca-restricted-button,
.event-module-info wca-event-registration-button,
.virtual-event-module-info wca-restricted-button,
.virtual-event-module-info wca-event-registration-button {
  margin: 0;
  padding: 0;
  display: block;
  -ms-grid-row: 5;
}

.video-module-info wca-restricted-button .restricted-button,
.video-module-info wca-restricted-button .event-button-page,
.video-module-info wca-event-registration-button .restricted-button,
.video-module-info wca-event-registration-button .event-button-page,
.event-module-info wca-restricted-button .restricted-button,
.event-module-info wca-restricted-button .event-button-page,
.event-module-info wca-event-registration-button .restricted-button,
.event-module-info wca-event-registration-button .event-button-page,
.virtual-event-module-info wca-restricted-button .restricted-button,
.virtual-event-module-info wca-restricted-button .event-button-page,
.virtual-event-module-info wca-event-registration-button .restricted-button,
.virtual-event-module-info wca-event-registration-button .event-button-page {
  display: block;
  margin-top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.video-module-info wca-restricted-button .restricted-button > a,
.video-module-info wca-restricted-button .event-button-page > a,
.video-module-info wca-event-registration-button .restricted-button > a,
.video-module-info wca-event-registration-button .event-button-page > a,
.event-module-info wca-restricted-button .restricted-button > a,
.event-module-info wca-restricted-button .event-button-page > a,
.event-module-info wca-event-registration-button .restricted-button > a,
.event-module-info wca-event-registration-button .event-button-page > a,
.virtual-event-module-info wca-restricted-button .restricted-button > a,
.virtual-event-module-info wca-restricted-button .event-button-page > a,
.virtual-event-module-info wca-event-registration-button .restricted-button > a,
.virtual-event-module-info wca-event-registration-button .event-button-page > a {
  min-width: 100%;
}

.video-module-info wca-restricted-button .restricted-button .video-module-register-account-link,
.video-module-info wca-restricted-button .restricted-button .link-container,
.video-module-info wca-restricted-button .event-button-page .video-module-register-account-link,
.video-module-info wca-restricted-button .event-button-page .link-container,
.video-module-info wca-event-registration-button .restricted-button .video-module-register-account-link,
.video-module-info wca-event-registration-button .restricted-button .link-container,
.video-module-info wca-event-registration-button .event-button-page .video-module-register-account-link,
.video-module-info wca-event-registration-button .event-button-page .link-container,
.event-module-info wca-restricted-button .restricted-button .video-module-register-account-link,
.event-module-info wca-restricted-button .restricted-button .link-container,
.event-module-info wca-restricted-button .event-button-page .video-module-register-account-link,
.event-module-info wca-restricted-button .event-button-page .link-container,
.event-module-info wca-event-registration-button .restricted-button .video-module-register-account-link,
.event-module-info wca-event-registration-button .restricted-button .link-container,
.event-module-info wca-event-registration-button .event-button-page .video-module-register-account-link,
.event-module-info wca-event-registration-button .event-button-page .link-container,
.virtual-event-module-info wca-restricted-button .restricted-button .video-module-register-account-link,
.virtual-event-module-info wca-restricted-button .restricted-button .link-container,
.virtual-event-module-info wca-restricted-button .event-button-page .video-module-register-account-link,
.virtual-event-module-info wca-restricted-button .event-button-page .link-container,
.virtual-event-module-info wca-event-registration-button .restricted-button .video-module-register-account-link,
.virtual-event-module-info wca-event-registration-button .restricted-button .link-container,
.virtual-event-module-info wca-event-registration-button .event-button-page .video-module-register-account-link,
.virtual-event-module-info wca-event-registration-button .event-button-page .link-container {
  margin: 16px 0 0 0;
  padding: 0;
}

.video-module-info wca-restricted-button .restricted-button .video-module-register-account-link a,
.video-module-info wca-restricted-button .restricted-button .link-container a,
.video-module-info wca-restricted-button .event-button-page .video-module-register-account-link a,
.video-module-info wca-restricted-button .event-button-page .link-container a,
.video-module-info wca-event-registration-button .restricted-button .video-module-register-account-link a,
.video-module-info wca-event-registration-button .restricted-button .link-container a,
.video-module-info wca-event-registration-button .event-button-page .video-module-register-account-link a,
.video-module-info wca-event-registration-button .event-button-page .link-container a,
.event-module-info wca-restricted-button .restricted-button .video-module-register-account-link a,
.event-module-info wca-restricted-button .restricted-button .link-container a,
.event-module-info wca-restricted-button .event-button-page .video-module-register-account-link a,
.event-module-info wca-restricted-button .event-button-page .link-container a,
.event-module-info wca-event-registration-button .restricted-button .video-module-register-account-link a,
.event-module-info wca-event-registration-button .restricted-button .link-container a,
.event-module-info wca-event-registration-button .event-button-page .video-module-register-account-link a,
.event-module-info wca-event-registration-button .event-button-page .link-container a,
.virtual-event-module-info wca-restricted-button .restricted-button .video-module-register-account-link a,
.virtual-event-module-info wca-restricted-button .restricted-button .link-container a,
.virtual-event-module-info wca-restricted-button .event-button-page .video-module-register-account-link a,
.virtual-event-module-info wca-restricted-button .event-button-page .link-container a,
.virtual-event-module-info wca-event-registration-button .restricted-button .video-module-register-account-link a,
.virtual-event-module-info wca-event-registration-button .restricted-button .link-container a,
.virtual-event-module-info wca-event-registration-button .event-button-page .video-module-register-account-link a,
.virtual-event-module-info wca-event-registration-button .event-button-page .link-container a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  color: #1562AD;
  text-align: center;
  margin: 0;
  padding: 0;
  width: auto;
  min-height: 0;
  background: none;
}

.video-module-info .sc-button > a,
.event-module-info .sc-button > a,
.virtual-event-module-info .sc-button > a {
  width: 100%;
  -ms-grid-row: 5;
}

.video-module-description,
.event-module-description,
.virtual-event-module-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

.video-module-description::after,
.event-module-description::after,
.virtual-event-module-description::after {
  content: '';
  display: table;
  clear: both;
}

.video-module-save,
.event-module-save,
.virtual-event-module-save {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: save;
}

.video-module-save .ml-save-to-list-link,
.event-module-save .ml-save-to-list-link,
.virtual-event-module-save .ml-save-to-list-link {
  margin-top: 0 !important;
  margin-right: 24px !important;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .video-module {
    -ms-grid-rows: auto 24px auto 24px auto;
    -ms-grid-columns: 1fr;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .video-module {
    -ms-grid-rows: auto 24px auto 24px auto;
    -ms-grid-columns: 2fr 24px 1fr;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .video-module > .video-module-container {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-row-span: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .video-module > .video-module-container {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-row-span: 5;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .video-module > .video-module-info {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .video-module > .video-module-info {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .video-module > .video-module-info > .video-module-duration {
    -ms-grid-row: 1;
  }
  .video-module > .video-module-info > .video-module-release {
    -ms-grid-row: 3;
  }
  .video-module > .video-module-categories {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .video-module > .video-module-categories {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .event-module {
    -ms-grid-rows: auto 24px auto 24px auto 24px auto;
    -ms-grid-columns: 1fr;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .event-module {
    -ms-grid-rows: auto 24px auto 24px auto 24px auto;
    -ms-grid-columns: 2fr 24px 1fr;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .event-module > .event-module-container {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-row-span: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .event-module > .event-module-container {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-row-span: 7;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .event-module > .event-module-save {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .event-module > .event-module-save {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .event-module > .event-module-info-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .event-module > .event-module-info-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .event-module > .event-module-info > .event-module-start-date {
    -ms-grid-row: 1;
  }
  .event-module > .event-module-info > .event-module-time-span {
    -ms-grid-row: 3;
  }
  .event-module > .event-module-info > .event-module-duration {
    -ms-grid-row: 5;
  }
  .event-module > .event-module-info > div + div + div + div {
    -ms-grid-row: 7;
  }
  .event-module > .event-module-categories {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .event-module > .event-module-categories {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .virtual-event-module {
    -ms-grid-rows: auto 24px auto 24px auto;
    -ms-grid-columns: 1fr;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .virtual-event-module {
    -ms-grid-rows: auto 24px auto 24px auto;
    -ms-grid-columns: 2fr 24px 1fr;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .virtual-event-module > .virtual-event-module-container {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-row-span: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .virtual-event-module > .virtual-event-module-container {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-row-span: 5;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .virtual-event-module > .virtual-event-module-info-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .virtual-event-module > .virtual-event-module-info-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .virtual-event-module > .virtual-event-module-info-sidebar .virtual-event-module-info-header {
    -ms-grid-row: 1;
  }
  .virtual-event-module > .virtual-event-module-info-sidebar .virtual-event-module-info-title {
    -ms-grid-row: 2;
  }
  .virtual-event-module > .virtual-event-module-info-sidebar .virtual-event-module-info-date {
    -ms-grid-row: 3;
  }
  .virtual-event-module > .virtual-event-module-info-sidebar .virtual-event-module-info-button {
    -ms-grid-row: 4;
  }
  .virtual-event-module > .virtual-event-module-save {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1080px), only screen and (-ms-high-contrast: active) and (min-width: 1080px) {
  .virtual-event-module > .virtual-event-module-save {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

.qia-navigation-list,
.qia-navigation-list a {
  color: #1562AD;
}

.qia-navigation-list a:hover {
  text-decoration: underline;
}

.qia-navigation-list .qia-navigation-list--header {
  display: inline-block;
  margin: 0;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (max-width: 1079px) {
  .qia-navigation-list .qia-navigation-list--header {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.qia-navigation-list .qia-navigation-list--content {
  margin-top: 8px;
}

@media only screen and (max-width: 1079px) {
  .qia-navigation-list .qia-navigation-list--content {
    margin-top: 16px;
  }
}

.qia-navigation-list .qia-navigation-list--link {
  display: inline-block;
  margin: 0 0 8px 0;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: inherit;
  text-transform: inherit;
  font-weight: normal;
}

.qia-navigation-list .qia-navigation--list-link-wrapper {
  position: relative;
}

.qia-navigation-list.qia-navigation-list-decorated > .qia-navigation--list-link-wrapper {
  position: relative;
}

@media only screen and (min-width: 1080px) {
  .qia-navigation-list.qia-navigation-list-decorated > .qia-navigation--list-link-wrapper {
    padding-left: 60px;
  }
  .qia-navigation-list.qia-navigation-list-decorated > .qia-navigation--list-link-wrapper:after {
    content: " ";
    display: block;
    position: absolute;
    left: 44px;
    top: 0px;
    height: 100%;
    width: 0px;
    border-left: solid 1px #CEE0F3;
  }
}

.qia-navigation-list.qia-navigation-list-decorated > .qia-navigation--list-link-wrapper:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  font-size: 32px;
  color: #1562AD;
  position: absolute;
  display: inline-block;
  text-align: center;
  left: 0px;
}

@media only screen and (max-width: 1079px) {
  .qia-navigation-list.qia-navigation-list-decorated > .qia-navigation--list-link-wrapper {
    padding-left: 32px;
  }
  .qia-navigation-list.qia-navigation-list-decorated > .qia-navigation--list-link-wrapper .qia-navigation-list--content {
    padding-left: 16px;
    position: relative;
  }
  .qia-navigation-list.qia-navigation-list-decorated > .qia-navigation--list-link-wrapper .qia-navigation-list--content:after {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0px;
    height: 100%;
    width: 0px;
    border-left: solid 1px #CEE0F3;
  }
  .qia-navigation-list.qia-navigation-list-decorated > .qia-navigation--list-link-wrapper:before {
    font-size: 24px;
    padding-top: 3px;
  }
}

.hub-navigation .hub-navigation--panel {
  background-color: #F9F9F9;
  padding: 32px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1079px) {
  .hub-navigation .hub-navigation--panel {
    padding: 16px;
  }
}

.hub-navigation .hub-navigation--panel-header-title > a,
.hub-navigation .hub-navigation--panel-header-title > span {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 34px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
}

@media only screen and (max-width: 1079px) {
  .hub-navigation .hub-navigation--panel-header-title > a,
  .hub-navigation .hub-navigation--panel-header-title > span {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
    margin-bottom: 16px;
  }
}

.hub-navigation .hub-navigation--panel-header-title > a {
  color: #1562AD;
}

.hub-navigation .hub-navigation--panel-header-title > a:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  padding: 0 18px;
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
}

@media only screen and (max-width: 1079px) {
  .hub-navigation .hub-navigation--panel-header-title > a:after {
    font-size: 12px;
    padding: 0 12px;
  }
}

.hub-navigation .hub-navigation--panel-header-title > a:after:hover {
  text-decoration: none;
}

.hub-navigation .hub-navigation--panel-header-description,
.hub-navigation .hub-navigation--panel-header-description p,
.hub-navigation .hub-navigation--panel-header-description span {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (max-width: 1079px) {
  .hub-navigation .hub-navigation--panel-header-description {
    margin-bottom: 24px;
  }
}

.hub-navigation .hub-navigation--panel-content {
  margin-top: 40px;
}

.hub-navigation .hub-navigation--list-l1 {
  margin-bottom: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hub-navigation .hub-navigation--list-l1 .hub-navigation--list-item-l1 {
  display: block;
  width: 33.33%;
  margin-bottom: 40px;
}

.hub-navigation .hub-navigation--list-l1 .hub-navigation--list-item-l1:not(.qia-navigation-list-decorated) .qia-navigation--list-link-wrapper {
  padding: 0 16px;
}

.hub-navigation .hub-navigation--list-l1 .hub-navigation--list-item-l1.qia-navigation-list-decorated .qia-navigation--list-link-wrapper {
  padding-right: 16px;
}

@media only screen and (max-width: 1079px) {
  .hub-navigation .hub-navigation--list-l1 {
    margin-bottom: -24px;
    display: block;
  }
  .hub-navigation .hub-navigation--list-l1 .hub-navigation--list-item-l1 {
    width: 100%;
    margin-bottom: 24px;
  }
}

/*!
 *  Components - Knowledge hub header SCSS module
 *  component-header-lightgrey
 */
.header-lightgrey.header-breadcrumbs {
  margin-bottom: 0;
  padding-bottom: 16px;
}

@media only screen and (max-width: 599px) {
  .header-lightgrey.header-breadcrumbs {
    display: none;
  }
}

@media only screen and (min-width: 600px) {
  .header-lightgrey.header-breadcrumbs {
    padding-bottom: 0;
  }
}

.header-lightgrey {
  padding: 0 16px;
  background: #F9F9F9;
  margin-bottom: 48px;
}

@media only screen and (min-width: 360px) {
  .header-lightgrey {
    margin-bottom: 24px;
  }
}

@media only screen and (min-width: 1080px) {
  .header-lightgrey {
    padding: 0 24px;
  }
}

@media only screen and (min-width: 360px) {
  .header-lightgrey .breadcrumb {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

.header-lightgrey .rich-text,
.header-lightgrey .media-teaser {
  margin: 0;
}

.header-lightgrey .rich-text::after,
.header-lightgrey .media-teaser::after {
  content: '';
  display: table;
  clear: both;
}

.header-lightgrey .rich-text .component-content,
.header-lightgrey .media-teaser .component-content {
  color: rgba(0, 0, 0, 0.72);
  margin-top: 0;
  margin-bottom: 24px;
}

@media only screen and (min-width: 1080px) {
  .header-lightgrey .rich-text .component-content,
  .header-lightgrey .media-teaser .component-content {
    margin-top: 0;
    margin-bottom: 40px;
  }
}

.header-lightgrey .rich-text .component-content h2,
.header-lightgrey .media-teaser .component-content h2 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 360px) {
  .header-lightgrey .rich-text .component-content h2,
  .header-lightgrey .media-teaser .component-content h2 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 34px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
    margin-bottom: 24px;
  }
}

@media only screen and (min-width: 600px) {
  .header-lightgrey .rich-text .component-content h2,
  .header-lightgrey .media-teaser .component-content h2 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 48px;
    line-height: 64px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.header-lightgrey .rich-text .component-content h6,
.header-lightgrey .media-teaser .component-content h6 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 360px) {
  .header-lightgrey .rich-text .component-content h6,
  .header-lightgrey .media-teaser .component-content h6 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.header-lightgrey .media-teaser .component-content {
  margin-top: 16px;
  margin-bottom: 16px;
}

.header-lightgrey .media-teaser .component-content .field-text h1 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
}

.header-lightgrey .media-teaser .component-content .field-text p {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
}

.header-lightgrey .media-teaser .component-content .field-text p strong {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 600px) {
  .header-lightgrey .media-teaser .component-content {
    margin-top: 0;
    margin-bottom: 24px;
  }
  .header-lightgrey .media-teaser .component-content .field-text h1 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 34px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
  .header-lightgrey .media-teaser .component-content .field-text p strong {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1080px) {
  .header-lightgrey .media-teaser .component-content {
    margin-top: 24px;
  }
  .header-lightgrey .media-teaser .component-content .field-text h1 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 48px;
    line-height: 64px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.header-lightgrey .featured-content .items .item > div {
  background: #FFF;
}

.header-lightgrey .featured-tile .items .item:first-child > div {
  background: #FFF;
}

@media only screen and (min-width: 1080px) {
  .header-lightgrey .featured-tile .items .item:first-child > div {
    background: none;
  }
}

/*!
 *  Components - Video Teaser SCSS module
 *  component-video-teaser
 */
.video-teaser .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .video-teaser .items {
    margin-bottom: 48px;
  }
}

.video-teaser .items .item {
  margin-bottom: 24px;
  margin-right: 12px;
  margin-left: 12px;
}

@media only screen and (min-width: 1080px) {
  .video-teaser .items .item {
    width: -webkit-calc(33.33333% - 24px);
    width: calc(33.33333% - 24px);
  }
}

.video-teaser .items .item .video-teaser-item {
  background: #F9F9F9;
}

@media only screen and (min-width: 600px) and (max-width: 1079px) {
  .video-teaser .items .item .video-teaser-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .video-teaser .items .item .video-teaser-item .field-image {
    width: 65%;
  }
}

.video-teaser .field-image {
  height: 224px;
}

.video-teaser .field-image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 0;
  width: 100%;
  min-height: 100%;
}

.video-teaser .field-content {
  padding-right: 16px;
  padding-left: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background: #F9F9F9;
}

@media only screen and (min-width: 1080px) {
  .video-teaser .field-content {
    padding-right: 24px;
    padding-left: 24px;
    max-height: none;
  }
}

.video-teaser .field-video-link {
  margin-top: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media only screen and (min-width: 1080px) {
  .video-teaser .field-video-link {
    min-height: 60px;
  }
}

.video-teaser .field-video-link a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  color: #1562AD;
}

.video-teaser .field-video-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  height: 90px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 16px;
}

@media only screen and (max-width: 1079px) {
  .video-teaser .field-video-description {
    display: none;
  }
}

.video-teaser .video-teaser-categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
}

@media only screen and (min-width: 1080px) {
  .video-teaser .video-teaser-categories-list {
    margin-bottom: 24px;
  }
}

.video-teaser .video-teaser-categories-list .video-teaser-categories-item {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  background-color: #FFF;
  border-radius: 8px;
  padding: 4px 8px;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%;
}

.video-teaser .video-teaser-categories-list .video-teaser-categories-item:first-child {
  width: -webkit-fill-available;
  width: -moz-available;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

.video-teaser .video-teaser-categories-list .categories-video-icon {
  padding-left: 32px;
}

.video-teaser .video-teaser-categories-list .categories-video-icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
}

.video-teaser .video-teaser-categories-list .categories-virtual-demo-icon {
  padding-left: 35px;
}

.video-teaser .video-teaser-categories-list .categories-virtual-demo-icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
}

.video-teaser .video-teaser-categories-list .categories-video-icon,
.video-teaser .video-teaser-categories-list .categories-virtual-demo-icon {
  position: relative;
}

.video-teaser .video-teaser-categories-list .categories-video-icon:before,
.video-teaser .video-teaser-categories-list .categories-virtual-demo-icon:before {
  font-size: 20px;
  line-height: 28px;
  position: absolute;
  left: 8px;
  top: 1px;
}

.video-teaser .field-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .video-teaser .field-cta {
    margin-bottom: 24px;
  }
}

.video-teaser .field-cta .field-save-to-list .ml-save-to-list-link {
  margin: 0;
}

/*!
 *  Components - Page Teaser SCSS module
 *  component-page-teaser
 */
.page-teaser .items .item {
  width: 100%;
}

@media only screen and (min-width: 1080px) {
  .page-teaser .items .item {
    width: -webkit-calc(100% / 3.0001);
    width: calc(100% / 3.0001);
  }
}

.page-teaser .items .item > div {
  padding-bottom: 0;
}

@media only screen and (min-width: 600px) {
  .page-teaser .page-teaser-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    height: 100%;
  }
}

@media only screen and (min-width: 1080px) {
  .page-teaser .page-teaser-item {
    display: block;
    height: auto;
  }
}

@media only screen and (min-width: 600px) {
  .page-teaser .field-image {
    width: 100%;
    height: auto;
  }
}

.page-teaser .field-image img {
  margin-bottom: 0;
  display: block;
}

.page-teaser .field-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.page-teaser .field-featured-title,
.page-teaser .title-with-icon {
  padding-top: 16px;
  margin-bottom: 8px;
}

@media only screen and (min-width: 600px) {
  .page-teaser .field-featured-title,
  .page-teaser .title-with-icon {
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 16px;
  }
}

@media only screen and (min-width: 1080px) {
  .page-teaser .field-featured-title,
  .page-teaser .title-with-icon {
    margin-bottom: 8px;
  }
}

.page-teaser .field-featured-title a,
.page-teaser .title-with-icon a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 1080px) {
  .page-teaser .field-featured-title a,
  .page-teaser .title-with-icon a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.page-teaser .field-featured-title a:hover,
.page-teaser .title-with-icon a:hover {
  text-decoration: underline;
}

.page-teaser .title-with-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

.page-teaser .title-with-icon > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-teaser .title-with-icon .field-featured-title {
  padding: 0;
  margin: 0;
}

.page-teaser .title-with-icon span[class*=" icon-"],
.page-teaser .title-with-icon span[class^=icon-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-top: 4px;
  margin-right: 16px;
  font-size: 0;
  line-height: 0;
}

@media only screen and (min-width: 600px) {
  .page-teaser .title-with-icon span[class*=" icon-"],
  .page-teaser .title-with-icon span[class^=icon-] {
    margin-top: 1px;
  }
}

.page-teaser .title-with-icon span[class*=" icon-"]:before,
.page-teaser .title-with-icon span[class^=icon-]:before {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  width: auto;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 600px) {
  .page-teaser .title-with-icon span[class*=" icon-"]:before,
  .page-teaser .title-with-icon span[class^=icon-]:before {
    font-size: 32px;
  }
}

.page-teaser .title-with-icon span[class*=" icon-"]:hover,
.page-teaser .title-with-icon span[class^=icon-]:hover {
  text-decoration: none;
}

.page-teaser .title-with-icon span.field-featured-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: rgba(0, 0, 0, 0.72);
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 600px) {
  .page-teaser .title-with-icon span.field-featured-title {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.page-teaser .title-with-icon + .field-featured-description p {
  margin-bottom: 8px;
}

@media only screen and (min-width: 1080px) {
  .page-teaser .title-with-icon + .field-featured-description p {
    margin-bottom: 16px;
  }
}

.page-teaser .title-link {
  margin-bottom: 8px;
}

@media only screen and (min-width: 600px) {
  .page-teaser .title-link {
    margin-bottom: 16px;
  }
}

@media only screen and (min-width: 1080px) {
  .page-teaser .title-link {
    margin-bottom: 8px;
  }
}

.page-teaser .title-link:hover {
  color: #1562AD;
  text-decoration: underline;
}

.page-teaser .title-link:hover span:before {
  text-decoration: none;
}

.page-teaser .title-link span[class*=" icon-"],
.page-teaser .title-link span[class^=icon-] {
  margin-top: 3px;
}

@media only screen and (min-width: 1080px) {
  .page-teaser .title-link span[class*=" icon-"],
  .page-teaser .title-link span[class^=icon-] {
    margin-top: 0;
  }
}

.page-teaser .title-link span[class*=" icon-"]:before,
.page-teaser .title-link span[class^=icon-]:before {
  color: #1562AD;
  font-size: 24px;
}

@media only screen and (min-width: 1080px) {
  .page-teaser .title-link span[class*=" icon-"]:before,
  .page-teaser .title-link span[class^=icon-]:before {
    font-size: 32px;
  }
}

.page-teaser .title-link span.field-featured-title {
  color: #1562AD;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 1080px) {
  .page-teaser .title-link span.field-featured-title {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 600px) {
  .page-teaser .field-featured-description {
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 24px;
  }
}

/*!
 *  static form scss
 */
.static-form {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.72);
  background-color: #F2F7FC;
  padding: 24px 20px 30px;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1284px) {
  .static-form {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: inherit;
    text-transform: inherit;
    margin-bottom: 72px;
    padding: 40px 0;
  }
}

.static-form form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

@media only screen and (min-width: 1080px) {
  .static-form form {
    max-width: 630px;
    margin: 0px auto;
  }
}

.static-form form h3 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 26px;
}

@media only screen and (min-width: 1284px) {
  .static-form form h3 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    line-height: 53px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.static-form form p {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1284px) {
  .static-form form p {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.static-form form strong {
  font-weight: 500;
}

.static-form .has-error {
  color: #E0003C;
  padding: 0 0 16px;
}

.static-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0 16px;
}

.static-form .form-group.sc-button {
  display: inline-block;
}

.static-form .form-group .control-label {
  margin-bottom: 4px;
}

.static-form .form-group .checkbox label {
  display: inline-block;
  padding-left: 40px;
}

.static-form .form-group input[type=text],
.static-form .form-group textarea {
  outline: none;
  border: 1px solid #8A8886;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 12px 16px;
  background-color: transparent;
}

.static-form .form-group input[type=text]::-webkit-input-placeholder, .static-form .form-group textarea::-webkit-input-placeholder {
  color: #8A8886;
}

.static-form .form-group input[type=text]::-moz-placeholder, .static-form .form-group textarea::-moz-placeholder {
  color: #8A8886;
}

.static-form .form-group input[type=text]:-ms-input-placeholder, .static-form .form-group textarea:-ms-input-placeholder {
  color: #8A8886;
}

.static-form .form-group input[type=text]::-ms-input-placeholder, .static-form .form-group textarea::-ms-input-placeholder {
  color: #8A8886;
}

.static-form .form-group input[type=text]::placeholder,
.static-form .form-group textarea::placeholder {
  color: #8A8886;
}

.static-form .form-group input[type=text]:hover,
.static-form .form-group textarea:hover {
  border-color: rgba(0, 0, 0, 0.72);
}

.static-form .form-group input[type=text]:hover::-webkit-input-placeholder, .static-form .form-group textarea:hover::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.72);
}

.static-form .form-group input[type=text]:hover::-moz-placeholder, .static-form .form-group textarea:hover::-moz-placeholder {
  color: rgba(0, 0, 0, 0.72);
}

.static-form .form-group input[type=text]:hover:-ms-input-placeholder, .static-form .form-group textarea:hover:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.72);
}

.static-form .form-group input[type=text]:hover::-ms-input-placeholder, .static-form .form-group textarea:hover::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.72);
}

.static-form .form-group input[type=text]:hover::placeholder,
.static-form .form-group textarea:hover::placeholder {
  color: rgba(0, 0, 0, 0.72);
}

.static-form .form-group input[type=text]:focus,
.static-form .form-group textarea:focus {
  -webkit-box-shadow: inset 0px 0px 0px 1px #1562AD;
  box-shadow: inset 0px 0px 0px 1px #1562AD;
  border-color: #1562AD;
}

.static-form .form-group input[type=checkbox] {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin-right: 20px;
  margin-left: -40px;
}

.static-form .form-group input[type=checkbox]:focus {
  outline: none;
}

.static-form .form-group input[type=checkbox]:focus:before {
  border-color: rgba(0, 0, 0, 0.72);
}

.static-form .form-group input[type=checkbox]:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  margin-top: -3px;
  width: 18px;
  height: 18px;
  background-color: #F2F7FC;
  border: 2px solid #8A8886;
  border-radius: 2px;
  position: absolute;
  top: 1px;
}

.static-form .form-group input[type=checkbox]:hover:before {
  border-color: rgba(0, 0, 0, 0.72);
}

.static-form .form-group input[type=checkbox]:checked:before {
  border-color: #1562AD;
}

.static-form .form-group input[type=checkbox]:checked:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 6px;
  background: #1562AD;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 #1562AD, 4px 0 0 #1562AD, 4px -2px 0 #1562AD, 4px -4px 0 #1562AD, 4px -6px 0 #1562AD, 4px -8px 0 #1562AD;
  box-shadow: 2px 0 0 #1562AD, 4px 0 0 #1562AD, 4px -2px 0 #1562AD, 4px -4px 0 #1562AD, 4px -6px 0 #1562AD, 4px -8px 0 #1562AD;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*!
 *  Show all buttons webinars
 */
.webinars-show-all {
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1284px) {
  .webinars-show-all {
    margin-bottom: 72px;
  }
}

@media only screen and (max-width: 1079px) {
  .webinars-show-all .sc-button {
    width: 100%;
  }
}

.webinars-show-all .sc-button a {
  display: block;
}

/*!
 *  Hub link 
 *  https://www.figma.com/file/2LRxk1ZWJu8QEwU3Dr4onY/Knowledge-Hub?node-id=405%3A5712
 */
.component.hub-link {
  margin-bottom: 40px;
}

.component.hub-link span[class^="icon-"] {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  margin-right: 6px;
}

@media only screen and (min-width: 1080px) {
  .component.hub-link span[class^="icon-"] {
    margin-right: 10px;
  }
}

.component.hub-link span[class^="icon-"]:before {
  font-size: 20px;
  line-height: 30px;
  color: #1562AD;
}

@media only screen and (min-width: 1080px) {
  .component.hub-link span[class^="icon-"]:before {
    font-size: 24px;
    line-height: 32px;
  }
}

.component.hub-link .hub-link__content-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #F9F9F9;
}

.component.hub-link .hub-link__content-section .hub-link__content-section-right,
.component.hub-link .hub-link__content-section .hub-link__content-section-left {
  overflow: hidden;
}

.component.hub-link .hub-link__content-section .hub-link__content-section-left {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .component.hub-link .hub-link__content-section .hub-link__content-section-left {
    width: initial;
  }
}

.component.hub-link .hub-link__content-section .hub-link__content-section-left.field-image {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .component.hub-link .hub-link__content-section .hub-link__content-section-left.field-image {
    width: 50%;
  }
}

@media only screen and (min-width: 1080px) {
  .component.hub-link .hub-link__content-section .hub-link__content-section-left.field-image {
    width: 396px;
  }
}

.component.hub-link .hub-link__content-section .hub-link__content-section-left.field-image img {
  display: block;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.component.hub-link .hub-link__content-section .hub-link__content-section-right {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (min-width: 1080px) {
  .component.hub-link .hub-link__content-section .hub-link__content-section-right {
    padding: 32px;
  }
}

.component.hub-link .hub-link__content-section .hub-link__content-section-right > div {
  width: 100%;
}

.component.hub-link .hub-link__content-section .hub-link__content-section-right .top-links {
  margin-top: auto;
}

.component.hub-link .hub-link__bottom-links {
  background-color: #F3F3F3;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  padding: 32px;
  display: -ms-grid;
  display: grid;
  gap: 16px;
  row-gap: 10px;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
}

@media only screen and (min-width: 600px) {
  .component.hub-link .hub-link__bottom-links {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 1080px) {
  .component.hub-link .hub-link__bottom-links {
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    row-gap: 32px;
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.component.hub-link .hub-link__bottom-links .bottom-links-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.component.hub-link .hub-link__bottom-links .bottom-links-link .field-link-location {
  display: inline-block;
}

.component.hub-link .field-linked-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .component.hub-link .field-linked-title {
    margin-bottom: 24px;
  }
}

.component.hub-link .field-linked-title:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1562AD;
  margin: auto 0;
  font-size: 24px;
  padding-left: 6px;
}

@media only screen and (min-width: 1080px) {
  .component.hub-link .field-linked-title:after {
    font-size: 40px;
  }
}

.component.hub-link .field-linked-title a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 1080px) {
  .component.hub-link .field-linked-title a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 34px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
  .component.hub-link .field-linked-title a:hover {
    text-decoration: underline;
  }
}

.component.hub-link .field-description {
  margin-bottom: 16px;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.hub-link .field-description p,
.component.hub-link .field-description span {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
}

.component.hub-link .top-links {
  display: block;
}

.component.hub-link .top-links-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

@media only screen and (min-width: 1080px) {
  .component.hub-link .top-links-link {
    -ms-grid-columns: 1fr 32px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.component.hub-link .top-links-link .top-link-links-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 1080px) {
  .component.hub-link .top-links-link .top-link-links-container {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.component.hub-link .top-links-link .field-link-location {
  display: inline-block;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .component.hub-link .hub-link__bottom-links {
    display: block;
    padding-bottom: 0;
  }
  .component.hub-link .hub-link__bottom-links .bottom-links-link {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    margin-bottom: 32px;
  }
  .component.hub-link .hub-link__bottom-links .bottom-links-link span[class^="icon-"] {
    vertical-align: top;
    display: inline-block;
  }
  .component.hub-link .hub-link__bottom-links .bottom-links-link .field-link-location {
    max-width: 180px;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1284px), only screen and (-ms-high-contrast: active) and (min-width: 1284px) {
  .component.hub-link .hub-link__bottom-links .bottom-links-link .field-link-location {
    max-width: 235px;
  }
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .component.hub-link .top-links-link {
    display: block;
  }
  .component.hub-link .top-links-link .top-link-links-container {
    display: inline-block;
    vertical-align: top;
    width: 50%;
  }
  .component.hub-link .top-links-link .top-link-links-container .field-link-location {
    display: inline-block;
    vertical-align: top;
    max-width: 239px;
  }
}

@media only screen and (-ms-high-contrast: none) and (min-width: 1284px), only screen and (-ms-high-contrast: active) and (min-width: 1284px) {
  .component.hub-link .top-links-link .top-link-links-container .field-link-location {
    max-width: 338px;
  }
}

/*!
 *  Highlight section
 */
.highlight-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.72);
}

@media only screen and (min-width: 1080px) {
  .highlight-section {
    margin-bottom: 72px;
  }
}

.highlight-section > .component-content {
  background-color: #F9F9F9;
  padding: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (min-width: 600px) {
  .highlight-section > .component-content {
    padding: 24px;
  }
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content {
    padding: 32px;
  }
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content .highlight-section-details {
    width: -webkit-calc(66.66667%);
    width: calc(66.66667%);
  }
}

.highlight-section > .component-content .highlight-section-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content .highlight-section-link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
  }
}

.highlight-section > .component-content .highlight-section-link web-component .badge {
  margin-right: 3px;
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content .highlight-section-link web-component .badge {
    margin-top: -2px;
    padding: 6px 2.66667px;
  }
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content .highlight-section-link web-component .icon-lock {
    font-size: 32px;
  }
}

.highlight-section > .component-content .field-url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.highlight-section > .component-content .field-url:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  color: #1562AD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0;
  font-size: 24px;
  padding-left: 6px;
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content .field-url:after {
    font-size: 40px;
  }
}

.highlight-section > .component-content .field-url a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content .field-url a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    line-height: 53px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
  .highlight-section > .component-content .field-url a:hover {
    text-decoration: underline;
  }
}

.highlight-section > .component-content .item span[class*=" icon-"],
.highlight-section > .component-content .item span[class^="icon-"] {
  font-size: 0;
  line-height: 1;
  display: inline-block;
  padding-bottom: 8px;
}

.highlight-section > .component-content .item span[class*=" icon-"]::before,
.highlight-section > .component-content .item span[class^="icon-"]::before {
  font-size: 48px;
  color: #87A6D5;
}

@media only screen and (min-width: 600px) {
  .highlight-section > .component-content .item span[class*=" icon-"]::before,
  .highlight-section > .component-content .item span[class^="icon-"]::before {
    font-size: 72px;
  }
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content .item span[class*=" icon-"]::before,
  .highlight-section > .component-content .item span[class^="icon-"]::before {
    font-size: 128px;
  }
}

.highlight-section > .component-content .field-title {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content .field-title {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    line-height: 53px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.highlight-section > .component-content .field-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-top: 16px;
}

@media only screen and (min-width: 1080px) {
  .highlight-section > .component-content .field-description {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
    margin-top: 8px;
  }
}

.highlight-section .inpage-navigation {
  margin-bottom: 0;
}

.highlight-section .inpage-navigation.col-xs-12 {
  padding-right: 0;
  padding-left: 0;
  float: inherit;
}

@media only screen and (min-width: 1080px) {
  .highlight-section .inpage-navigation ul {
    margin-top: 8px;
  }
}

.highlight-section .inpage-navigation ul li:last-child {
  margin-bottom: 0;
}

.highlight-section .inpage-navigation h3 {
  margin-bottom: 0;
}

.highlight-section-container {
  margin-bottom: 40px;
}

@media only screen and (min-width: 1080px) {
  .highlight-section-container {
    margin-bottom: 72px;
  }
}

.highlight-section-container .row > .component-content {
  padding: 0;
  background-color: transparent;
}

@media only screen and (min-width: 1080px) {
  .highlight-section-container .row > .component-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 24px;
  }
}

.highlight-section-container .row > .component-content > .highlight-section {
  margin-top: 24px;
  margin-bottom: 0;
}

.highlight-section-container .row > .component-content > .highlight-section:first-child {
  margin-top: 0;
}

@media only screen and (min-width: 600px) {
  .highlight-section-container .row > .component-content > .highlight-section {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 1080px) {
  .highlight-section-container .row > .component-content > .highlight-section {
    margin-top: 24px;
  }
  .highlight-section-container .row > .component-content > .highlight-section:nth-child(2) {
    margin-top: 0;
  }
  .highlight-section-container .row > .component-content > .highlight-section:nth-child(odd) {
    padding-right: 0;
  }
  .highlight-section-container .row > .component-content > .highlight-section:nth-child(even) {
    padding-left: 0;
  }
}

@media only screen and (min-width: 1080px) {
  .highlight-section-container .row > .component-content .component-content {
    margin-bottom: 0;
    padding: 24px 32px;
  }
}

@media only screen and (min-width: 1080px) {
  .highlight-section-container .row > .component-content .component-content .highlight-section-details {
    width: 90%;
  }
}

@media only screen and (min-width: 1080px) {
  .highlight-section-container .row > .component-content .component-content .field-url a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 34px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
  .highlight-section-container .row > .component-content .component-content .field-url a:hover {
    text-decoration: underline;
  }
}

.highlight-section-container .row > .component-content .component-content .field-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-top: 8px;
}

/*!
 *  Components - Session card SCSS module
 *  component-session-card
 */
.agenda-card-tabs {
  margin-bottom: 24px;
}

@media only screen and (min-width: 600px) {
  .agenda-card-tabs {
    margin-bottom: 40px;
  }
}

.agenda-card-tabs web-component {
  display: block;
}

.agenda-card-items {
  display: flow-root;
  margin-bottom: 40px;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .agenda-card-items:after {
    content: "";
    display: block;
    clear: both;
  }
}

@media only screen and (min-width: 1080px) {
  .agenda-card-items {
    margin-bottom: 72px;
  }
}

.agenda-card-items .section-heading {
  padding: 0;
}

.session-card {
  padding: 24px;
  background-color: #F9F9F9;
  width: 100%;
}

.session-card:not(:last-child) {
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .session-card:not(:last-child) {
    margin-bottom: 24px;
  }
}

.session-card.session-card-blue {
  background-color: #F2F7FC;
}

.card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media only screen and (max-width: 599px) {
  .card-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.card-header .card-time {
  margin: auto 0;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 1080px) {
  .card-header .card-time {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.card-header .card-badge {
  border-radius: 8px;
}

@media only screen and (max-width: 599px) {
  .card-header .card-badge.live, .card-header .card-badge.on-demand {
    margin-bottom: 16px;
  }
}

.card-header .card-badge.on-demand {
  background: #FFF;
  padding: 5px 8px;
}

.card-header .card-badge.on-demand::after {
  content: attr(data-ondemand);
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
}

.card-content .card-title a,
.card-content .card-title span {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (min-width: 1080px) {
  .card-content .card-title a,
  .card-content .card-title span {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.card-content .card-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card-speakers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 16px 0 -16px;
}

.card-speakers .card-speaker {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(0, 0, 0, 0.72);
  background-color: #FFF;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 0 16px 16px 0;
}

.card-speakers .card-speaker:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 24px;
  padding-right: 8px;
  margin-top: -2px;
}

.card-add-to-calendar {
  margin-top: 24px;
  text-align: right;
}

@media only screen and (min-width: 600px) {
  .card-add-to-calendar {
    margin-top: 16px;
  }
}

/*!
 *  Components - Event menu SCSS module
 *  component-event-menu
 */
.event-menu .component-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

@media only screen and (min-width: 1080px) {
  .event-menu .component-content {
    margin-bottom: 40px;
  }
}

.event-menu .component-content .event-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

@media only screen and (min-width: 1080px) {
  .event-menu .component-content .event-menu-item {
    -ms-flex-preferred-size: calc((100% / 3) - 24px*(2/3));
    flex-basis: -webkit-calc((100% / 3) - 24px*(2/3));
    flex-basis: calc((100% / 3) - 24px*(2/3));
  }
}

.event-menu .component-content .event-menu-item > a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: inherit;
  text-transform: inherit;
  background-color: #FFF;
  padding: 10px 48px 10px 8px;
  border-radius: 10px;
  color: #1562AD;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}

@media only screen and (min-width: 600px) {
  .event-menu .component-content .event-menu-item > a {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
    padding: 12px 48px 12px 16px;
  }
}

.event-menu .component-content .event-menu-item > a:hover {
  background-color: #F2F7FC;
  text-decoration: none;
  cursor: pointer;
}

.event-menu .component-content .event-menu-item > a::after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "glyphicons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  content: "";
  font-size: 24px;
  position: absolute;
  color: currentColor;
  top: 16px;
  right: 8px;
}

.event-menu .component-content .event-menu-item web-component {
  width: 100%;
}

/*!
 *  Components - Thank you SCSS module
 *  component-thank-you
 */
.thank-you {
  margin-top: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.thank-you .thank-you-illustration-icon {
  margin-bottom: 16px;
}

@media only screen and (min-width: 600px) {
  .thank-you .thank-you-illustration-icon {
    margin-bottom: 24px;
  }
}

.thank-you .thank-you-icon {
  display: block;
  line-height: inherit;
  line-height: unset;
  font-size: 0.00001rem;
  margin-bottom: 48px;
}

.thank-you .thank-you-icon::before {
  font-size: 48px;
  color: #1562AD;
}

@media only screen and (min-width: 600px) {
  .thank-you .thank-you-icon::before {
    font-size: 72px;
  }
}

@media only screen and (min-width: 1080px) {
  .thank-you .thank-you-icon::before {
    font-size: 128px;
  }
}

.thank-you .thank-you-text .field-headline {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
}

@media only screen and (min-width: 600px) {
  .thank-you .thank-you-text .field-headline {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 34px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

@media only screen and (min-width: 1080px) {
  .thank-you .thank-you-text .field-headline {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 40px;
    line-height: 53px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.thank-you .thank-you-text .field-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 24px;
}

@media only screen and (min-width: 600px) {
  .thank-you .thank-you-text .field-description {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
    margin-bottom: 40px;
  }
}

.thank-you .thank-you-image,
.thank-you .thank-you-video {
  margin-bottom: 24px;
}

@media only screen and (min-width: 600px) {
  .thank-you .thank-you-image,
  .thank-you .thank-you-video {
    margin-bottom: 40px;
  }
}

.thank-you .thank-you-image img,
.thank-you .thank-you-video img {
  max-width: 100%;
}

@media only screen and (min-width: 1080px) {
  .thank-you .thank-you-image img,
  .thank-you .thank-you-video img {
    max-width: 790px;
  }
}

.thank-you .thank-you-video {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 1080px) {
  .thank-you .thank-you-video {
    max-width: 790px;
  }
}

.thank-you .sc-button {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .thank-you .sc-button {
    width: auto;
  }
}

.thank-you .secondary-button {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-top: 24px;
}

/*!
 *  Components - Session module SCSS module
 *  session-module-component
 */
.session-module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 1080px) {
  .session-module {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 24px auto;
    grid-template-areas: "content sidebar" "content .";
    -ms-grid-columns: 2fr 24px 1fr;
    grid-template-columns: 2fr 1fr;
    grid-gap: 24px;
  }
  .session-module > .video-module-container,
.session-module > .event-module-container,
.session-module > .virtual-event-module-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .session-module > .video-module-info-sidebar,
.session-module > .event-module-info-sidebar,
.session-module > .virtual-event-module-info-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

.session-module-content {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: content;
}

.event-module > .session-module-content {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
}

.virtual-event-module > .session-module-content {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
}

.session-module-details > h3 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .session-module-details > h3 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 34px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.session-module-time-duration {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .session-module-time-duration {
    margin-bottom: 8px;
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.session-module-time-duration .session-time {
  padding-right: 18px;
}

.session-module-time-duration .session-module-duration {
  position: relative;
}

.session-module-time-duration .session-module-duration:before {
  content: '';
  position: absolute;
  left: -9px;
  background-color: rgba(0, 0, 0, 0.72);
  height: 16px;
  width: 1px;
  top: 5px;
}

@media only screen and (min-width: 1080px) {
  .session-module-time-duration .session-module-duration:before {
    width: 2px;
    top: 8px;
  }
}

.session-module-description {
  margin-bottom: 40px;
}

@media only screen and (min-width: 1080px) {
  .session-module-description {
    margin-bottom: 48px;
  }
}

.session-module-speakers {
  margin-bottom: 40px;
}

@media only screen and (min-width: 1080px) {
  .session-module-speakers {
    margin-bottom: 72px;
  }
}

.session-module-speakers h3 {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1080px) {
  .session-module-speakers h3 {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 34px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
    margin-bottom: 24px;
  }
}

.session-module-speakers > div + div {
  margin-top: 24px;
}

.session-module-speaker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #F9F9F9;
  position: relative;
}

@media only screen and (min-width: 600px) {
  .session-module-speaker {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.session-module-speaker:before, .session-module-speaker:after {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #F9F9F9;
}

@media only screen and (min-width: 1080px) {
  .session-module-speaker:before, .session-module-speaker:after {
    content: none;
  }
}

.session-module-speaker:after {
  right: -100%;
}

.session-module-speaker:before {
  left: -100%;
}

.session-module-speaker-image img {
  padding-top: 16px;
  width: 156px;
}

@media only screen and (min-width: 600px) {
  .session-module-speaker-image img {
    padding-bottom: 16px;
    width: 200px;
  }
}

@media only screen and (min-width: 1080px) {
  .session-module-speaker-image img {
    width: 186px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}

.session-module-speaker-data-wrapper {
  padding: 24px 0 16px;
}

@media only screen and (min-width: 600px) {
  .session-module-speaker-data-wrapper {
    padding: 16px 0 16px 24px;
  }
}

@media only screen and (min-width: 1080px) {
  .session-module-speaker-data-wrapper {
    padding: 24px;
  }
}

.session-module-speaker-data {
  padding-bottom: 16px;
}

.session-module-speaker-name {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 1080px) {
  .session-module-speaker-name {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.15px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.session-module-speaker-company {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: inherit;
  text-transform: inherit;
}

@media only screen and (min-width: 1080px) {
  .session-module-speaker-company {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    letter-spacing: 0.25px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.session-module-speaker-description {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.session-module .session-add-to-calendar {
  margin-bottom: 24px;
}

.session-module .session-module-sidebar {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sidebar;
  margin-bottom: 24px;
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

@media only screen and (min-width: 1080px){
  .video-module-categories,
.event-module-categories {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .event-module > .video-module-categories,
.event-module > .event-module-categories {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .video-module-container,
.event-module-container,
.virtual-event-module-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .event-module > .video-module-container,
.event-module > .event-module-container,
.event-module > .virtual-event-module-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .virtual-event-module > .video-module-container,
.virtual-event-module > .event-module-container,
.virtual-event-module > .virtual-event-module-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .video-module-info-sidebar,
.event-module-info-sidebar,
.virtual-event-module-info-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .virtual-event-module > .video-module-info-sidebar,
.virtual-event-module > .event-module-info-sidebar,
.virtual-event-module > .virtual-event-module-info-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .video-module-info,
.event-module-info,
.virtual-event-module-info {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .video-module-save,
.event-module-save,
.virtual-event-module-save {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .session-module-content {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .event-module > .session-module-content {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .virtual-event-module > .session-module-content {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .session-module > .session-module-content {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .session-module .session-module-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .virtual-event-module > .session-module-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .session-module > .session-module-sidebar {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media only screen and (min-width: 600px) {
  .session-module .session-module-sidebar {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 1080px) {
  .session-module .session-module-sidebar {
    margin-bottom: 0;
  }
}

.session-module .session-module-sidebar.sidebar-sticky {
  top: 6rem;
  z-index: 9999;
}

@media only screen and (max-width: 1079px) {
  .session-module .session-module-sidebar.sidebar-sticky {
    background: white;
    -webkit-box-shadow: 0px -2px 4px rgba(8, 35, 48, 0.24);
    box-shadow: 0px -2px 4px rgba(8, 35, 48, 0.24);
    top: -webkit-calc(100% - 64px);
    top: calc(100% - 64px);
    left: auto !important;
    margin-left: -24px;
    margin-right: -24px;
    width: -webkit-calc(100% + 48px);
    width: calc(100% + 48px);
  }
  .session-module .session-module-sidebar.sidebar-sticky wca-event-info-box-wrapper {
    display: none;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: white;
    height: 64px;
    margin-bottom: 0;
    width: 100vw;
    min-width: 100vw;
    padding: 0;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info .live {
    display: none;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-header {
    display: none;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-title {
    display: none;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-date {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 16px;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-date .date-from,
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-date .date-to {
    font-size: 0.1px;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-date .date-from::after,
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-date .date-to::after {
    content: attr(data-date-formated);
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: inherit;
    text-transform: inherit;
    vertical-align: middle;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-button {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: 8px;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-button wca-event-registration-button {
    margin-right: 4px;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info-button .link-container {
    display: none;
  }
}

@media only screen and (max-width: 1079px) and (max-width: 599px) {
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info.add-to-calendar .session-module-info-date {
    display: none;
  }
  .session-module .session-module-sidebar.sidebar-sticky .session-module-info.add-to-calendar .session-module-info-button {
    margin: auto;
  }
}

.session-module-info {
  background-color: #F2F7FC;
  border-radius: 4px;
  padding: 16px;
  display: -ms-grid;
  display: grid;
}

@media only screen and (min-width: 1080px) {
  .session-module-info {
    padding: 24px;
  }
}

.session-module-info .live {
  margin-bottom: 16px;
  -ms-grid-row: 1;
}

.session-module-info-header {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-decoration: inherit;
  text-transform: uppercase;
  -ms-grid-row: 2;
}

.session-module-info-title {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.15px;
  text-decoration: inherit;
  text-transform: inherit;
  margin-bottom: 16px;
  -ms-grid-row: 3;
}

@media only screen and (min-width: 1080px) {
  .session-module-info-title {
    font-family: "Futura W01", Arial, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: inherit;
    text-transform: inherit;
  }
}

.session-module-info-date {
  -ms-grid-row: 4;
}

.session-module-info-date .date-from,
.session-module-info-date .date-to {
  display: inline-block;
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
}

.session-module-info-button {
  -ms-grid-row: 5;
  margin-top: 16px;
}

.session-module-info wca-restricted-button {
  margin: 0;
  padding: 0;
  display: block;
}

.session-module-info wca-restricted-button .restricted-button {
  display: block;
  margin-top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.session-module-info wca-restricted-button .restricted-button > a {
  min-width: 100%;
}

.session-module-info wca-restricted-button .restricted-button .video-module-register-account-link {
  margin: 16px 0 0 0;
  padding: 0;
}

.session-module-info wca-restricted-button .restricted-button .video-module-register-account-link a {
  font-family: "Futura W01", Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.25px;
  text-decoration: inherit;
  text-transform: inherit;
  color: #1562AD;
  text-align: center;
  margin: 0;
  padding: 0;
  width: auto;
  min-height: 0;
  background: none;
}

/*!
 *  Components - Sopeaker Page SCSS module
 *  speaker-details-component
 */
.speaker-details-component > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 1080px) {
  .speaker-details-component > div {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "details .";
    -ms-grid-columns: 2fr 24px 1fr;
    grid-template-columns: 2fr 1fr;
    grid-gap: 24px;
  }
}

.speaker-details-component > div .speaker-details {
  grid-area: details;
}

@media only screen and (min-width: 1080px){
  .speaker-details-component > div .speaker-details {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

.speaker-details-component > div .speaker-description {
  margin-bottom: 40px;
}

@media only screen and (min-width: 1080px) {
  .speaker-details-component > div .speaker-description {
    margin-bottom: 72px;
  }
}

.speaker-details-component > div .speaker-image {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1080px) {
  .speaker-details-component > div .speaker-image {
    margin-bottom: 40px;
  }
}

.speaker-details-component > div .speaker-image img {
  width: 100%;
}
