/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

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

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

  25%,
  75% {
    opacity: 0;
  }
}

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

  25%,
  75% {
    opacity: 0;
  }
}

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

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-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: none;
    transform: none;
  }
}

@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: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

@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: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

@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: none;
    transform: none;
  }
}

.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-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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-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-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipouty;
  animation-name: flipOutY;
}

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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-name: hinge;
  animation-name: hinge;
}

@-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: none;
    transform: none;
  }
}

@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: none;
    transform: none;
  }
}

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

@-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;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-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;
}

.article-share > div {
  display: flex;
}

.article-share > div > p {
  display: flex;
  margin: 0;
  padding: 0;
}

.article-share > div > p span {
  display: none;
}

.article-share > div > p a {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-share > div > p a::before {
  content: "";
  width: 100%;
  min-width: 20px;
  height: 20px;
  background: 50% 50% / contain no-repeat;
  display: block;
}

.article-share > div > p a.facebook,
.article-share > div > p a.facebook::after {
  background: #4e6ca9;
}

.article-share > div > p a.facebook::before {
  background-image: url(../img/interface/article-share/facebook.svg);
}

.article-share > div > p a.twitter,
.article-share > div > p a.twitter::after {
  background: #00acee;
}

.article-share > div > p a.twitter::before {
  background-image: url(../img/interface/article-share/twitter.svg);
}

.article-share > div > p a.google,
.article-share > div > p a.google::after {
  background: #dd4b39;
}

.article-share > div > p a.google::before {
  background-image: url(../img/interface/article-share/google-plus.svg);
}

@media (min-width: 1320px) {
  .article-share {
    display: none;
  }

  .article-share.article-share-first-module {
    display: block;
    position: absolute;
    top: -20px;
    left: -60px;
  }

  .article-share.article-share-first-module.article-share-fixed > div {
    top: 70px !important;
  }

  .article-share.article-share-first-module > div {
    margin-top: -20px;
    position: fixed;
    left: 0;
    padding: 24px 0 0 0;
  }

  .article-share.article-share-first-module > div > h6 {
    display: none;
  }

  .article-share.article-share-first-module > div > p {
    flex-direction: column;
  }

  .article-share.article-share-first-module > div > p a {
    width: 40px;
    height: 40px;
    margin-bottom: 1px;
    position: relative;
  }

  .article-share.article-share-first-module > div > p a::after {
    content: attr(data-label);
    color: white;
    font-style: italic;
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
    padding: 0 15px 0 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    display: flex;
    align-items: center;
    transform: scaleX(0);
    transform-origin: 0 50%;
  }

  .article-share.article-share-first-module > div > p a:hover::after {
    transform: none;
  }
}

@media (max-width: 1319px) {
  .article-share > div {
    margin: 12px 0 0;
    padding: 12px 0 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #cdcbcb;
  }

  .article-share > div > h6 {
    font-style: italic;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    padding: 0 20px 0 0;
    display: flex;
    align-items: center;
  }

  .article-share > div > p a {
    text-align: center;
    width: 58px;
    margin-left: 5px;
  }

  .article-share.article-share-first-module > div {
    margin: 0 0 12px;
    padding: 0 0 12px;
    border-width: 0 0 1px;
  }
}

.module_campaign-highlight {
  width: 1920px;
  transform: translateX(-360px);
  transform-origin: center;
  height: 820px;
  min-height: 820px;
  margin: 30px 0;
  background: 50% 0 no-repeat;
  background-size: cover !important;
  display: flex;
}

@media (max-width: 1200px) {
  .module_campaign-highlight {
    width: auto;
    transform: none;
  }
}

@media (max-width: 1023px) {
  .module_campaign-highlight {
    height: 514px;
    min-height: 514px;
  }
}

@media (max-width: 767px) {
  .module_campaign-highlight {
    height: auto;
    min-height: 0;
    padding-bottom: 275px;
    background-position: 100% 100%;
    background-size: auto 275px !important;
  }
}

.module_campaign-highlight--container {
  width: 100%;
  display: flex;
}

.module_campaign-highlight--container--content {
  color: black;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  padding: 50px;
  margin: 0 50% 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .module_campaign-highlight--container--content {
    margin: 0 !important;
    padding: 20px;
  }
}

.module_campaign-highlight--container--content h2,
.module_campaign-highlight--container--content p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

.module_campaign-highlight--container--content h2 {
  color: white;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  position: relative;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.module_campaign-highlight--container--content h2::before {
  content: "";
  width: 100%;
  max-width: 600px;
  height: 10px;
  background: url(../img/interface/logo-separator.png) 50% 50% no-repeat;
  background-size: 100% 100% !important;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%);
}

@media (max-width: 1023px) {
  .module_campaign-highlight--container--content h2::before {
    height: 5px;
    bottom: -10px;
  }
}

.module_campaign-highlight--container--content h2 img {
  border: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: block;
}

@media (max-width: 1023px) {
  .module_campaign-highlight--container--content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.module_campaign-highlight--container--content p:not(:first-of-type) {
  margin-top: 1em;
}

.module_campaign-highlight--container--content .actions a,
.module_campaign-highlight--container--content .actions button {
  color: white;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: inherit;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px;
  border-radius: 6px;
  outline: none;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  cursor: pointer;
}

.module_campaign-highlight--container--content .actions a span,
.module_campaign-highlight--container--content .actions button span {
  padding: 15px 30px;
  background: #9d0a0e;
  display: block;
  transition: background-color 0.25s ease;
}

.module_campaign-highlight--container--content .actions a:hover span,
.module_campaign-highlight--container--content .actions a:focus span,
.module_campaign-highlight--container--content .actions button:hover span,
.module_campaign-highlight--container--content .actions button:focus span {
  background: black;
}

@media (max-width: 767px) {
  .module_campaign-highlight.text-right {
    background-position: 0 100%;
  }
}

.module_campaign-highlight.text-right .module_campaign-highlight--container--content {
  margin-right: 0;
  margin-left: 50%;
}

.module_dragon-magazine {
  margin: 40px 0;
}

.module_dragon-magazine .articles {
  margin-bottom: 40px;
}

.module_dragon-magazine .articles::after {
  content: "";
  height: 0;
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.module_dragon-magazine .articles article {
  width: 25%;
  float: left;
}

.module_dragon-magazine .articles article:nth-child(4n+1) {
  clear: left;
}

@media (max-width: 850px) {
  .module_dragon-magazine .articles article {
    width: 33%;
  }

  .module_dragon-magazine .articles article:nth-child(4n+1) {
    clear: none;
  }

  .module_dragon-magazine .articles article:nth-child(3n+1) {
    clear: left;
  }
}

@media (max-width: 600px) {
  .module_dragon-magazine .articles article {
    width: 100%;
  }
}

.module_dragon-magazine .articles article .cta-button.external_icon::after {
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  line-height: 1;
  margin: -3px 0 0 2px;
  display: inline-block;
  vertical-align: middle;
}

.module_dragon-magazine .articles article:hover .wrap .magazine-info a,
.module_dragon-magazine .articles article:focus .wrap .magazine-info a {
  color: #9d0a0e;
}

.module_dragon-magazine .articles article:hover .cta-button,
.module_dragon-magazine .articles article:hover .cta-button::before,
.module_dragon-magazine .articles article:hover .cta-button::before,
.module_dragon-magazine .articles article:focus .cta-button,
.module_dragon-magazine .articles article:focus .cta-button::before,
.module_dragon-magazine .articles article:focus .cta-button::before {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  color: #fff !important;
  background-color: #9d0a0e !important;
}

.module_dragon-magazine .articles article .wrap {
  padding: 20px 10px 40px;
  text-align: center;
  color: black;
}

@media (max-width: 1200px) {
  .module_dragon-magazine .articles article .wrap {
    padding: 0 20px 30px;
  }
}

@media (max-width: 600px) {
  .module_dragon-magazine .articles article .wrap {
    height: 400px;
  }
}

.module_dragon-magazine .articles article .wrap .magazine-image {
  height: 275px;
  width: 275px;
  position: relative;
}

@media (max-width: 1200px) {
  .module_dragon-magazine .articles article .wrap .magazine-image {
    height: 250px;
    width: auto;
  }
}

@media (max-width: 600px) {
  .module_dragon-magazine .articles article .wrap .magazine-image {
    height: 275px;
    width: auto;
  }
}

.module_dragon-magazine .articles article .wrap .magazine-image img {
  bottom: 0;
  left: 0;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .module_dragon-magazine .articles article .wrap .magazine-image img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-height: 250px;
    max-width: 275px;
  }
}

@media (max-width: 600px) {
  .module_dragon-magazine .articles article .wrap .magazine-image img {
    max-height: 270px;
  }
}

.module_dragon-magazine .articles article .wrap .magazine-info a {
  color: black;
}

.module_dragon-magazine .articles article .wrap .magazine-info h4 {
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.8rem;
  margin-bottom: 0;
  margin-top: 10px;
}

.module_dragon-magazine .articles article .wrap .magazine-info .magazine-date {
  font-size: 1.2rem;
  margin: -3px 0 1.4em 0;
  padding: 0;
}

.module_dragon-magazine .articles article .wrap .magazine-info .actions {
  margin-top: 10px;
}

.module_dragon-magazine .articles article .wrap .magazine-info .actions .cta-button {
  font-size: 1.4rem;
  line-height: 1.6rem;
}

.module_dragon-magazine .articles article .wrap .magazine-info .actions .cta-button::before {
  background-size: 8px auto !important;
}

.stores-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-right: -60px;
}

@media (max-width: 860px) {
  .stores-buttons {
    margin-right: -10px;
  }
}

@media (max-width: 767px) {
  .stores-buttons {
    margin: 15px -60px 15px 0;
  }
}

.stores-buttons .store-btn {
  width: 175px;
  min-height: 52px;
  max-width: 100%;
  margin: 0 10px 10px 0;
  display: inline-block;
  position: relative;
  text-indent: -9999px;
  z-index: 2;
  box-sizing: border-box;
  background-size: 175px auto;
}

@media (max-width: 1200px) {
  .stores-buttons .store-btn {
    width: 160px;
    min-height: 50px;
  }
}

@media (max-width: 1023px) {
  .stores-buttons .store-btn {
    min-height: 43px;
    width: 145px;
    margin: 0 6px 7px 0;
  }
}

@media (max-width: 767px) {
  .stores-buttons .store-btn {
    text-indent: 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #959595;
    min-height: 0;
    width: auto;
    padding: 5px 15px 5px 0;
    margin: 0 15px 0 0;
    border-right: 1px solid white;
    background-image: none !important;
  }
}

.stores-buttons .store-btn:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .stores-buttons .store-btn:last-child {
    border-right: none;
  }
}

.stores-buttons .store-btn.app-store {
  background: url(../img/dragon-magazine/store-badges/app-store/Download_on_the_App_Store_Badge_US-UK_135x40.svg) center center no-repeat;
}

.stores-buttons .store-btn.google-play {
  background: url(../img/dragon-magazine/store-badges/google-play/en_badge_web_generic.svg) center center no-repeat;
}

.stores-buttons .store-btn.on-the-web {
  background: url(../img/dragon-magazine/read-on-the-web.png) center center no-repeat;
}

header {
  background: url(../img/interface/header-background.png) 50% 0 no-repeat;
  background-size: auto !important;
  position: relative;
  z-index: 500;
}

header::after {
  content: "";
  height: 8px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
}

@media (max-width: 1023px) {
  header::after {
    top: 70px;
    bottom: auto;
    z-index: 10;
  }
}

@media (max-width: 480px) {
  header::after {
    top: 50px;
  }
}

header .page-width {
  height: 98px;
  transition: height 0.25s ease-in-out;
  z-index: 500;
}

@media (max-width: 1023px) {
  header .page-width {
    height: 70px;
  }
}

@media (max-width: 480px) {
  header .page-width {
    height: 50px;
  }
}

@media (max-width: 1023px) {
  header,
  header .page-width {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: url("../img/interface/page-background.jpg") 50% 0 repeat-x;
    background-size: auto auto !important;
    transition-property: right;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
  }
}

header .utils {
  float: right;
  position: relative;
}

@media (min-width: 1920px) {
  header .utils {
    margin-right: 29px;
  }
}

@media (max-width: 1023px) {
  header .utils {
    position: absolute;
    top: 0;
    right: 0;
  }
}

header .utils a.locator {
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
  padding: 9px 0 9px 36px;
  background: url(../img/interface/store-locator-icon.png) 0 6px no-repeat;
  background-size: auto !important;
  float: left;
}

header .utils a.locator:hover,
header .utils a.locator:focus {
  color: #9d0a0e;
  background-position: 0 -27px;
}

@media (max-width: 1023px) {
  header .utils a.locator {
    display: none;
  }
}

header .utils #search-form-mini {
  margin: 2px 0 0 30px;
  padding: 2px;
  border-radius: 3px;
  background: #c1bead;
  float: left;
}

@media (max-width: 1023px) {
  header .utils #search-form-mini {
    margin: 0;
    top: 0;
    right: 0;
    background-color: transparent;
    left: auto;
    position: absolute;
  }
}

header .utils #search-form-mini .select-wrapper {
  width: 70px;
  border-radius: 3px 0 0 3px;
  background: url(../img/interface/drop-down-arrow-searchbar.png) 100% 50% no-repeat #333;
  background-size: auto !important;
  float: left;
  overflow: hidden;
}

header .utils #search-form-mini .select-wrapper select {
  color: #fff;
  font-family: inherit;
  text-transform: uppercase;
  width: 120px;
  margin: 0;
  padding: 6px 24px 7px 12px;
  border: 0;
  outline: 0;
  background: transparent;
  display: inline-block;
  cursor: pointer;
  appearance: none;
}

header .utils #search-form-mini input {
  color: #9f9d99;
  width: 125px;
  height: 31px;
  margin: 0;
  padding: 0 5px 0 25px;
  border: 1px solid #a9a8a4;
  outline: 0;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 3px #a9a8a4 inset;
  background: url(../img/interface/search-field-icon.png) 4px 50% no-repeat #f5f4ef;
  background-size: auto !important;
}

@media (max-width: 1023px) {
  header .utils #search-form-mini input {
    padding-left: 5px;
    background-image: none;
  }

  header .utils #search-form-mini .form {
    padding: 5px;
    background-color: #333;
    position: absolute;
    top: 65px;
    right: 0;
    z-index: 99;
    display: none;
  }
}

@media (max-width: 480px) {
  header .utils #search-form-mini .form {
    top: 45px;
  }
}

header .utils #search-form-button {
  text-indent: -999px;
  width: 76px;
  height: 70px;
  outline: 0;
  background: url(../img/interface/header-search-button.png) 50% 50% no-repeat;
  background-size: auto !important;
  position: relative;
  top: 0;
  display: none;
  overflow: hidden;
}

header .utils #search-form-button::before,
header .utils #search-form-button::after {
  content: "";
  width: 1px;
  height: 70px;
  margin-top: -35px;
  background: url(../img/interface/menu-separator.png) 0 50% no-repeat;
  background-size: auto !important;
  position: absolute;
  top: 50%;
}

@media (max-width: 1023px) {
  header .utils #search-form-button::before,
  header .utils #search-form-button::after {
    display: none;
  }
}

header .utils #search-form-button::before {
  left: 0;
}

header .utils #search-form-button::after {
  right: 0;
}

@media (max-width: 1023px) {
  header .utils #search-form-button {
    display: block;
  }
}

@media (max-width: 480px) {
  header .utils #search-form-button {
    width: 60px;
    height: 45px;
  }
}

header .social-medias {
  position: relative;
  float: left;
}

header .social-medias a.twitter::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: -10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 50%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 1023px) {
  header .social-medias {
    display: none;
  }
}

header .header-social-media {
  margin: 5px 0 5px 16px;
  padding: 0 10px;
  position: relative;
  float: left;
  display: flex;
  align-items: center;
}

header .header-social-media::before,
header .header-social-media::after {
  content: "";
  width: 1px;
  background: linear-gradient(rgba(101, 86, 82, 0) 0%, #655652 30%, #655652 70%, rgba(101, 86, 82, 0) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
}

header .header-social-media::before {
  left: 0;
}

header .header-social-media::after {
  right: 0;
}

header .header-social-media a {
  font-size: 0;
  text-indent: -999px;
  width: 22px;
  height: 22px;
  margin: 6px;
  outline: 0;
  background: 50% 50% / contain no-repeat;
  display: block;
}

header .header-social-media a.facebook {
  background-image: url(../img/interface/header-social-medias/facebook.svg);
}

header .header-social-media a.twitter {
  background-image: url(../img/interface/header-social-medias/twitter.svg);
}

header .header-social-media a.youtube {
  background-image: url(../img/interface/header-social-medias/youtube.svg);
}

header .header-social-media a.tumblr {
  background-image: url(../img/interface/header-social-medias/tumblr.svg);
}

header .header-social-media a.twitch {
  background-image: url(../img/interface/header-social-medias/twitch.svg);
}

header .header-social-media a.instagram {
  background-image: url(../img/interface/header-social-medias/instagram.svg);
}

@media (max-width: 1023px) {
  header .header-social-media {
    width: 364px;
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    transform: translateX(-100%);
  }

  header .header-social-media::before,
  header .header-social-media::after {
    content: none;
    display: none;
  }
}

@media (max-width: 479px) {
  header .header-social-media {
    width: 224px;
  }
}

#page.snap-menu header {
  height: 50px;
  background-image: url("../img/interface/page-background.jpg");
  background-repeat: repeat-x;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

#page.snap-menu header .page-width {
  height: 50px;
}

#page.snap-menu header .home {
  width: 124px;
  height: 50px;
  margin-top: 4px;
  top: 0;
}

#page.snap-menu header .home span {
  background-image: url("../img/interface/dungeons-and-dragons-logo.png");
}

#page.snap-menu header .utils {
  display: none;
}

@media (max-width: 1023px) {
  #viewport.mobile-menu-opened header,
  #viewport.mobile-menu-opened header .page-width {
    right: -384px;
    left: 384px;
  }

  #viewport.mobile-menu-opened header .header-social-media {
    transform: none;
  }
}

@media (max-width: 479px) {
  #viewport.mobile-menu-opened header,
  #viewport.mobile-menu-opened header .page-width {
    right: -244px;
    left: 244px;
  }
}

.node-type-fiction .product_catalog.details header .utils a.locator {
  display: none;
}

#sign-in {
  position: absolute;
  bottom: 8px;
  right: 5px;
  overflow: hidden;
  transition-property: right, bottom;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 1023px) {
  #sign-in {
    display: none;
    top: 15px;
    bottom: auto;
    right: 20px;
  }
}

@media (max-width: 480px) {
  #sign-in {
    top: 7px;
  }
}

#sign-in button {
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 50px 10px 10px;
  border: 0;
  background: url(../img/interface/sign-in-icon.png) 100% 50% no-repeat #333;
  background-size: auto !important;
  display: inline-block;
  cursor: pointer;
}

#sign-in button:hover,
#sign-in button:focus {
  background-color: #9d0a0e;
}

@media (max-width: 480px) {
  #sign-in button {
    text-indent: -999px;
    width: 43px;
    height: 37px;
    padding: 0;
  }
}

.header-store-locator {
  max-width: 600px;
  padding: 20px;
  background: url(../img/interface/header-store-locator-background.png) 100% 0 no-repeat;
  background-size: auto auto !important;
  position: absolute;
  right: calc(50% - 600px);
  bottom: 0;
  z-index: 11;
}

.header-store-locator,
.header-store-locator *,
.header-store-locator *::before,
.header-store-locator *::after {
  box-sizing: border-box;
}

@media (max-width: 1212px) {
  .header-store-locator {
    right: 12px;
  }
}

@media (max-width: 767px) {
  .header-store-locator {
    max-width: none;
    background-image: none;
    background-color: #9d0a0d;
    position: relative;
    bottom: auto;
    right: auto;
  }
}

.header-store-locator > p {
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 10px;
  padding: 0;
}

.header-store-locator > div {
  font-size: 1.6rem;
  display: flex;
}

.header-store-locator > div select {
  display: none;
}

.header-store-locator > div input {
  font-size: inherit;
  font-family: inherit;
  width: 100%;
  margin: 0;
  padding: 5px;
  border: 0;
  outline: 0;
  background: #d2d2d2;
  display: block;
  flex-grow: 1;
  transition: 0.25s ease-in-out;
  transition-property: background-color, box-shadow;
}

.header-store-locator > div input:focus {
  box-shadow: 0 0 5px black;
  background: white;
}

.header-store-locator > div input::placeholder {
  color: #a6a6a6;
}

.header-store-locator > div button {
  text-indent: -9999px;
  width: 36px;
  height: 36px;
  margin: 0 0 0 5px;
  padding: 0;
  border: 0;
  outline: none;
  background: black;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.25s ease-in-out;
}

.header-store-locator > div button::after {
  content: ">";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  color: white;
  text-indent: 0;
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  left: 0;
  transition: color 0.25s ease-in-out;
}

.header-store-locator > div button:hover,
.header-store-locator > div button:focus {
  background-color: white;
}

.header-store-locator > div button:hover::after,
.header-store-locator > div button:focus::after {
  color: black;
}

.module_highlighted-products {
  width: 100%;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.module_highlighted-products--product {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 0 3px black, 0 0 3px black;
  width: calc(33.3333333333% - 13px);
  margin-top: 20px;
  position: relative;
}

.module_highlighted-products--product::before {
  content: "";
  padding-top: 56.1363636364%;
  display: block;
  pointer-events: none;
}

.module_highlighted-products--product a,
.module_highlighted-products--product h3,
.module_highlighted-products--product p {
  font-size: inherit;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.module_highlighted-products--product a {
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 20px;
  background: #9d0a0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.module_highlighted-products--product a::before {
  content: "";
  background: linear-gradient(to bottom, transparent, black);
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.module_highlighted-products--product a > div:nth-of-type(1) {
  background-position: 50% 50%;
  background-size: cover !important;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.25s ease-in-out;
}

.module_highlighted-products--product a > div:nth-of-type(2) {
  width: 100%;
  position: relative;
  z-index: 3;
}

.module_highlighted-products--product a:hover > div:nth-of-type(1),
.module_highlighted-products--product a:focus > div:nth-of-type(1) {
  opacity: 1;
}

.module_highlighted-products--product h3 {
  font-weight: 700;
  font-size: 2.8rem;
  font-family: "Beleren Bold", sans-serif;
  margin-bottom: 5px;
  text-shadow: 2px 0 0 black, 2px 2px 0 black, 0 2px 0 black, -2px 2px 0 black, -2px 0 0 black, -2px -2px 0 black, 0 -2px 0 black, 2px -2px 0 black;
}

.module_highlighted-products--product h3 img {
  width: auto;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  display: block;
}

.module_highlighted-products--product:nth-of-type(1),
.module_highlighted-products--product:nth-of-type(2) {
  margin-top: 0;
}

.module_highlighted-products--product:nth-of-type(1) {
  width: calc(66.6666666667% - 7px);
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.module_highlighted-products--product:nth-of-type(1)::before {
  padding-top: calc(56.1363636364% + 8px);
}

.module_highlighted-products--product:nth-of-type(1) a {
  padding: 40px;
  justify-content: flex-end;
}

.module_highlighted-products--product:nth-of-type(1) h3 {
  font-size: 4.8rem;
}

.module_highlighted-products--product:nth-of-type(2),
.module_highlighted-products--product:nth-of-type(3) {
  margin-left: calc(66.6666666667% + 14px);
}

@media (max-width: 1023px) {
  .module_highlighted-products--product {
    font-size: 1.4rem;
  }

  .module_highlighted-products--product h3 {
    font-size: 2.3rem;
  }

  .module_highlighted-products--product:nth-of-type(1) {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
  }

  .module_highlighted-products--product:nth-of-type(1) h3 {
    font-size: 3.8rem;
  }

  .module_highlighted-products--product:nth-of-type(2),
  .module_highlighted-products--product:nth-of-type(3) {
    margin: 20px 0 0;
    width: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  .module_highlighted-products--product {
    font-size: 1.2rem;
    width: 100% !important;
    margin: 10px 0 0 !important;
  }

  .module_highlighted-products--product h3 {
    font-size: 2rem;
  }

  .module_highlighted-products--product a {
    padding: 20px !important;
  }

  .module_highlighted-products--product:nth-of-type(1) h3 {
    font-size: 3rem;
  }
}

.module_homepage-header {
  margin-bottom: -180px;
}

.module_homepage-header *,
.module_homepage-header *:hover,
.module_homepage-header *:focus {
  outline: none !important;
}

@media (max-width: 1023px) {
  .module_homepage-header {
    margin-bottom: 0;
  }
}

.module_homepage-header--carousel .slick-list {
  height: auto !important;
}

.module_homepage-header--carousel--slide {
  padding-bottom: 180px;
  height: 80vh;
  min-height: 672px;
  display: flex !important;
  position: relative;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide {
    height: auto;
    min-height: 672px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .module_homepage-header--carousel--slide {
    min-height: 424px;
  }
}

.module_homepage-header--carousel--slide--background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.module_homepage-header--carousel--slide--background img,
.module_homepage-header--carousel--slide--background video {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.module_homepage-header--carousel--slide--background::after {
  content: "";
  height: 170px;
  background: url(../img/interface/page-header-mask.png) 0 0/auto auto repeat-x;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--background {
    bottom: -400px;
  }

  .module_homepage-header--carousel--slide--background::after {
    bottom: 400px;
  }
}

@media (max-width: 767px) {
  .module_homepage-header--carousel--slide--background {
    bottom: 0;
  }

  .module_homepage-header--carousel--slide--background::after {
    bottom: 0;
  }
}

.module_homepage-header--carousel--slide--content {
  text-align: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content {
    padding: 50px 20px;
    flex-direction: column;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .module_homepage-header--carousel--slide--content {
    padding: 20px 10px 50px !important;
  }
}

.module_homepage-header--carousel--slide--content--main,
.module_homepage-header--carousel--slide--content--aside {
  padding: 50px;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content--main,
  .module_homepage-header--carousel--slide--content--aside {
    padding: 0;
  }
}

.module_homepage-header--carousel--slide--content--main {
  color: white;
  font-size: 2rem;
  flex-grow: 1;
  flex-basis: 100%;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content--main {
    font-size: 1.6rem;
    width: 100%;
    flex-grow: 0;
    flex-basis: auto;
  }
}

@media (max-width: 767px) {
  .module_homepage-header--carousel--slide--content--main {
    font-size: 1.2rem;
  }
}

.module_homepage-header--carousel--slide--content--main h1,
.module_homepage-header--carousel--slide--content--main--logo {
  margin-bottom: 40px !important;
  position: relative;
}

.module_homepage-header--carousel--slide--content--main h1::before,
.module_homepage-header--carousel--slide--content--main--logo::before {
  content: "";
  width: 100%;
  max-width: 600px;
  height: 10px;
  background: url(../img/interface/logo-separator.png) 50% 50% no-repeat;
  background-size: 100% 100% !important;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%);
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content--main h1,
  .module_homepage-header--carousel--slide--content--main--logo {
    margin-bottom: 20px !important;
  }

  .module_homepage-header--carousel--slide--content--main h1::before,
  .module_homepage-header--carousel--slide--content--main--logo::before {
    height: 5px;
    bottom: -10px;
  }
}

.module_homepage-header--carousel--slide--content--main--logo img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.module_homepage-header--carousel--slide--content--main h1 {
  color: white;
  font-weight: 800;
  font-size: 7.5rem;
  line-height: 1em;
  text-transform: uppercase;
  text-shadow: 0 0 5px black;
  margin: 0;
  padding: 0;
  hyphens: auto;
  position: relative;
}

.module_homepage-header--carousel--slide--content--main h1::before {
  content: "";
  width: 100%;
  max-width: 600px;
  height: 10px;
  background: url(../img/interface/logo-separator.png) 50% 50% no-repeat;
  background-size: 100% 100% !important;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%);
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content--main h1::before {
    height: 5px;
    bottom: -10px;
  }
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content--main h1 {
    font-size: 6rem;
  }
}

@media (max-width: 767px) {
  .module_homepage-header--carousel--slide--content--main h1 {
    font-size: 4.5rem;
  }
}

.module_homepage-header--carousel--slide--content--main h1 span {
  line-height: inherit;
  display: block;
}

.module_homepage-header--carousel--slide--content--main h1 span:first-child {
  font-weight: 300;
  font-size: 3rem;
  line-height: 1em;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content--main h1 span:first-child {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .module_homepage-header--carousel--slide--content--main h1 span:first-child {
    font-size: 1.8rem;
  }
}

.module_homepage-header--carousel--slide--content--main h1.dark {
  color: black;
}

.module_homepage-header--carousel--slide--content--main p {
  font-size: inherit;
  margin: 0.5em 0 0;
  padding: 0;
}

.module_homepage-header--carousel--slide--content--main--text.dark {
  color: black;
}

.module_homepage-header--carousel--slide--content--main--actions {
  font-size: 1.6rem !important;
  text-align: center;
  margin-top: 1em !important;
}

.module_homepage-header--carousel--slide--content--main--actions a,
.module_homepage-header--carousel--slide--content--main--actions button {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  margin: 10px 0 0;
  padding: 15px 30px;
  border: 0;
  background: #9d0a0e;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.module_homepage-header--carousel--slide--content--main--actions a::after,
.module_homepage-header--carousel--slide--content--main--actions button::after {
  content: "";
  border-radius: 5px;
  background: rgba(153, 153, 153, 0.1);
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  z-index: -1;
}

.module_homepage-header--carousel--slide--content--main--actions a:hover,
.module_homepage-header--carousel--slide--content--main--actions a:focus,
.module_homepage-header--carousel--slide--content--main--actions button:hover,
.module_homepage-header--carousel--slide--content--main--actions button:focus {
  background-color: black;
}

.module_homepage-header--carousel--slide--content--aside {
  width: 100%;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content--aside {
    width: 100%;
    margin-top: 30px;
  }
}

.module_homepage-header--carousel--slide--content--aside--video {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
  position: relative;
}

.module_homepage-header--carousel--slide--content--aside--video::after {
  content: "";
  display: block;
  padding-top: 56.25%;
  pointer-events: none;
}

.module_homepage-header--carousel--slide--content--aside--video--player,
.module_homepage-header--carousel--slide--content--aside--video--poster {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.module_homepage-header--carousel--slide--content--aside--video--player {
  background: radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.module_homepage-header--carousel--slide--content--aside--video--player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.module_homepage-header--carousel--slide--content--aside--video--player.playing {
  opacity: 1;
  pointer-events: auto;
}

.module_homepage-header--carousel--slide--content--aside--video--poster {
  z-index: 1;
  cursor: pointer;
}

.module_homepage-header--carousel--slide--content--aside--video--poster::before,
.module_homepage-header--carousel--slide--content--aside--video--poster::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
}

.module_homepage-header--carousel--slide--content--aside--video--poster::before {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  background: #9d0a0e;
  transform: translate(-50%, -50%);
  transition: background-color 0.25s ease;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content--aside--video--poster::before {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .module_homepage-header--carousel--slide--content--aside--video--poster::before {
    width: 38px;
    height: 38px;
  }
}

.module_homepage-header--carousel--slide--content--aside--video--poster::after {
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 46px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  color: white;
  transform: translate(-40%, -50%);
  transition: color 0.25s ease;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide--content--aside--video--poster::after {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .module_homepage-header--carousel--slide--content--aside--video--poster::after {
    font-size: 18px;
  }
}

.module_homepage-header--carousel--slide--content--aside--video--poster:hover::before,
.module_homepage-header--carousel--slide--content--aside--video--poster:focus::before {
  background: white;
}

.module_homepage-header--carousel--slide--content--aside--video--poster:hover::after,
.module_homepage-header--carousel--slide--content--aside--video--poster:focus::after {
  color: #9d0a0e;
}

.module_homepage-header--carousel--slide[data-columns="2"] .module_homepage-header--carousel--slide--content {
  align-items: center;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel--slide[data-columns="2"] .module_homepage-header--carousel--slide--content {
    padding-left: 50%;
    justify-content: center;
  }
}

.module_homepage-header--carousel .slick-dots {
  font-size: 0;
  text-align: center;
  margin: 0;
  position: absolute;
  right: 0;
  bottom: 180px;
  left: 0;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .module_homepage-header--carousel .slick-dots {
    bottom: 0;
  }
}

.module_homepage-header--carousel .slick-dots li {
  font-size: 0;
  display: inline-block;
}

.module_homepage-header--carousel .slick-dots li button {
  text-indent: -999px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  outline: 0;
  background: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
}

.module_homepage-header--carousel .slick-dots li button::before {
  content: "";
  margin: -8px 0 0 -8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 5px black;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: background-color 0.25s ease;
}

.module_homepage-header--carousel .slick-dots li button:hover::before,
.module_homepage-header--carousel .slick-dots li button:focus::before {
  background: black;
}

.module_homepage-header--carousel .slick-dots li.slick-active button::before {
  background: white !important;
  cursor: default !important;
}

.module_host-and-group {
  margin-bottom: 70px;
}

@media (max-width: 479px) {
  .module_host-and-group {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .module_host-and-group h3 {
    font-size: 2.8rem !important;
  }
}

.module_host-and-group--wrapper-img-txt {
  border-top: 1px solid #cdcbcb;
  padding: 30px 0;
  display: flex;
}

@media (max-width: 479px) {
  .module_host-and-group--wrapper-img-txt {
    flex-direction: column;
    align-items: center;
  }
}

.module_host-and-group--wrapper-img-txt .module_host-and-group--image {
  flex-shrink: 0;
}

@media (max-width: 479px) {
  .module_host-and-group--wrapper-img-txt .module_host-and-group--image {
    margin-bottom: 20px;
  }
}

.module_host-and-group--wrapper-img-txt .module_host-and-group--image img {
  display: block;
  max-width: 210px;
}

.module_host-and-group--wrapper-img-txt .module_host-and-group--text {
  padding-left: 25px;
}

@media (max-width: 479px) {
  .module_host-and-group--wrapper-img-txt .module_host-and-group--text {
    width: 100%;
    padding-left: 0;
  }
}

.module_host-and-group--wrapper-img-txt .module_host-and-group--text .host-group-name {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

@media (max-width: 479px) {
  .module_host-and-group--wrapper-img-txt .module_host-and-group--text .host-group-name {
    font-size: 2rem !important;
  }
}

.module_host-and-group--wrapper-img-txt .module_host-and-group--text .host-function {
  font-style: italic;
}

.module_host-and-group--wrapper-img-txt .module_host-and-group--text .read-more {
  font-weight: 700;
}

.fancybox-interstitials {
  background-color: rgba(37, 37, 37, 0.9);
}

.fancybox-interstitials .fancybox-skin {
  background: transparent !important;
  box-shadow: none;
}

.mobile-lock {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#interstitials {
  width: 100%;
  height: 100%;
}

#interstitials a {
  text-decoration: none;
}

#interstitials h2 {
  color: #fff;
  font-size: 3rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  margin: 0;
  padding: 0;
  text-indent: inherit;
  text-decoration: none;
}

#interstitials h2::before {
  display: none;
}

@media (max-width: 1023px) {
  #interstitials h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 479px) {
  #interstitials h2 {
    font-size: 1.5rem;
  }
}

#interstitials .details p {
  color: #fff;
  margin: 0 0 22px;
  padding: 0;
  text-decoration: none;
  line-height: 1.3;
}

@media (max-width: 479px) {
  #interstitials .details p {
    font-size: 1.1rem;
  }
}

#interstitials .actions {
  text-align: left;
}

#interstitials #static {
  height: 100%;
  width: 100%;
  max-height: 800px;
  max-width: 1244px;
  margin: 0 auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 0;
  top: 50px;
}

#interstitials #static .close-btn {
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  top: 20%;
  right: 20px;
  color: #fff;
  z-index: 9999;
  text-decoration: none;
}

#interstitials #static .close-btn::after {
  content: "X";
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  position: absolute;
  left: 0;
  top: 0;
  text-decoration: none;
}

@media (max-width: 767px) {
  #interstitials #static {
    background-position: 50% 20%;
    top: 50px;
  }
}

@media (max-width: 479px) {
  #interstitials #static {
    background-position: 10% 20%;
    background-size: 150% auto !important;
    top: 35px;
  }
}

#interstitials #static .content {
  position: absolute;
  margin-top: -25px;
  top: 50%;
  text-decoration: none;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  #interstitials #static .content {
    margin-top: -90px;
  }
}

@media (max-width: 479px) {
  #interstitials #static .content {
    margin-top: 50px;
    padding: 0 20px;
  }
}

#interstitials #static .content.right {
  width: 44.53%;
  right: 0;
  bottom: 0;
  padding-right: 30px;
}

@media (max-width: 479px) {
  #interstitials #static .content.right {
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0 12px;
  }
}

#interstitials #static .content.left {
  width: 44.53%;
  left: 0;
  bottom: 0;
  padding-left: 30px;
}

@media (max-width: 479px) {
  #interstitials #static .content.left {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 12px;
  }
}

#interstitials #static .content.btn-blue a {
  margin-bottom: 20px;
}

#interstitials #static .content.btn-blue a,
#interstitials #static .content.btn-blue a::before {
  background-color: #4fb1c2;
}

#interstitials #static .content.btn-blue a:hover,
#interstitials #static .content.btn-blue a:focus,
#interstitials #static .content.btn-blue a:hover::before {
  background-color: #103759 !important;
}

#interstitials #video {
  width: 1200px;
  height: 850px;
  margin: 0 auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  text-align: center;
  top: 50px;
}

#interstitials #video video,
#interstitials #video iframe {
  width: 720px;
  height: 406px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -360px;
  margin-top: -270px;
  z-index: 1;
}

#interstitials #video .mobile-video-poster {
  height: auto;
  margin: 0 auto;
  position: relative;
  top: 50%;
}

#interstitials #video .content {
  width: 720px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -360px;
  margin-top: 150px;
  z-index: 3;
  text-decoration: none;
  text-align: left;
}

#interstitials #video .content.btn-blue a,
#interstitials #video .content.btn-blue a::before {
  background-color: #4fb1c2;
}

#interstitials #video .content.btn-blue a:hover,
#interstitials #video .content.btn-blue a:focus,
#interstitials #video .content.btn-blue a:hover::before {
  background-color: #103759 !important;
}

@media (max-width: 1919px) {
  #interstitials #video {
    width: 1024px;
    height: 695px;
    top: 50px;
  }

  #interstitials #video video,
  #interstitials #video iframe {
    width: 600px;
    height: 339px;
    margin-left: -300px;
    margin-top: -230px;
  }

  #interstitials #video .mobile-video-poster {
    width: 600px;
    margin-top: -230px;
  }

  #interstitials #video .content {
    width: 590px;
    margin-left: -290px;
    margin-top: 150px;
  }
}

@media (max-width: 1023px) {
  #interstitials #video {
    width: 736px;
    height: 505px;
    top: 50px;
  }

  #interstitials #video video,
  #interstitials #video iframe {
    width: 435px;
    height: 245px;
    margin-left: -217px;
    margin-top: -170px;
  }

  #interstitials #video .mobile-video-poster {
    width: 435px;
    margin-top: -170px;
  }

  #interstitials #video .content {
    width: 425px;
    margin-left: -208px;
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  #interstitials #video {
    width: 479px;
    height: 360px;
    top: 50px;
  }

  #interstitials #video video,
  #interstitials #video iframe {
    width: 300px;
    height: 170px;
    margin-left: -150px;
    margin-top: -110px;
  }

  #interstitials #video .mobile-video-poster {
    width: 300px;
    margin-top: -110px;
  }

  #interstitials #video .content {
    width: 290px;
    margin-left: -145px;
    margin-top: 75px;
  }
}

@media (max-width: 479px) {
  #interstitials #video {
    width: 320px;
    height: 231px;
    top: 35px;
  }

  #interstitials #video video,
  #interstitials #video iframe {
    width: 200px;
    height: 113px;
    margin-left: -100px;
    margin-top: -75px;
  }

  #interstitials #video .mobile-video-poster {
    width: 200px;
    margin-top: -75px;
  }

  #interstitials #video .content {
    width: 190px;
    margin-left: -95px;
    margin-top: 50px;
  }
}

#interstitials #video .overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 2;
  pointer-events: none;
}

#interstitials #video .close-btn {
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  top: 5%;
  right: 21%;
  color: #fff;
  z-index: 9999;
}

#interstitials #video .close-btn::after {
  content: "X";
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1023px) {
  #interstitials #video .close-btn {
    width: 15px;
    height: 15px;
    top: 5%;
    right: 20%;
  }

  #interstitials #video .close-btn::after {
    content: "X";
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 1em;
    font-family: icomoon, sans-serif;
    position: absolute;
    left: 0;
    top: 0;
  }
}

.podcasts.livestream-item h3 {
  font-size: 2.4rem;
}

.podcasts.livestream-item h3 span {
  font-size: 1.2rem !important;
  display: block !important;
}

.podcasts.livestream-item div.video {
  margin: 0;
}

.podcasts.livestream-item div.video img {
  width: 100%;
  height: auto;
  display: block;
}

.podcasts.livestream-item div.video a {
  position: relative;
  display: block;
}

.podcasts.livestream-item div.video a::after {
  content: "";
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-color: #000 !important;
  background: url(../img/interface/video-play-button.png) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 50%;
}

.podcasts.livestream-item div.video a:hover::after,
.podcasts.livestream-item div.video a:focus::after {
  background-position: 0 100%;
}

@media (max-width: 479px) {
  .podcasts.livestream-item div.video a::after {
    width: 120px !important;
    height: 120px !important;
    margin: -60px 0 0 -60px;
  }
}

.past-livestreams-title {
  margin: 30px 0;
  font-size: 3.4rem;
  line-height: 3.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .past-livestreams-title {
    padding: 0 18px;
  }
}

.article-list .livestream-item {
  width: calc(100% - 36px);
  padding: 0 18px;
}

.article-list .livestream-item .wrap {
  display: flex;
  justify-content: space-between;
  padding: 35px 0;
  border-top: 1px solid #cdcbcb;
}

@media (max-width: 767px) {
  .article-list .livestream-item .wrap {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .article-list .livestream-item .wrap {
    flex-direction: column;
    padding: 20px 0;
  }
}

.article-list .livestream-item .wrap div.video {
  position: relative;
  margin: 0;
  width: 33.33%;
}

.article-list .livestream-item .wrap div.video a {
  position: relative;
  display: block;
}

.article-list .livestream-item .wrap div.video a:hover::after,
.article-list .livestream-item .wrap div.video.video a:focus::after {
  background-position: 0 100%;
}

.article-list .livestream-item .wrap div.video a::after {
  content: "";
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-color: #000 !important;
  background: url(../img/interface/video-play-button.png) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 50%;
}

.article-list .livestream-item .wrap div.video img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1023px) {
  .article-list .livestream-item .wrap div.video {
    width: 325px;
  }
}

@media (max-width: 767px) {
  .article-list .livestream-item .wrap div.video {
    width: 100%;
    margin-bottom: 20px;
    order: -1;
  }
}

.article-list .livestream-item .wrap .content {
  width: calc(66.67% - 45px);
}

@media (max-width: 1023px) {
  .article-list .livestream-item .wrap .content {
    width: calc(100% - 370px);
  }
}

@media (max-width: 767px) {
  .article-list .livestream-item .wrap .content {
    width: 100%;
  }
}

.article-list .livestream-item .wrap .content h4 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 5px;
  font-weight: 700;
}

.article-list .livestream-item .wrap .content h4 span {
  font-size: 1.2rem;
  display: block;
}

.article-list .livestream-item .wrap .content h4 a {
  color: #333;
}

.article-list .livestream-item .wrap .content h4 a:hover {
  color: #9d0a0e;
}

.article-list .livestream-item .wrap .content .summary {
  height: 146px;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .article-list .livestream-item .wrap .content .summary {
    height: 100px;
  }
}

.article-list .livestream-item .wrap .content .summary::after {
  content: "";
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(232, 232, 221, 0) 0%, #e8e8dd 80%);
}

.article-list .livestream-item .wrap .content .summary p {
  font-size: 1.4rem;
}

.article-list .livestream-item .wrap .content .cta-expand {
  padding: 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  position: relative;
}

.article-list .livestream-item .wrap .content .cta-expand:hover,
.article-list .livestream-item .wrap .content .cta-expand:focus {
  color: #9d0a0e;
}

.article-list .livestream-item .wrap .content .cta-expand::after {
  padding: 0 0 0 8px;
  content: "d";
  font-size: 12px;
  font-family: "icomoon", sans-serif;
  font-weight: normal;
}

.article-list .livestream-item.expand .summary {
  height: auto !important;
}

.article-list .livestream-item.expand .summary::after {
  display: none !important;
}

.article-list .livestream-item.expand .cta-expand::after {
  content: "u" !important;
}

.page-articles-media-podcasts .listing {
  display: flex;
  flex-direction: column;
}

.ark-podcast-list-item {
  min-height: 130px;
  margin-bottom: 2px;
  background: #f6f6f6;
  display: flex;
}

.ark-podcast-list-item:nth-child(even) {
  background: #ebebeb;
}

.ark-podcast-list-item .ark-podcast-list-item--content--wrapper,
.ark-podcast-list-item .ark-podcast-list-item--player-window {
  padding: 16px;
}

.ark-podcast-list-item .ark-podcast-list-item--date {
  color: white;
  text-align: center;
  width: 100px;
  padding: 16px 0;
  background: #333;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ark-podcast-list-item .ark-podcast-list-item--date span {
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1em;
}

.ark-podcast-list-item .ark-podcast-list-item--date span.month {
  font-size: 1.8rem;
}

.ark-podcast-list-item .ark-podcast-list-item--date span.day {
  font-size: 3.2rem;
}

.ark-podcast-list-item .ark-podcast-list-item--date span.year {
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .ark-podcast-list-item .ark-podcast-list-item--date {
    width: 56px;
  }
}

.ark-podcast-list-item .ark-podcast-list-item--content--title,
.ark-podcast-list-item .ark-podcast-list-item--player-window--title {
  font-weight: bold;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .ark-podcast-list-item .ark-podcast-list-item--content--title,
  .ark-podcast-list-item .ark-podcast-list-item--player-window--title {
    font-size: 1.4rem;
  }
}

.ark-podcast-list-item .ark-podcast-list-item--content {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  display: flex;
}

.ark-podcast-list-item .ark-podcast-list-item--content--wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.ark-podcast-list-item .ark-podcast-list-item--content--text-content {
  padding-right: 16px;
  flex-grow: 1;
  align-self: flex-start;
}

@media (max-width: 767px) {
  .ark-podcast-list-item .ark-podcast-list-item--content--text-content {
    align-self: center;
  }
}

.ark-podcast-list-item .ark-podcast-list-item--player-window--title {
  margin-right: 138px;
}

@media (max-width: 767px) {
  .ark-podcast-list-item .ark-podcast-list-item--player-window--title {
    margin-right: 96px;
  }
}

.ark-podcast-list-item .ark-podcast-list-item--content--summary {
  font-size: 1.4rem;
}

.ark-podcast-list-item .ark-podcast-list-item--content--summary p {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .ark-podcast-list-item .ark-podcast-list-item--content--summary {
    display: none;
  }
}

.ark-podcast-list-item .ark-podcast-list-item--content--actions {
  text-align: right;
  vertical-align: middle;
  width: 128px;
  flex-shrink: 0;
}

.ark-podcast-list-item .ark-podcast-list-item--content--actions a,
.ark-podcast-list-item .ark-podcast-list-item--content--actions button {
  color: white !important;
  font-size: 0;
  vertical-align: middle;
  text-indent: -999px;
  width: 40px;
  height: 40px;
  margin: 0 5px 0 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: 0;
  background: #333;
  display: inline-block;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.25s ease-in-out;
}

.ark-podcast-list-item .ark-podcast-list-item--content--actions a.ark-podcast-list-item--open-to-play::before,
.ark-podcast-list-item .ark-podcast-list-item--content--actions button.ark-podcast-list-item--open-to-play::before {
  content: "";
  width: 0;
  margin: -11px 0 0 -6px;
  border-width: 11px 0 11px 17px;
  border-style: solid;
  border-color: transparent transparent transparent white;
  position: absolute;
  top: 50%;
  left: 50%;
}

.ark-podcast-list-item .ark-podcast-list-item--content--actions a.ark-podcast-list-item--download::before,
.ark-podcast-list-item .ark-podcast-list-item--content--actions button.ark-podcast-list-item--download::before {
  color: inherit !important;
  text-align: center;
  text-indent: 0;
  margin-top: -12px;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}

.ark-podcast-list-item .ark-podcast-list-item--content--actions a:hover,
.ark-podcast-list-item .ark-podcast-list-item--content--actions a:focus,
.ark-podcast-list-item .ark-podcast-list-item--content--actions button:hover,
.ark-podcast-list-item .ark-podcast-list-item--content--actions button:focus {
  background-color: #9d0a0e;
}

@media (max-width: 767px) {
  .ark-podcast-list-item .ark-podcast-list-item--content--actions a,
  .ark-podcast-list-item .ark-podcast-list-item--content--actions button {
    margin: 5px 0;
  }
}

@media (max-width: 767px) {
  .ark-podcast-list-item .ark-podcast-list-item--content--actions {
    width: 80px;
  }
}

.ark-podcast-list-item .ark-podcast-list-item--player-window {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition: all 0.25s ease-in-out;
  transition-property: opacity, transform;
}

.ark-podcast-list-item .ark-podcast-list-item--player-window.ark-podcast-list-item--player-window-opened {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.ark-podcast-list-item .ark-podcast-list-item--player-window--close {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: none;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

.ark-podcast-list-item .ark-podcast-list-item--player-window--close::before,
.ark-podcast-list-item .ark-podcast-list-item--player-window--close::after {
  content: "";
  width: 18px;
  height: 4px;
  background: #949494;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: background-color 0.25s ease-in-out;
}

.ark-podcast-list-item .ark-podcast-list-item--player-window--close::before {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.ark-podcast-list-item .ark-podcast-list-item--player-window--close::after {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.ark-podcast-list-item .ark-podcast-list-item--player-window--close:hover::before,
.ark-podcast-list-item .ark-podcast-list-item--player-window--close:hover::after,
.ark-podcast-list-item .ark-podcast-list-item--player-window--close:focus::before,
.ark-podcast-list-item .ark-podcast-list-item--player-window--close:focus::after {
  background: #333;
}

.ark-audio-player {
  margin-top: 25px;
}

@media (max-width: 767px) {
  .ark-audio-player {
    margin-bottom: 20px;
  }
}

.ark-audio-player .ark-audio-player--media {
  width: 0;
  height: 0;
  overflow: hidden;
}

.ark-audio-player .ark-audio-player--controller {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ark-audio-player .ark-audio-player--controller--progress {
  width: calc(100% - 56px);
  margin: 16px 0;
  cursor: pointer;
}

.ark-audio-player .ark-audio-player--controller--progress .ark-audio-player--controller--progress--bar,
.ark-audio-player .ark-audio-player--controller--progress .ark-audio-player--controller--progress--bar--fill {
  border-radius: 5px;
}

.ark-audio-player .ark-audio-player--controller--progress .ark-audio-player--controller--progress--bar {
  height: 10px;
  background: rgba(31, 33, 36, 0.2);
  position: relative;
  z-index: 1;
}

.ark-audio-player .ark-audio-player--controller--progress .ark-audio-player--controller--progress--bar--fill {
  background: #9d0a0e;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.ark-audio-player .ark-audio-player--controller--progress .ark-audio-player--controller--progress--bar--knob {
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
}

.ark-audio-player .ark-audio-player--controller--progress .ark-audio-player--controller--progress--bar--knob::after {
  content: "";
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
}

.ark-audio-player .ark-audio-player--controller--play-pause-button {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: 0;
  background: #212121;
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease-in-out;
  order: -1;
}

.ark-audio-player .ark-audio-player--controller--play-pause-button::before {
  content: "";
  width: 0;
  margin: -10px 0 0 -5px;
  border-width: 10px 0 10px 15px;
  border-style: solid;
  border-color: transparent transparent transparent white;
  left: 50%;
}

.ark-audio-player .ark-audio-player--controller--play-pause-button::before,
.ark-audio-player .ark-audio-player--controller--play-pause-button::after {
  content: "";
  position: absolute;
  top: 50%;
}

.ark-audio-player .ark-audio-player--controller--play-pause-button:hover,
.ark-audio-player .ark-audio-player--controller--play-pause-button:focus {
  background: #9d0a0e;
}

.ark-audio-player .ark-audio-player--controller--current-time,
.ark-audio-player .ark-audio-player--controller--remaining-time {
  color: #a3a3a3;
  margin-top: -0.8em;
  font-size: 1.2rem;
}

.ark-audio-player .ark-audio-player--controller--current-time {
  margin-left: 56px;
}

.ark-audio-player .ark-audio-player--controller--remaining-time {
  margin-left: 56px;
}

.ark-audio-player.ark-audio-player-playing .ark-audio-player--controller--play-pause-button::before,
.ark-audio-player.ark-audio-player-playing .ark-audio-player--controller--play-pause-button::after {
  content: "";
  width: 6px;
  height: 16px;
  margin: -8px 0 0 0;
  background: white;
}

.ark-audio-player.ark-audio-player-playing .ark-audio-player--controller--play-pause-button::before {
  margin-left: -8px;
  left: 50%;
  border: none;
}

.ark-audio-player.ark-audio-player-playing .ark-audio-player--controller--play-pause-button::after {
  margin-right: -8px;
  right: 50%;
}

.ark-audio-player.ark-audio-player-seeking .ark-audio-player--controller--play-pause-button::before,
.ark-audio-player.ark-audio-player-seeking .ark-audio-player--controller--play-pause-button::after {
  content: "";
  width: 8px;
  height: 6px;
  margin: -3px 0 0 0;
  border: 0;
  background: white;
}

.ark-audio-player.ark-audio-player-seeking .ark-audio-player--controller--play-pause-button::before {
  margin-left: -10px;
  left: 50%;
}

.ark-audio-player.ark-audio-player-seeking .ark-audio-player--controller--play-pause-button::after {
  margin-right: -10px;
  right: 50%;
}

.main-content.podcasts.audio-article .ark-audio-player .ark-audio-player--controller--play-pause-button {
  background: white;
}

.main-content.podcasts.audio-article .ark-audio-player .ark-audio-player--controller--play-pause-button:hover,
.main-content.podcasts.audio-article .ark-audio-player .ark-audio-player--controller--play-pause-button:focus {
  background: #9d0a0e;
}

.main-content.podcasts.audio-article .ark-audio-player .ark-audio-player--controller--play-pause-button::before {
  border-color: transparent transparent transparent #333;
}

.main-content.podcasts.audio-article .ark-audio-player .ark-audio-player--controller--play-pause-button::after {
  background: #333;
}

.main-content.podcasts.audio-article .ark-audio-player .ark-audio-player--controller--play-pause-button:hover::before {
  border-color: transparent transparent transparent white;
}

.main-content.podcasts.audio-article .ark-audio-player .ark-audio-player--controller--play-pause-button:hover::after {
  background: white;
}

.main-content.podcasts.audio-article .ark-audio-player.ark-audio-player-playing .ark-audio-player--controller--play-pause-button::before,
.main-content.podcasts.audio-article .ark-audio-player.ark-audio-player-playing .ark-audio-player--controller--play-pause-button::after {
  background: #333;
}

.main-content.podcasts.audio-article .ark-audio-player.ark-audio-player-playing .ark-audio-player--controller--play-pause-button:hover::before,
.main-content.podcasts.audio-article .ark-audio-player.ark-audio-player-playing .ark-audio-player--controller--play-pause-button:hover::after {
  background: white;
}

.main-content.podcasts.audio-article .ark-audio-player .ark-audio-player--controller--progress .ark-audio-player--controller--progress--bar {
  background: rgba(255, 255, 255, 0.3);
}

.main-content.podcasts.audio-article .ark-audio-player .ark-audio-player--controller--progress .ark-audio-player--controller--progress--bar--knob::after {
  background: white;
}

.article-list .article-preview.audio-article,
.article .article-preview.audio-article {
  width: calc(100% - 36px);
  padding: 0 18px;
  cursor: default;
}

.article-list .article-preview.audio-article .wrap,
.article .article-preview.audio-article .wrap {
  display: flex;
  justify-content: space-between;
  padding: 70px 0;
  border-top: 1px solid #cdcbcb;
}

@media (max-width: 1023px) {
  .article-list .article-preview.audio-article .wrap,
  .article .article-preview.audio-article .wrap {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .article-list .article-preview.audio-article .wrap,
  .article .article-preview.audio-article .wrap {
    flex-direction: column;
    padding: 20px 0;
  }
}

.article-list .article-preview.audio-article .wrap figure.audio,
.article .article-preview.audio-article .wrap figure.audio {
  position: relative;
  margin: 0;
  width: 33.33%;
}

@media (max-width: 1023px) {
  .article-list .article-preview.audio-article .wrap figure.audio,
  .article .article-preview.audio-article .wrap figure.audio {
    width: 325px;
  }
}

@media (max-width: 767px) {
  .article-list .article-preview.audio-article .wrap figure.audio,
  .article .article-preview.audio-article .wrap figure.audio {
    width: 100%;
    margin-bottom: 20px;
    order: -1;
  }
}

.article-list .article-preview.audio-article .wrap .content,
.article .article-preview.audio-article .wrap .content {
  width: calc(66.67% - 45px);
}

@media (max-width: 1023px) {
  .article-list .article-preview.audio-article .wrap .content,
  .article .article-preview.audio-article .wrap .content {
    width: calc(100% - 370px);
  }
}

@media (max-width: 767px) {
  .article-list .article-preview.audio-article .wrap .content,
  .article .article-preview.audio-article .wrap .content {
    width: 100%;
  }
}

.article-list .article-preview.audio-article .wrap .content h4,
.article .article-preview.audio-article .wrap .content h4 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 5px;
}

.article-list .article-preview.audio-article .wrap .content .author,
.article-list .article-preview.audio-article .wrap .content .category,
.article .article-preview.audio-article .wrap .content .author,
.article .article-preview.audio-article .wrap .content .category {
  font-size: 1.6rem;
}

.article-list .article-preview.audio-article .wrap .content .summary a,
.article .article-preview.audio-article .wrap .content .summary a {
  color: #9d0a0e;
  font-weight: 600;
  text-decoration: none;
}

.article-list .article-preview.audio-article .wrap .content .summary a:hover,
.article .article-preview.audio-article .wrap .content .summary a:hover {
  text-decoration: underline;
}

.article-list .article-preview.audio-article .wrap .content .cta-button,
.article .article-preview.audio-article .wrap .content .cta-button {
  padding: 0.3em 10px;
  font-size: 1.6rem;
  margin-left: 32px;
}

.article-list .article-preview.audio-article .wrap .content .cta-button::before,
.article .article-preview.audio-article .wrap .content .cta-button::before {
  width: 30px;
  left: -32px;
  background-size: auto !important;
}

.article-list .article-preview.audio-article.article-embed-podcast,
.article .article-preview.audio-article.article-embed-podcast {
  padding: 20px 0 0;
}

.article-list .article-preview.audio-article.article-embed-podcast .wrap,
.article .article-preview.audio-article.article-embed-podcast .wrap {
  padding: 20px 0 0;
}

.article .article-preview.audio-article {
  padding: 50px 0 0 0;
  width: 100%;
}

@media (max-width: 767px) {
  .article .article-preview.audio-article {
    padding-top: 10px;
  }
}

.article .article-preview.audio-article .wrap {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .article .article-preview.audio-article .wrap {
    border-bottom: none;
  }
}

.article .article-preview.audio-article .audio-controls {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cdcbcb;
}

@media (max-width: 767px) {
  .article .article-preview.audio-article .audio-controls {
    padding-bottom: 20px;
  }
}

.article .article-preview.audio-article.article-embed-podcast .audio-controls {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .article .article-preview.audio-article.article-embed-podcast .audio-controls {
    justify-content: flex-start;
  }
}

.podcast-listing .article-preview {
  border-bottom: 1px solid #cdcbcb;
}

.podcast-listing .article-preview .wrap {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.podcast-listing .article-preview .wrap .content {
  width: calc(100% - 300px);
}

@media (max-width: 767px) {
  .podcast-listing .article-preview .wrap .content {
    width: 100%;
  }
}

.podcast-listing .article-preview .wrap figure {
  width: 280px;
  margin: 0 0 0 20px;
}

@media (max-width: 767px) {
  .podcast-listing .article-preview .wrap figure {
    width: 100%;
    margin: 0;
  }
}

.podcast-listing .article-preview .wrap figure .image::after {
  display: none;
}

.subscribe-podcast-blocks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 0 20px;
}

@media (max-width: 767px) {
  .subscribe-podcast-blocks {
    padding: 20px 0;
  }
}

.subscribe-podcast-blocks .subscribe-item {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  width: 33%;
  position: relative;
  padding-bottom: 60px;
}

@media (max-width: 1023px) {
  .subscribe-podcast-blocks .subscribe-item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .subscribe-podcast-blocks .subscribe-item {
    width: 100%;
  }
}

.subscribe-podcast-blocks .subscribe-item h4 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 20px 0 10px;
}

.subscribe-podcast-blocks .subscribe-item .subtitle {
  font-size: 1.4rem;
  padding: 0 68px;
  text-align: center;
}

@media (max-width: 479px) {
  .subscribe-podcast-blocks .subscribe-item .subtitle {
    padding: 0 25px;
  }
}

.subscribe-podcast-blocks .subscribe-item .rss-selector {
  min-width: 188px;
  max-width: 350px;
  margin: 0 auto;
  z-index: 500;
  position: relative;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector.opened button {
  background-color: #9d0a0e;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector.opened button::after {
  transform: rotate(90deg);
}

.subscribe-podcast-blocks .subscribe-item .rss-selector.opened ul {
  opacity: 1;
  pointer-events: all;
  background-color: #cdcbcb;
  transform: none;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector button {
  color: white;
  font-size: 1.6rem;
  font-family: inherit;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  margin: 0;
  padding: 3px 30px 3px 40px;
  border: 0;
  outline: 0;
  display: block;
  background: #000;
  position: relative;
  z-index: 501;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector button:hover,
.subscribe-podcast-blocks .subscribe-item .rss-selector button:focus {
  background: #9d0a0e;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector button::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(../img/interface/rss-icon-no-background.svg) 0 0/100% 100% no-repeat;
  position: absolute;
  top: 50%;
  left: 6px;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector button::after {
  content: "";
  background: url(../img/interface/learn-more-button-icon.png) center center no-repeat;
  transform: rotate(-90deg);
  transition: transform 0.25s ease-in-out;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 5px;
  margin-top: -15px;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector ul {
  color: #333;
  font-style: italic;
  font-size: 1.4rem;
  margin: 0;
  list-style: none;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform, opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector ul li {
  margin-top: 1px;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector ul li a {
  color: #333;
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
  padding: 8px;
  background: white;
  display: block;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}

.subscribe-podcast-blocks .subscribe-item .rss-selector ul li a:hover,
.subscribe-podcast-blocks .subscribe-item .rss-selector ul li a:focus {
  color: white;
  background: #9d0a0e;
}

.module_table-of-images {
  border-top: 1px solid #cdcbcb;
  padding: 30px 0;
}

.module_table-of-images--wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

@media (max-width: 479px) {
  .module_table-of-images--wrapper {
    display: block;
  }
}

.module_table-of-images--wrapper figure {
  margin: 0 10px 20px !important;
  width: calc(25% - 20px);
}

@media (max-width: 767px) {
  .module_table-of-images--wrapper figure {
    width: calc(50% - 20px) !important;
  }
}

@media (max-width: 479px) {
  .module_table-of-images--wrapper figure {
    width: calc(100% - 20px) !important;
  }
}

@media (max-width: 767px) {
  .module_table-of-images--wrapper figure img {
    width: 100% !important;
  }
}

.module_homepage-latest-news {
  padding: 0 20px;
}

.module_homepage-latest-news h3 {
  margin: 80px 0;
  font-family: "Tiamat Condensed Regular", serif;
  font-size: 10rem;
  color: #9d0a0e;
  text-transform: uppercase;
  line-height: 1em;
}

@media (max-width: 1023px) {
  .module_homepage-latest-news h3 {
    margin: 50px 0 30px;
    text-align: left;
    font-size: 6rem;
  }
}

@media (max-width: 767px) {
  .module_homepage-latest-news h3 {
    font-size: 4rem;
    text-align: center;
  }
}

.module_homepage-latest-news .latest-content-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.module_homepage-latest-news .latest-content-items .single-bloc .visual {
  background-position: right -350px center !important;
}

@media (max-width: 1023px) {
  .module_homepage-latest-news .latest-content-items .single-bloc .visual {
    background-position: right -430px center !important;
  }
}

@media (max-width: 767px) {
  .module_homepage-latest-news .latest-content-items .single-bloc .visual {
    background-position: right -180px center !important;
  }
}

@media (max-width: 767px) {
  .module_homepage-latest-news .latest-content-items .single-bloc .visual {
    background-position: right -420px center !important;
  }
}

.module_homepage-latest-news .latest-content-items .double-bloc .visual {
  background-position: right -350px center !important;
}

@media (max-width: 1023px) {
  .module_homepage-latest-news .latest-content-items .double-bloc .visual {
    background-position: right -280px center !important;
  }
}

@media (max-width: 767px) {
  .module_homepage-latest-news .latest-content-items .double-bloc .visual {
    background-position: right -415px center !important;
  }
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .visual {
  background-position: 50% 50%;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc,
.module_homepage-latest-news .latest-content-items .single-bloc,
.module_homepage-latest-news .latest-content-items .double-bloc {
  height: 514px;
  margin-bottom: 20px;
  display: block;
  position: relative;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .visual,
.module_homepage-latest-news .latest-content-items .single-bloc .visual,
.module_homepage-latest-news .latest-content-items .double-bloc .visual {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover !important;
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.25s ease-in-out;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .cta,
.module_homepage-latest-news .latest-content-items .single-bloc .cta,
.module_homepage-latest-news .latest-content-items .double-bloc .cta {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #9d0a0e;
  z-index: 2;
  transition: background 0.25s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .cta.cta-arrow::after,
.module_homepage-latest-news .latest-content-items .single-bloc .cta.cta-arrow::after,
.module_homepage-latest-news .latest-content-items .double-bloc .cta.cta-arrow::after {
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  color: white;
}

.module_homepage-latest-news .latest-content-items .double-bloc,
.module_homepage-latest-news .latest-content-items .single-bloc {
  height: 514px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  background-color: #9d0a0e;
}

.module_homepage-latest-news .latest-content-items .double-bloc::before,
.module_homepage-latest-news .latest-content-items .single-bloc::before {
  content: "";
  height: 275px;
  display: block;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.module_homepage-latest-news .latest-content-items .double-bloc .date,
.module_homepage-latest-news .latest-content-items .single-bloc .date {
  width: 70px;
  height: 70px;
  display: flex;
  background: #000;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  z-index: 2;
}

.module_homepage-latest-news .latest-content-items .double-bloc .date span,
.module_homepage-latest-news .latest-content-items .single-bloc .date span {
  margin-top: 5px;
  display: block;
  font-size: 3rem;
}

.module_homepage-latest-news .latest-content-items .double-bloc h4,
.module_homepage-latest-news .latest-content-items .single-bloc h4 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 50px;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  font-family: "Tiamat Condensed Regular", serif;
  font-size: 4rem;
  line-height: 0.95em;
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 767px) {
  .module_homepage-latest-news .latest-content-items .double-bloc h4,
  .module_homepage-latest-news .latest-content-items .single-bloc h4 {
    font-size: 2.8rem;
  }
}

.module_homepage-latest-news .latest-content-items .double-bloc h4 span,
.module_homepage-latest-news .latest-content-items .single-bloc h4 span {
  display: block;
  color: #9d0a0e;
  text-transform: none;
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.module_homepage-latest-news .latest-content-items .double-bloc:hover .visual,
.module_homepage-latest-news .latest-content-items .double-bloc:focus .visual,
.module_homepage-latest-news .latest-content-items .single-bloc:hover .visual,
.module_homepage-latest-news .latest-content-items .single-bloc:focus .visual {
  opacity: 1;
}

.module_homepage-latest-news .latest-content-items .double-bloc:hover .cta-arrow,
.module_homepage-latest-news .latest-content-items .double-bloc:focus .cta-arrow,
.module_homepage-latest-news .latest-content-items .single-bloc:hover .cta-arrow,
.module_homepage-latest-news .latest-content-items .single-bloc:focus .cta-arrow {
  background: #b12029;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc {
  height: auto !important;
  padding-bottom: 80px !important;
  display: block;
  position: relative;
  background-color: #000;
}

@media (max-width: 1023px) {
  .module_homepage-latest-news .latest-content-items .podcast-bloc {
    height: 514px;
  }
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .visual {
  opacity: 1;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc h4 {
  padding: 8px 10px;
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #000;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  font-size: 2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .cta-plus::after {
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  color: white;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .cta-plus:hover,
.module_homepage-latest-news .latest-content-items .podcast-bloc .cta-plus:focus {
  background: #b12029;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing {
  margin: 50px 0 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media (min-width: 767px) {
  .module_homepage-latest-news .latest-content-items .podcast-bloc .listing {
    max-height: 370px;
  }
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item {
  min-height: 80px;
  background: none !important;
  color: #fff;
  position: relative;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item h5 {
  width: auto;
  font-family: "Tiamat Condensed Regular", serif;
  font-size: 2.2rem;
  line-height: 1em;
  overflow: hidden;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window {
  padding: 8px 10px;
  z-index: 3 !important;
  background-color: #9d0a0e;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window h5 {
  margin-right: 25px;
  line-height: 0.9em;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-podcast-list-item--player-window--close {
  top: 10px;
  right: 10px;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-podcast-list-item--player-window--close::before,
.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-podcast-list-item--player-window--close::after {
  background: #f18e91;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-audio-player {
  margin: 0;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-audio-player .ark-audio-player--controller .ark-audio-player--controller--play-pause-button {
  display: none;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-audio-player .ark-audio-player--controller .ark-audio-player--controller--progress--bar--fill {
  background-color: #333;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-audio-player .ark-audio-player--controller .ark-audio-player--controller--progress--bar--knob::after {
  background: #fff;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-audio-player .ark-audio-player--controller .ark-audio-player--controller--progress {
  width: 100%;
  margin: 10px 0;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-audio-player .ark-audio-player--controller .ark-audio-player--controller--current-time {
  margin: -0.6em 0 0 0;
  color: #f18e91;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item .ark-podcast-list-item--content .ark-podcast-list-item--player-window .ark-audio-player .ark-audio-player--controller .ark-audio-player--controller--remaining-time {
  margin: -0.6em 0 0 0;
  color: #f18e91;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper {
  padding: 12px 10px;
  z-index: 1;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper::after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  background-color: #534a49;
  z-index: 2;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--duration {
  opacity: 0.5;
  font-size: 1.2rem;
  padding: 0 0 0 15px;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  position: relative;
  font-weight: bold;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--duration::before {
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  color: white;
  position: absolute;
  left: 0;
  top: 4px;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--text-content {
  align-self: center;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--actions {
  width: 88px;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--actions button {
  background-color: #9d0a0e;
  position: relative;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--actions a {
  margin: 0;
  background-color: #9d0a0e;
  position: relative;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--actions a::before {
  margin-top: -10px;
  margin-left: -18px;
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
}

.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--actions button:hover,
.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--actions button:focus,
.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--actions a:hover,
.module_homepage-latest-news .latest-content-items .podcast-bloc .listing .ark-podcast-list-item--content--wrapper .ark-podcast-list-item--content--actions a:focus {
  background: #b12029;
}

.module_homepage-latest-news .latest-content-items .single-bloc,
.module_homepage-latest-news .latest-content-items .podcast-bloc {
  width: calc(33% - 10px);
}

@media (max-width: 1023px) {
  .module_homepage-latest-news .latest-content-items .single-bloc,
  .module_homepage-latest-news .latest-content-items .podcast-bloc {
    width: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  .module_homepage-latest-news .latest-content-items .single-bloc,
  .module_homepage-latest-news .latest-content-items .podcast-bloc {
    width: calc(100%);
  }
}

.module_homepage-latest-news .latest-content-items .double-bloc {
  width: calc(66.9% - 10px);
}

@media (max-width: 1023px) {
  .module_homepage-latest-news .latest-content-items .double-bloc {
    width: calc(100%);
  }
}

@media (max-width: 767px) {
  .module_homepage-latest-news .latest-content-items .double-bloc {
    width: calc(100%);
  }
}

.module_homepage-latest-news p.actions a,
.module_homepage-latest-news p.actions button {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  margin: 10px 0 0;
  padding: 15px 30px;
  border: 0;
  background: #9d0a0e;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.module_homepage-latest-news p.actions a::after,
.module_homepage-latest-news p.actions button::after {
  content: "";
  border-radius: 5px;
  background: rgba(153, 153, 153, 0.1);
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  z-index: -1;
}

.module_homepage-latest-news p.actions a:hover,
.module_homepage-latest-news p.actions a:focus,
.module_homepage-latest-news p.actions button:hover,
.module_homepage-latest-news p.actions button:focus {
  background-color: black;
}

.cta-button.cta-external-link-icon::after {
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  background-image: none !important;
  box-shadow: none;
  content: "" !important;
  color: white;
  width: auto;
  height: auto;
  margin-left: 10px;
  display: inline-block !important;
  position: initial;
  top: initial;
  right: initial;
  bottom: initial;
  left: initial;
}

.cta-button.cta-external-link-icon:hover::after,
.cta-button.cta-external-link-icon:focus::after {
  color: white;
}

.details .overview a,
.main-content.article a {
  font-weight: 600;
  color: #9d0a0e;
}

.details .overview a.cta-external-link-icon-wysiwyg::after,
.main-content.article a.cta-external-link-icon-wysiwyg::after {
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  background-image: none !important;
  box-shadow: none;
  content: "" !important;
  color: #9d0a0e;
  width: auto;
  height: auto;
  margin-left: 10px;
  display: inline-block !important;
  position: initial;
  top: initial;
  right: initial;
  bottom: initial;
  left: initial;
}

a.cta-external-link-icon-wysiwyg::after,
a.cta-external-link-icon::after {
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  background-image: none !important;
  box-shadow: none;
  content: "" !important;
  color: #9d0a0e;
  width: auto;
  height: auto;
  margin-left: 10px;
  display: inline-block !important;
  position: initial;
  top: initial;
  right: initial;
  bottom: initial;
  left: initial;
}

header {
  background-size: auto 100%;
  background: #e7e7db;
  z-index: 400;
  position: relative;
  border-bottom: 4px solid #9d0a0e;
}

#page.snap-menu header {
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  transition: top 0.25s ease-in-out;
}

#page.snap-menu.breaking-news header {
  top: 100px;
}

#page.snap-menu.alert header {
  top: 50px;
}

header .wrapper {
  max-width: 1200px;
  height: 60px;
  margin: 0 auto;
}

@media (max-width: 1919px) {
  header .wrapper {
    width: 100%;
    padding: 0 10px;
  }
}

#page.snap-menu header .wrapper {
  height: 60px;
}

header .home {
  width: 124px;
  height: 42px;
  display: block;
  outline: 0;
  margin-right: 25px;
  z-index: 5000;
  transition-property: width, height, top;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
}

#page header .home span,
#page.snap-menu header .home span {
  text-indent: -999px;
  width: 100%;
  height: 100%;
  background: url(../img/interface/dungeons-and-dragons-logo.png) 0 0 no-repeat !important;
  background-size: 200% auto !important;
  display: block;
  position: relative;
  z-index: 402;
  overflow: hidden;
}

#breaking-news {
  height: 100px;
  background-color: #000;
  border-bottom: 1px solid #af5d10;
  z-index: 400;
  overflow: hidden;
}

#breaking-news .page-width {
  position: relative;
}

#breaking-news .visual {
  width: 29.166666666667%;
  height: 100px;
  display: block;
  overflow: hidden;
  float: left;
  position: relative;
}

#breaking-news .visual img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}

#breaking-news .content {
  width: 70.833333333333%;
  padding: 15px 30px 0 15px;
  float: left;
}

#breaking-news .content h3 {
  margin: 0 0 5px;
  padding: 0 10px 0 0;
  color: #fff;
  font-size: 1.6rem;
}

#breaking-news .content p {
  margin: 0;
  padding: 0 10px 0 0;
  font-size: 1.35rem;
  color: #a9a9a9;
}

#breaking-news .content p a {
  font-style: italic;
  color: #a9a9a9;
}

#breaking-news .content::after {
  content: ".";
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
  clear: both;
  visibility: hidden;
}

#breaking-news .close {
  width: 30px;
  height: 30px;
  display: block;
  text-decoration: none;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 5px;
  z-index: 999;
  background: url(../img/interface/close.svg) 0 0 no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
}

#breaking-news .close.dark {
  background: url(../img/interface/dark-close.svg) 0 0 no-repeat;
  background-size: 100% auto;
}

#page.breaking-news #breaking-news {
  display: block;
}

#page.snap-menu #breaking-news {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

#alert {
  height: 60px;
  padding: 15px;
  background: #be3a31;
  border-bottom: 1px solid #af5d10;
  z-index: 400;
  overflow: hidden;
}

#alert .page-width {
  position: relative;
}

#alert p span {
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
}

#alert p {
  margin: 0;
  padding: 0 35px 0;
  display: inline-block;
  color: #e0afad;
  font-size: 1.4rem;
}

#alert p a {
  color: #e0afad;
  font-style: italic;
}

#alert .close {
  width: 30px;
  height: 30px;
  display: block;
  text-decoration: none;
  text-align: center;
  position: absolute;
  top: -5px;
  right: 0;
  z-index: 999;
  background: url(../img/interface/close.svg) 0 0 no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
}

#page.alert #alert {
  display: block;
}

#page.snap-menu #alert {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

#utils {
  float: right;
  position: relative;
  padding-top: 10px;
  height: 60px;
}

#page.snap-menu header #utils {
  display: none;
}

#utils a {
  color: #7e7e7e;
  float: left;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0 15px;
  padding: 9px 0 9px 34px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s ease-in-out;
}

#utils a:hover,
#utils a:focus {
  color: #be630e;
}

#utils a::after {
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 1em;
  font-family: "icomoon", sans-serif;
  text-transform: none;
  text-align: center;
  width: 34px;
  position: absolute;
  top: 0.2em;
  left: 0;
}

#utils a.locator::after {
  content: "l";
}

#utils a.gatherer::after {
  content: "g";
}

#utils a.login::after,
#utils a.logout::after {
  content: "1";
}

#utils a.register,
#utils a.account {
  margin-left: 0;
  padding-left: 0;
}

#utils a.register::before,
#utils a.account::before {
  content: "|";
  color: #7e7e7e;
  margin: 0 5px;
}

#utils #search-form {
  float: left;
  margin: 2px 10px 0 20px;
  padding: 0;
  position: relative;
}

#utils #search-form .form-item {
  margin: 0 !important;
}

#utils #search-form input {
  background-color: #424040;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  border: 0 none;
  padding: 5px 5px 5px 35px;
  border-radius: 3px;
  transition: background-color 0.25s ease-in-out;
}

#utils #search-form input:focus {
  outline: 0;
  background-color: #212121;
}

#utils #search-form .form-item::before {
  content: "s";
  color: #727070;
  font-family: "icomoon", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1em;
  text-align: center;
  text-transform: none;
  margin-top: -0.5em;
  position: absolute;
  top: 50%;
  left: 8px;
}

@media (max-width: 1023px) {
  #utils {
    display: none;
    float: none;
    position: relative;
    height: 60px;
    width: 270px;
    background-color: #212121;
  }

  #utils .gatherer,
  #utils .locator {
    display: none !important;
  }

  #utils #search-form {
    display: none;
    margin: 0 0 0 10px;
    border-radius: 1px;
    z-index: 5000;
  }

  #utils #search-form input {
    padding: 7px 5px 7px 35px;
    width: 250px;
  }

  #utils.visible,
  #utils.visible #search-form,
  #page.snap-menu header #utils.visible {
    display: block;
  }
}

#menu {
  display: flex;
  z-index: 400;
  width: 100%;
  height: 60px;
  align-items: center;
}

#menu * {
  outline: none !important;
}

#menu.snap {
  background: url(../img/interface/bg-header.png) 0 0 repeat-x;
  background-size: 100% 100%;
}

#menu .menu-wrapper {
  width: 830px;
  margin: 0 auto;
  height: 60px;
  flex-grow: 1;
}

#menu a {
  text-decoration: none;
  cursor: pointer;
}

#menu a,
#menu p {
  color: #5a5a5a;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  display: block;
}

#menu ul.main-menu {
  float: right;
  margin: 0;
  height: 60px;
  list-style: none;
  width: 100%;
}

body.use-sticky-menu #menu ul.menu {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

body.use-sticky-menu header:hover #menu ul.menu {
  opacity: 1;
}

#menu ul.main-menu li.top_level,
#menu ul.main-menu li.top_level_right {
  text-align: center;
  display: block;
  float: left;
  margin: 0 !important;
  padding: 0;
  min-width: 86px;
  max-width: 180px;
  height: 60px;
  transition: background-color 0.15s ease-in-out;
}

#menu ul.main-menu li.top_level {
  float: left;
}

#menu ul.main-menu li.top_level_right {
  float: right;
}

#menu ul.main-menu li.top_level_right a {
  text-transform: none;
  font-weight: normal;
}

#menu ul.main-menu li.top_level_right a span {
  padding: 0 15px 0 30px !important;
  text-align: left;
}

#menu ul.main-menu li.top_level_right a span::before {
  text-transform: none;
}

#menu ul.main-menu li.top_level_right a.ico-accounts span {
  padding-left: 35px !important;
}

#menu ul.main-menu li.top_level > a,
#menu ul.main-menu li.top_level_right > a,
#menu ul.main-menu li.cta > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.25s ease-in-out;
  transition-property: color, background-color;
  position: relative;
}

#menu ul.main-menu li.top_level a span,
#menu ul.main-menu li.top_level_right a span {
  line-height: 1em;
  width: 100%;
  padding: 0 15px;
  display: block;
}

#menu ul.main-menu li.top_level li span,
#menu ul.main-menu li.top_level_right li span,
#menu ul.main-menu li.default span {
  width: 100%;
  padding: 0;
  display: block;
}

#menu ul.main-menu li.top_level li a.cta-external-link-icon span::after,
#menu ul.main-menu li.top_level_right li a.cta-external-link-icon span::after,
#menu ul.main-menu li.default a.cta-external-link-icon span::after {
  content: " " "";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
}

#menu ul.main-menu li.top_level:hover,
#menu ul.main-menu li.top_level_right:hover {
  background-color: transparent;
}

body:not(.mobile) #menu ul.main-menu li.top_level:hover > a,
body:not(.mobile) #menu ul.main-menu li.top_level_right:hover > a,
body.mobile #menu ul.main-menu li.top_level.touched > a,
body.mobile #menu ul.main-menu li.top_level_right.touched > a {
  color: #9d0a0e;
}

#menu ul.main-menu li.top_level.current a span::after,
#menu ul.main-menu li.top_level_right.current a span::after {
  content: "";
  height: 2px;
  background: #9d0a0e;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

#menu ul.main-menu li.top_level a.live {
  background: url(../img/interface/live-icon.png) no-repeat;
  background-size: 20% !important;
  background-position: 50% 50%;
}

#menu .more {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 700 !important;
}

#menu .more span::after {
  content: ">";
  color: #9d0a0e;
  font-weight: 700;
  font: normal 9px/1em "icomoon", sans-serif;
  margin: 0 0 0 5px;
}

#menu .more::before {
  content: "";
}

#menu li.hub-link {
  display: none !important;
}

.ico-gatherer span::before {
  color: #fff;
  content: "g";
  font: normal 22px/1em "icomoon", sans-serif;
  position: absolute;
  top: 18px;
  left: 0;
}

.ico-locator span::before {
  color: #5a5a5a;
  content: "";
  font: normal 22px/1em "icomoon", sans-serif;
  position: absolute;
  top: 18px;
  left: 6px;
}

.ico-accounts span::before {
  color: #5a5a5a;
  content: "";
  font: normal 22px/1em "icomoon", sans-serif;
  position: absolute;
  top: 18px;
  left: 6px;
}

#menu .top_level .mega_menu {
  background-color: rgba(0, 0, 0, 0.97);
  position: absolute;
  top: 59px;
  left: 0;
  right: 0;
  height: 0;
  list-style: none;
  margin: 0;
  border-top-width: 3px;
  border-top-color: #9d0a0e;
  border-top-style: solid;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  pointer-events: none;
  border-bottom: 1px solid #3b3b3b;
  z-index: 2;
}

body:not(.mobile) #menu .top_level:hover .mega_menu,
body.mobile #menu .top_level.touched .mega_menu {
  height: auto;
  min-height: 150px;
  max-height: calc(100vh - 60px);
  padding: 30px 0 0 0;
  opacity: 1;
  overflow: auto;
  overflow-x: hidden;
  pointer-events: auto;
}

#menu .top_level > a::after {
  color: #9d0a0e;
  content: "";
  font: normal 13px/1em "icomoon", sans-serif;
  position: absolute;
  top: 60px;
  left: calc(50% - 7px);
  z-index: 10;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 0.25s ease-in-out;
}

body:not(.mobile) #menu .top_level:hover > a::after,
body.mobile #menu .top_level.touched > a::after {
  transform: none;
}

#menu .leaf > a:not(.more)::after {
  content: "" !important;
  display: none !important;
}

#menu .top_level .mega_menu_content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  list-style: none;
  text-align: left;
  padding-bottom: 100px;
}

#menu .top_level .mega_menu_content.bottom-cta-active {
  padding-bottom: 0;
}

@media (max-width: 1919px) {
  #menu .top_level .mega_menu_content {
    width: 100%;
    padding: 0 20px;
  }
}

#menu .top_level .mega_menu_content li {
  display: block;
  position: relative;
  height: auto;
  list-style: none;
  margin: 0 0 20px;
  background-color: transparent;
}

#menu .top_level .mega_menu_content:not(.gallery) > li > a {
  font-size: 1.6rem;
  margin: 0 0 20px;
  display: inline-block;
  position: relative;
  transition: color 0.25s ease-in-out;
}

#menu .top_level .mega_menu_content:not(.gallery) > li > a::before {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  background: linear-gradient(to right, #000 1%, #9d0a0e 52%, #000 100%);
}

#menu .top_level .mega_menu_content li span.nolink {
  font-size: 1.6rem;
  margin: 0 0 20px;
  display: block;
  position: relative;
  transition: color 0.25s ease-in-out;
}

#menu .top_level .mega_menu_content li span.nolink::before {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  background: linear-gradient(to right, #000 1%, #9d0a0e 52%, #000 100%);
}

#menu .top_level .mega_menu_content .cta.leaf.last.top_level_cta .more {
  text-align: center;
  padding: 15px 0;
  margin: 0;
}

#menu .top_level .mega_menu_content .cta.leaf.last.top_level_cta .more::after {
  display: inline-block;
  content: ">" !important;
  color: #9d0a0e;
  font-weight: 700;
  font: normal 14px/1em "icomoon", sans-serif;
  margin: 0 0 0 5px;
  position: relative;
  left: 5px;
  top: 2px;
}

#menu .top_level .mega_menu_content .cta.leaf.last.top_level_cta .more::before {
  display: none !important;
}

#menu .top_level .mega_menu_content > li > a:not(.nolink):hover {
  color: #9d0a0e;
}

#menu .top_level .mega_menu_content > li > a.nolink {
  cursor: default;
  pointer-events: none;
}

#menu .top_level .mega_menu_content > li > a.nolink * {
  pointer-events: initial;
}

#menu .mega_menu_content li a {
  text-align: left;
  margin: 0 0 7px;
  color: white;
}

body:not(.mobile) .top_level:hover .mega_menu_content,
body.mobile .top_level.touched .mega_menu_content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.default img {
  max-height: 250px;
}

#menu .mega_menu_content .img-with-label {
  width: 100%;
  text-align: left;
  font-weight: 100;
  font-size: 1.6rem;
}

.mega_menu_content .img-with-promo {
  position: relative;
}

.mega_menu_content .img-with-promo .promo {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  max-width: 167px;
  background-color: #9d0a0e;
  padding: 2px 15px;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  transform: translateX(-50%);
  z-index: 2;
}

#menu .mega_menu_content .img-with-label img {
  display: block;
  max-height: 250px;
  margin: 0 0 10px;
}

#menu .mega_menu_content:not(.gallery) li.column {
  margin-right: 50px;
  flex-shrink: 1;
  width: 20%;
}

#menu .mega_menu_content.gallery {
  display: flex;
  flex-wrap: wrap;
}

#menu .mega_menu_content.gallery li.default {
  margin: 0 15px 50px 0;
}

#menu .mega_menu_content.gallery li.default a {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  text-transform: none;
  font-weight: 400;
  transition: color 0.25s ease-in-out;
}

#menu .mega_menu_content.gallery li.default a .img-with-label {
  position: relative;
  overflow: hidden;
  margin: 0 0 10px !important;
}

#menu .mega_menu_content.gallery li.default a .img-with-label::after {
  content: "";
  height: 10px;
  display: block;
  background-color: #9d0a0e;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(10px);
  transition: transform 0.25s ease-in-out;
}

#menu .mega_menu_content.gallery li.default a .img-with-label img {
  margin: 0;
}

#menu .mega_menu_content.gallery li.default a:hover .img-with-label::after {
  transform: translateY(0);
}

#menu .mega_menu_content.gallery li.with-image a.cta-external-link-icon span:nth-child(2)::after {
  content: " " "";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
}

#menu .mega_menu_content.gallery li.column {
  width: calc(25% -20px);
}

#menu .mega_menu_content li.column li {
  width: 100%;
  margin: 0;
}

#menu .mega_menu_content li.column li a {
  color: #939393;
  text-transform: none;
  transition: 0.25s ease-in-out;
}

#menu .mega_menu_content li.column li a:hover {
  color: #9d0a0e !important;
}

#menu .mega_menu_content ul.submenu-col {
  padding-top: 7px;
  margin: 0;
  overflow: auto;
}

#menu .mega_menu_content ul.submenu-col + a.nolink {
  margin-top: 20px;
}

#menu .mega_menu_content ul.submenu-col li a {
  font-size: 1.6rem;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.75);
}

#menu .mega_menu_content ul.submenu-col > a:hover {
  color: #9d0a0e;
}

#menu .mega_menu_content li.carousel {
  width: 100%;
}

#menu .mega_menu_content li.carousel li {
  width: 100%;
  margin: 0;
}

#menu .mega_menu_content .submenu-carousel .slick-slide a {
  color: #fff;
  text-transform: none;
  transition: color 0.25s ease-in-out;
}

#menu .mega_menu_content .submenu-carousel .slick-slide a:hover {
  color: #9d0a0e;
}

#menu .mega_menu_content .submenu-carousel .slick-slide span {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 100;
}

#menu .mega_menu_content .submenu-carousel {
  margin: 0 0 30px;
  position: relative;
}

#menu .mega_menu_content .submenu-carousel .slick-track {
  padding-top: 10px;
}

#mobile-menu .submenu-carousel {
  width: 100%;
  padding-left: 20px;
}

#menu .mega_menu_content .submenu-carousel span img,
#mobile-menu .submenu-carousel span img {
  max-width: 200px;
  max-height: 250px;
  margin: 0 auto 10px auto;
}

#menu .mega_menu_content .submenu-carousel .slick-slider {
  width: 98%;
  margin: 0 auto;
}

#menu .mega_menu_content .submenu-carousel .slick-slider .slick-slide {
  height: 100%;
}

#menu .mega_menu_content .submenu-carousel .slick-prev,
#menu .mega_menu_content .submenu-carousel .slick-next {
  margin: -0.5em 0 0;
  top: 50%;
  font-family: "icomoon", sans-serif;
  font-weight: normal;
  font-size: 1.2em;
  text-transform: none !important;
  position: absolute;
  color: white;
  cursor: pointer;
  transition: color 0.25s ease-in-out;
}

#menu .mega_menu_content .submenu-carousel .slick-prev:hover,
#menu .mega_menu_content .submenu-carousel .slick-next:hover,
#mobile-menu .submenu-carousel .slick-prev:hover,
#mobile-menu .submenu-carousel .slick-next:hover {
  color: #9d0a0e;
}

#menu .mega_menu_content .submenu-carousel .slick-next,
#mobile-menu .submenu-carousel .slick-next {
  right: 3px;
}

#menu .mega_menu_content .submenu-carousel .slick-prev,
#mobile-menu .submenu-carousel .slick-prev {
  left: 3px;
}

#menu .top_level .mega_menu_content > li.cta > a::before {
  border: none;
}

#menu .top_level .mega_menu_content li.cta a {
  display: inline-block;
  color: #fff !important;
}

#menu .top_level .mega_menu_content li.cta a::after {
  display: inline-block;
  content: ">" !important;
  color: #9d0a0e;
  font-weight: 700;
  font: normal 12px/1em "icomoon", sans-serif;
  margin: 0 0 0 5px;
  position: relative;
  left: 8px;
}

#menu .top_level .mega_menu_content > li.cta {
  position: relative;
  width: 100%;
  clear: both;
  flex-basis: 100%;
}

#menu .top_level .mega_menu_content > li.cta::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #3e3c41;
  width: 100vw;
  height: 50px;
  margin-left: 50%;
  transform: translateX(-50%);
}

#menu .top_level .mega_menu_content li.cta:hover a {
  color: #9d0a0e !important;
}

#menu .top_level .mega_menu_content li.cta a.more::after {
  content: ">" !important;
  display: inline-block;
  color: #9d0a0e;
  font-weight: 700;
  font: normal 12px/1em "icomoon", sans-serif;
  margin: 0 0 0 5px;
  transform: translateY(-2px);
  position: relative;
  top: 2px;
  left: 2px;
}

#menu .top_level .mega_menu_content li.cta {
  margin: 0;
}

@media (max-width: 1790px) {
  #menu li:nth-last-child(2) ul li.has-children ul,
  #menu li:last-child ul li.has-children ul {
    left: auto !important;
    right: 100% !important;
  }

  #menu li:nth-last-child(2) li.has-children::after,
  #menu li:last-child li.has-children::after {
    transform: rotate(180deg);
    transition: left 0.25s ease-in;
    right: auto !important;
    left: 0 !important;
  }

  #menu li:nth-last-child(2) li.has-children:hover::after,
  #menu li:nth-last-child(2) li.has-children:focus a::after #menu li:last-child li.has-children:hover::after,
  #menu li:last-child li.has-children:focus a::after {
    opacity: 1;
    right: inherit !important;
    left: -9px !important;
    opacity: 1;
    transform: rotate(180deg);
  }
}

@media (max-width: 1023px) {
  #menu .menu-wrapper,
  #menu .menu-wrapper ul,
  #menu .menu-wrapper ul li {
    display: none;
    height: 0;
  }

  #menu {
    float: none;
    position: absolute;
    top: 0;
  }

  #menu a {
    line-height: 1.2em;
  }

  #menu li.hub-link a,
  #menu li.hub-link p {
    font-size: 1.6rem;
    padding-top: 16px;
  }

  #menu ul {
    float: none;
    margin: 0;
    height: auto;
    background-color: #292929;
  }

  #menu ul li {
    text-align: left;
    border-bottom: 1px solid #424242;
    width: 100%;
    height: auto;
    margin-left: 0;
    display: block;
    max-width: none;
  }

  #menu ul li::before {
    content: 'b';
    font-family: "icomoon", sans-serif;
    font-weight: normal;
    font-size: 0.6rem;
    color: #7d7d7d;
    position: absolute;
    top: 14px;
    left: 15px;
  }

  #menu ul#mm-0 li a {
    font-size: 1.6rem;
    padding-top: 16px;
    padding-left: 15px;
  }

  #menu ul#mm-0 li::before {
    content: '';
  }

  #menu ul li::after {
    content: 'P';
    font-family: "icomoon", sans-serif;
    font-weight: normal;
    font-size: 1.5rem;
    color: #fff;
    position: absolute;
    top: 14px;
    right: 15px;
  }

  #menu ul li.hub-link::before,
  #menu ul li.mm-subtitle::before,
  #menu ul li.mm-subtitle::after,
  #menu ul li.hub-link.no-link::after {
    content: '';
  }

  #menu ul li.has-children::after {
    content: '>';
    font-family: "icomoon", sans-serif;
    font-weight: normal;
    color: #fff;
    position: absolute;
    top: 14px;
    right: 15px;
  }

  #menu ul li a {
    padding: 15px 36px;
    display: block;
  }

  #menu ul li a:hover {
    background-color: #be630e;
  }

  #menu ul li.current a::after {
    width: 2px;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
  }

  #menu ul li.current:hover a::after,
  #menu ul li.current li a::after {
    display: block;
  }

  #menu .mm-menu ul li a:hover {
    background-color: #403d3d;
  }

  #menu ul li::before {
    background: none;
  }

  #menu .menu-wrapper {
    width: 270px;
    height: 100%;
    margin: 50px 0 0 0;
    background-color: #212121;
    display: block;
  }

  #menu ul li.hub-link {
    display: block !important;
  }

  #menu ul li.hub-link a,
  #menu ul li.hub-link p {
    padding-left: 15px;
  }

  #menu ul li.hub-link p {
    color: #ababab;
  }

  #menu ul li.hub-link:hover {
    background-color: transparent;
  }
}

#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(33, 33, 33, 0);
  z-index: 5000;
  display: none;
  transition: background-color 0.25s ease-in-out;
}

#mobile-menu * {
  outline: none !important;
}

#page.breaking-news #mobile-menu {
  top: 170px;
}

#page.alert #mobile-menu {
  top: 60px;
}

.mobile-menu-open #mobile-menu {
  background: rgba(33, 33, 33, 0.3);
  bottom: 0;
}

#mobile-menu .header {
  position: relative;
  height: 50px;
  background-color: #e7e7db;
  background-size: auto 100%;
}

#mobile-menu .header .logo {
  position: absolute;
  top: 50%;
  left: 50%;
}

#mobile-menu .header .logo a {
  width: 120px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
}

#mobile-menu .header .logo a span {
  text-indent: -999px;
  width: 100%;
  height: 100%;
  background: url(../img/interface/dungeons-and-dragons-logo.png) 0 0 no-repeat !important;
  background-size: 200% auto !important;
  display: block;
  position: relative;
  z-index: 402;
  overflow: hidden;
}

#mobile-menu .header .toggle-menu-button {
  padding: 10px 10px 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

#mobile-menu .header .toggle-menu-button::after {
  content: "m";
  color: #5d5d5d;
  font: 20px/1em "icomoon", sans-serif;
  top: 15px;
  position: absolute;
  left: 15px;
}

.mobile-menu-open #mobile-menu .header .toggle-menu-button::after {
  content: "X";
  color: #9d0a0e;
}

#mobile-menu .menu-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#mobile-menu nav {
  width: 270px;
  position: absolute;
  top: 50px;
  bottom: 0;
  left: -270px;
  background: #000;
  transition: transform 0.25s ease-in-out;
}

#mobile-menu .submenu-carousel a,
#mobile-menu .ad a {
  color: #939393;
  text-transform: none;
}

#mobile-menu .submenu-carousel .slick-slide span,
#mobile-menu .ad span {
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  position: relative;
}

#mobile-menu nav form {
  height: 60px;
  display: table;
  width: 100%;
  position: relative;
  background: #000;
}

#mobile-menu nav form .form-item {
  vertical-align: middle;
  margin: 0 !important;
  padding: 10px 15px 0;
  position: relative;
}

#mobile-menu nav form input[type="text"] {
  color: #fff;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.3em;
  font-family: inherit;
  width: 100%;
  padding: 5px 5px 5px 35px;
  border: 0;
  outline: 0;
  background: #3d3c3c;
  display: block;
  border-radius: 3px;
  box-shadow: 0 0 3px #212121 inset;
}

#mobile-menu nav form input[type="text"]:focus {
  background: #545252;
}

#mobile-menu nav form::after {
  content: "s";
  color: #727070;
  font: normal 15px/1em "icomoon", sans-serif;
  margin-top: -0.5em;
  position: absolute;
  top: 50%;
  left: 25px;
}

#mobile-menu nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#mobile-menu li {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 !important;
  position: relative;
  background: none;
}

#mobile-menu li.expanded {
  background-color: black;
}

#mobile-menu li.default {
  font-weight: 400;
}

#mobile-menu li.cta {
  background: #3e3c41;
}

#mobile-menu li.current::before {
  content: "";
  width: 2px;
  background: #be630e;
  position: absolute;
  top: 0;
  bottom: 0;
}

#mobile-menu li a,
#mobile-menu li p {
  text-transform: uppercase;
  margin: 0;
  padding: 15px 50px 15px 36px;
  display: block;
}

#mobile-menu .slick-slide a {
  padding: 15px 0;
  margin-left: 40px;
}

#mobile-menu li a,
#mobile-menu li p {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.25s ease-in-out;
}

#mobile-menu li a::after {
  content: ">";
  color: white;
  font: normal 16px/1em "icomoon", sans-serif;
  text-align: center;
  text-transform: none;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: 15px;
  min-width: 25px;
}

#mobile-menu li a.cta-external-link-icon span::after {
  content: " " "";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
}

#mobile-menu li a.cta-external-link-icon a::after {
  content: "";
  display: none;
}

#mobile-menu li.carousel {
  padding-right: 0;
  overflow: hidden;
}

#mobile-menu li.leaf a::after,
#mobile-menu li.ad a::after,
#mobile-menu li.carousel a::after {
  content: "" !important;
}

#mobile-menu li a:not(.nolink):hover {
  color: #9d0a0e;
}

#mobile-menu li a.nolink {
  cursor: default;
  pointer-events: none;
}

#mobile-menu li a.nolink * {
  pointer-events: initial;
}

#mobile-menu li a.more::after {
  content: ">" !important;
  color: #9d0a0e;
  font-weight: 700;
  font: normal 12px/1em "icomoon", sans-serif;
  margin: 0 0 0 5px;
  position: relative;
  left: 8px;
}

#mobile-menu li a.more::before {
  content: "" !important;
}

#mobile-menu ul li a span span.live {
  text-indent: -999px;
  width: 26px;
  height: 20px;
  margin: 0 0 0 8px;
  padding: 0;
  background: url(../img/interface/menu-live-icon.svg) 50% 0 no-repeat;
  background-size: auto 200%;
  display: inline-block;
  overflow: hidden;
  position: relative;
  top: 4px;
}

#mobile-menu ul li:hover a span span.live,
#mobile-menu ul li:focus a span span.live {
  background-position: 50% 100%;
}

#mobile-menu li a.login::after {
  content: "1";
}

#mobile-menu li a.logout::after {
  content: "1";
}

#mobile-menu li a.register::after {
  content: "1";
}

#mobile-menu li a.account::after {
  content: "1";
}

#mobile-menu li a.ico-gatherer span::before {
  content: "";
}

#mobile-menu li a.ico-locator span::before {
  content: "";
}

#mobile-menu li a.ico-accounts span::before {
  content: "";
}

#mobile-menu li a.ico-gatherer::after {
  color: #fff;
  content: "g" !important;
  font: normal 22px/1em "icomoon", sans-serif;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
}

#mobile-menu li a.ico-locator::after {
  color: #fff;
  content: "" !important;
  font: normal 22px/1em "icomoon", sans-serif;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
}

#mobile-menu li a.ico-accounts::after {
  color: #fff;
  content: "1" !important;
  font: normal 22px/1em "icomoon", sans-serif;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
}

#mobile-menu li.has-children a::after {
  content: ">";
}

#mobile-menu ul li.leaf.top_level_right .ico-locator {
  background-color: #0b0b0b !important;
}

#mobile-menu #mm-0 li a,
#mobile-menu li.has-children a,
#mobile-menu li.hub-link a,
#mobile-menu li.no-link p {
  padding-left: 30px;
  font-size: 1.6rem;
  border-bottom: 1px solid #1a1a1a;
}

#mobile-menu #mm-0 li.top_level_right a {
  border-bottom: none;
}

#mobile-menu li.no-link p {
  color: #ababab;
}

#mobile-menu #mm-0 li a::before,
#mobile-menu li.has-children a::before,
#mobile-menu li.hub-link a::before,
#mobile-menu .mm-subopen::before {
  display: none;
}

#mobile-menu #mm-0 li.utility-link a,
#mobile-menu #mm-0 li.leaf a {
  background: #000;
  font-size: 1.4rem;
}

#mobile-menu li.utility-link a.gatherer::after,
#mobile-menu li.utility-link a.locator::after {
  font-size: 23px;
  margin-top: -12px;
}

#mobile-menu li.utility-link a.gatherer::after {
  content: "g";
}

#mobile-menu li.utility-link a.locator::after {
  content: "l";
}

#mobile-menu .mm-panel {
  background: #0b0b0b;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.25s ease;
  overflow: auto;
}

#mobile-menu .mm-subtitle {
  font-size: 1.4rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: black;
}

#mobile-menu .mm-subtitle .mm-subclose {
  padding-left: 36px;
  position: relative;
  padding: 19px 50px 20px 36px;
}

#mobile-menu .mm-subtitle .mm-subclose::before {
  content: "";
  width: 50%;
  height: 2px;
  position: absolute;
  top: 44px;
  left: 15px;
  background: linear-gradient(to right, #000 1%, #9d0a0e 52%, #000 100%);
}

#mobile-menu .mm-subtitle .mm-subclose::after {
  content: "<";
  color: #fff;
  font: normal 14px/1em "icomoon", sans-serif;
  min-width: 0;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: auto;
  left: 10px;
}

#mobile-menu .mm-subopen {
  background: rgba(0, 0, 0, 0);
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}

#mobile-menu .mm-panel.mm-hidden {
  display: none;
}

#mobile-menu .mm-panel.mm-opened,
#mobile-menu .mm-panel.mm-highest.mm-current {
  transform: translateX(0%);
}

#mobile-menu .mm-panel.mm-subopened,
#mobile-menu .mm-panel.mm-highest {
  transform: translateX(-100%);
}

#mobile-menu .mm-panel.mm-highest,
#mobile-menu .mm-panel.mm-highest.mm-current {
  z-index: 0;
}

#mobile-menu .submenu-carousel .slick-prev,
#mobile-menu .submenu-carousel .slick-next {
  display: none;
}

#mobile-menu .submenu-carousel .slick-slider {
  width: 100%;
  margin: 0 auto;
}

#mobile-menu .submenu-carousel .slick-slider .slick-slide {
  height: 100%;
  margin: 0 5px;
  text-align: center;
}

#mobile-menu li.carousel a {
  border-bottom: none;
}

#mobile-menu .submenu-carousel {
  margin: 0;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
}

#mobile-menu ul.gallery .img-with-label {
  display: none;
}

@media (max-width: 1023px) {
  header {
    display: none;
  }

  #mobile-menu {
    display: block;
  }

  html.mobile-menu-open,
  html.mobile-menu-open body {
    height: 100%;
    overflow: hidden;
  }

  .mobile-menu-open #viewport {
    filter: blur(3px);
    position: relative;
  }

  .mobile-menu-open #mobile-menu nav {
    transform: translateX(270px);
  }

  .breaking-news #breaking-news {
    height: 170px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  #breaking-news .visual {
    width: 30%;
    height: 170px;
  }

  #breaking-news .visual img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0;
  }

  #breaking-news .content {
    width: 70%;
    padding: 15px 30px 0 15px;
  }

  #breaking-news .content h3 {
    margin: 0 0 5px;
    padding: 0;
    color: #fff;
    font-size: 1.4rem;
  }

  .alert #alert {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

@media (max-width: 479px) {
  .breaking-news #mobile-menu {
    top: 0;
  }

  .breaking-news #breaking-news {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    border-bottom: none;
  }

  .breaking-news #breaking-news .content {
    width: 100%;
    padding: 70px 20px 20px;
  }

  .breaking-news #breaking-news .visual {
    width: 100%;
    height: auto;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }

  .breaking-news #breaking-news .visual img {
    width: 100%;
    height: auto;
    position: relative;
    left: auto;
    bottom: auto;
  }

  .alert #alert {
    height: 60px;
    padding: 0;
  }

  .alert #alert p {
    padding: 5px 35px 5px 10px;
    font-size: 1.2rem;
  }

  .alert #alert .close {
    margin-top: -15px;
    top: 50%;
    right: 5px;
  }
}

footer {
  border-top: 1px solid #1f1f1f;
  background: url(../img/footer/background.png) 50% 50%/auto 100% no-repeat #0b0b0b !important;
  position: relative;
  z-index: 1;
}

footer .main > div > div:nth-child(2) > div ul li a.cta-external-link-icon::after,
footer .links p a.cta-external-link-icon::after {
  content: "";
  color: inherit;
  font-family: icomoon, sans-serif;
  line-height: 1;
  margin-left: 5px;
}

footer,
footer::before,
footer::after,
footer *,
footer *::before,
footer *::after {
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  footer {
    background-position: 100% 50% !important;
  }
}

@media (max-width: 1023px) {
  footer {
    background: none !important;
  }
}

footer .wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

footer .back-to-top {
  text-align: center;
  position: relative;
  top: -41px;
}

footer .back-to-top a {
  color: white;
  font-weight: 700;
  line-height: 1;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  width: 160px;
  height: 40px;
  padding-top: 25px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

footer .back-to-top a::before,
footer .back-to-top a::after {
  content: "";
  background: url(../img/footer/back-to-top.png) 50% 0 no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  transform: translateZ(0);
}

footer .back-to-top a::after {
  background-position: 50% 100%;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

footer .back-to-top a:hover::after,
footer .back-to-top a:focus::after {
  opacity: 1;
}

footer .main h5 {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 10px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
}

footer .main h5::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(to right, rgba(157, 10, 14, 0), #9d0a0e, #9d0a0e, rgba(157, 10, 14, 0));
}

footer .main .field-wrap {
  width: 100%;
  display: flex;
  background: white;
}

footer .main .field-wrap input,
footer .main .field-wrap button {
  height: 50px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  outline: none !important;
}

footer .main .field-wrap input {
  color: black;
  font-size: 1.4rem;
  font-family: inherit;
  width: calc(100% - 60px);
  padding: 10px 0 10px 10px;
  flex-grow: 1;
}

footer .main .field-wrap input::placeholder {
  color: #676767;
  font-style: italic;
}

footer .main .field-wrap button {
  color: #707070;
  width: 60px;
  display: flex;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: color 0.25s ease-in-out;
}

footer .main .field-wrap button span {
  text-indent: -9999px;
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

footer .main .field-wrap button::before {
  content: "";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .main .field-wrap button.search::before {
  content: "";
}

footer .main .field-wrap button.submit::before {
  content: ">";
}

footer .main .field-wrap button:hover,
footer .main .field-wrap button:focus {
  color: #9d0a0e;
}

footer .main > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .main > div > div:nth-child(1) {
  width: calc(40% - 40px);
}

@media (max-width: 1023px) {
  footer .main > div > div:nth-child(1) {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

footer .main > div > div:nth-child(1) > div:not(:first-child) {
  margin-top: 60px;
}

footer .main > div > div:nth-child(1) > div:nth-child(n+3) {
  width: 100% !important;
}

@media (max-width: 1023px) {
  footer .main > div > div:nth-child(1) > div {
    width: calc(50% - 20px);
    margin-top: 30px !important;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  footer .main > div > div:nth-child(1) > div {
    width: 100%;
  }
}

footer .main > div > div:nth-child(2) {
  width: calc(60% - 40px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  footer .main > div > div:nth-child(2) {
    margin-top: 30px;
  }
}

footer .main > div > div:nth-child(2) > div {
  margin-bottom: 50px;
  width: calc(100% / 3 - 10px);
  flex-shrink: 0;
}

@media (max-width: 479px) {
  footer .main > div > div:nth-child(2) > div {
    width: calc(50% - 10px);
  }
}

footer .main > div > div:nth-child(2) > div ul {
  margin: -4px 0 40px;
  padding: 0;
  list-style-type: none;
}

footer .main > div > div:nth-child(2) > div ul li {
  margin: -2px 0 10px;
}

footer .main > div > div:nth-child(2) > div ul li:first-child {
  margin-top: 5px;
}

footer .main > div > div:nth-child(2) > div ul li:last-child {
  margin-bottom: 0;
}

footer .main > div > div:nth-child(2) > div ul li a {
  color: #d5d5d5;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.25s ease-in-out;
}

footer .main > div > div:nth-child(2) > div ul li a:hover,
footer .main > div > div:nth-child(2) > div ul li a:focus {
  color: #9d0a0e;
}

@media (max-width: 1023px) {
  footer .main > div > div {
    width: 100% !important;
  }
}

footer .main .social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

footer .main .social-links li {
  margin: 0 10px 10px 0;
}

footer .main .social-links li a {
  text-align: center;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  background: #242424;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.25s ease-in-out;
}

footer .main .social-links li a:hover,
footer .main .social-links li a:focus {
  background: #9d0a0e;
}

footer .main .social-links li a img,
footer .main .social-links li a svg {
  max-width: 100%;
  height: auto;
  display: block;
}

footer .logos {
  margin: 15px 0 25px;
}

footer .logos > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1023px) {
  footer .logos > div {
    justify-content: center;
  }
}

footer .logos > div > * {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

footer .logos > div > *:not(:first-child) {
  margin-left: 30px;
}

@media (max-width: 767px) {
  footer .logos > div > * {
    margin: 0 15px 20px !important;
  }
}

footer .links {
  color: white;
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: 20px 0;
  background: #242424;
}

@media (max-width: 767px) {
  footer .links {
    font-size: 1.2rem;
    padding: 10px 0;
  }
}

footer .links p {
  font-size: inherit;
  margin: 0;
  padding: 0;
  display: flex;
}

@media (max-width: 767px) {
  footer .links p {
    flex-direction: column;
  }
}

footer .links p a {
  color: white;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease-in-out;
}

footer .links p a:not(:first-child) {
  margin-left: 40px;
}

footer .links p a:hover,
footer .links p a:focus {
  color: #9d0a0e;
}

@media (max-width: 767px) {
  footer .links p a {
    margin: 0 !important;
  }
}

footer .copyright {
  color: #989898;
  font-size: 1.2rem;
  text-align: center;
  padding: 15px;
}

footer .copyright p {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

.dxblock_event-schedule-header-main {
  min-height: 169px;
  display: flex;
  width: 100%;
  background-color: #444;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main {
    position: relative;
    min-height: 136px;
    background-image: none !important;
  }
}

.dxblock_event-schedule-header-main-left-icon {
  margin: 20px;
  width: 75px;
}

.dxblock_event-schedule-header-main-left-icon img,
.dxblock_event-schedule-header-main-left-icon svg {
  height: 70px;
  width: 75px;
}

.dxblock_event-schedule-header-main-left-icon svg * {
  fill: white !important;
  transition: fill 0.25s ease;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-left-icon {
    margin-left: 20px;
    margin-right: 10px;
    width: 59px;
  }

  .dxblock_event-schedule-header-main-left-icon img,
  .dxblock_event-schedule-header-main-left-icon svg {
    height: 55px;
    width: 59px;
  }
}

@media (max-width: 374px) {
  .dxblock_event-schedule-header-main-left-icon img,
  .dxblock_event-schedule-header-main-left-icon svg {
    height: 50px;
    width: 50px;
  }
}

.dxblock_event-schedule-header-main-center {
  width: calc(80% - 115px);
  padding-right: 50px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-center {
    width: calc(80% - 99px);
    padding-right: 10px;
  }
}

.dxblock_event-schedule-header-main-center--mobile-date {
  display: none;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-center--mobile-date {
    display: block;
    color: #fff;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: italic;
    line-height: 19px;
    padding-top: 20px;
  }
}

.dxblock_event-schedule-header-main-center-platform-name {
  color: #ea4c12;
  font-family: "Open Sans";
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  padding-top: 20px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-center-platform-name {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    padding-top: 0;
  }
}

.dxblock_event-schedule-header-main-center-eventname {
  color: #fff;
  font-family: "Open Sans";
  font-size: 40px;
  font-weight: bold;
  line-height: 55px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-center-eventname {
    font-size: 26px;
    font-weight: bold;
    line-height: 36px;
  }
}

@media screen and (min-width: 766px) and (max-width: 1023px) {
  .dxblock_event-schedule-header-main-center-eventname {
    font-size: 26px;
    font-weight: bold;
    line-height: 36px;
  }
}

.dxblock_event-schedule-header-main-center-description {
  color: #fff;
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 22px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-center-description {
    font-size: 14px;
    line-height: 19px;
  }
}

.dxblock_event-schedule-header-main-center span {
  display: block;
}

.dxblock_event-schedule-header-main-right {
  width: calc(20% - 10px);
  display: flex;
  align-items: center;
  position: relative;
}

.dxblock_event-schedule-header-main-right .progress-circle {
  position: relative;
  display: inline-block;
  margin: 1rem;
  border-radius: 50%;
  background-color: #ea4c12;
  margin: 0;
}

.dxblock_event-schedule-header-main-right .progress-circle::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: colorload 1s;
  position: absolute;
  top: 0;
  left: 0;
}

.dxblock_event-schedule-header-main-right .progress-circle span.number {
  font-weight: 700;
  color: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}

.dxblock_event-schedule-header-main-right .progress-circle span.number > span {
  background-color: transparent;
  position: relative;
  width: auto;
  height: auto;
  display: block;
}

.dxblock_event-schedule-header-main-right .progress-circle span.number::after {
  font-size: 1.2rem;
  color: #333;
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-0::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(90deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-1::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(93.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-2::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(97.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-3::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(100.8deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-4::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(104.4deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-5::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(108deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-6::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(111.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-7::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(115.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-8::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(118.8deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-9::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(122.4deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-10::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(126deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-11::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(129.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-12::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(133.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-13::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(136.8deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-14::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(140.4deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-15::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(129.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-16::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(133.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-17::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(136.8deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-18::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(140.4deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-19::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(144deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-20::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(151.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-21::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(158.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-22::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(161.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-23::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(165.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-24::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(169.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-25::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(180deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-26::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(183.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-27::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(187.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-28::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(190.8deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-29::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(194.4deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-30::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(198deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-31::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(201.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-32::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(205.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-33::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(208.8deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-34::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(212.4deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-35::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(216deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-40::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(234deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-36::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(219.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-37::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(223.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-38::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(226.8deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-39::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(230.4deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-41::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(237.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-42::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(241.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-43::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(244.8deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-44::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(248.4deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-45::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(252deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-46::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(255.6deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-47::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(259.2deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-48::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(262.8deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-49::after {
  background-image: linear-gradient(90deg, #ea4c12 50%, transparent 50%, transparent), linear-gradient(266.4deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-50::after {
  background-image: linear-gradient(-90deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-51::after {
  background-image: linear-gradient(-86.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-52::after {
  background-image: linear-gradient(-82.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-53::after {
  background-image: linear-gradient(-79.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-54::after {
  background-image: linear-gradient(-75.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-55::after {
  background-image: linear-gradient(-72deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-56::after {
  background-image: linear-gradient(-68.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-57::after {
  background-image: linear-gradient(-64.8deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-58::after {
  background-image: linear-gradient(-61.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-59::after {
  background-image: linear-gradient(-57.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-60::after {
  background-image: linear-gradient(-54deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-61::after {
  background-image: linear-gradient(-50.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-62::after {
  background-image: linear-gradient(-46.8deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-63::after {
  background-image: linear-gradient(-43.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-64::after {
  background-image: linear-gradient(-39.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-65::after {
  background-image: linear-gradient(-36deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-66::after {
  background-image: linear-gradient(-32.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-67::after {
  background-image: linear-gradient(-28.8deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-68::after {
  background-image: linear-gradient(-25.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-69::after {
  background-image: linear-gradient(-21.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-70::after {
  background-image: linear-gradient(-18deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-71::after {
  background-image: linear-gradient(-14.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-72::after {
  background-image: linear-gradient(-10.8deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-73::after {
  background-image: linear-gradient(-7.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-74::after {
  background-image: linear-gradient(-3.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-75::after {
  background-image: linear-gradient(0deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-76::after {
  background-image: linear-gradient(3.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-77::after {
  background-image: linear-gradient(7.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-78::after {
  background-image: linear-gradient(10.8deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-79::after {
  background-image: linear-gradient(14.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-80::after {
  background-image: linear-gradient(18deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-81::after {
  background-image: linear-gradient(21.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-82::after {
  background-image: linear-gradient(25.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-83::after {
  background-image: linear-gradient(28.8deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-84::after {
  background-image: linear-gradient(32.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-85::after {
  background-image: linear-gradient(36deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-86::after {
  background-image: linear-gradient(39.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-87::after {
  background-image: linear-gradient(43.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-88::after {
  background-image: linear-gradient(46.8deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-89::after {
  background-image: linear-gradient(50.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-90::after {
  background-image: linear-gradient(54deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-91::after {
  background-image: linear-gradient(57.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-92::after {
  background-image: linear-gradient(61.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-93::after {
  background-image: linear-gradient(64.8deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-94::after {
  background-image: linear-gradient(68.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-95::after {
  background-image: linear-gradient(72deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-96::after {
  background-image: linear-gradient(75.6deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-97::after {
  background-image: linear-gradient(79.2deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-98::after {
  background-image: linear-gradient(82.8deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-99::after {
  background-image: linear-gradient(86.4deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

.dxblock_event-schedule-header-main-right .progress-circle.progress-100::after {
  background-image: linear-gradient(90deg, #ccc 50%, transparent 50%, transparent), linear-gradient(270deg, #ccc 50%, #ea4c12 50%, #ea4c12);
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right {
    height: 146px;
  }
}

.dxblock_event-schedule-header-main-right .wrapper-event-type {
  margin: 0 auto;
}

.dxblock_event-schedule-header-main-right .wrapper-event-type .progress-circle {
  position: relative;
  width: 100px !important;
  height: 100px !important;
  display: inline-block;
  border-radius: 50%;
  background-color: #ccc;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right .wrapper-event-type .progress-circle {
    width: 60px !important;
    height: 60px !important;
    position: relative;
  }
}

.dxblock_event-schedule-header-main-right .wrapper-event-type .progress-circle span.number {
  font-size: 40px;
  width: 79px;
  height: 79px;
  margin-left: -39px;
  margin-top: -39px;
  background-color: #444;
  font-family: "Open Sans";
  color: #fff;
  font-weight: bold;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right .wrapper-event-type .progress-circle span.number {
    width: 48px;
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    font-size: 25px;
  }
}

.dxblock_event-schedule-header-main-right .wrapper-event-type .progress-circle span.number > span {
  color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: italic;
  font-weight: normal;
  padding-top: 5px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right .wrapper-event-type .progress-circle span.number > span {
    font-size: 11px;
    padding-top: 0;
  }
}

.dxblock_event-schedule-header-main-right .wrapper-event-type .circle-date-bottom {
  width: 105px;
  color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: italic;
  line-height: 19px;
  padding-top: 5px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right .wrapper-event-type .circle-date-bottom {
    display: none;
  }
}

.dxblock_event-schedule-header-main-right-arrow {
  margin-top: 55px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-arrow {
    margin-top: 60px;
  }
}

.dxblock_event-schedule-header-main-right-arrow::after {
  content: ">";
  font-style: normal;
  font-weight: normal;
  font-size: 50px;
  line-height: 1em;
  font-family: icomoon, sans-serif;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-arrow::after {
    font-size: 25px;
    margin-top: 60px;
    padding-left: 2px;
  }
}

@media (max-width: 374px) {
  .dxblock_event-schedule-header-main-right-arrow::after {
    font-size: 25px;
    margin-top: 60px;
    padding-left: 10px;
  }
}

.dxblock_event-schedule-header-main-right-live {
  width: calc(20% - 10px);
  display: flex;
  align-items: center;
}

.dxblock_event-schedule-header-main-right-live .wrapper-event-type {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-live {
    height: 146px;
  }
}

.dxblock_event-schedule-header-main-right-live--live {
  width: 86px;
  height: 86px;
  border: 4px solid #aa7562;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
}

.dxblock_event-schedule-header-main-right-live--live::before {
  border: 4px solid #eb9272;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
}

.dxblock_event-schedule-header-main-right-live--live::after {
  background: #ea4c12;
  box-shadow: 0 0 0 4px #aa7562;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-live--live::after {
    box-shadow: 0 0 0 2px #aa7562;
    top: 25px;
    right: 25px;
    bottom: 25px;
    left: 25px;
  }
}

.dxblock_event-schedule-header-main-right-live--live::before,
.dxblock_event-schedule-header-main-right-live--live::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-live--live {
    width: 60px;
    height: 60px;
    border: 1px solid #aa7562;
  }
}

.dxblock_event-schedule-header-main-right-live .live-date-bottom {
  width: 105px;
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: italic;
  line-height: 19px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-live .live-date-bottom {
    display: none;
  }
}

.dxblock_event-schedule-header-main-right-past {
  width: calc(20% - 10px);
  display: flex;
  align-items: center;
  height: 158px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-past {
    height: 150px;
  }
}

.dxblock_event-schedule-header-main-right-past .wrapper-event-type {
  margin: 0 auto;
}

.dxblock_event-schedule-header-main-right-past--past {
  width: 86px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-past--past {
    width: 76px;
  }
}

.dxblock_event-schedule-header-main-right-past--past::after {
  content: '✔';
  font-style: normal;
  font-weight: normal;
  font-size: 10rem;
  line-height: 10rem;
  font-family: icomoon, sans-serif;
  color: #ea4c12;
  position: relative;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-past--past::after {
    font-size: 5rem;
    line-height: unset;
  }
}

.dxblock_event-schedule-header-main-right-past .tick-date-bottom {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: italic;
  line-height: 19px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-header-main-right-past .tick-date-bottom {
    display: none;
  }
}

.dxblock_event-schedule-footer-main {
  width: 100%;
  min-height: 390px;
  display: flex;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main {
    display: block;
    min-height: 244px;
  }
}

@media (max-width: 1023px) {
  .dxblock_event-schedule-footer-main {
    min-height: 280px;
  }
}

.dxblock_event-schedule-footer-main-left-video {
  width: 390px;
  background-color: #444;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-left-video {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
  }
}

.dxblock_event-schedule-footer-main-left-video img {
  width: 390px;
  height: 390px;
}

.dxblock_event-schedule-footer-main-left-video video {
  width: 390px;
  height: 390px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-left-video {
    width: 100%;
  }

  .dxblock_event-schedule-footer-main-left-video img,
  .dxblock_event-schedule-footer-main-left-video video {
    height: 244px;
    width: 244px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dxblock_event-schedule-footer-main-left-video {
    width: 280px;
  }

  .dxblock_event-schedule-footer-main-left-video img,
  .dxblock_event-schedule-footer-main-left-video video {
    height: 280px;
    width: 280px;
  }
}

.dxblock_event-schedule-footer-main-right-event {
  width: calc(100% - 390px);
  height: auto;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dxblock_event-schedule-footer-main-right-event {
    width: calc(100% - 280px);
  }
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-right-event {
    width: calc(100% - 244px);
  }
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-right-event {
    width: 100%;
  }
}

.dxblock_event-schedule-footer-main-right-event-list {
  min-height: 131px;
  padding: 10px;
  display: flex;
  border-left: 1px solid #979797;
  border-bottom: 1px solid #979797;
  border-right: 1px solid #979797;
}

.dxblock_event-schedule-footer-main-right-event-list-left-icon {
  margin: 0 14px;
  width: 48px;
}

.dxblock_event-schedule-footer-main-right-event-list-left-icon img,
.dxblock_event-schedule-footer-main-right-event-list-left-icon svg {
  height: 48px;
  width: 48px;
}

.dxblock_event-schedule-footer-main-right-event-list-left-icon svg * {
  fill: #111;
  transition: fill 0.25s ease;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-right-event-list-left-icon {
    margin: 0 7px;
    width: 38px;
  }

  .dxblock_event-schedule-footer-main-right-event-list-left-icon img,
  .dxblock_event-schedule-footer-main-right-event-list-left-icon svg {
    height: 38px;
    width: 38px;
  }
}

.dxblock_event-schedule-footer-main-right-event-list-center {
  width: calc(80% - 76px);
}

.dxblock_event-schedule-footer-main-right-event-list-center span {
  display: block;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-right-event-list-center {
    width: calc(100% - 52px);
  }
}

.dxblock_event-schedule-footer-main-right-event-list-center-platform-name {
  color: #ea4c12;
  font-family: "Open Sans";
  font-size: 13px;
  font-weight: bold;
  line-height: 19px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-right-event-list-center-platform-name {
    font-size: 13px;
    width: 65%;
    line-height: 19px;
  }
}

.dxblock_event-schedule-footer-main-right-event-list-center-center-eventname {
  color: #444;
  font-family: "Open Sans";
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-right-event-list-center-center-eventname {
    font-size: 20px;
    font-weight: bold;
    line-height: 27px;
    width: 65%;
  }
}

.dxblock_event-schedule-footer-main-right-event-list-center-description {
  color: #333;
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 19px;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-right-event-list-center-description {
    font-size: 12px;
    line-height: 17px;
  }
}

.dxblock_event-schedule-footer-main-right-event-list-right {
  width: 20%;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-right-event-list-right {
    width: auto;
  }
}

.dxblock_event-schedule-footer-main-right-event-list-right .event-date-right {
  text-align: center;
  color: #ea4c12;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 800;
  vertical-align: middle;
  justify-content: center;
}

@media (max-width: 767px) {
  .dxblock_event-schedule-footer-main-right-event-list-right .event-date-right {
    font-size: 17px;
    font-weight: 800;
    line-height: 18px;
    position: absolute;
    right: 0;
    width: 95px;
    height: 40px;
    margin: 0 20px;
  }
}
