@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated-1000 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-900 {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-800 {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-700 {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-600 {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-500 {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-400 {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-300 {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-200 {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-100 {
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.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;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: 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;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: 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;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.general-container {
  width: 100%;
  min-width: 320px;
  max-width: 1360px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
}
.responsive-table {
  float: left;
  position: relative;
  width: 100%;
  overflow: auto;
}
.css-transitions-ie-edge-fix * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.-is-visible {
  display: block !important;
}
.-is-hidden {
  display: none !important;
}
.-is-not-selectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.-is-not-scrollable {
  overflow: hidden;
}
.-is-not-scrollable-x {
  overflow-x: hidden;
}
.-is-not-scrollable-y {
  overflow-y: hidden;
}
.-width-max {
  width: 100%;
}
.-float-left {
  float: left;
}
.-float-right {
  float: right;
}
.-clearfix:after {
  content: " ";
  clear: both;
  display: table;
}
.-align-left {
  text-align: left;
}
.-align-right {
  text-align: right;
}
.-align-center {
  text-align: center;
}
.link {
  color: #ac001e;
  text-decoration: none;
}
.link:hover {
  color: black;
}
.button {
  padding: 7px 10px;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: inline-block;
  background: transparent;
  border: 1px solid #ac001e;
  color: #ac001e;
  font: bold 14px roboto;
  cursor: pointer;
  text-transform: uppercase;
}
.button:hover,
.button.-active {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-decoration: none;
  background: #ac001e;
  color: white;
}
.button:hover,
.button.-active:hover {
  background: #ac001e;
  border-color: #ac001e;
}
.button.-white {
  border-color: white !important;
  color: white;
}
.button.-white:hover {
  background: white !important;
  color: black !important;
}
/*
	@c-button-transition-duration: .3s;

	.-padding-v-1;
	.-padding-h-5;
	.-align-center;

	display: inline-block;
	background: transparent;
	border: 3px solid @g-color-general;
	color: @g-color-general;
	font: bold 15px roboto;
	cursor: pointer;

    background: transparent;
    background: linear-gradient(to right, transparent 50%, @g-color-general 50%);
    background-size: 210% 105%; // Plus 5% because of some kind of rounding errors in browsers :/
    background-position:left bottom;
    transition: all .3s linear;
	text-transform: uppercase;

	&:hover, &.-active {
		text-decoration: none;
		color: white;
		border-color: darken(@g-color-general, 0%);
		background-position:right bottom;
	}

	&:hover, &.-active:hover {
		border-color: darken(@g-color-general, 0%);
		background-position:right bottom;
	}
*/
.table,
table {
  margin-top: 8px;
  margin-bottom: 8px;
  float: left;
}
.table.nice,
table.nice {
  max-width: 100%;
}
.table.nice.item tr td:first-child,
table.nice.item tr td:first-child,
.table.nice .item,
table.nice .item {
  font-weight: bold;
}
.table.nice#soupiska,
table.nice#soupiska {
  cursor: pointer;
}
.table.nice#soupiska tr:hover .jmeno,
table.nice#soupiska tr:hover .jmeno {
  text-decoration: underline;
}
.table.nice#soupiska .cislo,
table.nice#soupiska .cislo {
  width: 15px;
}
.table.nice#soupiska .jmeno,
table.nice#soupiska .jmeno {
  font-family: league-spartan;
  color: #ac001e;
}
.table.nice#soupiska .narozen,
table.nice#soupiska .narozen,
.table.nice#soupiska .vek,
table.nice#soupiska .vek,
.table.nice#soupiska .vyska,
table.nice#soupiska .vyska,
.table.nice#soupiska .vaha,
table.nice#soupiska .vaha {
  text-align: right;
}
.table.nice#soupiska .vek,
table.nice#soupiska .vek {
  width: 80px;
}
.table.nice#soupiska .hul,
table.nice#soupiska .hul {
  text-align: center;
}
.table#tabLiga,
table#tabLiga {
  width: 100% !important;
  background: white !important;
}
.table#tabLiga td,
table#tabLiga td,
.table#tabLiga th,
table#tabLiga th {
  font-size: 16px !important;
}
.table#tabMenu,
table#tabMenu {
  width: 100% !important;
}
.table#tabMenu td,
table#tabMenu td {
  padding: 5px 10px;
  font-size: 15px;
}
.table.-theme-default th,
table.-theme-default th,
.table.nice th,
table.nice th,
.table.stats th,
table.stats th,
.table.tabStats th,
table.tabStats th,
.table#tabLiga th,
table#tabLiga th {
  padding: 8px;
  text-align: center;
  background: #ac001e;
  border: 1px solid #ac001e;
  color: white;
}
.table.-theme-default th a,
table.-theme-default th a,
.table.nice th a,
table.nice th a,
.table.stats th a,
table.stats th a,
.table.tabStats th a,
table.tabStats th a,
.table#tabLiga th a,
table#tabLiga th a {
  color: inherit;
}
.table.-theme-default tr td,
table.-theme-default tr td,
.table.nice tr td,
table.nice tr td,
.table.stats tr td,
table.stats tr td,
.table.tabStats tr td,
table.tabStats tr td,
.table#tabLiga tr td,
table#tabLiga tr td {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  background: white !important;
  border-bottom: 1px solid #efe6e6;
}
.table.-theme-default tr td img,
table.-theme-default tr td img,
.table.nice tr td img,
table.nice tr td img,
.table.stats tr td img,
table.stats tr td img,
.table.tabStats tr td img,
table.tabStats tr td img,
.table#tabLiga tr td img,
table#tabLiga tr td img {
  display: inline-block;
  float: none;
}
.table.-theme-default tr td.dt,
table.-theme-default tr td.dt,
.table.nice tr td.dt,
table.nice tr td.dt,
.table.stats tr td.dt,
table.stats tr td.dt,
.table.tabStats tr td.dt,
table.tabStats tr td.dt,
.table#tabLiga tr td.dt,
table#tabLiga tr td.dt {
  text-align: center !important;
  border-bottom: 1px solid #efe6e6;
}
.table.-theme-default tr td.vstrel,
table.-theme-default tr td.vstrel,
.table.nice tr td.vstrel,
table.nice tr td.vstrel,
.table.stats tr td.vstrel,
table.stats tr td.vstrel,
.table.tabStats tr td.vstrel,
table.tabStats tr td.vstrel,
.table#tabLiga tr td.vstrel,
table#tabLiga tr td.vstrel {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.table.-theme-default tr:hover td,
table.-theme-default tr:hover td,
.table.nice tr:hover td,
table.nice tr:hover td,
.table.stats tr:hover td,
table.stats tr:hover td,
.table.tabStats tr:hover td,
table.tabStats tr:hover td,
.table#tabLiga tr:hover td,
table#tabLiga tr:hover td {
  background: #efe6e6 !important;
}
.table.-theme-default tr:hover td.dt,
table.-theme-default tr:hover td.dt,
.table.nice tr:hover td.dt,
table.nice tr:hover td.dt,
.table.stats tr:hover td.dt,
table.stats tr:hover td.dt,
.table.tabStats tr:hover td.dt,
table.tabStats tr:hover td.dt,
.table#tabLiga tr:hover td.dt,
table#tabLiga tr:hover td.dt {
  border: 1px double #d8afaf !important;
}
.table.-theme-list,
table.-theme-list {
  font-size: 14px;
  margin: 0;
  margin-bottom: 24px;
}
.table.-theme-list thead,
table.-theme-list thead {
  text-align: left;
  border-bottom: 2px solid #ac001e;
  font: 12px league-spartan;
  text-transform: uppercase;
  background: white;
}
.table.-theme-list thead th,
table.-theme-list thead th {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  outline: 0;
}
.table.-theme-list tbody tr,
table.-theme-list tbody tr {
  border-bottom: 1px solid #dbdbdb;
}
.table.-theme-list tbody tr.-highlighted,
table.-theme-list tbody tr.-highlighted {
  background: #f9f9f9;
}
.table.-theme-list tbody tr .-player-name,
table.-theme-list tbody tr .-player-name {
  font-size: 20px;
  font-family: bebas-neue-bold;
}
.table.-theme-list tbody tr td,
table.-theme-list tbody tr td {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 15px;
  color: #252525;
}
.table.-theme-list tbody tr td.-number,
table.-theme-list tbody tr td.-number,
.table.-theme-list tbody tr td.-post,
table.-theme-list tbody tr td.-post,
.table.-theme-list tbody tr td.games,
table.-theme-list tbody tr td.games,
.table.-theme-list tbody tr td.points,
table.-theme-list tbody tr td.points,
.table.-theme-list tbody tr td.percentage,
table.-theme-list tbody tr td.percentage,
.table.-theme-list tbody tr td.goals-per-game,
table.-theme-list tbody tr td.goals-per-game {
  font-size: 16px;
  font-weight: bold;
  font-family: roboto;
}
.table.-theme-list tbody tr td.-team-logos,
table.-theme-list tbody tr td.-team-logos {
  text-align: center;
}
.table.-theme-list tbody tr td.-team-logos img,
table.-theme-list tbody tr td.-team-logos img {
  margin: 0 7px;
  margin: 0 auto;
  float: none;
}
.form {
  margin-top: 24px;
  margin-bottom: 24px;
}
.form.-minor {
  float: left;
}
.form .-form-2 {
  width: 50%;
  float: left;
}
.form .-form-2:nth-child(even) {
  padding-left: 10px;
}
.form.-theme-switcher {
  margin: 0;
  margin-bottom: 8px;
  float: left;
  width: 100%;
}
.form.-theme-switcher label {
  font-family: league-spartan;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 30px;
  height: 30px;
  font-size: 14px;
  float: left;
  cursor: pointer;
}
.form.-theme-switcher input[type="radio"] {
  float: left;
  display: none;
}
.form.-theme-switcher input[type="radio"]:not(old),
.form.-theme-switcher input[type="radio"]:not(old) {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  font-size: 1em;
  opacity: 0;
}
.form.-theme-switcher input[type="radio"]:not(old) + label,
.form.-theme-switcher input[type="radio"]:not(old) + label {
  display: inline-block;
  margin-left: -25px;
  margin-right: 25px;
}
.form.-theme-switcher input[type="radio"]:not(old) + label > span,
.form.-theme-switcher input[type="radio"]:not(old) + label > span {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 6px;
  margin-left: 25px;
  margin-right: 10px;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
  background: white;
  vertical-align: bottom;
  position: relative;
  cursor: pointer;
  float: left;
}
.form.-theme-switcher
  input[type="radio"]:not(old):checked
  + label
  > span:before {
  content: "";
  display: block;
  position: absolute;
  color: #ac001e;
  background: #ac001e;
  width: 10px;
  height: 10px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
}
.form.-theme-default fieldset {
  padding: 24px;
  border: 1px solid #efe6e6;
}
.form.-theme-default fieldset legend {
  padding-left: 16px;
  padding-right: 16px;
  font: 20px bebas-neue-bold;
}
.form.-theme-default h2 {
  background: #ac001e;
}
.form.-theme-default p {
  margin: 0;
  position: relative;
  float: left;
  left: 18px;
  font-size: 14px;
  font-weight: bold;
  color: #ac001e;
  background: white;
}
.form.-theme-default label {
  height: 0;
  position: relative;
  float: left;
  top: 8px;
  left: 18px;
  font-size: 14px;
  font-weight: bold;
  color: #ac001e;
  background: white;
}
.form.-theme-default input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
.form.-theme-default .checkbox {
  border: 1px solid #efe6e6;
  outline: none;
  margin-bottom: 10px;
  width: 100%;
  font-size: 15px;
}
.form.-theme-default input:not([type="checkbox"]),
.form.-theme-default textarea,
.form.-theme-default select {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid #efe6e6;
  outline: none;
  margin-bottom: 10px;
  width: 100%;
  font-size: 15px;
}
.form.-theme-default input:not([type="checkbox"]):focus,
.form.-theme-default textarea:focus,
.form.-theme-default select:focus {
  outline: 2px solid #ac001e;
  background: #f7eded;
}
.form.-theme-default input:not([type="checkbox"]):focus:invalid,
.form.-theme-default textarea:focus:invalid,
.form.-theme-default select:focus:invalid {
  outline: #ac001e solid 2px;
}
.form.-theme-default
  input:not([type="checkbox"]):focus:invalid:-webkit-autofill,
.form.-theme-default textarea:focus:invalid:-webkit-autofill,
.form.-theme-default select:focus:invalid:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f7eded inset;
}
.form.-theme-default input[type="checkbox"] {
  margin-left: 16px;
  margin-right: 16px;
  margin-top: 32px;
  margin-bottom: 8px;
}
.form.-theme-default #smiles {
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  top: 1px;
  left: 100px;
  height: 0;
}
.form.-theme-default #smiles img {
  padding-right: 1px;
}
.form.-theme-default textarea {
  padding-top: 32px;
  padding-bottom: 8px;
  width: 100%;
  min-height: 200px;
  border: 1px solid #efe6e6;
}
.form.-theme-default select {
  padding: 0;
  padding: 6px 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.form.-theme-default select option {
  background: white;
  display: block;
  height: 50px;
  font-size: 20px;
  font-family: roboto;
  color: #252525;
  text-transform: none;
}
.form.-theme-default select option:hover {
  background: #ac001e;
  color: white;
}
.form.-theme-default select option:disabled {
  background: lightgrey;
}
.form.-theme-default select optgroup {
  background: #252525;
  color: white;
  font-size: 20px;
  font-family: roboto;
}
.message {
  padding: 24px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 24px;
  margin-bottom: 24px;
  background-color: #790015;
  background-image: -webkit-linear-gradient(bottom, #790015, #ac001e);
  background-image: -moz-linear-gradient(bottom, #790015, #ac001e);
  background-image: -o-linear-gradient(bottom, #790015, #ac001e);
  background-image: -ms-linear-gradient(bottom, #790015, #ac001e);
  background-image: linear-gradient(bottom, #790015, #ac001e);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  float: left;
  font: 40px bebas-neue-bold;
  color: white;
  width: 100%;
  text-align: center;
}
.message:before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  right: 15px;
  bottom: -10px;
  border: 5px solid;
  border-color: #790015 #790015 transparent transparent;
}
.message.-error {
  background-color: #790015;
  background-image: -webkit-linear-gradient(bottom, #790015, #ac001e);
  background-image: -moz-linear-gradient(bottom, #790015, #ac001e);
  background-image: -o-linear-gradient(bottom, #790015, #ac001e);
  background-image: -ms-linear-gradient(bottom, #790015, #ac001e);
  background-image: linear-gradient(bottom, #790015, #ac001e);
}
.message.-error:before {
  border-color: #790015 #790015 transparent transparent;
}
.message.-correct {
  background-color: #347c37;
  background-image: -webkit-linear-gradient(bottom, #347c37, #43a047);
  background-image: -moz-linear-gradient(bottom, #347c37, #43a047);
  background-image: -o-linear-gradient(bottom, #347c37, #43a047);
  background-image: -ms-linear-gradient(bottom, #347c37, #43a047);
  background-image: linear-gradient(bottom, #347c37, #43a047);
}
.message.-correct:before {
  border-color: #347c37 #347c37 transparent transparent;
}
.-margin-1 {
  margin: 8px;
}
.-margin-2 {
  margin: 16px;
}
.-margin-3 {
  margin: 24px;
}
.-margin-4 {
  margin: 32px;
}
.-margin-5 {
  margin: 40px;
}
.-margin-6 {
  margin: 48px;
}
.-margin-7 {
  margin: 56px;
}
.-margin-8 {
  margin: 64px;
}
.-margin-9 {
  margin: 72px;
}
.-margin-10 {
  margin: 80px;
}
.-margin-v-1 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.-margin-v-2 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.-margin-v-3 {
  margin-top: 24px;
  margin-bottom: 24px;
}
.-margin-v-4 {
  margin-top: 32px;
  margin-bottom: 32px;
}
.-margin-v-5 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.-margin-v-6 {
  margin-top: 48px;
  margin-bottom: 48px;
}
.-margin-v-7 {
  margin-top: 56px;
  margin-bottom: 56px;
}
.-margin-v-8 {
  margin-top: 64px;
  margin-bottom: 64px;
}
.-margin-v-9 {
  margin-top: 72px;
  margin-bottom: 72px;
}
.-margin-v-10 {
  margin-top: 80px;
  margin-bottom: 80px;
}
.-margin-h-1 {
  margin-left: 8px;
  margin-right: 8px;
}
.-margin-h-2 {
  margin-left: 16px;
  margin-right: 16px;
}
.-margin-h-3 {
  margin-left: 24px;
  margin-right: 24px;
}
.-margin-h-4 {
  margin-left: 32px;
  margin-right: 32px;
}
.-margin-h-5 {
  margin-left: 40px;
  margin-right: 40px;
}
.-margin-h-6 {
  margin-left: 48px;
  margin-right: 48px;
}
.-margin-h-7 {
  margin-left: 56px;
  margin-right: 56px;
}
.-margin-h-8 {
  margin-left: 64px;
  margin-right: 64px;
}
.-margin-h-9 {
  margin-left: 72px;
  margin-right: 72px;
}
.-margin-h-10 {
  margin-left: 80px;
  margin-right: 80px;
}
.-margin-l-1 {
  margin-left: 8px;
}
.-margin-l-2 {
  margin-left: 16px;
}
.-margin-l-3 {
  margin-left: 24px;
}
.-margin-l-4 {
  margin-left: 32px;
}
.-margin-l-5 {
  margin-left: 40px;
}
.-margin-l-6 {
  margin-left: 48px;
}
.-margin-l-7 {
  margin-left: 56px;
}
.-margin-l-8 {
  margin-left: 64px;
}
.-margin-l-9 {
  margin-left: 72px;
}
.-margin-l-10 {
  margin-left: 80px;
}
.-margin-r-1 {
  margin-right: 8px;
}
.-margin-r-2 {
  margin-right: 16px;
}
.-margin-r-3 {
  margin-right: 24px;
}
.-margin-r-4 {
  margin-right: 32px;
}
.-margin-r-5 {
  margin-right: 40px;
}
.-margin-r-6 {
  margin-right: 48px;
}
.-margin-r-7 {
  margin-right: 56px;
}
.-margin-r-8 {
  margin-right: 64px;
}
.-margin-r-9 {
  margin-right: 72px;
}
.-margin-r-10 {
  margin-right: 80px;
}
.-margin-t-1 {
  margin-top: 8px;
}
.-margin-t-2 {
  margin-top: 16px;
}
.-margin-t-3 {
  margin-top: 24px;
}
.-margin-t-4 {
  margin-top: 32px;
}
.-margin-t-5 {
  margin-top: 40px;
}
.-margin-t-6 {
  margin-top: 48px;
}
.-margin-t-7 {
  margin-top: 56px;
}
.-margin-t-8 {
  margin-top: 64px;
}
.-margin-t-9 {
  margin-top: 72px;
}
.-margin-t-10 {
  margin-top: 80px;
}
.-margin-b-1 {
  margin-bottom: 8px;
}
.-margin-b-2 {
  margin-bottom: 16px;
}
.-margin-b-3 {
  margin-bottom: 24px;
}
.-margin-b-4 {
  margin-bottom: 32px;
}
.-margin-b-5 {
  margin-bottom: 40px;
}
.-margin-b-6 {
  margin-bottom: 48px;
}
.-margin-b-7 {
  margin-bottom: 56px;
}
.-margin-b-8 {
  margin-bottom: 64px;
}
.-margin-b-9 {
  margin-bottom: 72px;
}
.-margin-b-10 {
  margin-bottom: 80px;
}
.-padding-1 {
  padding: 8px;
}
.-padding-2 {
  padding: 16px;
}
.-padding-3 {
  padding: 24px;
}
.-padding-4 {
  padding: 32px;
}
.-padding-5 {
  padding: 40px;
}
.-padding-6 {
  padding: 48px;
}
.-padding-7 {
  padding: 56px;
}
.-padding-8 {
  padding: 64px;
}
.-padding-9 {
  padding: 72px;
}
.-padding-10 {
  padding: 80px;
}
.-padding-v-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.-padding-v-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.-padding-v-3 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.-padding-v-4 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.-padding-v-5 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.-padding-v-6 {
  padding-top: 48px;
  padding-bottom: 48px;
}
.-padding-v-7 {
  padding-top: 56px;
  padding-bottom: 56px;
}
.-padding-v-8 {
  padding-top: 64px;
  padding-bottom: 64px;
}
.-padding-v-9 {
  padding-top: 72px;
  padding-bottom: 72px;
}
.-padding-v-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.-padding-h-1 {
  padding-left: 8px;
  padding-right: 8px;
}
.-padding-h-2 {
  padding-left: 16px;
  padding-right: 16px;
}
.-padding-h-3 {
  padding-left: 24px;
  padding-right: 24px;
}
.-padding-h-4 {
  padding-left: 32px;
  padding-right: 32px;
}
.-padding-h-5 {
  padding-left: 40px;
  padding-right: 40px;
}
.-padding-h-6 {
  padding-left: 48px;
  padding-right: 48px;
}
.-padding-h-7 {
  padding-left: 56px;
  padding-right: 56px;
}
.-padding-h-8 {
  padding-left: 64px;
  padding-right: 64px;
}
.-padding-h-9 {
  padding-left: 72px;
  padding-right: 72px;
}
.-padding-h-10 {
  padding-left: 80px;
  padding-right: 80px;
}
.-padding-l-1 {
  padding-left: 8px;
}
.-padding-l-2 {
  padding-left: 16px;
}
.-padding-l-3 {
  padding-left: 24px;
}
.-padding-l-4 {
  padding-left: 32px;
}
.-padding-l-5 {
  padding-left: 40px;
}
.-padding-l-6 {
  padding-left: 48px;
}
.-padding-l-7 {
  padding-left: 56px;
}
.-padding-l-8 {
  padding-left: 64px;
}
.-padding-l-9 {
  padding-left: 72px;
}
.-padding-l-10 {
  padding-left: 80px;
}
.-padding-r-1 {
  padding-right: 8px;
}
.-padding-r-2 {
  padding-right: 16px;
}
.-padding-r-3 {
  padding-right: 24px;
}
.-padding-r-4 {
  padding-right: 32px;
}
.-padding-r-5 {
  padding-right: 40px;
}
.-padding-r-6 {
  padding-right: 48px;
}
.-padding-r-7 {
  padding-right: 56px;
}
.-padding-r-8 {
  padding-right: 64px;
}
.-padding-r-9 {
  padding-right: 72px;
}
.-padding-r-10 {
  padding-right: 80px;
}
.-padding-t-1 {
  padding-top: 8px;
}
.-padding-t-2 {
  padding-top: 16px;
}
.-padding-t-3 {
  padding-top: 24px;
}
.-padding-t-4 {
  padding-top: 32px;
}
.-padding-t-5 {
  padding-top: 40px;
}
.-padding-t-6 {
  padding-top: 48px;
}
.-padding-t-7 {
  padding-top: 56px;
}
.-padding-t-8 {
  padding-top: 64px;
}
.-padding-t-9 {
  padding-top: 72px;
}
.-padding-t-10 {
  padding-top: 80px;
}
.-padding-b-1 {
  padding-bottom: 8px;
}
.-padding-b-2 {
  padding-bottom: 16px;
}
.-padding-b-3 {
  padding-bottom: 24px;
}
.-padding-b-4 {
  padding-bottom: 32px;
}
.-padding-b-5 {
  padding-bottom: 40px;
}
.-padding-b-6 {
  padding-bottom: 48px;
}
.-padding-b-7 {
  padding-bottom: 56px;
}
.-padding-b-8 {
  padding-bottom: 64px;
}
.-padding-b-9 {
  padding-bottom: 72px;
}
.-padding-b-10 {
  padding-bottom: 80px;
}
* {
  box-sizing: border-box;
}
.header *,
.main-content,
.main-content-hrac,
.side-content *,
.-hp *,
#top_bar * {
  transition: 0.25s width, 0.25s height, 0.25s padding, 0.25s margin,
    0.25s font-size, 0.25s background;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  color: #333333;
  font: 15px roboto;
  margin: 0 auto;
  overflow-x: hidden;
  max-width: 100%;
  background: black;
}
@media only screen and (max-width: 720px) {
  #top_bar {
    display: none;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: factoria;
  text-transform: uppercase;
}
@media only screen and (min-width: 961px) {
  h1 {
    font-size: 260%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  h1 {
    font-size: 230%;
  }
}
@media only screen and (max-width: 720px) {
  h1 {
    font-size: 200%;
  }
}
h2 {
  margin-top: 24px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 961px) {
  h2 {
    font-size: 200%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  h2 {
    font-size: 170%;
  }
}
@media only screen and (max-width: 720px) {
  h2 {
    font-size: 140%;
  }
}
h3 {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 961px) {
  h3 {
    font-size: 160%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  h3 {
    font-size: 130%;
  }
}
@media only screen and (max-width: 720px) {
  h3 {
    font-size: 100%;
  }
}
.main-content a {
  color: #ac001e;
}
.-hp a.button {
  border-color: #ac001e;
}
.-hp a.button:hover {
  background: #ac001e;
  text-decoration: none;
  color: white;
}
a,
.-hp a {
  color: #ac001e;
  text-decoration: none;
}
a:hover,
.-hp a:hover {
  color: #ac001e;
  text-decoration: underline;
}
input {
  outline: 0;
}
textarea {
  resize: none;
}
table {
  border-collapse: collapse;
}
img {
  display: block;
}
::-moz-selection {
  background: #ac001e;
  color: white;
}
::selection {
  background: #ac001e;
  color: white;
}
@font-face {
  font-family: bebas-neue;
  src: url("../fonts/bebas-neue-regular/bebasneueregular-webfont.eot");
  src: url("../fonts/bebas-neue-regular/bebasneueregular-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/bebas-neue-regular/bebasneueregular-webfont.woff2")
      format("woff2"),
    url("../fonts/bebas-neue-regular/bebasneueregular-webfont.woff")
      format("woff"),
    url("../fonts/bebas-neue-regular/bebasneueregular-webfont.ttf")
      format("truetype"),
    url("../fonts/bebas-neue-regular/bebasneueregular-webfont.svg#bebas_neue_regularregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "factoria";
  src: url("../fonts/factoria/factoria_w00_bold.woff2") format("woff2"),
    url("../fonts/factoria/factoria_w00_bold.woff") format("woff"),
    url("../fonts/factoria/factoria_w00_bold.ttf") format("truetype"),
    url("../fonts/factoria/factoria_w00_bold.svg#factoriaw00-blackregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: bebas-neue-bold;
  src: url("../fonts/bebas-neue-bold/bebasneuebold-webfont.eot");
  src: url("../fonts/bebas-neue-bold/bebasneuebold-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/bebas-neue-bold/bebasneuebold-webfont.woff2") format("woff2"),
    url("../fonts/bebas-neue-bold/bebasneuebold-webfont.woff") format("woff"),
    url("../fonts/bebas-neue-bold/bebasneuebold-webfont.ttf") format("truetype"),
    url("../fonts/bebas-neue-bold/bebasneuebold-webfont.svg#bebas_neuebold")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: open-sans;
  src: url("../fonts/open-sans/opensans-webfont.eot");
  src: url("../fonts/open-sans/opensans-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/open-sans/opensans-webfont.woff2") format("woff2"),
    url("../fonts/open-sans/opensans-webfont.woff") format("woff"),
    url("../fonts/open-sans/opensans-webfont.ttf") format("truetype"),
    url("../fonts/open-sans/opensans-webfont.svg#open_sansregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: league-spartan;
  src: url("../fonts/league-spartan-bold/leaguespartan-bold.eot");
  src: url("../fonts/league-spartan-bold/leaguespartan-bold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/league-spartan-bold/leaguespartan-bold.woff2") format("woff2"),
    url("../fonts/league-spartan-bold/leaguespartan-bold.woff") format("woff"),
    url("../fonts/league-spartan-bold/leaguespartan-bold.ttf")
      format("truetype"),
    url("../fonts/league-spartan-bold/leaguespartan-bold.svg#league_spartanregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: roboto;
  src: url("../fonts/roboto-regular/roboto-regular.eot");
  src: url("../fonts/roboto-regular/roboto-regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/roboto-regular/roboto-regular.woff2") format("woff2"),
    url("../fonts/roboto-regular/roboto-regular.woff") format("woff"),
    url("../fonts/roboto-regular/roboto-regular.ttf") format("truetype"),
    url("../fonts/roboto-regular/roboto-regular.svg#robotoregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
.page-container {
  float: left;
  width: 100%;
}
.hp-main-articles {
  float: left;
  position: relative;
  width: 100%;
  background: black;
}
.hp-main-articles__article {
  position: relative;
  float: left;
  overflow: hidden;
}
@media only screen and (max-width: 720px) {
  .hp-main-articles__article {
    width: 100%;
    height: 200px;
  }
  .hp-main-articles__article
    .hp-main-articles__article__overlay__bottom__heading {
    font-size: 160%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-main-articles__article {
    width: 100%;
    height: 250px;
  }
  .hp-main-articles__article
    .hp-main-articles__article__overlay__bottom__heading {
    font-size: 240%;
  }
}
@media only screen and (min-width: 961px) {
  .hp-main-articles__article {
    width: 35%;
    height: 0px;
    padding-bottom: 19.5%;
  }
  .hp-main-articles__article
    .hp-main-articles__article__overlay__bottom__heading {
    font-size: 150%;
    padding-right: 20%;
  }
  .hp-main-articles__article:first-child {
    width: 65%;
    padding-bottom: 39%;
  }
  .hp-main-articles__article:first-child
    .hp-main-articles__article__overlay__bottom__heading {
    font-size: 240%;
  }
}
.hp-main-articles__article:hover {
  cursor: pointer;
}
.hp-main-articles__article:hover img {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -moz-transform: scale(1.075);
  -webkit-transform: scale(1.075);
  -o-transform: scale(1.075);
  transform: scale(1.075);
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  transition: 0.5s all;
  -webkit-filter: contrast(120%);
  filter: contrast(120%);
}
@media only screen and (max-width: 720px) {
  .hp-main-articles__article:hover img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    transition: 0.5 all;
  }
}
.hp-main-articles__article:hover
  .hp-main-articles__article__overlay__bottom__heading
  a {
  text-decoration: underline;
}
.hp-main-articles__article:hover
  .hp-main-articles__article__overlay__bottom__heading {
  text-decoration: underline;
}
.hp-main-articles__article img {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  width: 100%;
  width: calc(101%);
  -webkit-filter: contrast(120%);
  filter: contrast(120%);
  transition: 0.5s all;
}
.hp-main-articles__article__overlay {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+50,252525+100&0+0,0.05+50,0.05+50,0.5+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(37, 37, 37, 0.5) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(37, 37, 37, 0.5) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(37, 37, 37, 0.5) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80252525', GradientType=0);
  /* IE6-9 */
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  color: white;
}
.hp-main-articles__article__overlay__bottom {
  position: absolute;
  bottom: 0;
  padding: 5%;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.05+10,0.6+50,0.9+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 10%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 10%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 10%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e6000000', GradientType=0);
  /* IE6-9 */
}
.hp-main-articles__article__overlay__bottom__date {
  background: #ac001e;
  float: left;
  font-weight: bold;
  font-size: 13px;
  padding: 1% 2%;
  text-transform: uppercase;
}
.hp-main-articles__article__overlay__bottom__heading {
  float: left;
  width: 100%;
  color: white;
  text-transform: none;
  margin-bottom: 0;
  margin-top: 10px;
}
.hp-main-articles__article__overlay__bottom__heading a {
  color: inherit;
}
.hp-tab-chooser {
  display: none;
}
@media only screen and (max-width: 720px) {
  .hp-tab-chooser {
    background: #252525;
    color: white;
    display: block;
    float: left;
    width: 100%;
    cursor: pointer;
  }
  .hp-tab-chooser__tab {
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 2px solid transparent;
    float: left;
    text-align: center;
    width: 33.33333333%;
    font-weight: bold;
  }
  .hp-tab-chooser__tab.-active {
    border-top: 2px solid #ac001e;
  }
}
.hp-game-list {
  float: left;
  position: relative;
  width: 100%;
  background: #141414;
  display: flex;
  flex-flow: row wrap;
}
.hp-game-list__upcoming,
.hp-game-list__recent {
  color: white;
  float: left;
  position: relative;
  border-top: 1px solid #2e2e2f;
  width: 50%;
  font-family: factoria;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (max-width: 720px) {
  .hp-game-list__upcoming,
  .hp-game-list__recent {
    width: 100%;
  }
}
.hp-game-list__upcoming h3,
.hp-game-list__recent h3 {
  border-left: 5px solid white;
  padding-left: 15px;
  line-height: 22px;
}
.hp-game-list__upcoming {
  background: url("../img/icons/homepage/upcoming-game.png") no-repeat center;
  background-size: cover;
}
.hp-game-list__game {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 32px;
  padding-right: 32px;
  color: white;
  float: left;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 720px) {
  .hp-game-list__game {
    padding: 10px 0;
  }
}
.hp-game-list__game__team,
.hp-game-list__game__main-info {
  float: left;
}
.hp-game-list__game img {
  display: block;
}
.hp-game-list__game__team {
  width: 25%;
  font-size: 14px;
  text-transform: none;
  text-align: center;
}
.hp-game-list__game__main-info {
  width: 50%;
}
.hp-game-list__game__team img {
  margin: 0 auto;
  margin-bottom: 10px;
  max-width: 100%;
  padding-left: 15%;
  padding-right: 15%;
}
.hp-game-list__game__main-info {
  padding-left: 8px;
  padding-right: 8px;
}
.hp-game-list__game__main-info__team-names {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  width: 100%;
  float: left;
  color: white;
  text-align: center;
}
.hp-game-list__game__main-info__main,
.hp-game-list__game__main-info__minor {
  float: left;
  width: 100%;
  text-align: center;
}
.hp-game-list__game__main-info__main {
  margin-top: 8px;
  color: white;
  font-size: 35px;
  font-weight: bold;
}
.hp-game-list__game__main-info__main:hover {
  text-decoration: underline;
}
.hp-game-list__game__main-info__minor {
  font-size: 16px;
  color: white;
  font-weight: bold;
}
.hp-game-list__game__main-info__minor__time {
  font-size: 35px;
  line-height: 40px;
}
.hp-game-list__game__minor-info {
  float: left;
  text-align: center;
  width: 100%;
}
.hp-game-list__game__minor-info .button {
  margin-top: 16px;
}
.hp-banner-list {
  float: left;
  width: 100%;
  border-bottom: 5px solid #ac001e;
}
.hp-banner-list__banner {
  background: black;
  float: left;
  width: 25%;
  display: block;
  position: relative;
}
.hp-banner-list__banner__overlay {
  position: absolute;
  top: 50%;
  bottom: 0;
  margin-top: -25px;
  width: 100%;
  text-align: center;
}
.hp-banner-list__banner__overlay h3 {
  margin-bottom: 10px;
  padding-bottom: 0;
  line-height: 20px;
}
.hp-banner-list__banner__overlay p {
  margin-top: 0;
  text-transform: uppercase;
  padding-top: 0;
  color: #d6d6d6;
  font-family: factoria;
  font-size: 14px;
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (min-width: 961px) and (max-width: 1095px) {
  .hp-banner-list__banner {
    width: 50%;
  }
}
@media only screen and (max-width: 720px) {
  .hp-banner-list__banner {
    width: 100%;
  }
  .hp-banner-list__banner h3 {
    font-size: 25px;
    text-shadow: 0 0 10px black;
  }
  .hp-banner-list__banner p {
    font-size: 16px;
    text-shadow: 0 0 10px black;
  }
}
.hp-banner-list__banner img {
  width: 100%;
  opacity: 0.5;
}
.hp-banner-list__banner:hover img {
  opacity: 1;
}
.hp-article-list {
  float: left;
  position: relative;
  width: 100%;
  border-right: 0;
  display: flex;
  flex-wrap: wrap;
  background: black;
}
@media only screen and (max-width: 720px) {
  .hp-article-list {
    border: 0;
    border-bottom: 0;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-article-list {
    border-bottom: 0;
  }
}
.hp-article-list__article {
  position: relative;
  float: left;
  overflow: hidden;
  padding-bottom: 20%;
  height: 0;
}
@media only screen and (max-width: 720px) {
  .hp-article-list__article {
    width: 100%;
    height: 200px;
  }
  .hp-article-list__article
    .hp-article-list__article__overlay__bottom__heading {
    font-size: 160%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-article-list__article {
    width: 33.33333333%;
  }
  .hp-article-list__article
    .hp-article-list__article__overlay__bottom__heading {
    font-size: 120%;
  }
}
@media only screen and (min-width: 961px) {
  .hp-article-list__article {
    width: 33.33333333%;
  }
  .hp-article-list__article
    .hp-article-list__article__overlay__bottom__heading {
    font-size: 160%;
  }
}
.hp-article-list__article:hover {
  cursor: pointer;
}
.hp-article-list__article:hover img {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  transition: 0.5s all;
  -webkit-filter: contrast(120%);
  filter: contrast(120%);
}
@media only screen and (max-width: 720px) {
  .hp-article-list__article:hover img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    transition: 0.5 all;
  }
}
.hp-article-list__article:hover
  .hp-article-list__article__overlay__bottom__heading
  a {
  text-decoration: underline;
}
.hp-article-list__article:hover
  .hp-article-list__article__overlay__bottom__heading {
  text-decoration: underline;
}
.hp-article-list__article img {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  width: 100%;
  margin: 0 auto;
  -webkit-filter: contrast(120%);
  filter: contrast(120%);
  transition: 0.5s all;
}
.hp-article-list__article__overlay {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+50,252525+100&0+0,0.05+50,0.05+50,0.5+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(37, 37, 37, 0.5) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(37, 37, 37, 0.5) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(37, 37, 37, 0.5) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80252525', GradientType=0);
  /* IE6-9 */
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  color: white;
}
.hp-article-list__article__overlay__bottom {
  position: absolute;
  bottom: 0;
  padding: 5%;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.05+10,0.6+50,0.9+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 10%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 10%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 10%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e6000000', GradientType=0);
  /* IE6-9 */
}
.hp-article-list__article__overlay__bottom__date {
  background: #ac001e;
  float: left;
  font-weight: bold;
  font-size: 13px;
  padding: 1.5% 2%;
  text-transform: uppercase;
}
.hp-article-list__article__overlay__bottom__heading {
  float: left;
  width: 100%;
  color: white;
  text-transform: none;
  margin-bottom: 0;
  margin-top: 10px;
}
.hp-article-list__article__overlay__bottom__heading a {
  color: inherit;
}
.no-flexbox .hp-article-list {
  border: 1px solid #dddddd;
}
.no-flexbox .hp-article-list .hp-article-list__article {
  float: left;
  border: 0;
}
@media only screen and (min-width: 961px) {
  .no-flexbox .hp-article-list .hp-article-list__article {
    width: 25%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .no-flexbox .hp-article-list .hp-article-list__article {
    width: 50%;
  }
}
@media only screen and (max-width: 720px) {
  .no-flexbox .hp-article-list .hp-article-list__article {
    width: 100%;
  }
}
.hp-partner-list {
  float: left;
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.hp-partner-list h3 {
  font-size: 16px;
}
.hp-partner-list__general {
  float: left;
  width: 60%;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-partner-list__general {
    width: 100%;
  }
}
.hp-partner-list__general img {
  max-width: 100%;
  width: 60%;
  float: left;
}
.hp-partner-list__minor {
  /*float: left;
  width: 40%;*/
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-partner-list__minor {
    display: none;
  }
}
.hp-partner-list__minor__partner {
  max-height: 45px;
  max-width: 90%;
  margin: 0 auto;
}
.hp-partner-list__minor__partner-list {
  width: 100%;
  float: left;
}
.hp-partner-list__minor img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  max-height: 50px;
}
.hp-partner-list__row {
  width: 100%;
  float: left;
  margin-bottom: 16px;
  margin-left: 32px;
  margin-right: 32px;
}
.hp-partner-list__row:first-child {
  margin-top: 24px;
}
.hp-partner-list__row:last-child {
  margin-bottom: 24px;
}
.hp-partner-list h3 {
  color: #ac001e;
  margin-bottom: 10px;
}
.hp-partner-list:hover img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.hp-partner-list img {
  transition: 0.25s filter, 0.25s -webkit-filter;
  max-width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.hp-partner-list__minor img,
.hp-partner-list__main img {
  max-height: 45px;
  max-width: 90%;
  margin: 0 auto;
}
.hp-partner-list__main__partner {
  width: 11.111111111%;
  float: left;
}
@media only screen and (max-width: 720px) {
  .hp-partner-list {
    border: 0;
    display: none;
  }
}
.hp-partner-list__partner {
  margin: 0 auto;
  width: 11.11111111%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 720px) {
  .hp-partner-list__partner {
    width: 33.33333333%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-partner-list__partner {
    width: 16.66666667%;
  }
}
.hp-partner-list__partner:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.hp-partner-list__partner img {
  transition: 0.25s filter, 0.25s -webkit-filter;
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.news-item {
  padding-bottom: 16px;
  float: left;
  width: 100%;
  line-height: 1.5;
}
.news-item__date {
  float: left;
  width: 100px;
  font-family: factoria;
  font-size: 30px;
  color: #c8c8c8;
  margin-top: -2px;
}
.news-item__content {
  float: left;
  width: calc(100% - 110px);
}
.news-item__content h3 {
  color: #c8c8c8;
}
.no-flexbox .hp-partner-list .hp-partner-list__partner {
  float: left;
}
@media only screen and (min-width: 961px) {
  .no-flexbox .hp-partner-list .hp-partner-list__partner {
    width: 11.11111111%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .no-flexbox .hp-partner-list .hp-partner-list__partner {
    width: 16.66666667%;
  }
}
@media only screen and (max-width: 720px) {
  .no-flexbox .hp-partner-list .hp-partner-list__partner {
    width: 33.33333333%;
  }
}
.hp-box-container {
  float: left;
  position: relative;
  width: 100%;
  border-right: 0;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
}
.hp-box-container__inner {
  float: left;
  width: 100%;
}
.hp-box-container .button {
  float: right;
}
.hp-box-container > div {
  padding: 40px;
  padding-left: 24px;
  padding-right: 24px;
  overflow: auto;
  width: 33.33333333%;
  float: left;
  padding-bottom: 5000px;
  margin-bottom: -5000px;
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-box-container > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.hp-box-container > div .hp-box-container__inner {
  /* padding-bottom: 40px; */
}
.hp-box-container > div h2 {
  color: #ac001e;
  border-left: 5px solid #ac001e;
  padding-left: 15px;
  line-height: 28px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (min-width: 961px) and (max-width: 1095px) {
  .hp-box-container > div {
    width: 50%;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .hp-box-container > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-box-container > div.fb {
    display: none;
  }
}
@media only screen and (max-width: 720px) {
  .hp-box-container > div {
    width: 50%;
  }
  .hp-box-container > div.news {
    order: 1;
    -webkit-order: 1;
  }
  .hp-box-container > div.standings {
    order: 2;
    -webkit-order: 2;
  }
  .hp-box-container > div.fb {
    order: 4;
    -webkit-order: 4;
  }
}
@media only screen and (max-width: 720px) {
  .hp-box-container > div {
    width: 100%;
    padding-left: 6%;
    padding-right: 6%;
  }
}
.hp-box-container > div table {
  margin: 0;
}
.hp-box-container > div table .player-image {
  float: left;
  border: 1px solid #ac001e;
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
}
.hp-box-container > div table .player-image img {
  width: 100%;
}
.hp-box-container > div table a:hover {
  color: black;
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-box-container > div:last-child {
    background: white;
    width: 50%;
  }
}
.hp-box-container > div h2 {
  margin-top: 0;
  text-transform: uppercase;
}
.hp-box-container-2 {
  float: left;
  position: relative;
  width: 100%;
  border-right: 0;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  background-color: black;
}
.hp-box-container-2__inner {
  float: left;
  width: 100%;
}
.hp-box-container-2 .button {
  float: right;
}
.hp-box-container-2 > div {
  padding: 40px;
  padding-left: 24px;
  padding-right: 24px;
  width: 33.33333333%;
  float: left;
  padding-bottom: 5000px;
  margin-bottom: -5000px;
}
.hp-box-container-2 > div .hp-box-container__inner {
  padding-bottom: 40px;
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-box-container-2 > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .hp-box-container-2 > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.hp-box-container-2 > div h2 {
  color: #ac001e;
  border-left: 5px solid #ac001e;
  padding-left: 15px;
  line-height: 28px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 720px) {
  .hp-box-container-2 > div.twitter {
    order: 1;
    -webkit-order: 1;
  }
  .hp-box-container-2 > div.partner-clubs {
    order: 2;
    -webkit-order: 2;
  }
}
@media only screen and (max-width: 720px) {
  .hp-box-container-2 > div {
    width: 100%;
    padding-left: 6%;
    padding-right: 6%;
  }
}
.hp-box-container-2 > div table {
  margin: 0;
}
.hp-box-container-2 > div table .player-image {
  float: left;
  border: 1px solid #ac001e;
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
}
.hp-box-container-2 > div table .player-image img {
  width: 100%;
}
.hp-box-container-2 > div table a:hover {
  color: black;
}
@media only screen and (max-width: 720px) {
  .hp-box-container-2 > div:first-child {
    width: 100%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-box-container-2 > div:first-child {
    width: 50%;
  }
}
.hp-box-container-2 > div:last-child {
  width: 66.66666667%;
}
@media only screen and (max-width: 720px) {
  .hp-box-container-2 > div:last-child {
    width: 100%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-box-container-2 > div:last-child {
    width: 50%;
  }
}
.hp-box-container-2 > div h2 {
  margin-top: 0;
  text-transform: uppercase;
}
.partner-clubs__club {
  padding: 5px;
  float: left;
  width: 33.33333333%;
  padding-bottom: 24px;
}
.partner-clubs__club img {
  margin: 0 auto;
  max-width: 57px;
  width: 100%;
}
.hp-player-stats-list {
  float: left;
}
@media only screen and (max-width: 720px) {
  .hp-player-stats-list {
    display: none;
  }
}
.hp-player-stats-list__stats {
  margin-bottom: 40px;
  text-transform: uppercase;
  width: 33.33333333%;
  position: relative;
  float: left;
  font-weight: bold;
}
.hp-player-stats-list__stats img {
  float: left;
}
.hp-player-stats-list__stats__info {
  float: left;
  background: red;
}
.hp-player-stats-list__stats__grey-out {
  color: #a0a0a0;
}
.hp-player-stats-list__stats__player-photo {
  border-radius: 9999999999999px;
  width: 50px;
  border: 1px solid #ac001e;
}
.hp-player-stats-list__stats td {
  padding: 8px;
}
.hp-player-stats-list__stats td a {
  color: inherit;
}
.hp-player-stats-list > a {
  margin-top: 16px;
  margin-bottom: 40px;
  float: right;
  text-transform: uppercase;
  display: block;
  font-weight: bold;
}
.hp-standings {
  float: left;
}
@media only screen and (max-width: 720px) {
  .hp-standings {
    display: none;
  }
}
.hp-standings__table {
  width: 100%;
}
.hp-standings__table th {
  text-transform: uppercase;
  text-align: left;
}
.hp-standings__table td {
  padding-top: 8px;
  padding-bottom: 8px;
}
.hp-standings > a {
  margin-top: 16px;
  margin-bottom: 40px;
  float: right;
  text-transform: uppercase;
  display: block;
  font-weight: bold;
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .news {
    width: 100% !important;
  }
  .news-item {
    width: 50%;
  }
}
@media only screen and (max-width: 720px) {
  .hp-news {
    display: none;
  }
}
.hp-news__new {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .hp-news__new {
    padding-left: 8px;
    padding-right: 8px;
    width: 50%;
    float: left;
  }
}
.hp-news__new__date {
  color: #ac001e;
  font-weight: bold;
  font-size: 12px;
}
.hp-news__new__heading {
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 16px;
}
.hp-news__new__content {
  margin: 0;
}
.hp-news__new:last-child {
  margin-bottom: 40px;
}
.hp-news > a {
  margin-top: 16px;
  margin-bottom: 40px;
  float: right;
  text-transform: uppercase;
  display: block;
  font-weight: bold;
}
.image_box {
  padding: 10px;
  display: block;
  float: left;
  margin: 10px;
}
.image_box.toright {
  float: right;
}
.info-bubble {
  float: left;
}
.info-bubble .number-bubble {
  font-family: factoria;
  font-weight: bold;
  font-size: 72px;
  color: #ac001e;
  float: left;
  min-height: 120px;
  line-height: 1.3;
  padding: 0 12px 0 20px;
}
.info-bubble .content {
  font-family: factoria;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  color: #ac001e;
  float: left;
  background-color: #fff;
  box-shadow: inset 4px 0 0 0 #ac001e;
  min-height: 120px;
  width: 264px;
  padding: 8px 24px 16px 28px;
}

.quote {
  padding-left: 10px;
  max-width: 600px;
}
.quote .quote-symbol {
  padding-right: 10px;
  float: left;
  font-family: factoria;
  font-weight: bold;
  font-size: 120px;
  line-height: 0.9;
  color: #ac001e;
  height: 70px;
}
.quote .quote-text {
  font-family: factoria;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #ac001e;
}
.quote .quote-author {
  float: right;
  font-family: factoria;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #0f0f10;
  text-transform: uppercase;
}

.anotace img {
  max-width: 200px !important;
  padding-left: 16px;
  padding-right: 16px;
}
.author {
  background: #dddddd;
  padding: 8px;
}
table.sort th {
  cursor: pointer;
}
table.sort th.tablesorter-headerUnSorted[aria-disabled="false"] {
  background: url("../img/icons/sortableTable/bg.gif") no-repeat;
  background-position: 100% 12px;
}
table.sort th.tablesorter-headerAsc {
  background: url("../img/icons/sortableTable/asc.gif") no-repeat;
  background-position: 100% 15px;
}
table.sort th.tablesorter-headerDesc {
  background: url("../img/icons/sortableTable/desc.gif") no-repeat;
  background-position: 100% 15px;
}
.player-list {
  float: left;
  width: 100%;
}
.player-card {
  margin-bottom: 40px;
  padding: 0 5px;
  float: left;
  width: 50%;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .player-card {
    width: 100%;
  }
}
.player-card:hover .player-card__data__name {
  text-decoration: underline;
  color: #ac001e !important;
}
.player-card:hover .player-card__photo__number {
  width: 100%;
  height: 100%;
  font-size: 50px;
  padding-top: 13px;
  background: rgba(172, 0, 30, 0.6);
}
.player-card:hover .player-card__photo__number.-no-photo {
  background: #ac001e;
}
.player-card:hover .player-card__photo__number.-no-number {
  width: 0;
  height: 0;
}
.player-card:hover .player-card__photo__number.-no-photo.-no-number {
  width: 100%;
  height: 100%;
}
.player-card__photo {
  border-radius: 50%;
  float: left;
  width: 100px;
  height: 100px;
  position: relative;
  margin-right: 20px;
}
.player-card__photo__number {
  position: absolute;
  background: #c54d62;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: 0.2s all;
}
.player-card__photo__number.-no-photo {
  width: 100%;
  height: 100%;
  font-size: 50px;
  padding-top: 13px;
  background: rgba(172, 0, 30, 0.7);
}
.player-card__photo__number.-no-number {
  width: 0;
  height: 0;
}
.player-card__photo__number.-no-photo.-no-number {
  width: 100%;
  height: 100%;
}
.player-card__data {
  margin-top: 25px;
  float: left;
}
.player-card__data div {
  float: left;
  padding-right: 5px;
  color: #2e2e2f;
  font-size: 15px;
}
.player-card__data__name {
  float: none !important;
  color: rgba(172, 0, 30, 0.7) !important;
  font-size: 18px !important;
}
.player-card__data__birth {
  display: none;
}
.table-player-card__photo {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  float: left;
  position: relative;
}
.table-player-card__photo__number {
  position: absolute;
  background: #55b17c;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: 0.2s all;
}
.table-player-card__photo__number.-no-photo {
  width: 100%;
  height: 100%;
  font-size: 50px;
  padding-top: 13px;
  background: rgba(172, 0, 30, 0.7);
}
.value {
  display: inline-block;
  line-height: 1;
  padding: 6px 9px;
  border-radius: 6px 3px;
  color: white;
  font-weight: bold;
  font-family: league-spartan;
  font-size: 16px;
}
.value a {
  border-bottom: 0;
}
.value:hover {
  text-decoration: underline;
}
.value.winner {
  background: #43a047;
}
.value.loser {
  background: #ac001e;
}
.value.draw {
  background: #252525;
}
.fullWidth {
  width: 100%;
}
a.vyhra {
  color: #43a047;
  font-weight: bold;
}
a.prohra {
  color: #ac001e;
  font-weight: bold;
}
.del {
  text-align: center;
}
#nextButton,
#prevButton {
  display: none;
}
.menicko {
  padding: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  float: left;
  width: 100%;
  background: #efe6e6;
}
table.stats {
  width: 99.5%;
}
.main-content {
  padding-top: 64px;
  padding-bottom: 64px;
  padding-right: 64px;
  padding-left: 110px;
  float: left;
  width: 100%;
  background: white;
}
.main-content-hrac {
  padding: 0;
  float: left;
  width: 100%;
  background: white;
}
.main-content.-hp {
  padding: 0;
}
.main-content.-topimg {
}
.main-content.-has-side-content {
  width: 70%;
}
.main-content-hrac.-has-side-content {
  width: 70%;
}

.main-content.-topimg img {
}

.subbio_container {
  padding: 64px;
}

.player_main-content {
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-top: 0 !important;
}

@media only screen and (max-width: 720px) {
  .main-content.-has-side-content {
    width: 100%;
    padding-top: 0;
    padding-left: 32px;
    padding-right: 32px;
  }

  .subbio_container {
    padding: 32px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .main-content.-has-side-content {
    padding-left: 20px;
    padding-right: 32px;
    width: 60%;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .main-content.-has-side-content {
    padding-right: 40px;
    padding-left: 30px;
    width: 65%;
  }
}
.main-content.-is-article {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.main-content > *:first-child {
  margin-top: 0;
}
.main-content > *:last-child {
  margin-bottom: 0;
}
.side-content {
  padding-top: 24px;
  padding-left: 16px;
  padding-right: 16px;
  float: left;
  width: 30%;
}
@media only screen and (max-width: 720px) {
  .side-content {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .side-content {
    width: 40%;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .side-content {
    width: 35%;
    padding-right: 30px;
  }
}
.side-content > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
.side-content > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.side-content .boxRightPane {
  margin-bottom: 40px;
}
.side-content .boxRightPane h2 {
  color: #c8c8c8;
  border-left: 5px solid #c8c8c8;
  padding-left: 15px;
}
.side-content .boxRightPane:first-child h2 {
  margin-top: 0;
}
.side-content .boxRightPane ul {
  list-style-type: square;
  color: #c8c8c8;
}
.side-content .boxRightPane ul li {
  font-size: 16px;
  font-family: factoria;
  text-transform: uppercase;
  margin: 15px 0;
}
.side-content .boxRightPane ul li a {
  color: #c8c8c8;
}
.side-content .boxRightPane table {
  margin: 0;
  margin-bottom: 16px;
}
.side-content .boxRightPane .youtube {
  float: left;
  position: relative;
  height: 190px;
  width: 100%;
  overflow: hidden;
  display: none;
  margin-bottom: 24px;
  margin-right: 2.5%;
}
.side-content .boxRightPane .youtube .title {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  padding: 40px 30px 25px 30px;
  font-size: 14px;
  line-height: 150%;
  font-family: factoria;
  font-weight: bold;
  color: white;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+30,000000+100&0+0,0.6+30,0.9+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e6000000', GradientType=0);
  /* IE6-9 */
  display: none;
  transition: background 0.3s;
}
.side-content .boxRightPane .youtube img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  position: absolute;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  margin: auto;
  width: 120%;
  background: black;
  transition: all 0.3s;
}
.side-content .boxRightPane .youtube:hover .title {
  transition: background 0.3s;
}
.side-content .boxRightPane .youtube:hover img {
  transform: scale(1.2);
}
.side-content a {
  text-transform: uppercase;
  font-weight: bold;
}

.article__header {
  display: table;
}
.article__header *:last-child {
  margin-bottom: 0;
}
.article__header__title {
  margin-bottom: 16px;
  float: left;
  margin-top: 0;
}
@media only screen and (max-width: 720px) {
  .article__header__title {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.article__header__title.-sub-page {
  margin-bottom: 24px;
}
@media only screen and (max-width: 720px) {
  .article__header__title.-sub-page {
    margin-top: 32px;
  }
}
.article__header__info {
  margin-bottom: 24px;
  float: left;
  color: #a0a0a0;
  letter-spacing: 1px;
}
.article__header__image {
  width: 100%;
}
.article__header__image img {
  float: left;
  width: 100%;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__header .article__header__title {
    display: table-row-group;
  }
  .article__header .article__header__info {
    display: table-footer-group;
  }
  .article__header .article__header__image {
    display: table-header-group;
  }
}
.article__header.-is-article {
  position: relative;
  width: 100%;
}
.article__header.-is-article *:last-child {
  margin-bottom: 0;
}
.article__header.-is-article .article__header__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,000000+100&0+0,0+0,1+100 */
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    #000000 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    #000000 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #000000 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__header.-is-article .article__header__overlay {
    position: relative;
  }
}
.article__header.-is-article .article__header__title {
  margin-bottom: 64px;
  float: left;
  margin-top: 0;
  position: absolute;
  bottom: 0px;
  color: white;
  text-transform: none;
  padding-left: 48px;
  padding-right: 48px;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__header.-is-article .article__header__title {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__header.-is-article .article__header__title {
    position: relative;
    color: black;
    padding-top: 24px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .article__header.-is-article .article__header__title {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.article__header.-is-article .article__header__title.-sub-page {
  margin-bottom: 24px;
}
@media only screen and (max-width: 720px) {
  .article__header.-is-article .article__header__title.-sub-page {
    margin-top: 32px;
  }
}
.article__header.-is-article .article__header__info {
  margin-bottom: 32px;
  /* padding-left: 48px;
  padding-right: 48px; */
  position: absolute;
  bottom: 0px;
  float: left;
  color: #a0a0a0;
  letter-spacing: 1px;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__header.-is-article .article__header__info {
    /* padding-left: 24px;
    padding-right: 24px; */
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .article__header.-is-article .article__header__info {
    /* padding-left: 32px;
    padding-right: 32px; */
  }
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__header.-is-article .article__header__info {
    position: relative;
    margin-bottom: 0;
  }
}
.article__header.-is-article .article__header__image {
  width: 100%;
}
.article__header.-is-article .article__header__image img {
  float: left;
  width: 100%;
}
@media only screen and (max-width: 720px) {
  .article__header.-is-article .article__header__title {
    display: table-row-group;
  }
  .article__header.-is-article .article__header__info {
    display: table-footer-group;
  }
  .article__header.-is-article .article__header__image {
    display: table-header-group;
  }
}
.article__perex {
  /* padding-bottom: 40px; */
  padding-left: 80px;
  padding-right: 80px;
  font-size: 16px;
  line-height: 1.5em;
  /* border-bottom: 1px solid #DDDDDD; */
}
@media only screen and (min-width: 961px) {
  .article__perex {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 961px) {
  .article__perex {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .article__perex {
    padding-right: 40px;
    padding-left: 32px;
  }
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__perex {
    padding-left: 24px;
    padding-right: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.article__main-content {
  font-size: 16px;
  line-height: 1.5;
  float: left;
  width: 100%;
}
.article__main-content * {
  max-width: 100%;
}
.article__main-content.-is-article {
  /* padding-top: 40px; */
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 720px) {
  .article__main-content.-is-article {
    padding-left: 24px;
    padding-right: 32px;
    padding-top: 24px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .article__main-content.-is-article {
    padding-left: 24px;
    padding-right: 32px;
    padding-top: 24px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .article__main-content.-is-article {
    padding-right: 40px;
    padding-left: 32px;
  }
}
.article__main-content.-sub-page table {
  width: 100% !important;
  float: left;
}
.article__main-content > *:first-child {
  margin-top: 0;
}
.article__main-content > *:first-child > *:first-child {
  margin-top: 0;
}
.article__main-content img {
  margin-top: 8px;
  margin-bottom: 8px;
  max-width: 100%;
  float: left;
}
.article__main-content ul {
  float: left;
  width: 100%;
}
.article__main-content h1,
.article__main-content h2,
.article__main-content h3,
.article__main-content h4,
.article__main-content h5,
.article__main-content h6 {
  float: left;
  width: 100%;
}

.article__main-content__game-info {
  display: table;
  width: 100%;
  float: left;
  background: white;
  padding-top: 24px;
  padding-bottom: 24px;
  color: black;
}
.article__main-content__game-info__round {
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.article__main-content__game-info > div {
  float: left;
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (max-width: 720px) {
  .article__main-content__game-info > div {
    width: 33.33333333%;
  }
}
.article__main-content__game-info__score {
  text-align: center;
  width: 20%;
}
.article__main-content__game-info__team-name {
  color: #ac001e;
  font-weight: bold;
  width: 25%;
}
@media only screen and (max-width: 720px) {
  .article__main-content__game-info__team-name span {
    display: none;
  }
}
.article__main-content__game-info__team-name h3 {
  color: black;
  margin: 0;
  padding: 0;
  font-size: 24px;
}
@media only screen and (min-width: 1096px) and (max-width: 1230px) {
  .article__main-content__game-info__team-name h3 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .article__main-content__game-info__team-name h3 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (max-width: 720px) {
  .article__main-content__game-info__team-name h3 {
    font-size: 16px;
  }
}
.article__main-content__game-info__team-logo {
  width: 15%;
  padding-left: 8px;
  padding-right: 8px;
}
.article__main-content__game-info__team-logo img {
  margin: 0 auto;
  display: block;
  float: none;
  max-width: 100%;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__main-content__game-info__team-logo img {
    display: none;
  }
}
.article__main-content__game-info__score {
  color: #ac001e;
  font-weight: bold;
}
.article__main-content__game-info__score h2 {
  font-size: 40px;
  margin: 0;
  padding: 0;
  color: black;
}
@media only screen and (min-width: 1096px) and (max-width: 1230px) {
  .article__main-content__game-info__score h2 {
    font-size: 25px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .article__main-content__game-info__score h2 {
    font-size: 25px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (max-width: 720px) {
  .article__main-content__game-info__score h2 {
    font-size: 25px;
  }
}
.article__main-content__game-info__stats {
  float: left;
  width: 100%;
}
.article__main-content__game-info__stats__stats {
  padding-top: 16px;
  padding-bottom: 16px;
  float: left;
  width: 100%;
}
.article__main-content__game-info__stats__roster {
  width: 50%;
  float: left;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 0;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__main-content__game-info__stats__roster {
    width: 100%;
  }
}
@media only screen and (max-width: 720px) {
  .article__main-content__game-info__stats__roster {
    border: 0;
  }
}
.article__main-content__game-info__stats__roster:not(:last-child) {
  padding-right: 24px;
}
@media only screen and (max-width: 720px) {
  .article__main-content__game-info__stats__roster:not(:last-child) {
    border-bottom: 1px solid #dddddd;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (min-width: 961px) {
  .article__main-content__game-info__stats__roster:last-child {
    border: 0;
  }
}
.article__main-content__game-info__stats__roster h3 {
  color: #ac001e;
}
.article__main-content #article_photo {
  float: left;
  width: 100%;
}

.article__main-content.-is-article h2 {
  border-bottom: dashed 1px #d9d9d9;
}

.article__main-content .search iframe {
  border: 0;
  width: 100%;
}
.article__main-content .article_photo_item {
  margin: 8px;
  width: 134px;
  height: 98px;
  float: left;
}
.article__main-content .article_photo_item a {
  display: block;
  width: 100%;
  height: 98px;
  float: left;
}
.article__main-content .archive-youtube {
  float: left;
  width: 100%;
  min-height: 290px;
}
.article__main-content .archive-youtube__videos {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  margin-top: 15px;
}
.article__main-content .archive-youtube__video {
  float: left;
  position: relative;
  height: 190px;
  width: 48.75%;
  overflow: hidden;
  display: none;
  margin-bottom: 2.5%;
  margin-right: 2.5%;
}
.article__main-content .archive-youtube__video:nth-child(even) {
  margin-right: 0;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .article__main-content .archive-youtube__video {
    width: 100%;
    margin: 2.5% 0;
  }
}
.article__main-content .archive-youtube__video__title {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  padding: 40px 30px 25px 30px;
  font-size: 14px;
  line-height: 150%;
  font-family: factoria;
  font-weight: bold;
  color: white;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+30,000000+100&0+0,0.6+30,0.9+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e6000000', GradientType=0);
  /* IE6-9 */
  display: none;
  transition: background 0.3s;
}
.article__main-content .archive-youtube__video img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  position: absolute;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  margin: auto;
  width: 120%;
  background: black;
  transition: all 0.3s;
}
.article__main-content .archive-youtube__video img:hover {
  position: absolute;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  margin: auto;
  width: 150%;
  transition: all 0.3s;
}
.article__main-content .archive-youtube__video:hover img {
  transform: scale(1.2);
}
.article__main-content .photogallery__items {
  float: left;
  width: calc(100% + 10px);
  margin-left: -5px;
  display: flex;
  flex-flow: row wrap;
}
.article__main-content .photogallery__items__item {
  display: block;
  overflow: hidden;
  padding: 5px;
  width: 33.33333333%;
  position: relative;
  float: left;
}
@media only screen and (min-width: 721px) and (max-width: 960px) {
  .article__main-content .photogallery__items__item {
    width: 50%;
  }
}
@media only screen and (max-width: 720px) {
  .article__main-content .photogallery__items__item {
    width: 100%;
  }
}
.article__main-content .photogallery__items__item img {
  display: block;
  float: none;
  width: 100%;
  margin: 0 auto;
  max-width: none;
}
.article__main-content
  .photogallery__items__item:hover
  .photogallery__items__item__image__overlay {
  background: rgba(0, 0, 0, 0.5);
}
.article__main-content
  .photogallery__items__item:hover
  .photogallery__items__item__image__overlay
  img {
  opacity: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
.article__main-content .photogallery__items__item__image {
  float: left;
  width: 100%;
  position: relative;
}
.article__main-content .photogallery__items__item__image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.5s background;
}
.article__main-content .photogallery__items__item__image__overlay img {
  position: absolute;
  opacity: 0;
  width: 36px;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
.article__main-content.archive .archiv {
  margin: 0;
  padding: 0;
}
.article__main-content.archive .archiv td {
  padding: 10px;
  vertical-align: top;
}
.article__main-content.archive h2 {
  margin-bottom: 15px !important;
  float: left;
  width: 100%;
}
.article__main-content.archive .nadpis {
  font-weight: bold;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  font-family: factoria;
  font-size: 20px;
}
.article__main-content.archive .podpis {
  font-weight: bold;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}
.article__main-content.archive .datum {
  font-size: 20px;
}
.article__main-content.archive #box {
  margin-bottom: 0;
  float: left;
  width: 100%;
}
.article__main-content.archive #box2 {
  margin-bottom: 0px;
  float: left;
  width: 100%;
}
.article__main-content.archive #box2 form {
  margin: 0;
  margin-top: 30px;
}
.article__main-content.archive .row {
  margin: 5px 0;
  float: left;
  width: 100%;
}
.article__main-content.archive .row .button {
  margin: 3px;
}
.article__main-content.archive form {
  width: 100%;
  float: left;
}
.article__main-content.archive #archiv .datum {
  font-weight: bold;
}
.article__main-content.archive #archiv .podpis {
  width: 100%;
  display: block;
  float: left;
}
.article__main-content #smiles {
  width: 100%;
  float: left;
}
.article__main-content #smiles a {
  float: left;
  display: inline-block;
}
.article__main-content #offline .comment_head {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-radius: 3px;
  font-family: roboto;
  background: #ac001e;
  color: white;
  float: left;
  width: 100%;
}
.article__main-content #offline .comment_head .minor {
  font-size: 14px;
}
.article__main-content #offline .comment_head strong {
  font-family: factoria;
  font-size: 20px;
  padding-right: 10px;
}
.article__main-content #offline .comment_head a {
  color: inherit;
}
.article__main-content #offline .comment_head .toleft {
  float: left;
}
.article__main-content #offline .comment_head .toright {
  float: right;
}
.article__main-content #offline .comment {
  padding: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-radius: 3px;
  border: 1px solid #ac001e;
}
.article__main-content #forum .prispevek_nadpis {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 16px;
  font-family: factoria;
  font-size: 16px;
  line-height: 30px;
  border-radius: 3px 3px 0 0;
  background: #ac001e;
  color: white;
}
.article__main-content #forum .prispevek_nadpis:after {
  content: " ";
  clear: both;
  display: table;
}
.article__main-content #forum .prispevek_nadpis strong {
  font-family: factoria;
  font-size: 20px;
  padding-right: 10px;
  line-height: 30px;
}
.article__main-content #forum .prispevek_nadpis .minor {
  font-size: 14px;
  font-family: roboto;
}
.article__main-content #forum .prispevek_nadpis a {
  color: inherit;
}
.article__main-content #forum .prispevek_nadpis .toleft {
  float: left;
}
.article__main-content #forum .prispevek_nadpis .toright {
  float: right;
}
.article__main-content #forum .prispevek {
  padding: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-radius: 0 0 3px 3px;
  border: 1px solid #ac001e;
  border-top: 0;
}
.article__main-content #forum .prispevek:after {
  content: " ";
  clear: both;
  display: table;
}
.article__main-content #forum .prispevek img {
  display: inline-block;
  margin: 0 1px;
}
.article__main-content #bio {
  background: #ac001e;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 2rem 3rem;
}
.article__main-content #bio .item {
  color: white;
  float: left;
  position: relative;
  width: 16.66666667%;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  font-family: factoria;
}

.article__main-content #bio .item .item_span {
  color: #bbbbbb;
  font-size: 0.9rem;
}
@media only screen and (max-width: 720px) {
  .article__main-content #bio .item {
    width: 50%;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (min-width: 961px) and (max-width: 1095px),
  only screen and (min-width: 1096px) and (max-width: 1230px),
  only screen and (min-width: 1231px) and (max-width: 1360px) {
  .article__main-content #bio .item {
    width: 33.33333333%;
  }
}
.article__main-content #bio .item strong {
  color: white;
  width: 100%;
  float: left;
  font-size: 13px;
}
@media only screen and (max-width: 720px) {
  .article__main-content.player_info {
    margin-top: 24px;
  }
}
.article__main-content.player_info .header {
  margin-bottom: 0;
  padding-bottom: 0;
}
.article__main-content #player_card {
  float: left;
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
}
.topimg {
  position: relative;
}
.topimg .player-header {
  background: #ac001e;
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.topimg .player-header #bio {
  float: left;
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 16px;
}
.topimg .player-header #bio .item {
  padding: 24px;
  color: white;
  float: left;
  position: relative;
  width: 16.66666667%;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  font-family: factoria;
}
@media only screen and (max-width: 720px) {
  .topimg .player-header #bio .item {
    width: 50%;
  }
  .article__main-content #bio .item {
    font-size: 1.1rem !important;
  }
  .article__main-content #bio .item .item_span {
    color: #bbbbbb;
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (min-width: 961px) and (max-width: 1095px),
  only screen and (min-width: 1096px) and (max-width: 1230px),
  only screen and (min-width: 1231px) and (max-width: 1360px) {
  .topimg .player-header #bio .item {
    width: 33.33333333%;
  }
}
.topimg .player-header #bio .item {
  color: white;
  width: 100%;
  float: left;
  font-size: 1rem;
}

.article__main-content #player_card img {
  position: relative;
  display: block;
  margin: 0 auto;
  float: none;
}
.article__main-content .strankovani {
  padding-top: 24px;
  padding-bottom: 24px;
}
.article__main-content .strankovani .nextPages {
  font-weight: bold;
  font-family: factoria;
  padding-bottom: 0px;
  display: inline-block;
  width: 100%;
}
.article__main-content .strankovani a {
  padding: 7px 10px;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: inline-block;
  background: transparent;
  border: 1px solid #ac001e;
  color: #ac001e;
  font: bold 14px roboto;
  cursor: pointer;
  text-transform: uppercase;
  margin: 2px;
  padding: 7px 15px;
}
.article__main-content .strankovani a:hover,
.article__main-content .strankovani a.-active {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-decoration: none;
  background: #ac001e;
  color: white;
}
.article__main-content .strankovani a:hover,
.article__main-content .strankovani a.-active:hover {
  background: #ac001e;
  border-color: #ac001e;
}
.article__main-content .strankovani a.-white {
  border-color: white !important;
  color: white;
}
.article__main-content .strankovani a.-white:hover {
  background: white !important;
  color: black !important;
}
.article__main-content .strankovani .strankovaniVyrazne {
  background: #ac001e;
  color: white;
}
.article__main-content .socialNetworksBottom {
  float: left;
  width: 100%;
  margin-top: 24px;
}
.article__main-content .socialNetworksBottom .fb-like {
  margin-bottom: 24px;
}
.article__main-content .socialNetworksBottom .fb-comments {
  width: 100%;
  float: left;
}
@media only screen and (max-width: 720px) {
  .article__header__title,
  .article__header__info,
  .article__perex,
  .article__main-content {
    /* padding-left: 24px;
    padding-right: 24px; */
  }
}
.header-infobar {
  padding-top: 8px;
  padding-bottom: 8px;
  background: black;
  color: #a0a0a0;
  float: left;
  width: 100%;
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (max-width: 720px) {
  .header-infobar {
    display: none;
  }
}
.header-infobar__buttons {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  float: left;
  text-align: center;
  padding-left: 130px;
  padding-right: 130px;
}
@media only screen and (min-width: 961px) and (max-width: 1095px),
  only screen and (min-width: 1096px) and (max-width: 1230px) {
  .header-infobar__buttons {
    padding-right: 10px;
  }
}
.header-infobar__buttons__center {
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 961px) and (max-width: 1095px),
  only screen and (min-width: 1096px) and (max-width: 1230px) {
  .header-infobar__buttons__center {
    text-align: left;
  }
}
.header-infobar__buttons__button {
  position: relative;
  display: inline;
  margin: 8px;
}
.header-infobar__buttons__button img {
  margin-right: 5px;
  position: relative;
  top: 3px;
  display: inline-block;
}
.header-infobar__buttons__button a {
  display: inline-block;
  color: #dddddd;
  font-size: 14px;
}
.header-infobar__buttons__button a:hover {
  color: #dddddd;
}
.social-networks-buttons {
  position: relative;
  font-size: 12px;
}
.social-networks-buttons img {
  float: left;
  position: relative;
}
.social-networks-buttons a {
  text-decoration: none;
  color: inherit;
}
.social-networks-buttons__name {
  float: left;
}
.social-networks-buttons__network {
  float: left;
  position: relative;
  line-height: 25px;
  padding-right: 10px;
  cursor: pointer;
}
.social-networks-buttons__network:hover .social-networks-buttons__name {
  text-decoration: underline;
}
.social-networks-buttons.-header-infobar {
  float: left;
}
@media only screen and (max-width: 720px) {
  .social-networks-buttons.-header-infobar {
    display: none;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (min-width: 961px) and (max-width: 1095px) {
  .social-networks-buttons.-header-infobar .social-networks-buttons__name {
    display: none;
  }
}
.social-networks-buttons.-footer-main {
  padding-top: 7.5px;
  margin-bottom: 7.5px;
  float: left;
}
@media only screen and (max-width: 720px) {
  .social-networks-buttons.-footer-main {
    padding-top: 24px;
    padding-bottom: 24px;
    margin: 0 auto;
    float: initial;
    display: table;
  }
  .social-networks-buttons.-footer-main .social-networks-buttons__name {
    display: table-cell;
  }
}
.languages-buttons {
  float: right;
}
.languages-buttons img {
  float: left;
  margin-left: 10px;
  margin-top: 2.5px;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .languages-buttons.-desktop {
    display: none;
  }
}
.languages-buttons.-phone {
  float: left;
}
.languages-buttons.-phone img {
  padding-left: 0;
  padding-right: 10px;
}
.header-main {
  background: #ac001e;
  box-shadow: 0 0 20px black;
  color: white;
  float: left;
  width: 100%;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 720px) {
  .header-main {
    height: 60px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (min-width: 961px) {
  .header-main {
    height: 60px;
  }
}
.header-main__logo {
  float: left;
  position: relative;
  z-index: 8;
}
.header-main__logo img {
  position: relative;
  left: -5px;
  height: 100px;
  top: -25px;
  outline: 0;
}
@media only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (max-width: 720px) {
  .header-main__logo img {
    top: 5px;
    height: 70px;
  }
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px),
  only screen and (min-width: 961px) and (max-width: 1095px),
  only screen and (min-width: 1096px) and (max-width: 1230px),
  only screen and (min-width: 1231px) and (max-width: 1360px) {
  .header-main__logo {
    left: 10px;
  }
}
.header-main__content {
  padding-left: 130px;
  padding-right: 10px;
  width: 100%;
}
@media only screen and (min-width: 1361px) {
  .header-main__content {
    padding-right: 52px;
  }
}
.menu-icon {
  margin-right: 8px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 5px;
  float: right;
  font: 14px factoria;
  line-height: 30px;
  cursor: pointer;
  padding: 10px;
}
.menu-icon img {
  float: left;
  margin-right: 10px;
  width: 30px;
  height: 30px;
}
@media only screen and (min-width: 961px) {
  .menu-icon {
    display: none;
  }
}
.horime-hokejem {
  position: absolute;
  top: -5px;
  right: 0;
  width: 30%;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  z-index: 9;
}
.horime-hokejem ::-moz-selection {
  background: none;
}
.horime-hokejem ::selection {
  background: none;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .horime-hokejem {
    display: none;
  }
}
.horime-hokejem img {
  width: 150px;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  margin: 0 auto;
}
@media only screen and (min-width: 961px) and (max-width: 1095px),
  only screen and (min-width: 1096px) and (max-width: 1230px),
  only screen and (min-width: 1231px) and (max-width: 1360px),
  only screen and (min-width: 1361px) {
  .horime-hokejem img {
  }
}
.general-menu.-phone {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
}
.general-menu.-phone .general-menu__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  overflow: auto;
  z-index: 99999999;
  background: #252525;
}
.general-menu.-phone .general-menu__container > ul {
  padding: 0;
  margin: 0;
  position: relative;
  float: left;
  background: #252525;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  z-index: 9;
  list-style-type: none;
  text-transform: uppercase;
}
.general-menu.-phone .general-menu__container > ul > li {
  font: 18px league-spartan;
  border-bottom: 1px solid #2e2e2f;
  cursor: pointer;
  float: left;
  width: 100%;
}
.general-menu.-phone .general-menu__container > ul > li span {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: block;
}
.general-menu.-phone .general-menu__container > ul > li a {
  color: inherit;
  text-decoration: none;
}
.general-menu.-phone .general-menu__container > ul > li.-active {
  color: #ac001e;
  background: #191919;
}
.general-menu.-phone .general-menu__container > ul > li:hover {
  color: #ac001e;
}
.general-menu.-phone .general-menu__container > ul > li ul {
  display: none;
  list-style-type: none;
  padding-left: 40px !important;
  padding-top: 0px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 16px;
}
.general-menu.-phone .general-menu__container > ul > li ul li {
  font-size: 12px;
  color: white;
  float: left;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}
.general-menu.-phone .general-menu__container > ul > li ul li a {
  color: inherit;
}
.general-menu.-phone .general-menu__container > ul > li ul li a:hover {
  text-decoration: underline;
}
.general-menu.-phone .general-menu__container > ul > li ul li:first-child {
  display: none;
}
.general-menu.-phone
  .general-menu__container
  > ul
  > li
  ul
  li
  .general-menu__column {
  float: left;
  width: 100%;
  position: relative;
}
.general-menu.-phone
  .general-menu__container
  > ul
  > li
  ul
  li
  .general-menu__column
  a {
  width: 100%;
  display: block;
  position: relative;
  padding-bottom: 16px;
}
.general-menu.-phone .general-menu__container .general-menu__append-container {
  padding: 40px;
  background: #252525;
  width: 100%;
  position: relative;
  float: left;
  z-index: 9999999999999;
}
.general-menu.-phone .general-menu__dismiss-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+66,000000+100&0.65+66,0.3+100 */
  background: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#4d000000', GradientType=1);
  /* IE6-9 */
}
.general-menu.-desktop {
  display: block;
}
.general-menu.-desktop .general-menu__container {
  float: left;
  width: 100%;
}
.general-menu.-desktop .general-menu__container > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  float: left;
  width: 100%;
  position: relative;
  margin-top: 10px;
  text-transform: uppercase;
  z-index: 7;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .general-menu.-desktop .general-menu__container > ul {
    display: none;
  }
}
.general-menu.-desktop .general-menu__container > ul > li {
  float: left;
  font-weight: bold;
  cursor: default;
  font: 18px factoria;
}
@media only screen and (min-width: 1361px) {
  .general-menu.-desktop .general-menu__container > ul > li {
    padding: 0 12px;
  }
}
@media only screen and (min-width: 1231px) and (max-width: 1360px) {
  .general-menu.-desktop .general-menu__container > ul > li {
    padding: 0 12px;
  }
}
@media only screen and (min-width: 1096px) and (max-width: 1230px) {
  .general-menu.-desktop .general-menu__container > ul > li {
    padding: 0 6px;
    font-size: 17px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1095px) {
  .general-menu.-desktop .general-menu__container > ul > li {
    padding: 0 3px;
    font-size: 15px;
  }
}
.general-menu.-desktop .general-menu__container > ul > li a {
  color: inherit;
  cursor: pointer;
}
.general-menu.-desktop .general-menu__container > ul > li span {
  border-top: 3px solid transparent;
  display: inline-block;
  line-height: 20px;
  padding-top: 7px;
  position: relative;
}
.general-menu.-desktop
  .general-menu__container
  > ul
  > li.-item-has-dropdown:after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #252525 transparent;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all;
}
.general-menu.-desktop .general-menu__container > ul > li:hover {
  color: black;
}
.general-menu.-desktop .general-menu__container > ul > li:hover ul {
  display: block;
  visibility: visible;
  transition: 0.2s opacity;
  opacity: 1;
  transition-delay: 0.2s;
  will-change: opacity;
  color: white;
}
.general-menu.-desktop .general-menu__container > ul > li:hover ul:before {
  content: "";
  width: 4000px;
  height: 20px;
  position: absolute;
  top: -20px;
  left: -2000px;
  z-index: 9;
}
.general-menu.-desktop
  .general-menu__container
  > ul
  > li:hover
  ul
  li
  .general-menu__column {
  animation-delay: 0.2s;
  will-change: auto;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.general-menu.-desktop
  .general-menu__container
  > ul
  > li:hover
  ul
  li:first-child {
  animation-delay: 0.2s;
  will-change: auto;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.general-menu.-desktop .general-menu__container > ul > li > ul {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 40px;
  padding-right: 40px;
  padding-left: 100px;
  visibility: hidden;
  list-style-type: none;
  margin-top: 18px;
  min-height: 120px;
  position: absolute;
  left: 0;
  right: 0;
  cursor: default;
  transition: 0.2s all;
  opacity: 0;
}
.general-menu.-desktop .general-menu__container > ul > li > ul:after {
  content: "";
  position: absolute;
  width: 5000px;
  left: -2500px;
  z-index: -1;
  bottom: 0;
  top: 0;
  background: #71151c;
  box-shadow: inset 0 20px 20px -20px black;
}
.general-menu.-desktop .general-menu__container > ul > li > ul > li {
  float: left;
  line-height: 30px;
  margin: 0;
  padding: 0;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.general-menu.-desktop
  .general-menu__container
  > ul
  > li
  > ul
  > li:first-child {
  position: absolute;
  left: -120px;
  top: 50px;
  font-size: 35px;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
.general-menu.-desktop
  .general-menu__container
  > ul
  > li
  > ul
  > li
  .general-menu__column {
  float: left;
  width: 33.33333333%;
  position: relative;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
.general-menu.-desktop
  .general-menu__container
  > ul
  > li
  > ul
  > li
  .general-menu__column
  a {
  width: 100%;
  display: block;
  position: relative;
  padding-left: 25px;
}
.general-menu.-desktop
  .general-menu__container
  > ul
  > li
  > ul
  > li
  .general-menu__column
  a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #ffffff;
}
.general-menu.-desktop
  .general-menu__container
  .general-menu__append-container {
  display: none;
}
.search-desktop {
  position: relative;
}
.search-desktop.-header-main {
  float: right;
  width: 20%;
  margin-top: 20px;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .search-desktop.-header-main {
    display: none;
  }
}
.search-desktop.-header-main input[type="text"] {
  background: #9d001b;
  border-radius: 5px;
}
.search-desktop.-footer-main {
  float: right;
  width: 90%;
}
@media only screen and (max-width: 720px) {
  .search-desktop.-footer-main {
    display: none;
  }
}
.search-desktop.-footer-main input[type="text"] {
  background: #2e2e2f;
  border: 2px solid transparent;
}
.search-desktop.-footer-main input[type="text"]:focus {
  border: 2px solid #ac001e;
  border-radius: 5px;
}
.search-desktop input[type="text"] {
  border: 0;
  height: 40px;
  color: white;
  padding: 5px 15px;
  width: 100%;
  font-size: 14px;
  float: left;
}
.search-desktop input[type="submit"] {
  width: 40px;
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  cursor: pointer;
  background: url("../img/search-icon.png") no-repeat center;
  background-size: 42% 42%;
  border: 0;
}
.footer-main {
  float: left;
  width: 100%;
  background: #92111d;
  border-top: 10px solid #501619;
}
.footer-main a {
  color: #dddddd;
  border-bottom: 1px dotted #dddddd;
}
.footer-main a:hover {
  text-decoration: none;
  color: white;
}
.footer-main__menu__container {
  padding-top: 32px;
  padding-bottom: 32px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #2e2e2f;
}
@media only screen and (max-width: 720px) {
  .footer-main__menu__container {
    display: none;
  }
}
.footer-main__menu__container ul {
  padding: 0;
  margin: 0;
}
.footer-main .general-container {
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (max-width: 720px) {
  .footer-main .general-container {
    padding: 0;
  }
}
.footer-main__menu {
  color: white;
  float: left;
  width: 100%;
}
.footer-main__menu ul {
  list-style-type: none;
}
.footer-main__menu ul li {
  float: left;
  text-transform: uppercase;
  font-weight: bold;
  padding-right: 20px;
  color: white;
  margin-top: 5px;
  margin-bottom: 5px;
}
.footer-main__menu ul li a {
  color: inherit;
  text-decoration: none;
  padding-top: 3px;
}
.footer-main__menu ul li a:hover {
  border-top: 3px solid white;
}
.footer-main__content {
  padding-bottom: 40px;
  color: #dddddd;
  float: left;
  width: 100%;
}
.footer-main__content__row {
  padding-top: 40px;
  float: left;
  width: 100%;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .footer-main__content__row {
    padding-top: 8px;
  }
}
.footer-main__content__left {
  padding-left: 40px;
  padding-right: 40px;
  float: left;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .footer-main__content__left {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.footer-main__content__left__logo {
  width: 100px;
  margin: 0 auto;
  margin-top: 15px;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .footer-main__content__left__logo {
    display: none;
  }
}
.footer-main__content__right {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  float: left;
  width: 75%;
  max-width: 500px;
}
@media only screen and (max-width: 720px),
  only screen and (min-width: 721px) and (max-width: 960px) {
  .footer-main__content__right {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}
.footer-main__content__left,
.footer-main__content__right {
  float: left;
}
@media only screen and (max-width: 720px) {
  .footer-main__content__left,
  .footer-main__content__right {
    width: 100%;
    text-align: center;
  }
}

.slick-dots{
    position:static!important; 
    background-color: rgb(0,0,0);
    margin: 0;
}
