@charset "UTF-8";
@import url('fonts.css');
html{
  overflow-x: hidden;
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

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

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

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

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

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

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

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

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

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

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

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

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

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

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

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

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

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

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

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

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

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

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   Author's custom styles
   ========================================================================== */



body{
    font-family: 'Helvetic Nue Light', sans-serif;
    letter-spacing: 1px;
}

.dropdown-menu{
      top: 100%;
    border: 0;
}
/*Navbar Customization*/ 
.navbar{

    min-height: 65px;
    padding: 10px 0;
  }
  .navbar-default{
    background-color: #fff;
  }
  .navbar-brand{
    width: 270px;
    margin-right: 20px;
  }
  .navbar-brand > img{
    position: absolute;
    top: -4px;
    width: 25%;
  }
  #bs-example-navbar-collapse-1 > ul:nth-child(1){
    margin-top: 10px;
    margin-left: 10%;
  }
  .navbar-nav > li {

    font-family: 'Helvetica Neue Light', sans-serif;
    font-weight: bold;
    font-size: 17px;
    text-shadow: none;
    text-transform: uppercase;
    box-shadow: none;
    border: 0;
        letter-spacing: 1px;
    color: #1c3766;
  }
  .navbar-default .navbar-nav>li>a{
    color: #1c3766;
  }
  .navbar-default .navbar-nav>li>a.active,
  .dropdown-menu>li>a.active{
    color: #BADA55 !important;
  }
  .navbar-default .navbar-nav>li>a:hover,
  .dropdown-menu>li>a:hover{
    color: #BADA55 !important;
    background: #fff;
  }
  .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover,
  .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover{
    background-color: transparent;
  }
  .navbar-default .navbar-nav>li>a:hover,
  .navbar-default .navbar-nav>.open>a, 
  .navbar-default .navbar-nav>.open>a:focus,
  .navbar-default .navbar-nav>.open>a:hover{
    color: #BADA55;
  }
  .navbar-nav > li > a {
    padding-bottom: 30px;
    padding-top: 30px;
    color: #1c3766;
  }
  .nav.navbar-nav li img{
    position: relative;
    top: 5px;
    margin-right: 5px;
}
.dropdown-menu>li>a{
  font-family: 'Helvetica Neue Light', sans-serif;
  color: #1c3766;
  text-align: center;
      font-weight: 600;
}
#home{
    position: relative;
  }

  .home_box{
    position: absolute;
    bottom: 8%;
    left: 6%;
    width: 40%;
}
.home_box h1{
    font-size: 45px;
}
.home_box p{
    margin-top: 15px;
    font-family: 'Helvetica Neue Medium', sans-serif;
    font-weight: bold;
    font-size: 21px;
    letter-spacing: 1px;
    color: #fff;
  }
  .home_box p img{
    display: inline;
  }
  .home_box button{
    color: #fff;
    padding: 11px 12%;
    transition: all 0.5s linear 0s;
    -o-transition: all 0.5s linear 0s;
    -ms-transition: all 0.5s linear 0s;
    -moz-transition: all 0.5s linear 0s;
    -webkit-transition: all 0.5s linear 0s;
    text-transform: uppercase;
    font-size: 17px;
  }
  .home_box button:hover{
    background: #fff;
    border: 1px solid #fff;
    color: #333;
  }
.topright {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 18px;
}
.topright img{
    width: 30px;
	height: 10px;
}
  /*Proprietory*/
  #proprietary{
    background-color: #47505d;
    padding: 25px;
  }

  .proprietary_box{
    width: 80%;
    background-color: #40464f;
    margin: 5% auto;
    display: table;
  }
  .proprietary_box > div{
    width: 50%;
    float: left;
  }
  .proprietary_box img{
    width: 100%;
}
.proprietary_box p{
    font-size: 17px;line-height: 20px;
    font-family: 'Helvetica Neue Light', sans-serif;
}

  .proprietary_box > div:nth-child(2){
    padding:10px 20px 0px;
  }

  .proprietary_box > div:nth-child(2) > p:first-child{
    color: #BADA55;
  }
  .proprietary_box a{
    border: 1px solid #BADA55;
    font-size: 13px;
  }



  /*Solutions*/
  #solutions{
    background-color: #fff;
    padding: 25px;
  }

  .solutions_box{
    width: 80%;
    background-color: #fff;
    margin: 3% auto 0;
    display: table;
  }
  .solutions_box > div{
    width: 50%;
    float: left;
  }
  .solutions_box img{
    width: 100%;
}
.solutions_box p{
    font-size: 17px;
    line-height: 20px;
    font-family: helvetica-w01-light,helvetica-w02-light,sans-serif;
    font: normal normal normal 17px/1.4em din-next-w01-light,din-next-w02-light,din-next-w10-light,sans-serif;
    color: #605E5E !important;
    letter-spacing: normal;
    width: 87%;
}

  .solutions_box > div:nth-child(1){
    padding:5px 0px 0px;
  }

  .solutions_box iframe{
    width: 100%;
    height: 288px;
  }
  .solutions_box a{
    border: 1px solid #BADA55;
    font-size: 13px;
    color: #BADA55;

    padding: 11px 12%;
    transition: all 0.5s linear 0s;
    -o-transition: all 0.5s linear 0s;
    -ms-transition: all 0.5s linear 0s;
    -moz-transition: all 0.5s linear 0s;
    -webkit-transition: all 0.5s linear 0s;
    text-transform: uppercase;

    font-weight: bold;
  }


  .solutions_box a:hover{
    border: 1px solid #BADA55;
    font-size: 13px;
    color: #fff;
    background-color: #BADA55;
  }

  /*Media*/
  #media{
    background-color: #47505d;
    padding: 15px 15px;
  }

  .media_box{
    width: 80%;
    margin: 5% auto;
    display: table;
  }
  .media_box > div{
    width: 50%;
    float: left;
  }
  .media_box > div:last-child{
    float: right;
  }
  .media_box hr{
    width: 95%;
    color: #fff;
    margin-left: 0;
  }
  .media_box h2{
    font-weight: bold;
    font-family: 'Helvetica Neue Light', sans-serif;
    color: #fff;

  }
  .media_box img{
    width: 100%;
}
.media_box p{
    font-size: 17px;line-height: 20px;
    font-family: 'Helvetica Neue Medium', sans-serif;
}
  .media_box > div:nth-child(2) > p:first-child{
    color: #BADA55;
  }
  .media_box [class*='col-md-'] a{
    font-size: 20px;
    color: #fff;
    font-family: 'Helvetica Neue Light', sans-serif;
    width: 94%;
    display: inline-block;
  }
  .media_box [class*='col-md-'] a:hover{
    text-decoration: none;
  }

  .media_box a.btn-exgn{
    border: 1px solid #fff;
  }

  /*Why*/
  #why{
    background-color: rgba(0,0,0,0.8);
    padding: 25px;
    background-image: url(../img/why_bg.png);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
  }

  .why_box{
    color: #fff;
    font-weight: bold;
    width: 80%;
    margin: 5% auto;
    display: table;
  }
  .why_box > div{
    width: 50%;
    float: left;
  }
  .why_box img{
    width: 100%;
}
.why_box h3{
  font-family: 'Helvetica Neue Medium', sans-serif;
}
.why_box p{
    font-size: 17px;
    line-height: 20px;
    font-family: 'Helvetica Neue Light', sans-serif;
}
  .why_box > div:nth-child(2){

  }

  .why_box > div:nth-child(2) > p:first-child{
    color: #BADA55;
  }
  .why_box .btn-exgn{
    border: 1px solid #fff;
    text-transform: none;
  }
  .why_box hr{
    width: 97%;
  }
  .why_box div:first-child p:not(:last-child){
    text-indent: 40px;
  }

  #sw_contact button[type="submit"]{
    background-color: #BADA55;
    border: 1px solid rgba(167, 218, 85, 0.92);
  }
  #sw_contact{
    padding-bottom: 30px;
  }
  #map{
    padding: 0;
  }
  #map iframe{
    width: 100%;
    min-height: 500px;
    height: 100%;
  }
  #footer{
    background-color: rgb(57, 64, 74);
    margin-bottom: -5%;
    position: relative;
  }

  #footer .navbar-brand{
    color: #fff !important;
    transition : all 0.5s linear 0s;
    -webkit-transition : all 0.5s linear 0s;
  }
  #footer .navbar-brand:hover{
    color: #bada55 !important;
  }
  #footer #bs-example-navbar-collapse-2{
    width: 75%;
    float: right;
  }
  #footer .navbar.navbar-default{
    color: #fff;
    background-color: rgb(57, 64, 74);
    border: none;
    outline: none;
  }
  #footer .navbar-default .navbar-nav>li>a{
    color: #fff;
  }
  #footer .navbar-default .navbar-nav>li>a:hover,#footer .navbar-default .navbar-nav>li>a:active,
  #footer .navbar-default .navbar-nav>li.open>a{
    color: #bada55;
  }
  #footer .navbar-default .navbar-nav>.open>a,
  #footer .navbar-default .navbar-nav>.open>a:focus,
  #footer .navbar-default .navbar-nav>.open>a:hover{
    background-color: rgb(57, 64, 74);
  }
  /*Button Styles*/
  .btn-exgn{
    color: #fff;
    padding: 11px 12%;
    transition: all 0.5s linear 0s;
    -o-transition: all 0.5s linear 0s;
    -ms-transition: all 0.5s linear 0s;
    -moz-transition: all 0.5s linear 0s;
    -webkit-transition: all 0.5s linear 0s;
    text-transform: uppercase;
    font-size: 17px;
  }
  .btn-exgn:hover{
    background: #fff;
    border: 1px solid #fff;
    color: #333;
  }
  .btn-round{
    border-radius: 20px;
  }

  .btn-transparent{
    background-color: transparent;
    border: 1px solid #aaa;
  }

  .btn-flat{
    border-radius: 0;
  }

  /*Fonts*/

.font-oswald{
    font-family: 'Helvetica Neue Bold', sans-serif;
}
.font-roboto{
    font-family: 'Helvetica Neue Light', sans-serif;
}
.font-open-sans{
    font-family: 'Helvetica Neue Medium', sans-serif;
}
.font-open-sans-condensed{
    font-family: 'Helvetica Neue Light', sans-serif;
}
.font-lato{
    font-family: 'Helvetica Neue Light', sans-serif;
}
.font-roboto-condensed{
    font-family: 'Helvetica Neue Light', sans-serif;
}
.font-100{
    font-weight: 100;
    }.font-200{
      font-weight: 200;
      }.font-300{
        font-weight: 300;
        }.font-400{
          font-weight: 400;
          }.font-500{
            font-weight: 500;
            }.font-600{
              font-weight: 600;
              }.font-700{
                font-weight: 700;
                }.font-900{
                  font-weight: 900;
                }


                /*Magines*/
                .margin-top-30{
                  margin-top: 30px;
                }
                .margin-top-50{
                  margin-top: 50px;
                }

                .margin-left-30{
                  margin-left: 30px;
                }
                .margin-left-50{
                  margin-left: 50px;
                }

                .margin-left-90{
                  margin-left: 90px;
                }

                .mdl-color-text--red {
                  color: rgb(244,67,54) !important; }

                  .mdl-color--red {
                    background-color: rgb(244,67,54) !important; }

                    .mdl-color-text--red-50 {
                      color: rgb(255,235,238) !important; }

                      .mdl-color--red-50 {
                        background-color: rgb(255,235,238) !important; }

                        .mdl-color-text--red-100 {
                          color: rgb(255,205,210) !important; }

                          .mdl-color--red-100 {
                            background-color: rgb(255,205,210) !important; }

                            .mdl-color-text--red-200 {
                              color: rgb(239,154,154) !important; }

                              .mdl-color--red-200 {
                                background-color: rgb(239,154,154) !important; }

                                .mdl-color-text--red-300 {
                                  color: rgb(229,115,115) !important; }

                                  .mdl-color--red-300 {
                                    background-color: rgb(229,115,115) !important; }

                                    .mdl-color-text--red-400 {
                                      color: rgb(239,83,80) !important; }

                                      .mdl-color--red-400 {
                                        background-color: rgb(239,83,80) !important; }

                                        .mdl-color-text--red-500 {
                                          color: rgb(244,67,54) !important; }

                                          .mdl-color--red-500 {
                                            background-color: rgb(244,67,54) !important; }

                                            .mdl-color-text--red-600 {
                                              color: rgb(229,57,53) !important; }

                                              .mdl-color--red-600 {
                                                background-color: rgb(229,57,53) !important; }

                                                .mdl-color-text--red-700 {
                                                  color: rgb(211,47,47) !important; }

                                                  .mdl-color--red-700 {
                                                    background-color: rgb(211,47,47) !important; }

                                                    .mdl-color-text--red-800 {
                                                      color: rgb(198,40,40) !important; }

                                                      .mdl-color--red-800 {
                                                        background-color: rgb(198,40,40) !important; }

                                                        .mdl-color-text--red-900 {
                                                          color: rgb(183,28,28) !important; }

                                                          .mdl-color--red-900 {
                                                            background-color: rgb(183,28,28) !important; }

                                                            .mdl-color-text--red-A100 {
                                                              color: rgb(255,138,128) !important; }

                                                              .mdl-color--red-A100 {
                                                                background-color: rgb(255,138,128) !important; }

                                                                .mdl-color-text--red-A200 {
                                                                  color: rgb(255,82,82) !important; }

                                                                  .mdl-color--red-A200 {
                                                                    background-color: rgb(255,82,82) !important; }

                                                                    .mdl-color-text--red-A400 {
                                                                      color: rgb(255,23,68) !important; }

                                                                      .mdl-color--red-A400 {
                                                                        background-color: rgb(255,23,68) !important; }

                                                                        .mdl-color-text--red-A700 {
                                                                          color: rgb(213,0,0) !important; }

                                                                          .mdl-color--red-A700 {
                                                                            background-color: rgb(213,0,0) !important; }

                                                                            .mdl-color-text--pink {
                                                                              color: rgb(233,30,99) !important; }

                                                                              .mdl-color--pink {
                                                                                background-color: rgb(233,30,99) !important; }

                                                                                .mdl-color-text--pink-50 {
                                                                                  color: rgb(252,228,236) !important; }

                                                                                  .mdl-color--pink-50 {
                                                                                    background-color: rgb(252,228,236) !important; }

                                                                                    .mdl-color-text--pink-100 {
                                                                                      color: rgb(248,187,208) !important; }

                                                                                      .mdl-color--pink-100 {
                                                                                        background-color: rgb(248,187,208) !important; }

                                                                                        .mdl-color-text--pink-200 {
                                                                                          color: rgb(244,143,177) !important; }

                                                                                          .mdl-color--pink-200 {
                                                                                            background-color: rgb(244,143,177) !important; }

                                                                                            .mdl-color-text--pink-300 {
                                                                                              color: rgb(240,98,146) !important; }

                                                                                              .mdl-color--pink-300 {
                                                                                                background-color: rgb(240,98,146) !important; }

                                                                                                .mdl-color-text--pink-400 {
                                                                                                  color: rgb(236,64,122) !important; }

                                                                                                  .mdl-color--pink-400 {
                                                                                                    background-color: rgb(236,64,122) !important; }

                                                                                                    .mdl-color-text--pink-500 {
                                                                                                      color: rgb(233,30,99) !important; }

                                                                                                      .mdl-color--pink-500 {
                                                                                                        background-color: rgb(233,30,99) !important; }

                                                                                                        .mdl-color-text--pink-600 {
                                                                                                          color: rgb(216,27,96) !important; }

                                                                                                          .mdl-color--pink-600 {
                                                                                                            background-color: rgb(216,27,96) !important; }

                                                                                                            .mdl-color-text--pink-700 {
                                                                                                              color: rgb(194,24,91) !important; }

                                                                                                              .mdl-color--pink-700 {
                                                                                                                background-color: rgb(194,24,91) !important; }

                                                                                                                .mdl-color-text--pink-800 {
                                                                                                                  color: rgb(173,20,87) !important; }

                                                                                                                  .mdl-color--pink-800 {
                                                                                                                    background-color: rgb(173,20,87) !important; }

                                                                                                                    .mdl-color-text--pink-900 {
                                                                                                                      color: rgb(136,14,79) !important; }

                                                                                                                      .mdl-color--pink-900 {
                                                                                                                        background-color: rgb(136,14,79) !important; }

                                                                                                                        .mdl-color-text--pink-A100 {
                                                                                                                          color: rgb(255,128,171) !important; }

                                                                                                                          .mdl-color--pink-A100 {
                                                                                                                            background-color: rgb(255,128,171) !important; }

                                                                                                                            .mdl-color-text--pink-A200 {
                                                                                                                              color: rgb(255,64,129) !important; }

                                                                                                                              .mdl-color--pink-A200 {
                                                                                                                                background-color: rgb(255,64,129) !important; }

                                                                                                                                .mdl-color-text--pink-A400 {
                                                                                                                                  color: rgb(245,0,87) !important; }

                                                                                                                                  .mdl-color--pink-A400 {
                                                                                                                                    background-color: rgb(245,0,87) !important; }

                                                                                                                                    .mdl-color-text--pink-A700 {
                                                                                                                                      color: rgb(197,17,98) !important; }

                                                                                                                                      .mdl-color--pink-A700 {
                                                                                                                                        background-color: rgb(197,17,98) !important; }

                                                                                                                                        .mdl-color-text--purple {
                                                                                                                                          color: rgb(156,39,176) !important; }

                                                                                                                                          .mdl-color--purple {
                                                                                                                                            background-color: rgb(156,39,176) !important; }

                                                                                                                                            .mdl-color-text--purple-50 {
                                                                                                                                              color: rgb(243,229,245) !important; }

                                                                                                                                              .mdl-color--purple-50 {
                                                                                                                                                background-color: rgb(243,229,245) !important; }

                                                                                                                                                .mdl-color-text--purple-100 {
                                                                                                                                                  color: rgb(225,190,231) !important; }

                                                                                                                                                  .mdl-color--purple-100 {
                                                                                                                                                    background-color: rgb(225,190,231) !important; }

                                                                                                                                                    .mdl-color-text--purple-200 {
                                                                                                                                                      color: rgb(206,147,216) !important; }

                                                                                                                                                      .mdl-color--purple-200 {
                                                                                                                                                        background-color: rgb(206,147,216) !important; }

                                                                                                                                                        .mdl-color-text--purple-300 {
                                                                                                                                                          color: rgb(186,104,200) !important; }

                                                                                                                                                          .mdl-color--purple-300 {
                                                                                                                                                            background-color: rgb(186,104,200) !important; }

                                                                                                                                                            .mdl-color-text--purple-400 {
                                                                                                                                                              color: rgb(171,71,188) !important; }

                                                                                                                                                              .mdl-color--purple-400 {
                                                                                                                                                                background-color: rgb(171,71,188) !important; }

                                                                                                                                                                .mdl-color-text--purple-500 {
                                                                                                                                                                  color: rgb(156,39,176) !important; }

                                                                                                                                                                  .mdl-color--purple-500 {
                                                                                                                                                                    background-color: rgb(156,39,176) !important; }

                                                                                                                                                                    .mdl-color-text--purple-600 {
                                                                                                                                                                      color: rgb(142,36,170) !important; }

                                                                                                                                                                      .mdl-color--purple-600 {
                                                                                                                                                                        background-color: rgb(142,36,170) !important; }

                                                                                                                                                                        .mdl-color-text--purple-700 {
                                                                                                                                                                          color: rgb(123,31,162) !important; }

                                                                                                                                                                          .mdl-color--purple-700 {
                                                                                                                                                                            background-color: rgb(123,31,162) !important; }

                                                                                                                                                                            .mdl-color-text--purple-800 {
                                                                                                                                                                              color: rgb(106,27,154) !important; }

                                                                                                                                                                              .mdl-color--purple-800 {
                                                                                                                                                                                background-color: rgb(106,27,154) !important; }

                                                                                                                                                                                .mdl-color-text--purple-900 {
                                                                                                                                                                                  color: rgb(74,20,140) !important; }

                                                                                                                                                                                  .mdl-color--purple-900 {
                                                                                                                                                                                    background-color: rgb(74,20,140) !important; }

                                                                                                                                                                                    .mdl-color-text--purple-A100 {
                                                                                                                                                                                      color: rgb(234,128,252) !important; }

                                                                                                                                                                                      .mdl-color--purple-A100 {
                                                                                                                                                                                        background-color: rgb(234,128,252) !important; }

                                                                                                                                                                                        .mdl-color-text--purple-A200 {
                                                                                                                                                                                          color: rgb(224,64,251) !important; }

                                                                                                                                                                                          .mdl-color--purple-A200 {
                                                                                                                                                                                            background-color: rgb(224,64,251) !important; }

                                                                                                                                                                                            .mdl-color-text--purple-A400 {
                                                                                                                                                                                              color: rgb(213,0,249) !important; }

                                                                                                                                                                                              .mdl-color--purple-A400 {
                                                                                                                                                                                                background-color: rgb(213,0,249) !important; }

                                                                                                                                                                                                .mdl-color-text--purple-A700 {
                                                                                                                                                                                                  color: rgb(170,0,255) !important; }

                                                                                                                                                                                                  .mdl-color--purple-A700 {
                                                                                                                                                                                                    background-color: rgb(170,0,255) !important; }

                                                                                                                                                                                                    .mdl-color-text--deep-purple {
                                                                                                                                                                                                      color: rgb(103,58,183) !important; }

                                                                                                                                                                                                      .mdl-color--deep-purple {
                                                                                                                                                                                                        background-color: rgb(103,58,183) !important; }

                                                                                                                                                                                                        .mdl-color-text--deep-purple-50 {
                                                                                                                                                                                                          color: rgb(237,231,246) !important; }

                                                                                                                                                                                                          .mdl-color--deep-purple-50 {
                                                                                                                                                                                                            background-color: rgb(237,231,246) !important; }

                                                                                                                                                                                                            .mdl-color-text--deep-purple-100 {
                                                                                                                                                                                                              color: rgb(209,196,233) !important; }

                                                                                                                                                                                                              .mdl-color--deep-purple-100 {
                                                                                                                                                                                                                background-color: rgb(209,196,233) !important; }

                                                                                                                                                                                                                .mdl-color-text--deep-purple-200 {
                                                                                                                                                                                                                  color: rgb(179,157,219) !important; }

                                                                                                                                                                                                                  .mdl-color--deep-purple-200 {
                                                                                                                                                                                                                    background-color: rgb(179,157,219) !important; }

                                                                                                                                                                                                                    .mdl-color-text--deep-purple-300 {
                                                                                                                                                                                                                      color: rgb(149,117,205) !important; }

                                                                                                                                                                                                                      .mdl-color--deep-purple-300 {
                                                                                                                                                                                                                        background-color: rgb(149,117,205) !important; }

                                                                                                                                                                                                                        .mdl-color-text--deep-purple-400 {
                                                                                                                                                                                                                          color: rgb(126,87,194) !important; }

                                                                                                                                                                                                                          .mdl-color--deep-purple-400 {
                                                                                                                                                                                                                            background-color: rgb(126,87,194) !important; }

                                                                                                                                                                                                                            .mdl-color-text--deep-purple-500 {
                                                                                                                                                                                                                              color: rgb(103,58,183) !important; }

                                                                                                                                                                                                                              .mdl-color--deep-purple-500 {
                                                                                                                                                                                                                                background-color: rgb(103,58,183) !important; }

                                                                                                                                                                                                                                .mdl-color-text--deep-purple-600 {
                                                                                                                                                                                                                                  color: rgb(94,53,177) !important; }

                                                                                                                                                                                                                                  .mdl-color--deep-purple-600 {
                                                                                                                                                                                                                                    background-color: rgb(94,53,177) !important; }

                                                                                                                                                                                                                                    .mdl-color-text--deep-purple-700 {
                                                                                                                                                                                                                                      color: rgb(81,45,168) !important; }

                                                                                                                                                                                                                                      .mdl-color--deep-purple-700 {
                                                                                                                                                                                                                                        background-color: rgb(81,45,168) !important; }

                                                                                                                                                                                                                                        .mdl-color-text--deep-purple-800 {
                                                                                                                                                                                                                                          color: rgb(69,39,160) !important; }

                                                                                                                                                                                                                                          .mdl-color--deep-purple-800 {
                                                                                                                                                                                                                                            background-color: rgb(69,39,160) !important; }

                                                                                                                                                                                                                                            .mdl-color-text--deep-purple-900 {
                                                                                                                                                                                                                                              color: rgb(49,27,146) !important; }

                                                                                                                                                                                                                                              .mdl-color--deep-purple-900 {
                                                                                                                                                                                                                                                background-color: rgb(49,27,146) !important; }

                                                                                                                                                                                                                                                .mdl-color-text--deep-purple-A100 {
                                                                                                                                                                                                                                                  color: rgb(179,136,255) !important; }

                                                                                                                                                                                                                                                  .mdl-color--deep-purple-A100 {
                                                                                                                                                                                                                                                    background-color: rgb(179,136,255) !important; }

                                                                                                                                                                                                                                                    .mdl-color-text--deep-purple-A200 {
                                                                                                                                                                                                                                                      color: rgb(124,77,255) !important; }

                                                                                                                                                                                                                                                      .mdl-color--deep-purple-A200 {
                                                                                                                                                                                                                                                        background-color: rgb(124,77,255) !important; }

                                                                                                                                                                                                                                                        .mdl-color-text--deep-purple-A400 {
                                                                                                                                                                                                                                                          color: rgb(101,31,255) !important; }

                                                                                                                                                                                                                                                          .mdl-color--deep-purple-A400 {
                                                                                                                                                                                                                                                            background-color: rgb(101,31,255) !important; }

                                                                                                                                                                                                                                                            .mdl-color-text--deep-purple-A700 {
                                                                                                                                                                                                                                                              color: rgb(98,0,234) !important; }

                                                                                                                                                                                                                                                              .mdl-color--deep-purple-A700 {
                                                                                                                                                                                                                                                                background-color: rgb(98,0,234) !important; }

                                                                                                                                                                                                                                                                .mdl-color-text--indigo {
                                                                                                                                                                                                                                                                  color: rgb(63,81,181) !important; }

                                                                                                                                                                                                                                                                  .mdl-color--indigo {
                                                                                                                                                                                                                                                                    background-color: rgb(63,81,181) !important; }

                                                                                                                                                                                                                                                                    .mdl-color-text--indigo-50 {
                                                                                                                                                                                                                                                                      color: rgb(232,234,246) !important; }

                                                                                                                                                                                                                                                                      .mdl-color--indigo-50 {
                                                                                                                                                                                                                                                                        background-color: rgb(232,234,246) !important; }

                                                                                                                                                                                                                                                                        .mdl-color-text--indigo-100 {
                                                                                                                                                                                                                                                                          color: rgb(197,202,233) !important; }

                                                                                                                                                                                                                                                                          .mdl-color--indigo-100 {
                                                                                                                                                                                                                                                                            background-color: rgb(197,202,233) !important; }

                                                                                                                                                                                                                                                                            .mdl-color-text--indigo-200 {
                                                                                                                                                                                                                                                                              color: rgb(159,168,218) !important; }

                                                                                                                                                                                                                                                                              .mdl-color--indigo-200 {
                                                                                                                                                                                                                                                                                background-color: rgb(159,168,218) !important; }

                                                                                                                                                                                                                                                                                .mdl-color-text--indigo-300 {
                                                                                                                                                                                                                                                                                  color: rgb(121,134,203) !important; }

                                                                                                                                                                                                                                                                                  .mdl-color--indigo-300 {
                                                                                                                                                                                                                                                                                    background-color: rgb(121,134,203) !important; }

                                                                                                                                                                                                                                                                                    .mdl-color-text--indigo-400 {
                                                                                                                                                                                                                                                                                      color: rgb(92,107,192) !important; }

                                                                                                                                                                                                                                                                                      .mdl-color--indigo-400 {
                                                                                                                                                                                                                                                                                        background-color: rgb(92,107,192) !important; }

                                                                                                                                                                                                                                                                                        .mdl-color-text--indigo-500 {
                                                                                                                                                                                                                                                                                          color: rgb(63,81,181) !important; }

                                                                                                                                                                                                                                                                                          .mdl-color--indigo-500 {
                                                                                                                                                                                                                                                                                            background-color: rgb(63,81,181) !important; }

                                                                                                                                                                                                                                                                                            .mdl-color-text--indigo-600 {
                                                                                                                                                                                                                                                                                              color: rgb(57,73,171) !important; }

                                                                                                                                                                                                                                                                                              .mdl-color--indigo-600 {
                                                                                                                                                                                                                                                                                                background-color: rgb(57,73,171) !important; }

                                                                                                                                                                                                                                                                                                .mdl-color-text--indigo-700 {
                                                                                                                                                                                                                                                                                                  color: rgb(48,63,159) !important; }

                                                                                                                                                                                                                                                                                                  .mdl-color--indigo-700 {
                                                                                                                                                                                                                                                                                                    background-color: rgb(48,63,159) !important; }

                                                                                                                                                                                                                                                                                                    .mdl-color-text--indigo-800 {
                                                                                                                                                                                                                                                                                                      color: rgb(40,53,147) !important; }

                                                                                                                                                                                                                                                                                                      .mdl-color--indigo-800 {
                                                                                                                                                                                                                                                                                                        background-color: rgb(40,53,147) !important; }

                                                                                                                                                                                                                                                                                                        .mdl-color-text--indigo-900 {
                                                                                                                                                                                                                                                                                                          color: rgb(26,35,126) !important; }

                                                                                                                                                                                                                                                                                                          .mdl-color--indigo-900 {
                                                                                                                                                                                                                                                                                                            background-color: rgb(26,35,126) !important; }

                                                                                                                                                                                                                                                                                                            .mdl-color-text--indigo-A100 {
                                                                                                                                                                                                                                                                                                              color: rgb(140,158,255) !important; }

                                                                                                                                                                                                                                                                                                              .mdl-color--indigo-A100 {
                                                                                                                                                                                                                                                                                                                background-color: rgb(140,158,255) !important; }

                                                                                                                                                                                                                                                                                                                .mdl-color-text--indigo-A200 {
                                                                                                                                                                                                                                                                                                                  color: rgb(83,109,254) !important; }

                                                                                                                                                                                                                                                                                                                  .mdl-color--indigo-A200 {
                                                                                                                                                                                                                                                                                                                    background-color: rgb(83,109,254) !important; }

                                                                                                                                                                                                                                                                                                                    .mdl-color-text--indigo-A400 {
                                                                                                                                                                                                                                                                                                                      color: rgb(61,90,254) !important; }

                                                                                                                                                                                                                                                                                                                      .mdl-color--indigo-A400 {
                                                                                                                                                                                                                                                                                                                        background-color: rgb(61,90,254) !important; }

                                                                                                                                                                                                                                                                                                                        .mdl-color-text--indigo-A700 {
                                                                                                                                                                                                                                                                                                                          color: rgb(48,79,254) !important; }

                                                                                                                                                                                                                                                                                                                          .mdl-color--indigo-A700 {
                                                                                                                                                                                                                                                                                                                            background-color: rgb(48,79,254) !important; }

                                                                                                                                                                                                                                                                                                                            .mdl-color-text--blue {
                                                                                                                                                                                                                                                                                                                              color: rgb(33,150,243) !important; }

                                                                                                                                                                                                                                                                                                                              .mdl-color--blue {
                                                                                                                                                                                                                                                                                                                                background-color: rgb(33,150,243) !important; }

                                                                                                                                                                                                                                                                                                                                .mdl-color-text--blue-50 {
                                                                                                                                                                                                                                                                                                                                  color: rgb(227,242,253) !important; }

                                                                                                                                                                                                                                                                                                                                  .mdl-color--blue-50 {
                                                                                                                                                                                                                                                                                                                                    background-color: rgb(227,242,253) !important; }

                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--blue-100 {
                                                                                                                                                                                                                                                                                                                                      color: rgb(187,222,251) !important; }

                                                                                                                                                                                                                                                                                                                                      .mdl-color--blue-100 {
                                                                                                                                                                                                                                                                                                                                        background-color: rgb(187,222,251) !important; }

                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--blue-200 {
                                                                                                                                                                                                                                                                                                                                          color: rgb(144,202,249) !important; }

                                                                                                                                                                                                                                                                                                                                          .mdl-color--blue-200 {
                                                                                                                                                                                                                                                                                                                                            background-color: rgb(144,202,249) !important; }

                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--blue-300 {
                                                                                                                                                                                                                                                                                                                                              color: rgb(100,181,246) !important; }

                                                                                                                                                                                                                                                                                                                                              .mdl-color--blue-300 {
                                                                                                                                                                                                                                                                                                                                                background-color: rgb(100,181,246) !important; }

                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--blue-400 {
                                                                                                                                                                                                                                                                                                                                                  color: rgb(66,165,245) !important; }

                                                                                                                                                                                                                                                                                                                                                  .mdl-color--blue-400 {
                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(66,165,245) !important; }

                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--blue-500 {
                                                                                                                                                                                                                                                                                                                                                      color: rgb(33,150,243) !important; }

                                                                                                                                                                                                                                                                                                                                                      .mdl-color--blue-500 {
                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(33,150,243) !important; }

                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--blue-600 {
                                                                                                                                                                                                                                                                                                                                                          color: rgb(30,136,229) !important; }

                                                                                                                                                                                                                                                                                                                                                          .mdl-color--blue-600 {
                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(30,136,229) !important; }

                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--blue-700 {
                                                                                                                                                                                                                                                                                                                                                              color: rgb(25,118,210) !important; }

                                                                                                                                                                                                                                                                                                                                                              .mdl-color--blue-700 {
                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(25,118,210) !important; }

                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--blue-800 {
                                                                                                                                                                                                                                                                                                                                                                  color: rgb(21,101,192) !important; }

                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--blue-800 {
                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(21,101,192) !important; }

                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--blue-900 {
                                                                                                                                                                                                                                                                                                                                                                      color: rgb(13,71,161) !important; }

                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--blue-900 {
                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(13,71,161) !important; }

                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--blue-A100 {
                                                                                                                                                                                                                                                                                                                                                                          color: rgb(130,177,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--blue-A100 {
                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(130,177,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--blue-A200 {
                                                                                                                                                                                                                                                                                                                                                                              color: rgb(68,138,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--blue-A200 {
                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(68,138,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--blue-A400 {
                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(41,121,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--blue-A400 {
                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(41,121,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--blue-A700 {
                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(41,98,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--blue-A700 {
                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(41,98,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--light-blue {
                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(3,169,244) !important; }

                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--light-blue {
                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(3,169,244) !important; }

                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--light-blue-50 {
                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(225,245,254) !important; }

                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--light-blue-50 {
                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(225,245,254) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--light-blue-100 {
                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(179,229,252) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--light-blue-100 {
                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(179,229,252) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--light-blue-200 {
                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(129,212,250) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--light-blue-200 {
                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(129,212,250) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--light-blue-300 {
                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(79,195,247) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--light-blue-300 {
                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(79,195,247) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--light-blue-400 {
                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(41,182,246) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--light-blue-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(41,182,246) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--light-blue-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(3,169,244) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--light-blue-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(3,169,244) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--light-blue-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(3,155,229) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--light-blue-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(3,155,229) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--light-blue-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(2,136,209) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--light-blue-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(2,136,209) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--light-blue-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(2,119,189) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--light-blue-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(2,119,189) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--light-blue-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(1,87,155) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--light-blue-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(1,87,155) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--light-blue-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(128,216,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--light-blue-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(128,216,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--light-blue-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(64,196,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--light-blue-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(64,196,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--light-blue-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(0,176,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--light-blue-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(0,176,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--light-blue-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(0,145,234) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--light-blue-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(0,145,234) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--cyan {
                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(0,188,212) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--cyan {
                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(0,188,212) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--cyan-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(224,247,250) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--cyan-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(224,247,250) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--cyan-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(178,235,242) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--cyan-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(178,235,242) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--cyan-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(128,222,234) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--cyan-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(128,222,234) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--cyan-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(77,208,225) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--cyan-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(77,208,225) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--cyan-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(38,198,218) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--cyan-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(38,198,218) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--cyan-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(0,188,212) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--cyan-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(0,188,212) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--cyan-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(0,172,193) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--cyan-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(0,172,193) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--cyan-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(0,151,167) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--cyan-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(0,151,167) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--cyan-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(0,131,143) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--cyan-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(0,131,143) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--cyan-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(0,96,100) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--cyan-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(0,96,100) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--cyan-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(132,255,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--cyan-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(132,255,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--cyan-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(24,255,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--cyan-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(24,255,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--cyan-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(0,229,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--cyan-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(0,229,255) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--cyan-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(0,184,212) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--cyan-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(0,184,212) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--teal {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(0,150,136) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--teal {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(0,150,136) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--teal-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(224,242,241) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--teal-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(224,242,241) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--teal-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(178,223,219) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--teal-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(178,223,219) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--teal-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(128,203,196) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--teal-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(128,203,196) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--teal-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(77,182,172) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--teal-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(77,182,172) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--teal-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(38,166,154) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--teal-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(38,166,154) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--teal-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(0,150,136) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--teal-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(0,150,136) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--teal-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(0,137,123) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--teal-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(0,137,123) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--teal-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(0,121,107) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--teal-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(0,121,107) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--teal-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(0,105,92) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--teal-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(0,105,92) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--teal-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(0,77,64) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--teal-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(0,77,64) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--teal-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(167,255,235) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--teal-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(167,255,235) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--teal-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(100,255,218) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--teal-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(100,255,218) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--teal-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(29,233,182) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--teal-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(29,233,182) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--teal-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(0,191,165) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--teal-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(0,191,165) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--green {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(76,175,80) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--green {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(76,175,80) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--green-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(232,245,233) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--green-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(232,245,233) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--green-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(200,230,201) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--green-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(200,230,201) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--green-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(165,214,167) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--green-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(165,214,167) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--green-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(129,199,132) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--green-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(129,199,132) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--green-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(102,187,106) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--green-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(102,187,106) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--green-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(76,175,80) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--green-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(76,175,80) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--green-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(67,160,71) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--green-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(67,160,71) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--green-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(56,142,60) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--green-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(56,142,60) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--green-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(46,125,50) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--green-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(46,125,50) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--green-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(27,94,32) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--green-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(27,94,32) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--green-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(185,246,202) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--green-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(185,246,202) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--green-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(105,240,174) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--green-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(105,240,174) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--green-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(0,230,118) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--green-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(0,230,118) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--green-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(0,200,83) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--green-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(0,200,83) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--light-green {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(139,195,74) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--light-green {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(139,195,74) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--light-green-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(241,248,233) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--light-green-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(241,248,233) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--light-green-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(220,237,200) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--light-green-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(220,237,200) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--light-green-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(197,225,165) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--light-green-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(197,225,165) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--light-green-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(174,213,129) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--light-green-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(174,213,129) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--light-green-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(156,204,101) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--light-green-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(156,204,101) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--light-green-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(139,195,74) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--light-green-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(139,195,74) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--light-green-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(124,179,66) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--light-green-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(124,179,66) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--light-green-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(104,159,56) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--light-green-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(104,159,56) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--light-green-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(85,139,47) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--light-green-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(85,139,47) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--light-green-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(51,105,30) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--light-green-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(51,105,30) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--light-green-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(204,255,144) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--light-green-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(204,255,144) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--light-green-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(178,255,89) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--light-green-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(178,255,89) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--light-green-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(118,255,3) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--light-green-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(118,255,3) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--light-green-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(100,221,23) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--light-green-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(100,221,23) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--lime {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(205,220,57) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--lime {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(205,220,57) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--lime-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(249,251,231) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--lime-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(249,251,231) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--lime-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(240,244,195) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--lime-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(240,244,195) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--lime-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(230,238,156) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--lime-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(230,238,156) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--lime-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(220,231,117) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--lime-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(220,231,117) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--lime-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(212,225,87) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--lime-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(212,225,87) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--lime-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(205,220,57) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--lime-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(205,220,57) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--lime-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(192,202,51) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--lime-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(192,202,51) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--lime-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(175,180,43) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--lime-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(175,180,43) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--lime-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(158,157,36) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--lime-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(158,157,36) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--lime-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(130,119,23) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--lime-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(130,119,23) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--lime-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(244,255,129) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--lime-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(244,255,129) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--lime-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(238,255,65) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--lime-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(238,255,65) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--lime-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(198,255,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--lime-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(198,255,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--lime-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(174,234,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--lime-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(174,234,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--yellow {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,235,59) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--yellow {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,235,59) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--yellow-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,253,231) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--yellow-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,253,231) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--yellow-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,249,196) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--yellow-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,249,196) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--yellow-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,245,157) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--yellow-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,245,157) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--yellow-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,241,118) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--yellow-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,241,118) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--yellow-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,238,88) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--yellow-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,238,88) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--yellow-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,235,59) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--yellow-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,235,59) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--yellow-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(253,216,53) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--yellow-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(253,216,53) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--yellow-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(251,192,45) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--yellow-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(251,192,45) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--yellow-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(249,168,37) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--yellow-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(249,168,37) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--yellow-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(245,127,23) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--yellow-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(245,127,23) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--yellow-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,255,141) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--yellow-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,255,141) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--yellow-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,255,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--yellow-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,255,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--yellow-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,234,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--yellow-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,234,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--yellow-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,214,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--yellow-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,214,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--amber {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,193,7) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--amber {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,193,7) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--amber-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,248,225) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--amber-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,248,225) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--amber-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,236,179) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--amber-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,236,179) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--amber-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,224,130) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--amber-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,224,130) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--amber-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,213,79) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--amber-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,213,79) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--amber-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,202,40) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--amber-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,202,40) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--amber-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,193,7) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--amber-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,193,7) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--amber-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,179,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--amber-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,179,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--amber-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,160,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--amber-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,160,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--amber-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,143,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--amber-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,143,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--amber-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,111,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--amber-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,111,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--amber-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,229,127) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--amber-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,229,127) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--amber-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,215,64) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--amber-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,215,64) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--amber-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,196,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--amber-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,196,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--amber-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,171,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--amber-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,171,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--orange {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,152,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--orange {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,152,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--orange-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,243,224) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--orange-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,243,224) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--orange-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,224,178) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--orange-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,224,178) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--orange-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,204,128) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--orange-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,204,128) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--orange-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,183,77) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--orange-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,183,77) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--orange-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,167,38) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--orange-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,167,38) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--orange-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,152,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--orange-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,152,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--orange-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(251,140,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--orange-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(251,140,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--orange-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(245,124,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--orange-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(245,124,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--orange-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(239,108,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--orange-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(239,108,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--orange-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(230,81,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--orange-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(230,81,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--orange-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,209,128) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--orange-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,209,128) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--orange-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,171,64) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--orange-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,171,64) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--orange-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,145,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--orange-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,145,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--orange-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,109,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--orange-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,109,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--deep-orange {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,87,34) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--deep-orange {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,87,34) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--deep-orange-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(251,233,231) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--deep-orange-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(251,233,231) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--deep-orange-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,204,188) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--deep-orange-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,204,188) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--deep-orange-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,171,145) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--deep-orange-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,171,145) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--deep-orange-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,138,101) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--deep-orange-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,138,101) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--deep-orange-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,112,67) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--deep-orange-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,112,67) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--deep-orange-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(255,87,34) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--deep-orange-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(255,87,34) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--deep-orange-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(244,81,30) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--deep-orange-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(244,81,30) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--deep-orange-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(230,74,25) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--deep-orange-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(230,74,25) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--deep-orange-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(216,67,21) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--deep-orange-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(216,67,21) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--deep-orange-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(191,54,12) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--deep-orange-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(191,54,12) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--deep-orange-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(255,158,128) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--deep-orange-A100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(255,158,128) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--deep-orange-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(255,110,64) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--deep-orange-A200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(255,110,64) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--deep-orange-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(255,61,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--deep-orange-A400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(255,61,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--deep-orange-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(221,44,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--deep-orange-A700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(221,44,0) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--brown {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(121,85,72) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--brown {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(121,85,72) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--brown-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(239,235,233) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--brown-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(239,235,233) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--brown-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(215,204,200) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--brown-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(215,204,200) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--brown-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(188,170,164) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--brown-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(188,170,164) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--brown-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(161,136,127) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--brown-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(161,136,127) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--brown-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(141,110,99) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--brown-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(141,110,99) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--brown-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(121,85,72) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--brown-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(121,85,72) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--brown-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(109,76,65) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--brown-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(109,76,65) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--brown-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(93,64,55) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--brown-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(93,64,55) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--brown-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(78,52,46) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--brown-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(78,52,46) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--brown-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(62,39,35) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--brown-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(62,39,35) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--grey {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(158,158,158) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--grey {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(158,158,158) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--grey-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(250,250,250) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--grey-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(250,250,250) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--grey-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(245,245,245) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--grey-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(245,245,245) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--grey-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(238,238,238) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--grey-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(238,238,238) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--grey-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(224,224,224) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--grey-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(224,224,224) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--grey-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(189,189,189) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--grey-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(189,189,189) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--grey-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(158,158,158) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--grey-500 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(158,158,158) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--grey-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(117,117,117) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--grey-600 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(117,117,117) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--grey-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(97,97,97) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--grey-700 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(97,97,97) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--grey-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(66,66,66) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--grey-800 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(66,66,66) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--grey-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(33,33,33) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--grey-900 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(33,33,33) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--blue-grey {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(96,125,139) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--blue-grey {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(96,125,139) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--blue-grey-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(236,239,241) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--blue-grey-50 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(236,239,241) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .mdl-color-text--blue-grey-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: rgb(207,216,220) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .mdl-color--blue-grey-100 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: rgb(207,216,220) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .mdl-color-text--blue-grey-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: rgb(176,190,197) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .mdl-color--blue-grey-200 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: rgb(176,190,197) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .mdl-color-text--blue-grey-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: rgb(144,164,174) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .mdl-color--blue-grey-300 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            background-color: rgb(144,164,174) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .mdl-color-text--blue-grey-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: rgb(120,144,156) !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .mdl-color--blue-grey-400 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                background-color: rgb(120,144,156) !important; }

.mdl-color-text--blue-grey-400 {
    color: rgb(120,144,156) !important; }

.mdl-color--blue-grey-400 {
    background-color: rgb(120,144,156) !important; }

.mdl-color-text--blue-grey-500 {
    color: rgb(96,125,139) !important; }

.mdl-color--blue-grey-500 {
    background-color: rgb(96,125,139) !important; }

.mdl-color-text--blue-grey-600 {
    color: rgb(84,110,122) !important; }

.mdl-color--blue-grey-600 {
    background-color: rgb(84,110,122) !important; }

.mdl-color-text--blue-grey-700 {
    color: rgb(69,90,100) !important; }

.mdl-color--blue-grey-700 {
    background-color: rgb(69,90,100) !important; }

.mdl-color-text--blue-grey-800 {
    color: rgb(55,71,79) !important; }

.mdl-color--blue-grey-800 {
    background-color: rgb(55,71,79) !important; }

.mdl-color-text--blue-grey-900 {
    color: rgb(38,50,56) !important; }

.mdl-color--blue-grey-900 {
    background-color: rgb(38,50,56) !important; }

.mdl-color--black {
    background-color: rgb(0,0,0) !important; }

.mdl-color-text--black {
    color: rgb(0,0,0) !important; }

.mdl-color--white {
    background-color: rgb(255,255,255) !important; }

.mdl-color-text--white {
    color: rgb(255,255,255) !important; }


/*Styles By Swetha*/
.address{
    width: 80%;
    margin: 5% auto;
    font-size: 18px;
}
.address div{
    float: left;
}
.address  div:nth-child(1){
    width: 40%;
}
.address div:nth-child(2){
    width: 60%;
}
.address table{
    width: 100%;
}
.address table td{
    padding:10px 0px;
}
.address table tr td span{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 100;
}
.address input,
.address textarea{
    width: 100%;
    margin-bottom: 8px;
    padding: 5px 3px;
    font-weight: 100;
    font-family: Lato, sans-serif;
    resize: none;
}

.address input:active,
.address input:focus,
.address textarea:active,
.address textarea:focus{
    outline: none;
}
#team .col-md-3{
    padding: 35px;
}
.card{
    background-color: #fff;
    height: 341px;
}
.card-header{
    position: relative;
    min-height: 200px;
    padding: 0;
}
.card-header img{
    position: absolute;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.card-body{
    background-color: #fff;
}

.card a{
    text-decoration: none;;
}

.card a:hover{
    text-decoration: none;;
}
.card .card-body h2{
  font-size: 19px !important;
}
.card .card-body p{
    font-style: italic;
        color: #aaa;
    padding: 6px 10px;
    font-size: 15px;
}

.nopadding{
  padding: 3px;
}
/*RESPONSIVE*/
@media only screen and (max-width: 768px){
    .home_box{
        width: 80%;
    }
    .home_box h1{
        font-size: 30px;
    }
    .home_box p{
        font-size: 14px;
    }


    /*Proprietory*/
    #proprietary{
        background-color: #47505d;
        padding: 5px;
    }

    .proprietary_box{
        width: 95%;
        background-color: #40464f;
        margin: 5% auto;
        display: table;
    }
    .proprietary_box > div{
        width: 100%;
    }
    .proprietary_box img{
        width: 100%;
    }
    .proprietary_box p{
        font-size: 14px;
        font-family: 'Helvetica Neue Light', sans-serif;
    }

    .proprietary_box > div:nth-child(2){
        padding:10px 20px 0px;
    }



    /*Solutions*/
    #solutions{
        background-color: #fff;
        padding: 5px;
    }

    .solutions_box{
        width: 95%;
        background-color: #fff;
        margin: 5% auto;
        display: table;
    }
    .solutions_box > div{
        width: 100%
    }
    .solutions_box img{
        width: 100%;
    }
    .solutions_box p{
        font-size: 14px;
        font-family: 'Helvetica Neue Light', sans-serif;
    }

    .solutions_box > div:nth-child(1){
        padding:5px 10px 0px;
    }

    /*Media*/
    #media{
        background-color: #47505d;
        padding: 5px;
    }

    .media_box{
        width: 96%;
        margin: 5% auto;
        display: table;
    }
    .media_box > div{
        width: 100%;
    }
    .media_box hr{
        width: 95%;
        color: #fff;
        margin-left: 0;
    }
    .media_box h2{
        font-weight: bold;
        font-family: 'Helvetica Neue Light', sans-serif;
        color: #fff;

    }
    .media_box img{
        width: 100%;
    }
    .media_box p{
        font-size: 14px;
        font-family: 'Helvetica Neue Light', sans-serif;
    }


    /*Why*/
    #why{
        background-color: rgba(0,0,0,0.8);
        padding: 5px;
        background-image: url(../img/why_bg.png);
        background-attachment: fixed;
        background-size: cover;
        position: relative;
    }

    .why_box{
        color: #fff;
        font-weight: bold;
        width: 96%;
        margin: 5% auto;
        display: table;
    }
    .why_box > div{
        width: 100%;
    }
    .why_box img{
        width: 100%;
    }
    .why_box p{
        font-size: 14px;
        font-family: 'Helvetica Neue Light', sans-serif;
    }

    .why_box > div:nth-child(2){

    }

    .why_box > div:nth-child(2) > p:first-child{
        color: #BADA55;
    }
    .why_box .btn-exgn{
        border: 1px solid #fff;
        text-transform: none;
    }
    .why_box hr{
        width: 97%;
    }
    .why_box div:first-child p:not(:last-child){
        text-indent: 20px;
    }

    #sw_contact{
        padding-bottom: 20px;
    }

    .address{
        width: 95%;
        margin: 5% auto;
        font-size: 14px;
    }
    .address div{
        float: none;
    }
    .address  div:nth-child(1){
        width: 100%;
    }
    .address div:nth-child(2){
        width: 100%;
    }

}
.pp_social{
    display: none;
}
.container{
      font-family: 'Helvetica Neue Light',sans-serif !important;
      font-size: 18px;
    }
.container-fluid>.navbar-header{
  margin-left: -20px;
}

#player .video-wrapper .video.cover{
    background-size: cover !important;
}
#company h3{
    font-size: 25px;
    margin-top: 66px;
    font-weight: bold;
}
@media (max-width: 1265px){
  #bs-example-navbar-collapse-1 > ul:nth-child(1){
    margin-left: 7%;
  }
}
@media (max-width: 415px){
  .solutions_box p{
    width: 100%;
  }
}