@charset "UTF-8";

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@-webkit-keyframes jello {
  11.1% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes jello {
  11.1% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
    transform-origin: top center;
  }

  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
    transform-origin: top center;
  }

  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) scale(1);
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) scale(1);
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@-webkit-keyframes flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }
}

@keyframes flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }
}

@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
}

@-webkit-keyframes flipOutX {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}

@keyframes flipOutX {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}

@-webkit-keyframes flipOutY {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}

@keyframes flipOutY {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}

@-webkit-keyframes lightSpeedIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
  }

  80% {
    opacity: 1;
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
  }
}

@keyframes lightSpeedIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
  }

  80% {
    opacity: 1;
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
  }
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
  }
}

@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@-webkit-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@-webkit-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes rotateOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  20%, 60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  40% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  80% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
  }
}

@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  20%, 60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  40% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  80% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
  }
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomInDown {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

@keyframes zoomInDown {
  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);
    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);
  }

  60% {
    -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);
    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-keyframes zoomInLeft {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

@keyframes zoomInLeft {
  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);
    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);
  }

  60% {
    -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);
    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-keyframes zoomInRight {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

@keyframes zoomInRight {
  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);
    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);
  }

  60% {
    -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);
    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-keyframes zoomInUp {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

@keyframes zoomInUp {
  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);
    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);
  }

  60% {
    -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);
    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-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes zoomOutDown {
  40% {
    -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);
    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);
  }

  100% {
    -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);
    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;
  }
}

@keyframes zoomOutDown {
  40% {
    -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);
    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);
  }

  100% {
    -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);
    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-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@-webkit-keyframes zoomOutUp {
  40% {
    -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);
    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);
  }

  100% {
    -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);
    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;
  }
}

@keyframes zoomOutUp {
  40% {
    -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);
    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);
  }

  100% {
    -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);
    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;
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/*body:not(.ie) {
     svg {
       // height: auto;
        max-width: 100%;
    }
}*/

img {
  height: auto;
  max-width: 100%;
}

svg {
  height: auto;
  max-width: 100%;
}

strong {
  font-weight: 700;
}

body {
  color: #565656;
  background: #ffffff;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 100;
}

h1.serif,
h2.serif,
h3.serif,
h4.serif,
h5.serif,
h6.serif {
  font-family: "Merriweather", "Book Antiqua", Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
  text-transform: none;
}

.c-footer h1,
.c-footer
  h2,
.c-footer
  h3,
.c-footer
  h4,
.c-footer
  h5,
.c-footer
  h6 {
  color: #9c9c9c;
}

h1 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3;
}

@media screen and (min-width: 480px) {
  h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 700px) {
  h1 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1025px) {
  h1 {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.45;
  }
}

@media screen and (min-width: 1600px) {
  h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.c-textelement-centered h1 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.3;
}

@media screen and (min-width: 480px) {
  .c-textelement-centered h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 700px) {
  .c-textelement-centered h1 {
    font-size: 44px;
    font-size: 2.75rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1025px) {
  .c-textelement-centered h1 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.45;
  }
}

@media screen and (min-width: 1600px) {
  .c-textelement-centered h1 {
    font-size: 48px;
    font-size: 3rem;
  }
}

h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.3;
}

@media screen and (min-width: 480px) {
  h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 700px) {
  h2 {
    font-size: 44px;
    font-size: 2.75rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1025px) {
  h2 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.45;
  }
}

@media screen and (min-width: 1600px) {
  h2 {
    font-size: 48px;
    font-size: 3rem;
  }
}

@media (min-width: 0) and (max-width: 700px) {
  h2.is-big {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 480px) {
  h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 700px) {
  h3 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1025px) {
  h3 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

@media screen and (min-width: 1600px) {
  h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.has-spacing h3 {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

h3.is-fact {
  font-size: 28px;
  font-size: 1.75rem;
}

h4 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
}

@media screen and (min-width: 480px) {
  h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 700px) {
  h4 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1025px) {
  h4 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.45;
  }
}

@media screen and (min-width: 1600px) {
  h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}

@media screen and (min-width: 480px) {
  h5 {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 700px) {
  h5 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1025px) {
  h5 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.45;
  }
}

@media screen and (min-width: 1600px) {
  h5 {
    font-size: 16px;
    font-size: 1rem;
  }
}

h6 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
}

@media screen and (min-width: 480px) {
  h6 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 700px) {
  h6 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1025px) {
  h6 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.45;
  }
}

@media screen and (min-width: 1600px) {
  h6 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 480px) {
  p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 700px) {
  p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1025px) {
  p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

p.lead {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (min-width: 480px) {
  p.lead {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 700px) {
  p.lead {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media screen and (min-width: 900px) {
  p.lead {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1025px) {
  p.lead {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1440px) {
  p.lead {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

a:link,
a:visited {
  text-decoration: none;
  color: #565656;
}

a:focus,
a:hover {
  color: #007ac6;
}

hr {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  border: none;
  border-top: 1px solid #007ac6;
  border-bottom: 1px solid #007ac6;
  height: 4px;
}

@media (min-width: 700px) {
  hr {
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1025px) {
  hr {
    margin-bottom: 48px;
    margin-bottom: 3rem;
  }
}

figcaption {
  font-size: 13px;
  font-size: 0.8rem;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

@media (min-width: 0) and (max-width: 700px) {
  table {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

table th {
  text-align: left;
}

table td,
table th {
  border-bottom: 1px solid #e4e4e4;
  padding: 5px 0;
}

.ce_list {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.ce_list ul {
  margin-left: 32px;
  margin-left: 2rem;
}

.ce_list li {
  list-style-type: disc;
}

.o-grid:after {
  content: " ";
  display: block;
  clear: both;
}

.col-2x6x4 .col_1 {
  width: 49.1525423729%;
  float: left;
  margin-right: 1.6949152542%;
}

@media (min-width: 1025px) {
  .col-2x6x4 .col_1 {
    width: 23.7288135593%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 1600px) {
  .col-2x6x4 .col_1 {
    width: 15.2542372881%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

.col-2x6x4 .col_2 {
  display: none;
}

@media (min-width: 1025px) {
  .col-2x6x4 .col_2 {
    display: block;
    width: 32.2033898305%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 1600px) {
  .col-2x6x4 .col_2 {
    width: 49.1525423729%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

.col-2x6x4 .col_3 {
  width: 32.2033898305%;
  float: right;
  margin-right: 0;
}

@media (min-width: 1025px) {
  .col-2x6x4 .col_3 {
    width: 40.6779661017%;
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 1600px) {
  .col-2x6x4 .col_3 {
    width: 32.2033898305%;
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 700px) {
  .c-header .col-2x6x4 {
    display: table;
    width: 100%;
  }

  .c-header .col-2x6x4 .col_1 {
    display: table-cell;
    float: none;
    margin: 0;
    width: 50%;
  }
}

@media (min-width: 700px) and (min-width: 1025px) {
  .c-header .col-2x6x4 .col_1 {
    width: 25%;
  }
}

@media (min-width: 700px) and (min-width: 1600px) {
  .c-header .col-2x6x4 .col_1 {
    width: 16.6666666667%;
  }
}

@media (min-width: 700px) {
  .c-header .col-2x6x4 .col_2 {
    display: none;
    float: none;
    margin: 0;
  }
}

@media (min-width: 700px) and (min-width: 1025px) {
  .c-header .col-2x6x4 .col_2 {
    display: table-cell;
    width: 33.3333333333%;
  }
}

@media (min-width: 700px) and (min-width: 1600px) {
  .c-header .col-2x6x4 .col_2 {
    width: 50%;
  }
}

@media (min-width: 700px) {
  .c-header .col-2x6x4 .col_3 {
    display: table-cell;
    vertical-align: bottom;
    float: none;
    margin: 0;
    padding-bottom: 1em;
    width: 33.3333333333%;
  }
}

@media (min-width: 700px) and (min-width: 1025px) {
  .c-header .col-2x6x4 .col_3 {
    width: 41.6666666667%;
  }
}

@media (min-width: 700px) and (min-width: 1600px) {
  .c-header .col-2x6x4 .col_3 {
    width: 33.3333333333%;
  }
}

@media (min-width: 700px) {
  .c-header .col-2x5x5 {
    display: table;
    width: 100%;
  }

  .c-header .col-2x5x5 .col_1 {
    display: table-cell;
    float: none;
    margin: 0;
    width: 50%;
  }
}

@media (min-width: 700px) and (min-width: 1025px) {
  .c-header .col-2x5x5 .col_1 {
    width: 25%;
  }
}

@media (min-width: 700px) and (min-width: 1600px) {
  .c-header .col-2x5x5 .col_1 {
    width: 16.6666666667%;
  }
}

@media (min-width: 700px) {
  .c-header .col-2x5x5 .col_2 {
    display: none;
    float: none;
    margin: 0;
  }
}

@media (min-width: 700px) and (min-width: 1025px) {
  .c-header .col-2x5x5 .col_2 {
    display: table-cell;
    width: 16.6666666667%;
  }
}

@media (min-width: 700px) and (min-width: 1600px) {
  .c-header .col-2x5x5 .col_2 {
    width: 41.6666666667%;
  }
}

@media (min-width: 700px) {
  .c-header .col-2x5x5 .col_3 {
    display: table-cell;
    vertical-align: bottom;
    float: none;
    margin: 0;
    padding-bottom: 1em;
    width: 50%;
  }
}

@media (min-width: 700px) and (min-width: 1025px) {
  .c-header .col-2x5x5 .col_3 {
    width: 58.3333333333%;
  }
}

@media (min-width: 700px) and (min-width: 1600px) {
  .c-header .col-2x5x5 .col_3 {
    width: 41.6666666667%;
  }
}

@media (min-width: 0) and (max-width: 700px) {
  .c-header .col-2x6x4 {
    display: table;
    width: 100%;
  }

  .c-header .col-2x6x4 .col_1 {
    display: table-cell;
    float: none;
    margin: 0;
    width: 50%;
  }

  .c-header .col-2x6x4 .col_2 {
    display: none;
  }

  .c-header .col-2x6x4 .col_3 {
    display: table-cell;
    vertical-align: bottom;
    float: none;
    margin: 0;
    padding-bottom: 1em;
    width: 50%;
  }

  .c-header .col-2x5x5 {
    display: table;
    width: 100%;
  }

  .c-header .col-2x5x5 .col_1 {
    display: table-cell;
    float: none;
    margin: 0;
    width: 50%;
  }

  .c-header .col-2x5x5 .col_2 {
    display: none;
  }

  .c-header .col-2x5x5 .col_3 {
    display: table-cell;
    vertical-align: bottom;
    float: none;
    margin: 0;
    padding-bottom: 1em;
    width: 50%;
  }
}

@media (min-width: 700px) {
  .col-3x3x6 .col_1 {
    width: 49.1525423729%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 1025px) {
  .col-3x3x6 .col_1 {
    width: 23.7288135593%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 700px) and (max-width: 1025px) {
  .col-3x3x6 .col_2 {
    width: 49.1525423729%;
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 1025px) {
  .col-3x3x6 .col_2 {
    width: 23.7288135593%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 700px) and (max-width: 1025px) {
  .col-3x3x6 .col_3 {
    clear: both;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1025px) {
  .col-3x3x6 .col_3 {
    width: 49.1525423729%;
    float: right;
    margin-right: 0;
  }
}

.col-25x50x25 {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.col-25x50x25:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .col-25x50x25 {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1025px) {
  .col-25x50x25 {
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }
}

@media (min-width: 700px) {
  .col-25x50x25 .col_1 {
    width: 23.7288135593%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 700px) {
  .col-25x50x25 .col_2 {
    width: 49.1525423729%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 700px) {
  .col-25x50x25 .col_3 {
    width: 23.7288135593%;
    float: right;
    margin-right: 0;
  }
}

.col-50x50 {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.col-50x50:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .col-50x50 {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1025px) {
  .col-50x50 {
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }
}

@media (min-width: 700px) {
  .col-50x50 .col_1 {
    width: 49.1525423729%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 700px) {
  .col-50x50 .col_2 {
    width: 49.1525423729%;
    float: right;
    margin-right: 0;
  }
}

.col-25x25x25x25 {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.col-25x25x25x25:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .col-25x25x25x25 {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1025px) {
  .col-25x25x25x25 {
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }
}

@media (min-width: 700px) and (max-width: 1025px) {
  .col-25x25x25x25 .col_1,
  .col-25x25x25x25 .col_2,
  .col-25x25x25x25 .col_3 {
    width: 49.1525423729%;
    float: left;
  }

  .col-25x25x25x25 .col_1:nth-child(2n + 1),
  .col-25x25x25x25 .col_2:nth-child(2n + 1),
  .col-25x25x25x25 .col_3:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .col-25x25x25x25 .col_1:nth-child(2n + 2),
  .col-25x25x25x25 .col_2:nth-child(2n + 2),
  .col-25x25x25x25 .col_3:nth-child(2n + 2) {
    margin-left: 50.8474576271%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 1025px) {
  .col-25x25x25x25 .col_1,
  .col-25x25x25x25 .col_2,
  .col-25x25x25x25 .col_3 {
    width: 23.7288135593%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 700px) and (max-width: 1025px) {
  .col-25x25x25x25 .col_4 {
    width: 49.1525423729%;
    float: left;
  }

  .col-25x25x25x25 .col_4:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .col-25x25x25x25 .col_4:nth-child(2n + 2) {
    margin-left: 50.8474576271%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 1025px) {
  .col-25x25x25x25 .col_4 {
    width: 23.7288135593%;
    float: right;
    margin-right: 0;
  }
}

.col-50x25x25 {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.col-50x25x25:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .col-50x25x25 {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1025px) {
  .col-50x25x25 {
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }
}

@media (min-width: 700px) {
  .col-50x25x25 .col_1 {
    width: 49.1525423729%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 700px) and (max-width: 1025px) {
  .col-50x25x25 .col_2 {
    width: 49.1525423729%;
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 1025px) {
  .col-50x25x25 .col_2 {
    width: 23.7288135593%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 700px) and (max-width: 1025px) {
  .col-50x25x25 .col_3 {
    width: 49.1525423729%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 1025px) {
  .col-50x25x25 .col_3 {
    width: 23.7288135593%;
    float: right;
    margin-right: 0;
  }
}

.col-33x33x33:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 0) and (max-width: 700px) {
  .col-33x33x33 > div {
    padding-bottom: 64px;
    padding-bottom: 4rem;
  }
}

@media (min-width: 700px) {
  .col-33x33x33 > div {
    width: 32.2033898305%;
    float: left;
  }

  .col-33x33x33 > div:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .col-33x33x33 > div:nth-child(3n + 2) {
    margin-left: 33.8983050847%;
    margin-right: -100%;
    clear: none;
  }

  .col-33x33x33 > div:nth-child(3n + 3) {
    margin-left: 67.7966101695%;
    margin-right: -100%;
    clear: none;
  }
}

.col-66x33:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 0) and (max-width: 700px) {
  .col-66x33 .col_1 {
    padding-bottom: 16px;
    padding-bottom: 1rem;
  }
}

@media (min-width: 700px) {
  .col-66x33 .col_1 {
    width: 74.5762711864%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 0) and (max-width: 700px) {
  .col-66x33 .col_2 {
    padding-bottom: 16px;
    padding-bottom: 1rem;
  }
}

@media (min-width: 700px) {
  .col-66x33 .col_2 {
    width: 23.7288135593%;
    float: right;
    margin-right: 0;
  }
}

.is-centered {
  text-align: center;
}

.invisible,
.is-hidden,
table caption,
.c-form--search-is-hidden,
.c-form--contact .widget-text label,
.c-form--contact .widget-tel label,
.c-form--contact .widget-email label,
.c-form--contact .widget-captcha label,
.c-form--contact .widget-submit label,
.c-form--contact .widget-number label,
.c-form--contact .widget-textarea label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.has-spacing {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.has-spacing--small {
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.has-spacing--medium {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.has-spacing--large {
  padding-bottom: 64px;
  padding-bottom: 4rem;
}

@media (min-width: 700px) {
  .has-spacing--xlarge {
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1025px) {
  .has-spacing--xlarge {
    padding-bottom: 96px;
    padding-bottom: 6rem;
  }
}

.pull-up {
  margin-top: -125px;
  margin-top: -7.8125rem;
}

@media (min-width: 700px) {
  .pull-up {
    margin-top: -175px;
    margin-top: -10.9375rem;
  }
}

@media (min-width: 1025px) {
  .pull-up {
    margin-top: -225px;
    margin-top: -14.0625rem;
  }
}

.do-not-scroll {
  overflow: hidden;
}

@media (min-width: 0) and (max-width: 700px) {
  .do-not-scroll {
    position: fixed;
  }
}

.is-fact h3 {
  font-size: 28px;
  font-size: 1.75rem;
}

.is-fact p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.is-teaser h3 {
  font-size: 28px;
  font-size: 1.75rem;
}

.is-sticky {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

.is-inline-block {
  display: inline-block;
}

.o-hrule {
  transition: all .2s;
}

.o-hrule__medium {
  width: 25%;
  margin-bottom: 0;
}

.o-icon {
  vertical-align: text-top;
  transition: all .2s;
}

.o-icon use {
  fill: #9c9c9c;
}

.o-icon--inverted use {
  fill: #ffffff;
}

a:hover .o-icon use {
  fill: #007ac6;
}

.o-icon__xxsmall {
  width: 10px;
  height: 10px;
}

.o-icon__xxsmall--after {
  margin-right: 8px;
  margin-right: 0.5rem;
}

.o-icon__xsmall {
  width: 16px;
  height: 16px;
}

.o-icon__xsmall--after {
  margin-right: 8px;
  margin-right: 0.5rem;
}

.o-icon__small {
  width: 24px;
  height: 24px;
}

.o-icon__medium {
  width: 32px;
  height: 32px;
}

.o-icon__large {
  width: 40px;
  height: 40px;
}

.o-icon__xlarge {
  width: 53px;
  height: 53px;
}

.o-icon__xxlarge {
  width: 53px;
  height: 53px;
}

@media (min-width: 700px) {
  .o-icon__xxlarge {
    width: 64px;
    height: 64px;
  }
}

.o-icon__xxxlarge {
  width: 96px;
  height: 96px;
}

.o-button {
  padding: 11px 11px;
  padding: 0.7rem 0.7rem;
  background: transparent;
  display: inline-block;
  line-height: 1;
  transition: all .3s;
}

.o-button--secondary {
  border: 2px solid #d0aa36;
}

.o-button--secondary:focus,
.o-button--secondary:hover {
  background: #d0aa36;
  cursor: pointer;
  color: #fff;
}

.o-ghost {
  padding: 11px 11px;
  padding: 0.7rem 0.7rem;
  font-size: 14px;
  font-size: 0.875rem;
  background: transparent;
  display: inline-block;
  line-height: 1;
  transition: all .3s;
  text-transform: uppercase;
  font-weight: 400;
}

.o-ghost--vimeo {
  transition: all .3s;
}

.o-ghost--vimeo:link,
.o-ghost--vimeo:visited {
  transition: all .3s;
}

.o-ghost--vimeo:hover,
.o-ghost--vimeo:focus {
  transition: all .3s;
}

.o-ghost--primary:link,
.o-ghost--primary:visited {
  color: #9c9c9c;
  border: 2px solid #9c9c9c;
}

.o-ghost--primary:focus,
.o-ghost--primary:hover {
  border: 2px solid #007ac6;
  background: #007ac6;
  cursor: pointer;
  color: #fff;
}

.o-ghost--secondary {
  border: 2px solid #d0aa36;
}

.o-ghost--secondary:focus,
.o-ghost--secondary:hover {
  background: #d0aa36;
  cursor: pointer;
  color: #fff;
}

button.o-button {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Merriweather", "Book Antiqua", Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
  width: 100%;
}

.o-sliderarrows {
  position: absolute;
  -webkit-transform: scale(0.99);
  transform: scale(0.99);
  display: block;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 5;
}

.o-sliderarrows:hover,
.o-sliderarrows:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.o-sliderarrows:after {
  content: 'test';
  width: 45px;
  height: 64px;
  background: #e4e4e4;
  position: absolute;
  z-index: -1;
}

@media (min-width: 0) and (max-width: 700px) {
  .o-sliderarrows:after {
    width: 38px;
    height: 52px;
  }
}

.o-sliderarrows--prev {
  left: 0;
}

@media (min-width: 700px) {
  .c-imageslider .o-sliderarrows--prev {
    left: -25px;
  }
}

[dir="rtl"] .o-sliderarrows--prev {
  left: auto;
  right: 0;
}

.o-sliderarrows--previnside {
  left: 0;
}

[dir="rtl"] .o-sliderarrows--previnside {
  left: auto;
  right: 0;
}

.o-sliderarrows--prev:after {
  left: 0;
}

.o-sliderarrows--next {
  right: 0;
}

@media (min-width: 700px) {
  .c-imageslider .o-sliderarrows--next {
    right: -25px;
  }
}

[dir="rtl"] .o-sliderarrows--next {
  left: 0;
  right: auto;
}

.o-sliderarrows--nextinside {
  right: 0;
}

[dir="rtl"] .o-sliderarrows--nextinside {
  left: 0;
  right: auto;
}

.o-sliderarrows--next:after {
  right: 0;
}

.ca-animation {
  opacity: 0;
  overflow: hidden;
}

.mobile .ca-animation {
  opacity: 1;
}

.ca-animation.is-animated {
  opacity: 1;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

/**
 * @FIX
 * @author  m.knorr
 * @date    151117
 * @comment I HATE iFRAMES
 */

iframe {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.embed-container {
  position: relative;
  padding-bottom: 147.62516046213094%;
  /* ratio 16x9 */
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 800px;
  max-height: 1150px;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Layout */

.c-header {
  height: 100vh;
  position: relative;
  background-size: cover;
}

@media (min-width: 320px) {
  .c-header {
    height: 60vh;
  }

  body.home.mobile .c-header {
    height: 75vh;
  }
}

@media (min-width: 320px) and (orientation: landscape) {
  body.home.mobile .c-header {
    height: 90vh;
  }
}

@media (min-width: 1025px) {
  .c-header {
    height: 65vh;
    min-height: 500px;
  }
}

@media (min-width: 1600px) {
  .c-header {
    height: 60vh;
    min-height: 500px;
  }
}

.c-header__inside {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.c-header__inside .mod_boxes4ward {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 100%;
}

.c-header__inside .mod_boxes4ward.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  width: 100%;
  z-index: 100;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}

.c-header__inside .mod_boxes4ward.is-sticky .boxes4ward_article {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.c-header__inside .mod_boxes4ward.is-sticky .boxes4ward_article:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .c-header__inside .mod_boxes4ward.is-sticky .boxes4ward_article {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-header__inside .mod_boxes4ward.is-sticky .boxes4ward_article:after {
    content: " ";
    display: block;
    clear: both;
  }
}

@media (min-width: 1600px) {
  .c-header__inside .mod_boxes4ward.is-sticky .boxes4ward_article {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }

  .c-header__inside .mod_boxes4ward.is-sticky .boxes4ward_article:after {
    content: " ";
    display: block;
    clear: both;
  }
}

.c-header__inside .mod_article {
  max-width: 100%;
}

@media (min-width: 1600px) {
  .c-header__inside .mod_article {
    max-width: 80%;
  }
}

.c-header__inside .mod_article.fixer {
  position: absolute;
  left: 50%;
}

.c-header__inside:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .c-header__inside {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-header__inside:after {
    content: " ";
    display: block;
    clear: both;
  }
}

@media (min-width: 1600px) {
  .c-header__inside {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }

  .c-header__inside:after {
    content: " ";
    display: block;
    clear: both;
  }
}

.c-main {
  position: relative;
}

.c-row {
  position: relative;
  padding: 32px 0;
  padding: 2rem 0;
}

@media (min-width: 700px) {
  .c-row {
    padding: 48px 0;
    padding: 3rem 0;
  }
}

@media (min-width: 1025px) {
  .c-row {
    padding: 64px 0;
    padding: 4rem 0;
  }
}

.c-row.first {
  padding: 48px 0;
  padding: 3rem 0;
}

@media (min-width: 700px) {
  .c-row.first {
    padding: 75px 0;
    padding: 4.6875rem 0;
  }
}

@media (min-width: 1025px) {
  .c-row.first {
    padding: 65px 0;
    padding: 4.0625rem 0;
  }
}

.c-row.no-bottom-spacing {
  padding-bottom: 0;
}

.c-row.medium-bottom-spacing {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.c-row.no-top-spacing {
  padding-top: 0;
}

.c-row--imagerow-large {
  margin-top: 150px;
  margin-top: 9.375rem;
}

@media (min-width: 700px) {
  .c-row--imagerow-large {
    margin-top: 250px;
    margin-top: 15.625rem;
  }
}

@media (min-width: 1025px) {
  .c-row--imagerow-large {
    margin-top: 350px;
    margin-top: 21.875rem;
  }
}

.c-row--imagerow-small {
  margin-top: 100px;
  margin-top: 6.25rem;
}

@media (min-width: 1025px) {
  .c-row--imagerow-small {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
}

.c-row--has-bg {
  color: #ffffff;
}

.c-row--color-grey-light {
  background: #e4e4e4;
}

.c-row--color-grey {
  background: #9c9c9c;
}

.c-row--color-grey-dark {
  background: #565656;
}

.c-row__inner {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.c-row__inner:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .c-row__inner {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-row__inner:after {
    content: " ";
    display: block;
    clear: both;
  }
}

@media (min-width: 1600px) {
  .c-row__inner {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }

  .c-row__inner:after {
    content: " ";
    display: block;
    clear: both;
  }
}

.c-footer {
  padding: 16px 0;
  padding: 1rem 0;
  position: relative;
  background: #565656;
}

@media (min-width: 700px) {
  .c-footer {
    padding: 32px 0;
    padding: 2rem 0;
  }
}

@media (min-width: 1025px) {
  .c-footer {
    padding: 48px 0;
    padding: 3rem 0;
  }
}

.c-footer__inside {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.c-footer__inside:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 1600px) {
  .c-footer__inside {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }

  .c-footer__inside:after {
    content: " ";
    display: block;
    clear: both;
  }
}

.c-footer__crown {
  padding: 80px 0 0 0;
  padding: 5rem 0 0 0;
  margin-bottom: 0;
}

.c-footer .widget-headline h5 {
  font-weight: 500;
}

/* Elements */

.c-textelement-centered {
  text-align: center;
}

.c-textelement-centered:not(.c-textelement-centered--explanation) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

@media (min-width: 700px) {
  .c-textelement-centered:not(.c-textelement-centered--explanation) {
    margin-bottom: 100px;
    margin-bottom: 6.25rem;
  }
}

.c-textelement-centered--slim {
  margin-bottom: 0 !important;
}

@media (min-width: 1025px) {
  .c-textelement-centered {
    margin-left: 16.9491525424%;
    margin-right: 16.9491525424%;
  }
}

.c-textelement-centered--explanation {
  padding-top: 10px;
  padding-top: 0.625rem;
}

.c-textelement-centered--explanation > * {
  color: #565656;
}

.c-textelement-centered__headline {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  line-height: 1 !important;
}

@media (min-width: 700px) {
  .c-textelement-centered__headline {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }
}

.c-textelement-centered--explanation .c-textelement-centered__headline {
  color: #565656;
  font-size: 70px;
  font-size: 4.375rem;
  margin-bottom: .5rem;
}

@media (min-width: 700px) {
  .c-textelement-centered--explanation .c-textelement-centered__headline {
    font-size: 130px;
    font-size: 8.125rem;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1;
  }
}

.c-textelement-centered__subheadline {
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  color: #9c9c9c;
}

@media (min-width: 320px) {
  .c-textelement-centered__subheadline {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
  }
}

@media (min-width: 700px) {
  .c-textelement-centered__subheadline {
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }
}

.c-textelement-centered--explanation .c-textelement-centered__subheadline {
  color: #454545;
}

.c-textelement-centered__lead {
  line-height: 1.5;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 700px) {
  .c-textelement-centered__lead {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1025px) {
  .c-textelement-centered__lead {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.c-textelement-centered--explanation .c-textelement-centered__lead {
  font-size: 16px;
  font-size: 1rem;
  color: #454545;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.c-textelement-centered__more {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 64px;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.no-js .c-textelement-centered__morelink,
.no-js .c-textelement-centered__lesslink {
  display: none;
}

.c-textelement-centered__morelink:link,
.c-textelement-centered__morelink:visited,
.c-textelement-centered__lesslink:link,
.c-textelement-centered__lesslink:visited {
  color: #9c9c9c;
  font-weight: 400;
}

.c-textelement-centered__morelink:focus,
.c-textelement-centered__morelink:hover,
.c-textelement-centered__lesslink:focus,
.c-textelement-centered__lesslink:hover {
  color: #007ac6;
}

.c-textelement-centered__morelink:hover svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.c-textelement-centered__lesslink svg {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-textelement-centered__lesslink:hover svg {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.js .c-textelement-centered__subtext {
  display: none;
}

.c-textelement-centered__subtext a {
  color: #565656 !important;
  border-bottom: 1px dotted;
}

.c-pageteaser use {
  fill: transparent;
}

.c-pageteaser:after {
  content: " ";
  display: block;
  clear: both;
}

.c-pageteaser__item {
  padding-bottom: 32px;
  padding-bottom: 2rem;
  /*@include susy-media(getbp(medium)) {
            @include gallery(6 of 12);
        }*/
}

@media (min-width: 0) and (max-width: 1025px) {
  .c-pageteaser__item {
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .c-pageteaser__item {
    width: 32.2033898305%;
    float: left;
  }

  .c-pageteaser__item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .c-pageteaser__item:nth-child(3n + 2) {
    margin-left: 33.8983050847%;
    margin-right: -100%;
    clear: none;
  }

  .c-pageteaser__item:nth-child(3n + 3) {
    margin-left: 67.7966101695%;
    margin-right: -100%;
    clear: none;
  }
}

.c-pageteaser__item a {
  outline: none;
}

.c-pageteaser__item a:hover #play_circle {
  fill: #fff;
  transition: all .3s ease-in-out;
}

.c-pageteaser__item a:hover #play_triangle {
  fill: #eaeaea;
  stroke: #eaeaea;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  transition: all .3s ease-in-out;
}

.c-pageteaser__headline {
  font-size: 32px;
  font-size: 2rem;
  line-height: 38px;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  min-height: 90px;
}

.c-pageteaser__subheadline {
  font-size: 16px;
  font-size: 1rem;
}

.c-pageteaser__figure {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  position: relative;
}

.c-pageteaser__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all .3s ease-in-out;
}

.c-pageteaser #play_circle,
.c-pageteaser #play_triangle {
  transition: all .3s ease-in-out;
  fill: transparent;
  stroke: #fff;
  stroke-width: 2;
  -webkit-transform-origin: 32px 32px;
  transform-origin: 32px 32px;
}

.c-pageteaser__text {
  line-height: 24px;
  margin-left: 10vw;
  margin-right: 10vw;
}

@media (min-width: 700px) {
  .c-pageteaser__text {
    margin-left: 16vw;
    margin-right: 16vw;
    min-height: 80px;
    min-height: 5rem;
  }
}

@media (min-width: 1025px) {
  .c-pageteaser__text {
    margin-left: 0%;
    margin-right: 0%;
  }
}

.c-contentslider:after {
  content: " ";
  display: block;
  clear: both;
}

.c-contentslider__inside {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.c-contentslider__inside:after {
  content: " ";
  display: block;
  clear: both;
}

.c-contentslider__inside:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 1025px) {
  .c-contentslider__inside {
    position: relative;
  }
}

@media (min-width: 1600px) {
  .c-contentslider__inside {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }

  .c-contentslider__inside:after {
    content: " ";
    display: block;
    clear: both;
  }
}

.c-contentslider__item {
  position: relative;
  outline: none;
}

@media (min-width: 0) and (max-width: 1025px) {
  .c-contentslider__item {
    text-align: center;
  }
}

.c-contentslider__headline {
  font-size: 28px;
  font-size: 1.75rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.c-contentslider__subheadline {
  font-size: 16px;
  font-size: 1rem;
}

.c-contentslider__figure {
  padding-bottom: 16px;
  padding-bottom: 1rem;
  text-align: center;
}

.c-contentslider__figure img {
  display: inline-block !important;
}

@media (min-width: 1025px) {
  .c-contentslider__figure {
    width: 49.1525423729%;
    float: right;
    margin-right: 0;
  }
}

.c-contentslider__text {
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

@media (min-width: 1025px) {
  .c-contentslider__title {
    width: 49.1525423729%;
    float: left;
    margin-right: 1.6949152542%;
    padding-right: 8.4745762712%;
  }
}

@media (min-width: 1600px) {
  .c-contentslider__title {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.c-contacts {
  text-align: center;
}

.c-contacts:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 1025px) {
  .c-contacts {
    margin-left: 16.9491525424%;
    margin-right: 16.9491525424%;
  }
}

@media (min-width: 1600px) {
  .c-contacts {
    margin-left: 25.4237288136%;
    margin-right: 25.4237288136%;
  }
}

.c-contacts__item {
  padding-bottom: 64px;
  padding-bottom: 4rem;
}

.c-contacts__items--single .c-contacts__item {
  clear: both;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 700px) {
  .c-contacts__items--multi .c-contacts__item {
    width: 48.7179487179%;
    float: left;
  }

  .c-contacts__items--multi .c-contacts__item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .c-contacts__items--multi .c-contacts__item:nth-child(2n + 2) {
    margin-left: 51.2820512821%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 1600px) {
  .c-contacts__items--multi .c-contacts__item {
    width: 47.3684210526%;
    float: left;
  }

  .c-contacts__items--multi .c-contacts__item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .c-contacts__items--multi .c-contacts__item:nth-child(2n + 2) {
    margin-left: 52.6315789474%;
    margin-right: -100%;
    clear: none;
  }
}

.c-contacts__headline {
  font-size: 28px;
  font-size: 1.75rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}

.c-contacts__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #9c9c9c;
}

.c-contacts__title {
  font-size: 14px;
  font-size: 0.875rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  font-weight: 400;
  color: #9c9c9c;
}

.c-contacts__numbers {
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.c-contacts__numbers a {
  color: #565656 !important;
}

.c-contacts__numbers a:hover {
  color: #007ac6 !important;
}

.c-contacts__figure {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  border-radius: 100%;
}

.c-contacts__figure img {
  border-radius: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.c-contact .c-textelement-centered__lead,
.c-contact h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #9c9c9c;
}

.c-contact h4 {
  font-size: 14px;
  font-size: 0.875rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  font-weight: 400;
  color: #9c9c9c;
}

.c-headertitle {
  text-align: center;
  color: #ffffff;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media (min-width: 0) and (max-width: 480px) {
  .c-headertitle {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
}

@media (min-width: 1600px) {
  .c-headertitle {
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.c-headertitle--light {
  color: #565656;
}

.c-headertitle__headline {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-size: 2.8vw;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-headertitle__headline {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1600px) {
  .c-headertitle__headline {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.c-headertitle__subheadline {
  font-size: 6vw;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-headertitle__subheadline {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (min-width: 700px) {
  .c-headertitle__subheadline {
    line-height: 1.1;
  }
}

@media (min-width: 1300px) {
  .c-headertitle__subheadline {
    font-size: 80px;
    font-size: 5rem;
  }
}

@media (min-width: 1600px) {
  .c-headertitle__subheadline {
    font-size: 74px;
    font-size: 4.625rem;
  }
}

.c-logo {
  display: block;
  max-width: 200px;
}

@media (min-width: 700px) {
  .c-logo {
    padding: .75em 1em 0.5em 0;
  }
}

@media (min-width: 0) and (max-width: 700px) {
  .is-sticky .c-logo {
    padding: .5em 0 0.5em 0;
  }
}

.c-logo__svg {
  width: 100%;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-logo__svg {
    height: 123px;
    vertical-align: bottom;
  }
}

.c-logo__svg use {
  fill: #ffffff;
}

@media (min-width: 0) and (max-width: 700px) {
  .is-sticky .c-logo__svg {
    height: 30px;
    width: 30px;
  }
}

@media (min-width: 700px) {
  .is-sticky .c-logo__svg {
    height: 60px;
  }
}

.is-sticky .c-logo__svg use {
  fill: #454545;
  transition: .2s all;
}

.c-xnavigation__item {
  padding-bottom: 16px;
  padding-bottom: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 16px;
  font-size: 1rem;
  border-bottom: 1px solid #9c9c9c;
  text-transform: uppercase;
  font-weight: 500;
}

.c-xnavigation__subitem {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  padding-left: 16px;
  padding-left: 1rem;
  position: relative;
}

.c-xnavigation__subitem:not(:first-child) {
  margin-top: -20px;
}

.c-xnavigation .o-icon {
  vertical-align: baseline;
  margin-left: -16px;
  margin-left: -1rem;
}

.c-xnavigation__link {
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  display: block;
}

.c-xnavigation__link:link,
.c-xnavigation__link:visited {
  color: #9c9c9c;
}

.c-xnavigation__link--current:link,
.c-xnavigation__link--current:visited {
  color: #ffffff;
}

.c-xnavigation__link:hover,
.c-xnavigation__link:focus {
  color: #e4e4e4;
}

.c-xnavigation__title {
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  color: #9c9c9c;
}

.c-xnavigation__sublink {
  position: relative;
  top: -20px;
  display: block;
}

.c-xnavigation__sublink:link,
.c-xnavigation__sublink:visited {
  color: #9c9c9c;
}

.c-xnavigation__sublink--current {
  position: relative;
  top: -20px;
  display: block;
}

.c-xnavigation__sublink--current:link,
.c-xnavigation__sublink--current:visited {
  color: #ffffff;
}

.c-xnavigation__sublink:hover,
.c-xnavigation__sublink:focus {
  color: #e4e4e4;
}

.c-xnavigation a:hover .o-icon use {
  fill: #ffffff;
}

.c-xnavigation a.c-xnavigation__link--current .o-icon use,
.c-xnavigation a.c-xnavigation__sublink--current .o-icon use {
  fill: #ffffff;
}

.c-form--search {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
}

@media (min-width: 700px) {
  .c-form--search {
    padding: 16px;
    padding: 1rem;
  }
}

.c-form--search .formbody:after {
  content: " ";
  display: block;
  clear: both;
}

.c-form--search .formbody > div:first-child {
  width: 75%;
  float: left;
}

.c-form--search .formbody > div:last-child {
  width: 25%;
  float: right;
  margin-right: 0;
}

.c-form--search button {
  background: transparent;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
}

.c-form--search button:hover {
  cursor: pointer;
}

.c-form--search button use {
  fill: #9c9c9c;
}

.c-form--search .widget-text {
  position: relative;
}

.c-form--search label {
  position: absolute;
  transition: all .3s;
  color: #ffffff;
  width: 100%;
  display: block;
  height: 100%;
  text-align: right;
  top: 0;
  right: 0;
  bottom: 0;
}

.is-sticky .c-form--search label {
  color: #454545;
}

.c-form--search .input--animated label {
  top: 25px;
  bottom: -25px;
  -webkit-transform: none;
  transform: none;
  font-size: 12px;
  font-size: 0.75rem;
  transition: all .3s;
}

.c-form--search .input--animated input {
  width: 100%;
  transition: all .3s;
  border-bottom: 1px solid #e4e4e4;
}

.is-sticky .c-form--search .input--animated input {
  border-bottom: 1px solid #454545;
}

.c-form--search input {
  width: 0;
  background: transparent;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid transparent;
  text-transform: uppercase;
  transition: all .3s;
  color: #ffffff;
}

.is-sticky .c-form--search input {
  color: #454545;
}

.c-form--search input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ffffff;
}

.c-form--search input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ffffff;
  opacity: 1;
}

.c-form--search input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ffffff;
  opacity: 1;
}

.c-form--search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ffffff;
}

.c-form--search input:focus {
  border-bottom: 1px solid #e4e4e4;
  outline: none;
  transition: all .3s;
}

.is-sticky .c-form--search input:focus {
  border-bottom: 1px solid #454545;
}

.c-form--contact {
  /* graceful degradation for ie8 */
}

.c-form--contact p.error {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 8px;
  padding: 0.5rem;
  border-bottom: 1px solid maroon;
  border-top: 1px solid #9c9c9c;
  color: #ffffff;
  display: block;
  position: relative;
}

.c-form--contact p.error:before {
  content: '';
  position: absolute;
  top: -5px;
  left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #9c9c9c transparent;
}

.c-form--contact button,
.c-form--contact input[type="submit"],
.c-form--contact input[type="text"],
.c-form--contact input[type="number"],
.c-form--contact input[type="email"],
.c-form--contact input[type="tel"],
.c-form--contact textarea {
  -webkit-appearance: none;
  border-radius: 0;
  font-weight: 300;
}

.c-form--contact .widget-radio > label {
  display: none;
}

.c-form--contact .widget-radio legend {
  display: none;
}

.c-form--contact .radio_container {
  margin-bottom: 3.4482758621%;
}

.c-form--contact .radio_container:after {
  content: " ";
  display: block;
  clear: both;
}

.c-form--contact .radio_container input {
  display: inline-block;
  width: auto;
}

.c-form--contact .radio_container label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #9c9c9c;
  text-transform: uppercase;
}

.c-form--contact .radio_container span {
  width: 49.1525423729%;
  float: left;
  margin-right: 1.6949152542%;
}

@media (min-width: 700px) {
  .c-form--contact .radio_container span {
    width: 23.7288135593%;
    float: left;
    margin-right: 1.6949152542%;
  }
}

@media (min-width: 0) and (max-width: 700px) {
  .c-form--contact .radio_container span:last-child {
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 700px) {
  .c-form--contact .radio_container span:last-child {
    width: 31.0344827586%;
    float: left;
    margin-right: 3.4482758621%;
  }
}

.c-form--contact input,
.c-form--contact textarea {
  padding: 13px 8px;
  padding: 0.8rem 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
  border: none;
  color: #9c9c9c;
  background: #454545;
}

.c-form--contact .captcha_text,
.c-form--contact .widget-explanation {
  padding: 8px 0;
  padding: 0.5rem 0;
  font-size: 14px;
  font-size: 0.875rem;
  color: #9c9c9c;
  display: block;
}

.c-form--contact .submit_container {
  margin-bottom: 3.4482758621%;
}

@media (min-width: 700px) {
  .c-form--contact .submit_container {
    width: 48.275862069%;
    float: left;
  }

  .c-form--contact .submit_container:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .c-form--contact .submit_container:nth-child(2n + 2) {
    margin-left: 51.724137931%;
    margin-right: -100%;
    clear: none;
  }
}

.c-form--contact .widget-text,
.c-form--contact .widget-tel,
.c-form--contact .widget-email,
.c-form--contact .widget-captcha,
.c-form--contact .widget-submit,
.c-form--contact .widget-number {
  margin-bottom: 3.4482758621%;
}

@media (min-width: 700px) {
  .c-form--contact .widget-text,
  .c-form--contact .widget-tel,
  .c-form--contact .widget-email,
  .c-form--contact .widget-captcha,
  .c-form--contact .widget-submit,
  .c-form--contact .widget-number {
    width: 48.275862069%;
    float: left;
  }

  .c-form--contact .widget-text:nth-child(2n + 1),
  .c-form--contact .widget-tel:nth-child(2n + 1),
  .c-form--contact .widget-email:nth-child(2n + 1),
  .c-form--contact .widget-captcha:nth-child(2n + 1),
  .c-form--contact .widget-submit:nth-child(2n + 1),
  .c-form--contact .widget-number:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .c-form--contact .widget-text:nth-child(2n + 2),
  .c-form--contact .widget-tel:nth-child(2n + 2),
  .c-form--contact .widget-email:nth-child(2n + 2),
  .c-form--contact .widget-captcha:nth-child(2n + 2),
  .c-form--contact .widget-submit:nth-child(2n + 2),
  .c-form--contact .widget-number:nth-child(2n + 2) {
    margin-left: 51.724137931%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 700px) {
  .c-form--contact .widget-textarea,
  .c-form--contact .widget-radio {
    clear: both;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
}

.c-form--contact .widget-textarea {
  margin-bottom: 3.4482758621%;
}

.c-form--contact input[type='checkbox'],
.c-form--contact input[type='radio'] {
  width: auto;
  float: left;
  margin-right: .75em;
  background: transparent;
  border: none;
}

.c-form--contact input[type='checkbox']:checked,
.c-form--contact input[type='checkbox']:not(:checked),
.c-form--contact input[type='radio']:checked,
.c-form--contact input[type='radio']:not(:checked) {
  background: transparent;
  position: relative;
  visibility: hidden;
  margin: 0;
  padding: 0;
}

.c-form--contact input[type='checkbox'] + label,
.c-form--contact input[type='radio'] + label {
  cursor: pointer;
  position: relative;
}

.c-form--contact input[type='checkbox']:checked + label::before,
.c-form--contact input[type='checkbox']:not(:checked) + label::before,
.c-form--contact input[type='radio']:checked + label::before,
.c-form--contact input[type='radio']:not(:checked) + label::before {
  content: ' ';
  display: inline-block;
  width: 17px;
  height: 17px;
  position: relative;
  top: 4px;
  left: 0px;
  background: #454545;
  margin-right: 1em;
}

.c-form--contact input[type='radio']:checked + label::after,
.c-form--contact input[type='radio']:not(:checked) + label::after {
  content: ' ';
  display: inline-block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: .3s;
  background: #9c9c9c;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 30px;
}

.c-form--contact input[type=radio]:checked + label::before,
.c-form--contact input[type=radio]:not(:checked) + label::before {
  border-radius: 30px;
}

.c-form--contact input[type='checkbox']:hover + label::before,
.c-form--contact input[type='radio']:hover + label::before {
  background: #454545;
}

.c-form--contact input[type='checkbox']:checked + label::after,
.c-form--contact input[type='radio']:checked + label::after {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: .3s;
}

.is-sticky .c-topnav {
  transition: .2s all;
  background: #ffffff;
}

.c-topnav__list:after {
  content: " ";
  display: block;
  clear: both;
}

.c-topnav__item {
  text-transform: uppercase;
  /*@include susy-media(getbp(medium)) {
            @include gallery(1 of 3);
        }*/
}

.c-topnav__item--search {
  display: none;
}

@media (min-width: 1025px) {
  .c-topnav__item--search {
    display: block;
    width: 36.3636363636%;
    float: left;
  }
}

.c-topnav__item--language {
  display: none;
  text-align: center;
}

@media (min-width: 1025px) {
  .c-topnav__item--language {
    display: block;
    width: 36.3636363636%;
    float: left;
  }
}

.c-topnav__item--menu {
  text-align: right;
}

@media (min-width: 0) and (max-width: 1025px) {
  .c-topnav__item--menu {
    padding-top: 1rem;
  }
}

@media (min-width: 1025px) {
  .c-topnav__item--menu {
    text-align: left !important;
    display: block;
    width: 27.2727272727%;
    float: right;
    margin-right: 0;
  }
}

.c-topnav svg {
  vertical-align: sub;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.c-topnav svg use {
  fill: #ffffff;
}

.is-sticky .c-topnav svg use {
  transition: .2s all;
  fill: #454545;
}

.c-topnav__link:link,
.c-topnav__link:visited {
  display: block;
  color: #ffffff;
}

.is-sticky .c-topnav__link:link,
.is-sticky .c-topnav__link:visited {
  transition: .2s all;
  color: #454545;
}

@media (min-width: 700px) {
  .c-topnav__item--language .c-topnav__link:link,
  .c-topnav__item--language .c-topnav__link:visited {
    padding: 16px;
    padding: 1rem;
  }

  .c-topnav__item--search .c-topnav__link:link,
  .c-topnav__item--search .c-topnav__link:visited {
    padding: 16px 16px 16px 0;
    padding: 1rem 1rem 1rem 0;
  }

  .c-topnav__item--menu .c-topnav__link:link,
  .c-topnav__item--menu .c-topnav__link:visited {
    padding: 16px 0 16px 16px;
    padding: 1rem 0 1rem 1rem;
  }
}

.c-topnav__link:hover,
.c-topnav__link:focus {
  color: #b3b3b3;
}

.c-topnav__link:hover svg use,
.c-topnav__link:focus svg use {
  fill: #b3b3b3;
}

.c-popover {
  display: none;
}

.c-headerbar {
  transition: .2s all;
  border-bottom: 1px solid #ffffff;
  z-index: 10;
}

@media (min-width: 700px) {
  .c-headerbar {
    position: relative;
    padding: 0 52px;
    padding: 0 3.25rem;
  }
}

.is-sticky .c-headerbar {
  transition: .2s all;
  background: #ffffff;
}

.c-offpanel {
  padding: 50px 32px 32px 32px;
  padding: 3.1rem 2rem 2rem 2rem;
  position: fixed;
  right: -30em;
  width: 30em;
  background: #565656;
  z-index: 100;
  overflow-y: scroll;
  overflow-x: hidden;
}

.mobile .c-offpanel {
  right: -80%;
  width: 80%;
}

.c-offpanel__close {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.c-offpanel__closebutton use {
  fill: #ffffff;
}

.c-offpanel-curtain {
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all .2s;
  z-index: 1;
}

.c-offpanel-curtain.is-visible {
  visibility: visible;
  opacity: 1;
  transition: all .2s;
}

.c-gallery {
  text-align: center;
}

.c-gallery__items:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .c-gallery__items--cols_2 {
    margin-left: 33.8983050847%;
    margin-right: 33.8983050847%;
  }
}

.c-gallery__items--cols_2 .c-gallery__item {
  width: 47.3684210526%;
  float: left;
}

.c-gallery__items--cols_2 .c-gallery__item:nth-child(2n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}

.c-gallery__items--cols_2 .c-gallery__item:nth-child(2n + 2) {
  margin-left: 52.6315789474%;
  margin-right: -100%;
  clear: none;
}

.c-textimage {
  margin-left: 16.9491525424%;
  margin-right: 16.9491525424%;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.c-textimage:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-textimage {
    text-align: center;
  }
}

@media (min-width: 700px) {
  .c-textimage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-textimage--left .c-textimage__figure {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 700px) {
  .c-textimage--left .c-textimage__figure {
    padding-right: 32px;
    padding-right: 2rem;
  }
}

.c-textimage--left .c-textimage__text {
  /*@include susy-media(getbp(medium)) {
                    @include span(last 3 of 6);
                }*/
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-textimage--right .c-textimage {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.c-textimage--right .c-textimage__figure {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.c-textimage--right .c-textimage__text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

@media (min-width: 700px) {
  .c-textimage--right .c-textimage__text {
    padding-right: 32px;
    padding-right: 2rem;
  }
}

.c-textimage--full .c-textimage__text {
  clear: both;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.c-textimage__figure {
  text-align: center;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-textimage__figure {
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }
}

.c-textimage__cat {
  position: relative;
}

.c-textimage__cat:after {
  content: '';
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 22px;
  width: 50%;
  height: 14px;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-textimage__cat:after {
    margin: 20px auto;
    display: block;
  }
}

@media (min-width: 700px) {
  .c-textimage__cat:after {
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 22px;
    width: 25%;
    height: 14px;
  }
}

.c-textimage__cat--fgl:after {
  background-color: #9c9c9c;
}

.c-textimage__cat--erwerb:after,
.c-textimage__cat--ausbau:after {
  background-color: #575756;
}

.c-textimage__cat--obertageanlage:after {
  background-color: #cfcecf;
}

.c-textimage__title {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  width: 100%;
  padding: 0;
}

.c-textimage__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  width: 100%;
  line-height: 1.2;
  padding: 0;
}

.c-textimage__description {
  width: 100%;
}

.c-textimage img {
  border-radius: 100%;
}

.c-svgstage {
  position: relative;
  text-align: center;
}

@media (min-width: 0) and (max-width: 1025px) {
  .c-svgstage {
    display: none;
  }
}

@media (min-width: 1300px) {
  .c-svgstage {
    display: block;
  }
}

.c-svgstage:after {
  content: " ";
  display: block;
  clear: both;
}

.c-svgstage__inner {
  margin: 0 auto;
}

.c-svgstage__inner > div {
  width: 100% !important;
  position: relative !important;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-svgstage {
    max-width: 360px !important;
  }

  .c-svgstage .map .flow-wrapper {
    height: 460px !important;
  }

  .c-svgstage .map .center-wrapper {
    width: 100% !important;
    height: 460px !important;
  }

  .c-svgstage .map #Stage {
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
  }

  .c-svgstage .stufen .flow-wrapper {
    height: 300px !important;
  }

  .c-svgstage .stufen .center-wrapper {
    width: 100% !important;
    height: 300px !important;
  }

  .c-svgstage .stufen #Stage {
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
  }
}

.c-countup:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .c-countup__item {
    width: 32.2033898305%;
    float: left;
  }

  .c-countup__item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .c-countup__item:nth-child(3n + 2) {
    margin-left: 33.8983050847%;
    margin-right: -100%;
    clear: none;
  }

  .c-countup__item:nth-child(3n + 3) {
    margin-left: 67.7966101695%;
    margin-right: -100%;
    clear: none;
  }
}

.c-countup__title {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.c-countup__number {
  font-size: 80px;
  font-size: 5rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  line-height: 1;
}

@media (min-width: 700px) {
  .c-countup__number {
    font-size: 110px;
    font-size: 6.875rem;
  }
}

@media (min-width: 1600px) {
  .c-countup__number {
    font-size: 130px;
    font-size: 8.125rem;
  }
}

.c-countup-single {
  width: 100%;
}

.c-countup-single__text {
  padding-bottom: 1em;
}

@media (min-width: 700px) {
  .c-countup-single__text {
    max-width: 60vw;
  }
}

@media (min-width: 1025px) {
  .c-countup-single__text {
    min-height: 200px;
    max-width: none;
    padding-bottom: 0;
  }
}

.c-countup-single__title {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.c-countup-single__number {
  font-size: 80px;
  font-size: 5rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  line-height: 0.85;
}

@media (min-width: 700px) {
  .c-countup-single__number {
    font-size: 80px;
    font-size: 5rem;
  }
}

@media (min-width: 1600px) {
  .c-countup-single__number {
    font-size: 120px;
    font-size: 7.5rem;
  }
}

.c-factline {
  text-align: center;
  margin: 0 auto;
  max-width: 642px;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-factline {
    padding: 0 2rem;
  }
}

@media (min-width: 0) and (max-width: 700px) and (min-width: 0) and (max-width: 480px) {
  .c-factline {
    padding: 0;
  }
}

.c-factline__row {
  background: #e4e4e4;
}

.c-factline__row:first-child {
  background: transparent;
}

.c-factline__items {
  position: relative;
}

.c-factline__items img {
  display: block;
}

.c-factline__itemscontainer {
  position: absolute;
  top: 50%;
  left: 70px;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-factline__itemscontainer {
    max-width: 180px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (min-width: 700px) {
  .c-factline__itemscontainer {
    left: 150px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.c-factline__item {
  text-align: left;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  border-bottom: 1px solid #565656;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.c-factline__item:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .c-factline__item {
    padding-bottom: 32px;
    padding-bottom: 2rem;
    margin-bottom: 32px;
    margin-bottom: 2rem;
  }
}

.c-factline__wrap {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  display: table;
}

.c-factline__number {
  padding-right: 16px;
  padding-right: 1rem;
  margin-right: 16px;
  margin-right: 1rem;
  font-size: 40px;
  font-size: 2.5rem;
  display: table-cell;
  line-height: 1;
  border-right: 1px solid #9c9c9c;
}

@media (min-width: 700px) {
  .c-factline__number {
    font-size: 80px;
    font-size: 5rem;
    padding-right: 32px;
    padding-right: 2rem;
    margin-right: 32px;
    margin-right: 2rem;
  }
}

.c-factline__headline {
  text-transform: uppercase;
  display: table-cell;
  line-height: 1;
  vertical-align: top;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-factline__headline {
    font-size: 12px;
    font-size: 0.75rem;
    padding-left: 8px;
    padding-left: 0.5rem;
  }
}

@media (min-width: 700px) {
  .c-factline__headline {
    font-size: 16px;
    font-size: 1rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-top: 8px;
    padding-top: 0.5rem;
  }
}

.c-factline__subheadline {
  display: block;
}

@media (min-width: 0) and (max-width: 700px) {
  .c-factline__subheadline {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

@media (min-width: 700px) {
  .c-factline__subheadline {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.c-quote {
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
  text-align: center;
}

@media (min-width: 700px) {
  .c-quote {
    margin-left: 16.9491525424%;
    margin-right: 16.9491525424%;
  }
}

.c-quote--noquote {
  margin-top: 32px;
  margin-top: 2rem;
  padding: 32px 0;
  padding: 2rem 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.c-quote--quote {
  margin-top: 0;
}

.c-quote--quote:before {
  font-size: 144px;
  font-size: 9rem;
  margin-top: 13px;
  margin-top: 0.8rem;
  line-height: .8;
  content: '“';
  font-weight: bold;
}

.c-quote__text {
  margin-top: -32px;
  margin-top: -2rem;
}

.c-quote__text > * {
  font-size: 22px;
  font-size: 1.375rem;
}

.c-quote__author {
  color: #9c9c9c;
  text-transform: uppercase;
}

.c-quote__authorname {
  font-size: 18px;
  font-size: 1.125rem;
  padding-top: 16px;
  padding-top: 1rem;
  display: inline-block;
  border-top: 2px solid #e4e4e4;
  margin-bottom: 0;
}

.c-quote__authortitle {
  font-size: 14px;
  font-size: 0.875rem;
}

.ce_dlh_googlemaps > div {
  min-height: 300px;
}

@media (min-width: 700px) {
  .ce_dlh_googlemaps > div {
    min-height: 500px;
  }
}

.c-videoteaser {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 700px) {
  .c-videoteaser {
    margin-top: 64px;
    margin-top: 4rem;
  }
}

@media (min-width: 700px) {
  .c-videobutton:not(.c-pageteaser__item) {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.c-videobutton__icon {
  transition: all .3s ease-in-out;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  max-width: none;
}

.c-videobutton #play_button {
  transition: all .3s ease-in-out;
  fill: transparent;
  stroke: #fff;
  stroke-width: 2;
  -webkit-transform-origin: 32px 32px;
  transform-origin: 32px 32px;
}

.c-videobutton__link {
  font-size: 14px;
  font-size: 0.875rem;
  color: #ffffff;
}

.c-videobutton__link:link,
.c-videobutton__link:visited {
  color: #ffffff;
}

.c-videobutton__link:hover {
  color: #eaeaea;
}

.c-videobutton__link:hover #play_button {
  fill: #fff;
  transition: all .3s ease-in-out;
}

.c-videobutton__link use {
  fill: #ffffff;
}

.c-videobutton__link span {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  display: block;
}

.c-career {
  margin-top: 32px;
  margin-top: 2rem;
}

.c-career__info {
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.125rem;
}

.c-career__title {
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-career__item {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  border-bottom: 1px solid #9c9c9c;
}

@media (min-width: 700px) {
  .c-career__item {
    margin-left: 16.9491525424%;
    margin-right: 16.9491525424%;
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }
}

.c-career__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-career__downloaditem {
  margin-bottom: 0;
}

.c-career__downloadlink {
  display: table;
}

.c-career__downloadlink:link,
.c-career__downloadlink:visited {
  color: #9c9c9c;
}

.c-career__downloadlink:hover,
.c-career__downloadlink:focus {
  color: #007ac6;
}

.c-career__downloadicon {
  display: table-cell;
  margin-right: 1rem;
}

.c-career__downloadlabel {
  display: table-cell;
  vertical-align: middle;
}

.c-imageslider:after {
  content: " ";
  display: block;
  clear: both;
}

.c-imageslider__inside {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.c-imageslider__inside:after {
  content: " ";
  display: block;
  clear: both;
}

.c-imageslider__inside:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 1600px) {
  .c-imageslider__inside {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-imageslider__inside:after {
    content: " ";
    display: block;
    clear: both;
  }
}

.c-imageslider__item {
  position: relative;
  outline: none;
  text-align: center;
}

.c-imageslider__figure {
  padding-bottom: 16px;
  padding-bottom: 1rem;
  margin-left: 8.4745762712%;
  margin-right: 8.4745762712%;
  text-align: center;
}

.c-career__item .c-imageslider {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.c-newslist {
  margin-top: 32px;
  margin-top: 2rem;
}

.c-newslist__info {
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.125rem;
  color: #9c9c9c;
}

.c-newslist__title {
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-newslist__item {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  border-bottom: 1px solid #9c9c9c;
}

@media (min-width: 700px) {
  .c-newslist__item {
    margin-left: 16.9491525424%;
    margin-right: 16.9491525424%;
  }
}

.c-newslist__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-newslist__downloadlink {
  display: table;
}

.c-newslist__downloadlink:link,
.c-newslist__downloadlink:visited {
  color: #9c9c9c;
}

.c-newslist__downloadlink:hover,
.c-newslist__downloadlink:focus {
  color: #007ac6;
}

.c-newslist__downloadicon {
  display: table-cell;
  margin-right: 1rem;
}

.c-newslist__downloadlabel {
  display: table-cell;
  vertical-align: middle;
}

.c-newslist h3 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #565656;
  text-transform: none;
  font-weight: 500;
}

.c-download__link {
  display: table;
}

.c-download__link:link,
.c-download__link:visited {
  color: #9c9c9c;
}

.c-download__link:hover,
.c-download__link:focus {
  color: #007ac6;
}

.c-download__icon {
  display: table-cell;
  margin-right: 1rem;
}

.c-download__label {
  display: table-cell;
  vertical-align: middle;
}

.c-image img {
  margin-bottom: 1rem;
}

.c-image--narrow .c-image img {
  margin-bottom: 0;
}

.c-image__figcaption:before {
  content: '';
  width: 10%;
  height: 1px;
  background: #9c9c9c;
  display: block;
  margin: 0 auto;
  margin-bottom: .5rem;
}

.c-image.image_container {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-animatedimage {
  padding: 0 2rem;
}

.house,
.train,
.rails,
#tower,
#train01,
#train02,
#train03,
#train04,
#tower_stroke,
#soccerfield > .item,
#mountain,
#Ebene_1 > .item,
#mountain_stroke,
#elephant {
  display: none;
}

.c-searchengine {
  /*
    .text {
        @include x-rem(font-size, 1);
        @include x-rem(padding, .5 0);
        @include x-rem(line-height, 1);
        border: none;
        font-family: $font--sans;
    }

    .o-icon {
        vertical-align: text-bottom;
    }

    .submit {
        border: none;
        background: transparent;
        @include x-rem(padding, .5 0);

        use {
            fill: $color-grey-dark;
        }

    }*/
}

@media (min-width: 700px) {
  .c-searchengine {
    margin-left: 8.4745762712%;
    margin-right: 8.4745762712%;
  }
}

@media (min-width: 1025px) {
  .c-searchengine {
    margin-left: 16.9491525424%;
    margin-right: 16.9491525424%;
  }
}

.c-searchengine .even,
.c-searchengine .odd {
  padding-bottom: 32px;
  padding-bottom: 2rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  border-bottom: 1px solid #9c9c9c;
}

.c-searchengine h3 {
  font-size: 28px;
  font-size: 1.75rem;
}

.c-searchengine a:link,
.c-searchengine a:visited {
  color: #565656;
}

.c-searchengine a:hover,
.c-searchengine a:focus {
  color: #9c9c9c;
}

.c-searchengine .relevance {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  color: #9c9c9c;
}

.c-searchengine .duration {
  display: block;
  color: #9c9c9c;
}

.c-searchengine .context {
  font-size: 18px;
  font-size: 1.125rem;
}

.c-searchengine .url {
  font-size: 14px;
  font-size: 0.875rem;
  color: #9c9c9c;
}

.c-searchengine .header {
  color: #9c9c9c;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.c-searchengine .highlight {
  font-weight: 400;
}

.c-searchengine form {
  margin-left: 16.9491525424%;
  margin-right: 16.9491525424%;
}

.c-searchengine .input--animated label {
  top: 38px;
  bottom: -35px;
  -webkit-transform: none;
  transform: none;
  font-size: 12px;
  font-size: 0.75rem;
  opacity: 0;
  transition: all .3s;
}

.c-searchengine .input--animated input {
  width: 100%;
  transition: all .3s;
  border-bottom: 1px solid #9c9c9c;
}

.c-searchengine label {
  color: #565656;
  text-transform: uppercase;
  top: 8px;
  right: 5px;
  opacity: 1;
}

.c-searchengine input {
  color: #565656;
  -webkit-appearance: none;
  padding: 8px 0;
  padding: 0.5rem 0;
  border: 1px solid #9c9c9c;
  border-right: none;
  width: 100%;
}
.c-searchengine #ctrl_keywords_37,
.c-searchengine #ctrl_keywords_46,
.c-searchengine #ctrl_keywords_20 {
	padding: 0;
	height: 38px;
}

.c-searchengine .text {
  margin: 0;
}

.c-searchengine .formbody {
  /*text-align: center;
        display: inline-block;*/
  margin-bottom: 64px;
  margin-bottom: 4rem;
}

.c-searchengine .formbody > div:first-child {
  width: 85%;
}

.c-searchengine .formbody > div:last-child {
  width: 15%;
}

.c-searchengine .submit {
  border: 1px solid #9c9c9c;
  border-left: none;
  background: transparent;
  padding: 6px 0;
  padding: 0.375rem 0;
}
.c-searchengine #ctrl_submit_37,
.c-searchengine #ctrl_submit_46,
.c-searchengine #ctrl_submit_20 {
	padding: 0;
	height: 38px;	
}

.c-searchengine .submit use {
  fill: #565656;
}

.c-imagebox {
  padding-bottom: 48px;
  padding-bottom: 3rem;
  text-align: center;
}

.c-imagebox:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 700px) {
  .c-imagebox {
    margin-left: 8.4745762712%;
    margin-right: 8.4745762712%;
  }
}

@media (min-width: 700px) {
  .c-imagebox--small {
    margin-left: 25.4237288136%;
    margin-right: 25.4237288136%;
  }
}

.c-imagebox__figure {
  text-align: center;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-imagebox__figure--circle img {
  border-radius: 100%;
}

.c-imagebox__title {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 28px;
  font-size: 1.75rem;
}

.c-imagebox__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-imagebox__more {
  text-transform: uppercase;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

.c-imagebox a {
  font-size: 14px;
  font-size: 0.875rem;
  outline: none;
}

.c-imagebox a:link,
.c-imagebox a:visited {
  color: #9c9c9c;
}

.c-imagebox a:focus,
.c-imagebox a:hover {
  color: #007ac6;
  outline: none;
}

.scroller {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px;
  background: #9c9c9c;
  opacity: .5;
  transition: all .2s;
}

.scroller:hover {
  opacity: 1;
  transition: all .2s;
}

.scroller .icon {
  width: 24px;
  height: 24px;
  display: block;
  transition: all .2s;
}

.scroller .icon use {
  fill: #ffffff;
}

.c-topnav .c-langnav {
  display: inline-block;
  padding: 16px 0;
  padding: 1rem 0;
}

.c-langnav h6 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #9c9c9c;
  padding-bottom: 0.25rem;
}

.c-topnav .c-langnav ul {
  text-align: right;
}

.c-langnav li {
  display: inline-block;
  margin: 0;
  padding: 0 5px 0 0;
  border-right: 1px solid #9c9c9c;
}

.c-topnav .c-langnav li {
  border-right: 1px solid #e4e4e4;
}

.c-langnav li:last-child {
  border: none;
}

.c-topnav .c-langnav li:last-child {
  border: none;
}

.c-langnav .active {
  color: #b3b3b3;
  font-weight:300;
}

.c-langnav a {
  color: #9c9c9c;
}

.c-topnav .c-langnav a {
  color: #ffffff;
}

.is-sticky .c-langnav a {
  color: #565656;
}

.c-langnav a:focus,
.c-langnav a:hover {
  color: #ffffff;
}

.c-topnav .c-langnav a:focus,
.c-topnav .c-langnav a:hover {
  color: #b3b3b3;
}

@media (min-width: 700px) {
  .c-jointventure {
    margin-left: 8vw;
    margin-right: 8vw;
  }
}

@media (min-width: 1025px) {
  .c-jointventure {
    margin-left: 15vw;
    margin-right: 15vw;
  }
}

@media (min-width: 1300px) {
  .c-jointventure {
    margin-left: 20vw;
    margin-right: 20vw;
  }
}

@media (min-width: 1600px) {
  .c-jointventure {
    margin-left: 400px;
    margin-right: 400px;
  }
}

.c-jointventure .ce_image {
  text-align: center;
  width: 47.3684210526%;
  float: left;
}

.c-jointventure .ce_image:nth-child(2n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}

.c-jointventure .ce_image:nth-child(2n + 2) {
  margin-left: 52.6315789474%;
  margin-right: -100%;
  clear: none;
}

.c-jointventure .ce_image img {
  max-width: 100%;
}

.c-jointventure a {
  display: block;
}

.c-ajax__confirm {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  height: 100%;
  text-align: center;
}

.c-ajax__message {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.c-videoelement__figure {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  position: relative;
}

.c-videoelement__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all .3s ease-in-out;
}

.c-videoelement #play_button {
  transition: all .3s ease-in-out;
  fill: transparent;
  stroke: #fff;
  stroke-width: 2;
  -webkit-transform-origin: 32px 32px;
  transform-origin: 32px 32px;
}

.c-videoelement:hover #play_button {
  fill: #fff;
  transition: all .3s ease-in-out;
}

.c-timebar .slick-track {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-timebar .o-sliderarrows {
  transition: 1s;
}

.c-timebar .o-sliderarrows.slick-disabled {
  opacity: 0;
  transition: 1s;
}

.c-timebar__item {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: auto !important;
  padding: 16px 0;
  padding: 1rem 0;
}

.c-timebar__item:focus {
  outline: none;
}

.c-timebar__title {
  min-height: 1em;
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .c-timebar__title {
    font-size: 40px;
  }
}

@media (min-width: 1300px) {
  .c-timebar__title {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

.c-timebar__wrap {
  border-radius: 150px;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  margin-left: auto;
  margin-right: auto;
  transition: 0.9s all;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.c-timebar__image {
  -webkit-transform: scale(0.664516129, 1);
  transform: scale(0.664516129, 1);
  border-radius: 100%;
  height: auto;
  width: 100%;
  background-size: 166.451612903% 100%;
  background-repeat: no-repeat;
  transition: 0.9s all;
  background-position: center center;
}

.c-timebar__image img {
  visibility: hidden;
  width: 100%;
  height: auto;
}

.c-timebar__description {
  padding: 8px 0;
  padding: 0.5rem 0;
  opacity: 0;
  transition: 0.9s all;
  text-align: center;
  min-height: 2em;
}

.c-timebar__description p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 100;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .c-timebar__description {
    width: 70%;
    margin-left: 15%;
  }
}

@media (min-width: 1024px) {
  .c-timebar__description {
    width: 100%;
    margin-left: 0;
  }
}

.c-timebar .slick-slide {
  opacity: .6;
  transition: 0.9s all;
  position: relative;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.c-timebar .slick-slide:after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #9c9c9c;
  z-index: -1;
}

.c-timebar .slick-slide:first-child:after {
  left: 50%;
}

.c-timebar .slick-slide:last-child:after {
  right: 50%;
}

.c-timebar .slick-current {
  opacity: 1;
  transition: 0.9s all;
}

.c-timebar .slick-current .c-timebar__wrap {
  background: transparent;
  background-image: none !important;
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: 0.9s all;
  padding: 0;
  margin: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.c-timebar .slick-current .c-timebar__wrap img {
  opacity: 1;
}

.c-timebar .slick-current .c-timebar__description {
  padding: 16px 8px;
  padding: 1rem 0.5rem;
  transition: .5s all;
  opacity: 1;
}

.c-timebar .slick-current .c-timebar__title {
  text-align: center;
}

.c-timebar .slick-current .c-timebar__image {
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 0;
  transition: 0.9s all;
  background-size: 100% 100%;
}

@media (min-width: 768px) {
  .c-timebar .slick-current .c-timebar__image {
    width: 70%;
    margin-left: 15%;
  }
}

@media (min-width: 1024px) {
  .c-timebar .slick-current .c-timebar__image {
    width: 100%;
    margin-left: 0;
  }
}

.c-topnav__link--menu:hover .c-navicon,
.c-topnav__link--menu:focus .c-navicon {
  width: 17px;
  margin-right: 3px;
}

.c-topnav__link--menu:hover .c-navicon:before,
.c-topnav__link--menu:focus .c-navicon:before {
  width: 12px;
}

.c-topnav__link--menu:hover .c-navicon:after,
.c-topnav__link--menu:focus .c-navicon:after {
  width: 15px;
}

.c-topnav__link--menu:hover .c-navicon.is-clicked:before,
.c-topnav__link--menu:focus .c-navicon.is-clicked:before {
  width: 20px !important;
}

.c-topnav__link--menu:hover .c-navicon.is-clicked:after,
.c-topnav__link--menu:focus .c-navicon.is-clicked:after {
  width: 20px !important;
}

.c-navicon {
  width: 20px;
  height: 2px;
  display: inline-block;
  background: #ffffff;
  position: relative;
  margin: 5px 0 5px 10px;
  transition: all 0.5s cubic-bezier(0.64, -0.51, 0.34, 1.5);
  /* custom */
}

.is-sticky .c-navicon {
  background: #454545;
}

.c-navicon:before,
.c-navicon:after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: all 0.5s cubic-bezier(0.64, -0.51, 0.34, 1.5);
  /* custom */
}

.is-sticky .c-navicon:before,
.is-sticky .c-navicon:after {
  background: #454545;
}

.c-navicon:before {
  top: -5px;
}

.c-navicon:focus,
.c-navicon:hover {
  cursor: pointer;
}

.c-navicon:after {
  bottom: -5px;
}

.c-navicon.is-clicked {
  background: transparent;
}

.c-navicon.is-clicked:before {
  top: 0;
  width: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-navicon.is-clicked:after {
  top: 0;
  width: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-movielist {
  margin-top: 32px;
  margin-top: 2rem;
}

@media (min-width: 1025px) {
  .c-movielist {
    margin-left: 16.9491525424%;
    margin-right: 16.9491525424%;
  }
}

.c-movielist__info {
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.125rem;
  color: #9c9c9c;
}

.c-movielist__title {
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-movielist__item {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #9c9c9c;
}

@media (min-width: 1025px) {
  .c-movielist__item {
    width: 48.7179487179%;
    float: left;
  }

  .c-movielist__item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }

  .c-movielist__item:nth-child(2n + 2) {
    margin-left: 51.2820512821%;
    margin-right: -100%;
    clear: none;
  }
}

.c-movielist__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.c-movielist__downloadlink {
  display: table;
}

.c-movielist__downloadlink:link,
.c-movielist__downloadlink:visited {
  color: #9c9c9c;
}

.c-movielist__downloadlink:hover,
.c-movielist__downloadlink:focus {
  color: #007ac6;
}

.c-movielist__downloadicon {
  display: table-cell;
  margin-right: 1rem;
}

.c-movielist__downloadlabel {
  display: table-cell;
  vertical-align: middle;
}

.c-movielist h3 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #565656;
  text-transform: none;
  font-weight: 500;
}

.breakline {
  background-color: #ccc;
  height: 1px;
  margin-bottom: 64px;
  margin-bottom: 4rem;
  margin-top: 48px;
  margin-top: 3rem;
}

@media (min-width: 1025px) {
  .breakline {
    margin-left: 16.9491525424%;
    margin-right: 16.9491525424%;
  }
}

.t-404 h2 {
  font-size: 120px;
}

.t-404 p {
  font-size: 22px;
}

.no-margin {
  margin: 0 !important;
}

@media (min-width: 1300px) {
  .force-mobile {
    display: none;
  }
}

@media (min-width: 900px) {
  .forbigscreens .c-row__inner {
    width: 80%;
    max-width: 900px;
  }

  .forbigscreens .c-row__inner .c-textimage--left .c-textimage__text {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.pressemitteilungen .o-sliderarrows:after,
.press-releases .o-sliderarrows:after {
  background: transparent;
}

body.ie.daten-fakten .c-main .o-grid__col1,
body.ie.daten-fakten .c-main .o-grid__col2,
body.ie.daten-fakten .c-main .o-grid__col3 {
  overflow: hidden;
}

@media (min-width: 0) and (max-width: 1025px) {
  body.ie.daten-fakten .c-main .o-grid__col1,
  body.ie.daten-fakten .c-main .o-grid__col2,
  body.ie.daten-fakten .c-main .o-grid__col3 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    height: 100%;
    float: none;
    padding-bottom: 64px;
    padding-bottom: 4rem;
  }

  body.ie.daten-fakten .c-main .o-grid__col1 .c-countup-single__text,
  body.ie.daten-fakten .c-main .o-grid__col2 .c-countup-single__text,
  body.ie.daten-fakten .c-main .o-grid__col3 .c-countup-single__text {
    max-width: 100%;
  }

  body.ie.daten-fakten .c-main .o-grid__col1 svg,
  body.ie.daten-fakten .c-main .o-grid__col2 svg,
  body.ie.daten-fakten .c-main .o-grid__col3 svg {
    margin-top: 320px;
    margin-top: 20rem;
  }
}

@media (min-width: 0) and (max-width: 1025px) and (min-width: 0) and (max-width: 700px) {
  body.ie.daten-fakten .c-main .o-grid__col1 svg,
  body.ie.daten-fakten .c-main .o-grid__col2 svg,
  body.ie.daten-fakten .c-main .o-grid__col3 svg {
    margin-top: 160px;
    margin-top: 10rem;
  }
}

@media (min-width: 0) and (max-width: 1025px) and (min-width: 0) and (max-width: 480px) {
  body.ie.daten-fakten .c-main .o-grid__col1 svg,
  body.ie.daten-fakten .c-main .o-grid__col2 svg,
  body.ie.daten-fakten .c-main .o-grid__col3 svg {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

@media (min-width: 0) and (max-width: 1025px) {
  body.ie.daten-fakten .c-main .o-grid__col1 .ce_headline,
  body.ie.daten-fakten .c-main .o-grid__col2 .ce_headline,
  body.ie.daten-fakten .c-main .o-grid__col3 .ce_headline {
    width: 100%;
  }
}

body.ie.daten-fakten .c-main .o-grid__col1 svg,
body.ie.daten-fakten .c-main .o-grid__col2 svg,
body.ie.daten-fakten .c-main .o-grid__col3 svg {
  margin-top: 16px;
  margin-top: 1rem;
}

body.ie.daten-fakten .c-main .o-grid__col1 .c-countup-single__item,
body.ie.daten-fakten .c-main .o-grid__col2 .c-countup-single__item,
body.ie.daten-fakten .c-main .o-grid__col3 .c-countup-single__item {
  min-height: 448px;
  min-height: 28rem;
}

@media (min-width: 0) and (max-width: 1025px) {
  body.ie.daten-fakten .c-main .o-grid__col1 .c-countup-single__item,
  body.ie.daten-fakten .c-main .o-grid__col2 .c-countup-single__item,
  body.ie.daten-fakten .c-main .o-grid__col3 .c-countup-single__item {
    min-height: 608px;
    min-height: 38rem;
  }
}

@media (min-width: 0) and (max-width: 850px) {
  body.ie.daten-fakten .c-main .o-grid__col1 .c-countup-single__item,
  body.ie.daten-fakten .c-main .o-grid__col2 .c-countup-single__item,
  body.ie.daten-fakten .c-main .o-grid__col3 .c-countup-single__item {
    min-height: 480px;
    min-height: 30rem;
  }
}

@media (min-width: 0) and (max-width: 700px) {
  body.ie.daten-fakten .c-main .o-grid__col1 .c-countup-single__item,
  body.ie.daten-fakten .c-main .o-grid__col2 .c-countup-single__item,
  body.ie.daten-fakten .c-main .o-grid__col3 .c-countup-single__item {
    min-height: 448px;
    min-height: 28rem;
  }
}

@media (min-width: 0) and (max-width: 480px) {
  body.ie.daten-fakten .c-main .o-grid__col1 .c-countup-single__item,
  body.ie.daten-fakten .c-main .o-grid__col2 .c-countup-single__item,
  body.ie.daten-fakten .c-main .o-grid__col3 .c-countup-single__item {
    min-height: 352px;
    min-height: 22rem;
  }
}

body:not(.ie).daten-fakten .c-main .o-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

body:not(.ie).daten-fakten .c-main .o-grid__col1,
body:not(.ie).daten-fakten .c-main .o-grid__col2,
body:not(.ie).daten-fakten .c-main .o-grid__col3 {
  margin: 0 !important;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  float: none;
}

@media (min-width: 0) and (max-width: 1025px) {
  body:not(.ie).daten-fakten .c-main .o-grid__col1,
  body:not(.ie).daten-fakten .c-main .o-grid__col2,
  body:not(.ie).daten-fakten .c-main .o-grid__col3 {
    width: 100%;
    padding-bottom: 64px;
    padding-bottom: 4rem;
  }

  body:not(.ie).daten-fakten .c-main .o-grid__col1 .c-countup-single__text,
  body:not(.ie).daten-fakten .c-main .o-grid__col2 .c-countup-single__text,
  body:not(.ie).daten-fakten .c-main .o-grid__col3 .c-countup-single__text {
    max-width: 100%;
  }
}

body:not(.ie).daten-fakten .c-main .o-grid__col1 svg,
body:not(.ie).daten-fakten .c-main .o-grid__col2 svg,
body:not(.ie).daten-fakten .c-main .o-grid__col3 svg {
  width: 70%;
  height: auto;
}

@media (min-width: 0) and (max-width: 1025px) {
  body:not(.ie).daten-fakten .c-main .c-row--imagerow-small {
    margin-top: 160px;
    margin-top: 10rem;
  }
}

body:not(.ie).daten-fakten .c-main .c-row--has-bg svg {
  width: 70%;
}

body.ie.suche .o-form__button {
  padding: 4.5px 0;
  margin-left: -1px;
}

body.ie.suche .widget-text input[type="search"] {
  padding-left: 16px;
  padding-left: 1rem;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/** SLICK THEME */

/* Slider */

.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 5;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "proxima-nova";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: 25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 25px;
}

[dir="rtl"] .slick-next {
  left: 25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 20px 0 30px 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "proxima-nova";
  font-size: 36px;
  line-height: 20px;
  text-align: center;
  color: #9c9c9c;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #007ac6;
  opacity: 0.75;
}

/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid transparent;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid transparent;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0;
  background: #000;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0;
  background: tranparent;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
             * Remove all paddings around the image on small screen
             */

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/*
 * Tipped - A Complete Javascript Tooltip Solution - v4.4.2
 * (c) 2012-2015 Nick Stakenburg
 *
 * http://www.tippedjs.com
 *
 * License: http://www.tippedjs.com/license
 */

.tpd-tooltip {
  position: absolute;
}

/* Fix for CSS frameworks that don't keep the use of box-sizing: border-box
   within their own namespace */

/* Content */

.tpd-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tpd-content-spacer,
.tpd-content-relative,
.tpd-content-relative-padder {
  float: left;
  position: relative;
}

.tpd-content-relative {
  width: 100%;
}

.tpd-content {
  float: left;
  clear: both;
  position: relative;
  padding: 10px;
  font-size: 11px;
  line-height: 16px;
  color: #fff;
}

.tpd-has-inner-close .tpd-content-relative .tpd-content {
  padding-right: 0 !important;
}

.tpd-tooltip .tpd-content-no-padding {
  padding: 0 !important;
}

.tpd-title-wrapper {
  float: left;
  position: relative;
  overflow: hidden;
}

.tpd-title-spacer {
  float: left;
}

.tpd-title-relative,
.tpd-title-relative-padder {
  float: left;
  position: relative;
}

.tpd-title-relative {
  width: 100%;
}

.tpd-title {
  float: left;
  position: relative;
  font-size: 11px;
  line-height: 16px;
  padding: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

.tpd-has-title-close .tpd-title {
  padding-right: 0 !important;
}

.tpd-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
}

.tpd-close-icon {
  float: left;
  font-family: Arial, Baskerville, monospace;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
}

/* Skin */

.tpd-skin {
  position: absolute;
  top: 0;
  left: 0;
}

.tpd-frames {
  position: absolute;
  top: 0;
  left: 0;
}

.tpd-frames .tpd-frame {
  float: left;
  width: 100%;
  height: 100%;
  clear: both;
  display: none;
}

.tpd-visible-frame-top .tpd-frame-top {
  display: block;
}

.tpd-visible-frame-bottom .tpd-frame-bottom {
  display: block;
}

.tpd-visible-frame-left .tpd-frame-left {
  display: block;
}

.tpd-visible-frame-right .tpd-frame-right {
  display: block;
}

.tpd-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

.tpd-background-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  pointer-events: none;
}

.tpd-no-shadow .tpd-skin .tpd-background-shadow {
  box-shadow: none !important;
}

.tpd-background-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* only the top background box should be shown when not using a stem */

.tpd-no-stem .tpd-background-box,
.tpd-no-stem .tpd-shift-stem {
  display: none;
}

.tpd-no-stem .tpd-background-box-top {
  display: block;
}

.tpd-background-box-shift,
.tpd-background-box-shift-further {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}

.tpd-background {
  border-radius: 10px;
  float: left;
  clear: both;
  background: none;
  /* Safari */
  background-clip: padding-box;
  /* IE9+, Firefox 4+, Opera, Chrome */
  border-style: solid;
  border-width: 1px;
  border-color: #282828;
  border-color: rgba(255, 255, 255, 0.1);
  /* opacity here bugs out in firefox, .tpd-background-content should have no opacity if this opacity is less than 1 */
}

.tpd-background-loading {
  display: none;
}

/* no radius */

.tpd-no-radius .tpd-skin .tpd-frames .tpd-frame .tpd-backgrounds .tpd-background {
  border-radius: 0;
}

.tpd-background-title {
  float: left;
  clear: both;
  width: 100%;
  background-color: #282828;
}

.tpd-background-content {
  float: left;
  clear: both;
  width: 100%;
  background-color: #282828;
}

.tpd-background-border-hack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
}

.tpd-background-box-top {
  top: 0;
}

.tpd-background-box-bottom {
  bottom: 0;
}

.tpd-background-box-left {
  left: 0;
}

.tpd-background-box-right {
  right: 0;
}

/* iframeshim IE6 */

.tpd-iframeshim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  zoom: 1;
  filter: alpha(opacity=0);
  opacity: 0;
}

/* Skin / Stems */

.tpd-shift-stem {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.tpd-shift-stem-side {
  position: absolute;
}

.tpd-frame-top .tpd-shift-stem-side,
.tpd-frame-bottom .tpd-shift-stem-side {
  width: 100%;
}

.tpd-frame-left .tpd-shift-stem-side,
.tpd-frame-right .tpd-shift-stem-side {
  height: 100%;
}

.tpd-stem {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  /* shows possible invalid subpx rendering */
  width: 16px;
  /* best cross browser stem: width = 2 x height (90deg angle) */
  height: 8px;
  margin-left: 3px;
  /* space from the side */
  margin-top: 2px;
  /* space between target and stem */
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

/* remove margins once we're done measuring */

.tpd-tooltip .tpd-skin .tpd-frames .tpd-frame .tpd-shift-stem .tpd-stem-reset {
  margin: 0 !important;
}

.tpd-stem-spacer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tpd-stem-reset .tpd-stem-spacer {
  margin-top: 0;
}

.tpd-stem-point {
  width: 100px;
  position: absolute;
  top: 0;
  left: 50%;
}

.tpd-stem-downscale,
.tpd-stem-transform {
  float: left;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  position: relative;
}

.tpd-stem-side {
  width: 50%;
  height: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}

.tpd-stem-side-inversed {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.tpd-stem-triangle {
  width: 0;
  height: 0;
  border-bottom-style: solid;
  border-left-color: transparent;
  border-left-style: solid;
  position: absolute;
  top: 0;
  left: 0;
}

.tpd-stem-border {
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #fff;
  /* will become transparent */
  border-right-color: #fff;
  border-right-style: solid;
  border-right-width: 0;
}

.tpd-stem-border-corner {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-right-style: solid;
  border-right-width: 0;
}

/* fixes rendering issue in IE */

.tpd-stem * {
  z-index: 0;
  zoom: 1;
}

/* used by IE < 9 */

.tpd-stem-border-center-offset,
.tpd-stem-border-center-offset-inverse {
  float: left;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tpd-stem-notransform {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}

.tpd-stem-notransform .tpd-stem-border {
  height: 100%;
  position: relative;
  float: left;
  top: 0;
  left: 0;
  margin: 0;
}

.tpd-stem-notransform .tpd-stem-border-center {
  position: absolute;
}

.tpd-stem-notransform .tpd-stem-border-corner {
  background: #fff;
  border: 0;
  top: auto;
  left: auto;
}

.tpd-stem-notransform .tpd-stem-border-center,
.tpd-stem-notransform .tpd-stem-triangle {
  height: 0;
  border: 0;
  left: 50%;
}

/* transformations for left/right/bottom */

.tpd-stem-transform-left {
  -webkit-transform: rotate(-90deg) scale(-1, 1);
  transform: rotate(-90deg) scale(-1, 1);
}

.tpd-stem-transform-right {
  -webkit-transform: rotate(90deg) translate(0, -100%);
  transform: rotate(90deg) translate(0, -100%);
}

.tpd-stem-transform-bottom {
  -webkit-transform: scale(1, -1) translate(0, -100%);
  transform: scale(1, -1) translate(0, -100%);
}

/* Spinner */

.tpd-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 36px;
}

.tpd-spinner-spin {
  position: relative;
  float: left;
  margin: 8px 0 0 13px;
  text-indent: -9999em;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #fff;
  -webkit-animation: tpd-spinner-animation 1.1s infinite linear;
  animation: tpd-spinner-animation 1.1s infinite linear;
  box-sizing: border-box !important;
}

.tpd-spinner-spin,
.tpd-spinner-spin:after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

@-webkit-keyframes tpd-spinner-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes tpd-spinner-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* show the loader while loading and hide all the content */

.tpd-is-loading .tpd-content-wrapper,
.tpd-is-loading .tpd-title-wrapper {
  display: none;
}

.tpd-is-loading .tpd-background {
  display: none;
}

.tpd-is-loading .tpd-background-loading {
  display: block;
}

/* Resets while measuring content */

.tpd-tooltip-measuring {
  top: 0;
  left: 0;
  position: absolute;
  max-width: 100%;
  width: 100%;
}

.tpd-tooltip-measuring .tpd-skin,
.tpd-tooltip-measuring .tpd-spinner {
  display: none;
}

.tpd-tooltip-measuring .tpd-content-wrapper,
.tpd-tooltip-measuring .tpd-title-wrapper {
  display: block;
}

/* Links */

.tpd-tooltip a,
.tpd-tooltip a:hover {
  color: #808080;
  text-decoration: underline;
}

.tpd-tooltip a:hover {
  color: #6c6c6c;
}

/*
 * Sizes
 */

/* x-small */

.tpd-size-x-small .tpd-content,
.tpd-size-x-small .tpd-title {
  padding: 7px 8px;
  font-size: 10px;
  line-height: 15px;
}

.tpd-size-x-small .tpd-background {
  border-radius: 5px;
}

.tpd-size-x-small .tpd-stem {
  width: 12px;
  height: 6px;
  margin-left: 4px;
  margin-top: 2px;
  /* space between target and stem */
}

.tpd-size-x-small.tpd-no-radius .tpd-stem {
  margin-left: 7px;
}

.tpd-size-x-small .tpd-close {
  margin-bottom: 1px;
}

.tpd-size-x-small .tpd-spinner {
  width: 35px;
  height: 29px;
}

.tpd-size-x-small .tpd-spinner-spin {
  margin: 6px 0 0 9px;
}

.tpd-size-x-small .tpd-spinner-spin,
.tpd-size-x-small .tpd-spinner-spin:after {
  width: 17px;
  height: 17px;
}

/* small */

.tpd-size-small .tpd-content,
.tpd-size-small .tpd-title {
  padding: 8px;
  font-size: 10px;
  line-height: 16px;
}

.tpd-size-small .tpd-background {
  border-radius: 6px;
}

.tpd-size-small .tpd-stem {
  width: 14px;
  height: 7px;
  margin-left: 5px;
  margin-top: 2px;
  /* space between target and stem */
}

.tpd-size-small.tpd-no-radius .tpd-stem {
  margin-left: 8px;
}

.tpd-size-small .tpd-close {
  margin: 2px 1px;
}

.tpd-size-small .tpd-spinner {
  width: 42px;
  height: 32px;
}

.tpd-size-small .tpd-spinner-spin {
  margin: 7px 0 0 13px;
}

.tpd-size-small .tpd-spinner-spin,
.tpd-size-small .tpd-spinner-spin:after {
  width: 18px;
  height: 18px;
}

/* medium (default) */

.tpd-size-medium .tpd-content,
.tpd-size-medium .tpd-title {
  padding: 10px;
  font-size: 11px;
  line-height: 16px;
}

.tpd-size-medium .tpd-background {
  border-radius: 8px;
}

.tpd-size-medium .tpd-stem {
  width: 16px;
  /* best cross browser stem width is 2xheight, for a 90deg angle */
  height: 8px;
  margin-left: 6px;
  /* space from the side */
  margin-top: 2px;
  /* space between target and stem */
}

.tpd-size-medium.tpd-no-radius .tpd-stem {
  margin-left: 10px;
}

.tpd-size-medium .tpd-close {
  margin: 4px 2px;
}

/* ideal spinner dimensions don't cause movement op top and
   on the stem when switching to text using position:'topleft' */

.tpd-size-medium .tpd-spinner {
  width: 50px;
  height: 36px;
}

.tpd-size-medium .tpd-spinner-spin {
  margin: 8px 0 0 15px;
}

.tpd-size-medium .tpd-spinner-spin,
.tpd-size-medium .tpd-spinner-spin:after {
  width: 20px;
  height: 20px;
}

/* large */

.tpd-size-large .tpd-content,
.tpd-size-large .tpd-title {
  padding: 10px;
  font-size: 13px;
  line-height: 18px;
}

.tpd-size-large .tpd-background {
  border-radius: 8px;
}

.tpd-size-large .tpd-stem {
  width: 18px;
  height: 9px;
  margin-left: 7px;
  margin-top: 2px;
  /* space between target and stem */
}

.tpd-size-large.tpd-no-radius .tpd-stem {
  margin-left: 10px;
}

.tpd-size-large .tpd-close {
  margin: 5px 2px 5px 2px;
}

.tpd-size-large .tpd-spinner {
  width: 54px;
  height: 38px;
}

.tpd-size-large .tpd-spinner-spin {
  margin: 9px 0 0 17px;
}

.tpd-size-large .tpd-spinner-spin,
.tpd-size-large .tpd-spinner-spin:after {
  width: 20px;
  height: 20px;
}

/* Skins */

/* default (dark) */

.tpd-skin-dark .tpd-content,
.tpd-skin-dark .tpd-title,
.tpd-skin-dark .tpd-close {
  color: #fff;
}

.tpd-skin-dark .tpd-background-content,
.tpd-skin-dark .tpd-background-title {
  background-color: #282828;
}

.tpd-skin-dark .tpd-background {
  border-width: 1px;
  border-color: #282828;
  border-color: rgba(255, 255, 255, 0.1);
}

/* line below the title */

.tpd-skin-dark .tpd-title-wrapper {
  border-bottom: 1px solid #404040;
}

/* spinner */

.tpd-skin-dark .tpd-spinner-spin {
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: #fff;
}

/* links */

.tpd-skin-dark a {
  color: #ccc;
}

.tpd-skin-dark a:hover {
  color: #c0c0c0;
}

/* light */

.tpd-skin-light .tpd-content,
.tpd-skin-light .tpd-title,
.tpd-skin-light .tpd-close {
  color: #333;
}

.tpd-skin-light .tpd-background-content {
  background-color: #fff;
}

.tpd-skin-light .tpd-background {
  border-width: 1px;
  border-color: #838383;
  border-color: rgba(0, 0, 0, 0.3);
}

.tpd-skin-light .tpd-background-title {
  background-color: #f7f7f7;
}

.tpd-skin-light .tpd-title-wrapper {
  border-bottom: 1px solid #c0c0c0;
}

.tpd-skin-light .tpd-background-shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

/* fallback for no/disabled shadow */

.tpd-skin-light.tpd-no-shadow .tpd-background {
  border-color: #acacac;
  border-color: rgba(100, 100, 100, 0.3);
}

.tpd-skin-light .tpd-spinner-spin {
  border-color: rgba(51, 51, 51, 0.2);
  border-left-color: #333;
}

.tpd-skin-light a {
  color: #808080;
}

.tpd-skin-light a:hover {
  color: #6c6c6c;
}

/* gray */

.tpd-skin-gray .tpd-content,
.tpd-skin-gray .tpd-title,
.tpd-skin-gray .tpd-close {
  color: #fff;
}

.tpd-skin-gray .tpd-background-content,
.tpd-skin-gray .tpd-background-title {
  background-color: #727272;
}

.tpd-skin-gray .tpd-background {
  border-width: 1px;
  border-color: #727272;
  border-color: rgba(255, 255, 255, 0.1);
}

.tpd-skin-gray .tpd-title-wrapper {
  border-bottom: 1px solid #505050;
}

.tpd-skin-gray .tpd-spinner-spin {
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: #fff;
}

.tpd-skin-gray a {
  color: #ccc;
}

.tpd-skin-gray a:hover {
  color: #b6b6b6;
}

/* red */

.tpd-skin-red .tpd-content,
.tpd-skin-red .tpd-title,
.tpd-skin-red .tpd-close {
  color: #fff;
}

.tpd-skin-red .tpd-background-content {
  background-color: #e13c37;
}

.tpd-skin-red .tpd-background {
  border-width: 1px;
  border-color: #a30500;
  border-color: rgba(12, 0, 0, 0.6);
}

.tpd-skin-red .tpd-background-title {
  background-color: #e13c37;
}

.tpd-skin-red .tpd-title-wrapper {
  border-bottom: 1px solid #a30500;
}

.tpd-skin-red .tpd-background-shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.tpd-skin-red .tpd-spinner-spin {
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: #fff;
}

.tpd-skin-red a {
  color: #ddd;
}

.tpd-skin-red a:hover {
  color: #c6c6c6;
}

/* green */

.tpd-skin-green .tpd-content,
.tpd-skin-green .tpd-title,
.tpd-skin-green .tpd-close {
  color: #fff;
}

.tpd-skin-green .tpd-background-content {
  background-color: #4aab3a;
}

.tpd-skin-green .tpd-background {
  border-width: 1px;
  border-color: #127c00;
  border-color: rgba(0, 12, 0, 0.6);
}

.tpd-skin-green .tpd-background-title {
  background-color: #4aab3a;
}

.tpd-skin-green .tpd-title-wrapper {
  border-bottom: 1px solid #127c00;
}

.tpd-skin-green .tpd-background-shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.tpd-skin-green .tpd-spinner-spin {
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: #fff;
}

.tpd-skin-green a {
  color: #ddd;
}

.tpd-skin-green a:hover {
  color: #c6c6c6;
}

/* blue */

.tpd-skin-blue .tpd-content,
.tpd-skin-blue .tpd-title,
.tpd-skin-blue .tpd-close {
  color: #fff;
}

.tpd-skin-blue .tpd-background-content {
  background-color: #45a3e3;
}

.tpd-skin-blue .tpd-background {
  border-width: 1px;
  border-color: #1674b4;
  border-color: rgba(0, 0, 12, 0.6);
}

.tpd-skin-blue .tpd-background-title {
  background-color: #45a3e3;
}

.tpd-skin-blue .tpd-title-wrapper {
  border-bottom: 1px solid #1674b4;
}

.tpd-skin-blue .tpd-background-shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.tpd-skin-blue .tpd-spinner-spin {
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: #fff;
}

.tpd-skin-blue a {
  color: #ddd;
}

.tpd-skin-blue a:hover {
  color: #c6c6c6;
}

/* lightyellow */

.tpd-skin-lightyellow .tpd-content,
.tpd-skin-lightyellow .tpd-title,
.tpd-skin-lightyellow .tpd-close {
  color: #333;
}

.tpd-skin-lightyellow .tpd-background-content {
  background-color: #ffffa9;
}

.tpd-skin-lightyellow .tpd-background {
  border-width: 1px;
  border-color: #9d9c8c;
  border-color: rgba(8, 8, 0, 0.35);
}

.tpd-skin-lightyellow .tpd-background-title {
  background-color: #ffffa9;
}

.tpd-skin-lightyellow .tpd-title-wrapper {
  border-bottom: 1px solid #a7a697;
}

.tpd-skin-lightyellow .tpd-background-shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.tpd-skin-lightyellow .tpd-spinner-spin {
  border-color: rgba(51, 51, 51, 0.2);
  border-left-color: #333;
}

.tpd-skin-lightyellow a {
  color: #777;
}

.tpd-skin-lightyellow a:hover {
  color: #868686;
}

/* lightblue */

.tpd-skin-lightblue .tpd-content,
.tpd-skin-lightblue .tpd-title,
.tpd-skin-lightblue .tpd-close {
  color: #333;
}

.tpd-skin-lightblue .tpd-background-content {
  background-color: #bce5ff;
}

.tpd-skin-lightblue .tpd-background {
  border-width: 1px;
  border-color: #7c868a;
  border-color: rgba(0, 0, 8, 0.35);
}

.tpd-skin-lightblue .tpd-background-title {
  background-color: #bce5ff;
}

.tpd-skin-lightblue .tpd-title-wrapper {
  border-bottom: 1px solid #909b9f;
}

.tpd-skin-lightblue .tpd-background-shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.tpd-skin-lightblue .tpd-spinner-spin {
  border-color: rgba(51, 51, 51, 0.2);
  border-left-color: #333;
}

.tpd-skin-lightblue a {
  color: #777;
}

.tpd-skin-lightblue a:hover {
  color: #868686;
}

/* lightpink */

.tpd-skin-lightpink .tpd-content,
.tpd-skin-lightpink .tpd-title,
.tpd-skin-lightpink .tpd-close {
  color: #333;
}

.tpd-skin-lightpink .tpd-background-content {
  background-color: #ffc4bf;
}

.tpd-skin-lightpink .tpd-background {
  border-width: 1px;
  border-color: #8d817c;
  border-color: rgba(8, 0, 0, 0.35);
}

.tpd-skin-lightpink .tpd-background-title {
  background-color: #ffc4bf;
}

.tpd-skin-lightpink .tpd-title-wrapper {
  border-bottom: 1px solid #a08f8f;
}

.tpd-skin-lightpink .tpd-background-shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.tpd-skin-lightpink .tpd-spinner-spin {
  border-color: rgba(51, 51, 51, 0.2);
  border-left-color: #333;
}

.tpd-skin-lightpink a {
  color: #777;
}

.tpd-skin-lightpink a:hover {
  color: #868686;
}