@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  77.7% {
    -webkit-transform: skewX(0.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

  77.7% {
    -webkit-transform: skewX(0.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 heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

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

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

/**
 * google-material-color v1.2.6
 * https://github.com/danlevan/google-material-color
 */
.palette-Red.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red.text {
  color: #F44336;
}
.palette-Red-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-50.bg {
  background-color: #FFEBEE;
  color: rgba(0,0,0,0.87);
}
.palette-Red-50.text {
  color: #FFEBEE;
}
.palette-Red-50-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-50-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-50-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-50-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-50-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-50-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-100.bg {
  background-color: #FFCDD2;
  color: rgba(0,0,0,0.87);
}
.palette-Red-100.text {
  color: #FFCDD2;
}
.palette-Red-100-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-100-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-100-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-100-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-100-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-100-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-200.bg {
  background-color: #EF9A9A;
  color: rgba(0,0,0,0.87);
}
.palette-Red-200.text {
  color: #EF9A9A;
}
.palette-Red-200-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-200-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-200-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-200-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-200-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-200-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-300.bg {
  background-color: #E57373;
  color: rgba(0,0,0,0.87);
}
.palette-Red-300.text {
  color: #E57373;
}
.palette-Red-300-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-300-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-300-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-300-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-300-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-300-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-400.bg {
  background-color: #EF5350;
  color: #ffffff;
}
.palette-Red-400.text {
  color: #EF5350;
}
.palette-Red-400-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-400-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-400-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-400-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-400-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-400-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-500.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-500.text {
  color: #F44336;
}
.palette-Red-500-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-500-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-500-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-500-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-500-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-500-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-600.bg {
  background-color: #E53935;
  color: #ffffff;
}
.palette-Red-600.text {
  color: #E53935;
}
.palette-Red-600-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-600-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-600-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-600-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-600-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-600-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-700.bg {
  background-color: #D32F2F;
  color: #ffffff;
}
.palette-Red-700.text {
  color: #D32F2F;
}
.palette-Red-700-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-700-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-700-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-700-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-700-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-700-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-800.bg {
  background-color: #C62828;
  color: #ffffff;
}
.palette-Red-800.text {
  color: #C62828;
}
.palette-Red-800-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-800-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-800-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-800-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-800-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-800-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-900.bg {
  background-color: #B71C1C;
  color: #ffffff;
}
.palette-Red-900.text {
  color: #B71C1C;
}
.palette-Red-900-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-900-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-900-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-900-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-900-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-900-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-A100.bg {
  background-color: #FF8A80;
  color: rgba(0,0,0,0.87);
}
.palette-Red-A100.text {
  color: #FF8A80;
}
.palette-Red-A100-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-A100-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-A100-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A100-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A100-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A100-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-A200.bg {
  background-color: #FF5252;
  color: #ffffff;
}
.palette-Red-A200.text {
  color: #FF5252;
}
.palette-Red-A200-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-A200-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-A200-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A200-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A200-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A200-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-A400.bg {
  background-color: #FF1744;
  color: #ffffff;
}
.palette-Red-A400.text {
  color: #FF1744;
}
.palette-Red-A400-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-A400-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-A400-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A400-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A400-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A400-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}

.palette-Red-A700.bg {
  background-color: #D50000;
  color: #ffffff;
}
.palette-Red-A700.text {
  color: #D50000;
}
.palette-Red-A700-Primary.bg {
  background-color: #F44336;
  color: #ffffff;
}
.palette-Red-A700-Secondary.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.7);
}
.palette-Red-A700-Icons.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A700-Disabled.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A700-Hint.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.5);
}
.palette-Red-A700-Dividers.bg {
  background-color: #F44336;
  color: rgba(255,255,255,0.12);
}


.palette-Pink.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink.text {
  color: #E91E63;
}
.palette-Pink-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-50.bg {
  background-color: #FCE4EC;
  color: rgba(0,0,0,0.87);
}
.palette-Pink-50.text {
  color: #FCE4EC;
}
.palette-Pink-50-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-50-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-50-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-50-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-50-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-50-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-100.bg {
  background-color: #F8BBD0;
  color: rgba(0,0,0,0.87);
}
.palette-Pink-100.text {
  color: #F8BBD0;
}
.palette-Pink-100-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-100-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-100-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-100-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-100-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-100-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-200.bg {
  background-color: #F48FB1;
  color: rgba(0,0,0,0.87);
}
.palette-Pink-200.text {
  color: #F48FB1;
}
.palette-Pink-200-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-200-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-200-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-200-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-200-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-200-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-300.bg {
  background-color: #F06292;
  color: #ffffff;
}
.palette-Pink-300.text {
  color: #F06292;
}
.palette-Pink-300-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-300-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-300-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-300-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-300-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-300-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-400.bg {
  background-color: #EC407A;
  color: #ffffff;
}
.palette-Pink-400.text {
  color: #EC407A;
}
.palette-Pink-400-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-400-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-400-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-400-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-400-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-400-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-500.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-500.text {
  color: #E91E63;
}
.palette-Pink-500-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-500-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-500-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-500-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-500-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-500-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-600.bg {
  background-color: #D81B60;
  color: #ffffff;
}
.palette-Pink-600.text {
  color: #D81B60;
}
.palette-Pink-600-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-600-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-600-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-600-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-600-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-600-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-700.bg {
  background-color: #C2185B;
  color: #ffffff;
}
.palette-Pink-700.text {
  color: #C2185B;
}
.palette-Pink-700-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-700-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-700-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-700-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-700-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-700-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-800.bg {
  background-color: #AD1457;
  color: #ffffff;
}
.palette-Pink-800.text {
  color: #AD1457;
}
.palette-Pink-800-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-800-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-800-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-800-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-800-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-800-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-900.bg {
  background-color: #880E4F;
  color: #ffffff;
}
.palette-Pink-900.text {
  color: #880E4F;
}
.palette-Pink-900-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-900-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-900-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-900-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-900-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-900-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-A100.bg {
  background-color: #FF80AB;
  color: rgba(0,0,0,0.87);
}
.palette-Pink-A100.text {
  color: #FF80AB;
}
.palette-Pink-A100-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-A100-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-A100-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A100-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A100-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A100-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-A200.bg {
  background-color: #FF4081;
  color: #ffffff;
}
.palette-Pink-A200.text {
  color: #FF4081;
}
.palette-Pink-A200-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-A200-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-A200-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A200-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A200-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A200-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-A400.bg {
  background-color: #F50057;
  color: #ffffff;
}
.palette-Pink-A400.text {
  color: #F50057;
}
.palette-Pink-A400-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-A400-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-A400-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A400-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A400-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A400-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}

.palette-Pink-A700.bg {
  background-color: #C51162;
  color: #ffffff;
}
.palette-Pink-A700.text {
  color: #C51162;
}
.palette-Pink-A700-Primary.bg {
  background-color: #E91E63;
  color: #ffffff;
}
.palette-Pink-A700-Secondary.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.7);
}
.palette-Pink-A700-Icons.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A700-Disabled.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A700-Hint.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.5);
}
.palette-Pink-A700-Dividers.bg {
  background-color: #E91E63;
  color: rgba(255,255,255,0.12);
}


.palette-Purple.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple.text {
  color: #9C27B0;
}
.palette-Purple-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-50.bg {
  background-color: #F3E5F5;
  color: rgba(0,0,0,0.87);
}
.palette-Purple-50.text {
  color: #F3E5F5;
}
.palette-Purple-50-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-50-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-50-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-50-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-50-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-50-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-100.bg {
  background-color: #E1BEE7;
  color: rgba(0,0,0,0.87);
}
.palette-Purple-100.text {
  color: #E1BEE7;
}
.palette-Purple-100-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-100-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-100-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-100-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-100-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-100-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-200.bg {
  background-color: #CE93D8;
  color: rgba(0,0,0,0.87);
}
.palette-Purple-200.text {
  color: #CE93D8;
}
.palette-Purple-200-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-200-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-200-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-200-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-200-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-200-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-300.bg {
  background-color: #BA68C8;
  color: #ffffff;
}
.palette-Purple-300.text {
  color: #BA68C8;
}
.palette-Purple-300-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-300-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-300-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-300-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-300-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-300-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-400.bg {
  background-color: #AB47BC;
  color: #ffffff;
}
.palette-Purple-400.text {
  color: #AB47BC;
}
.palette-Purple-400-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-400-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-400-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-400-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-400-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-400-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-500.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-500.text {
  color: #9C27B0;
}
.palette-Purple-500-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-500-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-500-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-500-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-500-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-500-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-600.bg {
  background-color: #8E24AA;
  color: #ffffff;
}
.palette-Purple-600.text {
  color: #8E24AA;
}
.palette-Purple-600-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-600-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-600-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-600-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-600-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-600-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-700.bg {
  background-color: #7B1FA2;
  color: #ffffff;
}
.palette-Purple-700.text {
  color: #7B1FA2;
}
.palette-Purple-700-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-700-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-700-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-700-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-700-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-700-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-800.bg {
  background-color: #6A1B9A;
  color: #ffffff;
}
.palette-Purple-800.text {
  color: #6A1B9A;
}
.palette-Purple-800-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-800-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-800-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-800-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-800-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-800-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-900.bg {
  background-color: #4A148C;
  color: #ffffff;
}
.palette-Purple-900.text {
  color: #4A148C;
}
.palette-Purple-900-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-900-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-900-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-900-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-900-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-900-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-A100.bg {
  background-color: #EA80FC;
  color: rgba(0,0,0,0.87);
}
.palette-Purple-A100.text {
  color: #EA80FC;
}
.palette-Purple-A100-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-A100-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-A100-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A100-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A100-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A100-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-A200.bg {
  background-color: #E040FB;
  color: #ffffff;
}
.palette-Purple-A200.text {
  color: #E040FB;
}
.palette-Purple-A200-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-A200-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-A200-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A200-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A200-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A200-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-A400.bg {
  background-color: #D500F9;
  color: #ffffff;
}
.palette-Purple-A400.text {
  color: #D500F9;
}
.palette-Purple-A400-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-A400-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-A400-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A400-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A400-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A400-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}

.palette-Purple-A700.bg {
  background-color: #AA00FF;
  color: #ffffff;
}
.palette-Purple-A700.text {
  color: #AA00FF;
}
.palette-Purple-A700-Primary.bg {
  background-color: #9C27B0;
  color: #ffffff;
}
.palette-Purple-A700-Secondary.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.7);
}
.palette-Purple-A700-Icons.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A700-Disabled.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A700-Hint.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.5);
}
.palette-Purple-A700-Dividers.bg {
  background-color: #9C27B0;
  color: rgba(255,255,255,0.12);
}


.palette-Deep-Purple.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple.text {
  color: #673AB7;
}
.palette-Deep-Purple-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-50.bg {
  background-color: #EDE7F6;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Purple-50.text {
  color: #EDE7F6;
}
.palette-Deep-Purple-50-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-50-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-50-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-50-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-50-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-50-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-100.bg {
  background-color: #D1C4E9;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Purple-100.text {
  color: #D1C4E9;
}
.palette-Deep-Purple-100-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-100-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-100-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-100-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-100-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-100-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-200.bg {
  background-color: #B39DDB;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Purple-200.text {
  color: #B39DDB;
}
.palette-Deep-Purple-200-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-200-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-200-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-200-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-200-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-200-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-300.bg {
  background-color: #9575CD;
  color: #ffffff;
}
.palette-Deep-Purple-300.text {
  color: #9575CD;
}
.palette-Deep-Purple-300-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-300-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-300-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-300-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-300-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-300-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-400.bg {
  background-color: #7E57C2;
  color: #ffffff;
}
.palette-Deep-Purple-400.text {
  color: #7E57C2;
}
.palette-Deep-Purple-400-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-400-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-400-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-400-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-400-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-400-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-500.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-500.text {
  color: #673AB7;
}
.palette-Deep-Purple-500-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-500-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-500-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-500-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-500-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-500-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-600.bg {
  background-color: #5E35B1;
  color: #ffffff;
}
.palette-Deep-Purple-600.text {
  color: #5E35B1;
}
.palette-Deep-Purple-600-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-600-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-600-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-600-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-600-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-600-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-700.bg {
  background-color: #512DA8;
  color: #ffffff;
}
.palette-Deep-Purple-700.text {
  color: #512DA8;
}
.palette-Deep-Purple-700-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-700-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-700-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-700-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-700-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-700-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-800.bg {
  background-color: #4527A0;
  color: #ffffff;
}
.palette-Deep-Purple-800.text {
  color: #4527A0;
}
.palette-Deep-Purple-800-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-800-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-800-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-800-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-800-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-800-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-900.bg {
  background-color: #311B92;
  color: #ffffff;
}
.palette-Deep-Purple-900.text {
  color: #311B92;
}
.palette-Deep-Purple-900-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-900-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-900-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-900-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-900-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-900-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-A100.bg {
  background-color: #B388FF;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Purple-A100.text {
  color: #B388FF;
}
.palette-Deep-Purple-A100-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-A100-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-A100-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A100-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A100-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A100-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-A200.bg {
  background-color: #7C4DFF;
  color: #ffffff;
}
.palette-Deep-Purple-A200.text {
  color: #7C4DFF;
}
.palette-Deep-Purple-A200-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-A200-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-A200-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A200-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A200-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A200-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-A400.bg {
  background-color: #651FFF;
  color: #ffffff;
}
.palette-Deep-Purple-A400.text {
  color: #651FFF;
}
.palette-Deep-Purple-A400-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-A400-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-A400-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A400-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A400-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A400-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Purple-A700.bg {
  background-color: #6200EA;
  color: #ffffff;
}
.palette-Deep-Purple-A700.text {
  color: #6200EA;
}
.palette-Deep-Purple-A700-Primary.bg {
  background-color: #673AB7;
  color: #ffffff;
}
.palette-Deep-Purple-A700-Secondary.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Purple-A700-Icons.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A700-Disabled.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A700-Hint.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Purple-A700-Dividers.bg {
  background-color: #673AB7;
  color: rgba(255,255,255,0.12);
}


.palette-Indigo.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo.text {
  color: #3F51B5;
}
.palette-Indigo-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-50.bg {
  background-color: #E8EAF6;
  color: rgba(0,0,0,0.87);
}
.palette-Indigo-50.text {
  color: #E8EAF6;
}
.palette-Indigo-50-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-50-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-50-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-50-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-50-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-50-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-100.bg {
  background-color: #C5CAE9;
  color: rgba(0,0,0,0.87);
}
.palette-Indigo-100.text {
  color: #C5CAE9;
}
.palette-Indigo-100-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-100-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-100-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-100-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-100-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-100-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-200.bg {
  background-color: #9FA8DA;
  color: rgba(0,0,0,0.87);
}
.palette-Indigo-200.text {
  color: #9FA8DA;
}
.palette-Indigo-200-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-200-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-200-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-200-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-200-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-200-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-300.bg {
  background-color: #7986CB;
  color: #ffffff;
}
.palette-Indigo-300.text {
  color: #7986CB;
}
.palette-Indigo-300-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-300-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-300-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-300-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-300-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-300-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-400.bg {
  background-color: #5C6BC0;
  color: #ffffff;
}
.palette-Indigo-400.text {
  color: #5C6BC0;
}
.palette-Indigo-400-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-400-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-400-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-400-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-400-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-400-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-500.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-500.text {
  color: #3F51B5;
}
.palette-Indigo-500-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-500-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-500-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-500-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-500-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-500-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-600.bg {
  background-color: #3949AB;
  color: #ffffff;
}
.palette-Indigo-600.text {
  color: #3949AB;
}
.palette-Indigo-600-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-600-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-600-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-600-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-600-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-600-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-700.bg {
  background-color: #303F9F;
  color: #ffffff;
}
.palette-Indigo-700.text {
  color: #303F9F;
}
.palette-Indigo-700-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-700-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-700-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-700-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-700-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-700-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-800.bg {
  background-color: #283593;
  color: #ffffff;
}
.palette-Indigo-800.text {
  color: #283593;
}
.palette-Indigo-800-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-800-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-800-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-800-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-800-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-800-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-900.bg {
  background-color: #1A237E;
  color: #ffffff;
}
.palette-Indigo-900.text {
  color: #1A237E;
}
.palette-Indigo-900-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-900-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-900-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-900-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-900-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-900-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-A100.bg {
  background-color: #8C9EFF;
  color: rgba(0,0,0,0.87);
}
.palette-Indigo-A100.text {
  color: #8C9EFF;
}
.palette-Indigo-A100-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-A100-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-A100-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A100-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A100-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A100-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-A200.bg {
  background-color: #536DFE;
  color: #ffffff;
}
.palette-Indigo-A200.text {
  color: #536DFE;
}
.palette-Indigo-A200-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-A200-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-A200-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A200-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A200-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A200-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-A400.bg {
  background-color: #3D5AFE;
  color: #ffffff;
}
.palette-Indigo-A400.text {
  color: #3D5AFE;
}
.palette-Indigo-A400-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-A400-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-A400-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A400-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A400-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A400-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}

.palette-Indigo-A700.bg {
  background-color: #304FFE;
  color: #ffffff;
}
.palette-Indigo-A700.text {
  color: #304FFE;
}
.palette-Indigo-A700-Primary.bg {
  background-color: #3F51B5;
  color: #ffffff;
}
.palette-Indigo-A700-Secondary.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.7);
}
.palette-Indigo-A700-Icons.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A700-Disabled.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A700-Hint.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.5);
}
.palette-Indigo-A700-Dividers.bg {
  background-color: #3F51B5;
  color: rgba(255,255,255,0.12);
}


.palette-Blue.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue.text {
  color: #2196F3;
}
.palette-Blue-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-50.bg {
  background-color: #E3F2FD;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-50.text {
  color: #E3F2FD;
}
.palette-Blue-50-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-50-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-50-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-50-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-50-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-50-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-100.bg {
  background-color: #BBDEFB;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-100.text {
  color: #BBDEFB;
}
.palette-Blue-100-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-100-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-100-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-100-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-100-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-100-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-200.bg {
  background-color: #90CAF9;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-200.text {
  color: #90CAF9;
}
.palette-Blue-200-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-200-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-200-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-200-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-200-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-200-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-300.bg {
  background-color: #64B5F6;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-300.text {
  color: #64B5F6;
}
.palette-Blue-300-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-300-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-300-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-300-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-300-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-300-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-400.bg {
  background-color: #42A5F5;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-400.text {
  color: #42A5F5;
}
.palette-Blue-400-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-400-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-400-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-400-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-400-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-400-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-500.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-500.text {
  color: #2196F3;
}
.palette-Blue-500-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-500-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-500-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-500-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-500-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-500-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-600.bg {
  background-color: #1E88E5;
  color: #ffffff;
}
.palette-Blue-600.text {
  color: #1E88E5;
}
.palette-Blue-600-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-600-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-600-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-600-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-600-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-600-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-700.bg {
  background-color: #1976D2;
  color: #ffffff;
}
.palette-Blue-700.text {
  color: #1976D2;
}
.palette-Blue-700-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-700-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-700-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-700-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-700-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-700-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-800.bg {
  background-color: #1565C0;
  color: #ffffff;
}
.palette-Blue-800.text {
  color: #1565C0;
}
.palette-Blue-800-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-800-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-800-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-800-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-800-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-800-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-900.bg {
  background-color: #0D47A1;
  color: #ffffff;
}
.palette-Blue-900.text {
  color: #0D47A1;
}
.palette-Blue-900-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-900-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-900-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-900-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-900-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-900-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-A100.bg {
  background-color: #82B1FF;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-A100.text {
  color: #82B1FF;
}
.palette-Blue-A100-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-A100-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-A100-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A100-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A100-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A100-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-A200.bg {
  background-color: #448AFF;
  color: #ffffff;
}
.palette-Blue-A200.text {
  color: #448AFF;
}
.palette-Blue-A200-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-A200-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-A200-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A200-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A200-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A200-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-A400.bg {
  background-color: #2979FF;
  color: #ffffff;
}
.palette-Blue-A400.text {
  color: #2979FF;
}
.palette-Blue-A400-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-A400-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-A400-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A400-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A400-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A400-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-A700.bg {
  background-color: #2962FF;
  color: #ffffff;
}
.palette-Blue-A700.text {
  color: #2962FF;
}
.palette-Blue-A700-Primary.bg {
  background-color: #2196F3;
  color: #ffffff;
}
.palette-Blue-A700-Secondary.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-A700-Icons.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A700-Disabled.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A700-Hint.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-A700-Dividers.bg {
  background-color: #2196F3;
  color: rgba(255,255,255,0.12);
}


.palette-Light-Blue.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue.text {
  color: #03A9F4;
}
.palette-Light-Blue-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-50.bg {
  background-color: #E1F5FE;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-50.text {
  color: #E1F5FE;
}
.palette-Light-Blue-50-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-50-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-50-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-50-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-50-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-50-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-100.bg {
  background-color: #B3E5FC;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-100.text {
  color: #B3E5FC;
}
.palette-Light-Blue-100-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-100-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-100-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-100-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-100-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-100-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-200.bg {
  background-color: #81D4FA;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-200.text {
  color: #81D4FA;
}
.palette-Light-Blue-200-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-200-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-200-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-200-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-200-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-200-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-300.bg {
  background-color: #4FC3F7;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-300.text {
  color: #4FC3F7;
}
.palette-Light-Blue-300-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-300-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-300-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-300-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-300-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-300-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-400.bg {
  background-color: #29B6F6;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-400.text {
  color: #29B6F6;
}
.palette-Light-Blue-400-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-400-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-400-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-400-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-400-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-400-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-500.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-500.text {
  color: #03A9F4;
}
.palette-Light-Blue-500-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-500-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-500-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-500-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-500-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-500-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-600.bg {
  background-color: #039BE5;
  color: #ffffff;
}
.palette-Light-Blue-600.text {
  color: #039BE5;
}
.palette-Light-Blue-600-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-600-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-600-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-600-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-600-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-600-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-700.bg {
  background-color: #0288D1;
  color: #ffffff;
}
.palette-Light-Blue-700.text {
  color: #0288D1;
}
.palette-Light-Blue-700-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-700-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-700-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-700-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-700-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-700-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-800.bg {
  background-color: #0277BD;
  color: #ffffff;
}
.palette-Light-Blue-800.text {
  color: #0277BD;
}
.palette-Light-Blue-800-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-800-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-800-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-800-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-800-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-800-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-900.bg {
  background-color: #01579B;
  color: #ffffff;
}
.palette-Light-Blue-900.text {
  color: #01579B;
}
.palette-Light-Blue-900-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-900-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-900-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-900-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-900-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-900-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-A100.bg {
  background-color: #80D8FF;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-A100.text {
  color: #80D8FF;
}
.palette-Light-Blue-A100-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-A100-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-A100-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A100-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A100-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A100-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-A200.bg {
  background-color: #40C4FF;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-A200.text {
  color: #40C4FF;
}
.palette-Light-Blue-A200-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-A200-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-A200-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A200-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A200-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A200-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-A400.bg {
  background-color: #00B0FF;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-A400.text {
  color: #00B0FF;
}
.palette-Light-Blue-A400-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-A400-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-A400-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A400-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A400-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A400-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Blue-A700.bg {
  background-color: #0091EA;
  color: #ffffff;
}
.palette-Light-Blue-A700.text {
  color: #0091EA;
}
.palette-Light-Blue-A700-Primary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Blue-A700-Secondary.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Blue-A700-Icons.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A700-Disabled.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A700-Hint.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Blue-A700-Dividers.bg {
  background-color: #03A9F4;
  color: rgba(0,0,0,0.12);
}


.palette-Cyan.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan.text {
  color: #00BCD4;
}
.palette-Cyan-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-50.bg {
  background-color: #E0F7FA;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-50.text {
  color: #E0F7FA;
}
.palette-Cyan-50-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-50-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-50-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-50-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-50-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-50-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-100.bg {
  background-color: #B2EBF2;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-100.text {
  color: #B2EBF2;
}
.palette-Cyan-100-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-100-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-100-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-100-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-100-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-100-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-200.bg {
  background-color: #80DEEA;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-200.text {
  color: #80DEEA;
}
.palette-Cyan-200-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-200-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-200-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-200-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-200-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-200-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-300.bg {
  background-color: #4DD0E1;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-300.text {
  color: #4DD0E1;
}
.palette-Cyan-300-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-300-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-300-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-300-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-300-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-300-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-400.bg {
  background-color: #26C6DA;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-400.text {
  color: #26C6DA;
}
.palette-Cyan-400-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-400-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-400-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-400-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-400-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-400-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-500.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-500.text {
  color: #00BCD4;
}
.palette-Cyan-500-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-500-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-500-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-500-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-500-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-500-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-600.bg {
  background-color: #00ACC1;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-600.text {
  color: #00ACC1;
}
.palette-Cyan-600-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-600-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-600-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-600-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-600-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-600-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-700.bg {
  background-color: #0097A7;
  color: #ffffff;
}
.palette-Cyan-700.text {
  color: #0097A7;
}
.palette-Cyan-700-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-700-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-700-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-700-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-700-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-700-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-800.bg {
  background-color: #00838F;
  color: #ffffff;
}
.palette-Cyan-800.text {
  color: #00838F;
}
.palette-Cyan-800-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-800-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-800-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-800-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-800-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-800-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-900.bg {
  background-color: #006064;
  color: #ffffff;
}
.palette-Cyan-900.text {
  color: #006064;
}
.palette-Cyan-900-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-900-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-900-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-900-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-900-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-900-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-A100.bg {
  background-color: #84FFFF;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-A100.text {
  color: #84FFFF;
}
.palette-Cyan-A100-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-A100-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-A100-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A100-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A100-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A100-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-A200.bg {
  background-color: #18FFFF;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-A200.text {
  color: #18FFFF;
}
.palette-Cyan-A200-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-A200-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-A200-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A200-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A200-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A200-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-A400.bg {
  background-color: #00E5FF;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-A400.text {
  color: #00E5FF;
}
.palette-Cyan-A400-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-A400-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-A400-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A400-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A400-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A400-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}

.palette-Cyan-A700.bg {
  background-color: #00B8D4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-A700.text {
  color: #00B8D4;
}
.palette-Cyan-A700-Primary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.87);
}
.palette-Cyan-A700-Secondary.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.54);
}
.palette-Cyan-A700-Icons.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A700-Disabled.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A700-Hint.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.38);
}
.palette-Cyan-A700-Dividers.bg {
  background-color: #00BCD4;
  color: rgba(0,0,0,0.12);
}


.palette-Teal.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal.text {
  color: #009688;
}
.palette-Teal-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-50.bg {
  background-color: #E0F2F1;
  color: rgba(0,0,0,0.87);
}
.palette-Teal-50.text {
  color: #E0F2F1;
}
.palette-Teal-50-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-50-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-50-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-50-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-50-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-50-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-100.bg {
  background-color: #B2DFDB;
  color: rgba(0,0,0,0.87);
}
.palette-Teal-100.text {
  color: #B2DFDB;
}
.palette-Teal-100-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-100-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-100-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-100-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-100-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-100-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-200.bg {
  background-color: #80CBC4;
  color: rgba(0,0,0,0.87);
}
.palette-Teal-200.text {
  color: #80CBC4;
}
.palette-Teal-200-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-200-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-200-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-200-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-200-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-200-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-300.bg {
  background-color: #4DB6AC;
  color: rgba(0,0,0,0.87);
}
.palette-Teal-300.text {
  color: #4DB6AC;
}
.palette-Teal-300-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-300-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-300-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-300-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-300-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-300-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-400.bg {
  background-color: #26A69A;
  color: rgba(0,0,0,0.87);
}
.palette-Teal-400.text {
  color: #26A69A;
}
.palette-Teal-400-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-400-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-400-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-400-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-400-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-400-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-500.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-500.text {
  color: #009688;
}
.palette-Teal-500-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-500-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-500-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-500-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-500-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-500-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-600.bg {
  background-color: #00897B;
  color: #ffffff;
}
.palette-Teal-600.text {
  color: #00897B;
}
.palette-Teal-600-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-600-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-600-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-600-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-600-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-600-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-700.bg {
  background-color: #00796B;
  color: #ffffff;
}
.palette-Teal-700.text {
  color: #00796B;
}
.palette-Teal-700-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-700-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-700-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-700-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-700-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-700-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-800.bg {
  background-color: #00695C;
  color: #ffffff;
}
.palette-Teal-800.text {
  color: #00695C;
}
.palette-Teal-800-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-800-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-800-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-800-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-800-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-800-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-900.bg {
  background-color: #004D40;
  color: #ffffff;
}
.palette-Teal-900.text {
  color: #004D40;
}
.palette-Teal-900-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-900-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-900-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-900-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-900-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-900-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-A100.bg {
  background-color: #A7FFEB;
  color: rgba(0,0,0,0.87);
}
.palette-Teal-A100.text {
  color: #A7FFEB;
}
.palette-Teal-A100-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-A100-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-A100-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A100-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A100-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A100-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-A200.bg {
  background-color: #64FFDA;
  color: rgba(0,0,0,0.87);
}
.palette-Teal-A200.text {
  color: #64FFDA;
}
.palette-Teal-A200-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-A200-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-A200-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A200-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A200-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A200-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-A400.bg {
  background-color: #1DE9B6;
  color: rgba(0,0,0,0.87);
}
.palette-Teal-A400.text {
  color: #1DE9B6;
}
.palette-Teal-A400-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-A400-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-A400-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A400-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A400-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A400-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}

.palette-Teal-A700.bg {
  background-color: #00BFA5;
  color: rgba(0,0,0,0.87);
}
.palette-Teal-A700.text {
  color: #00BFA5;
}
.palette-Teal-A700-Primary.bg {
  background-color: #009688;
  color: #ffffff;
}
.palette-Teal-A700-Secondary.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.7);
}
.palette-Teal-A700-Icons.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A700-Disabled.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A700-Hint.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.5);
}
.palette-Teal-A700-Dividers.bg {
  background-color: #009688;
  color: rgba(255,255,255,0.12);
}


.palette-Green.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green.text {
  color: #4CAF50;
}
.palette-Green-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-50.bg {
  background-color: #E8F5E9;
  color: rgba(0,0,0,0.87);
}
.palette-Green-50.text {
  color: #E8F5E9;
}
.palette-Green-50-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-50-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-50-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-50-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-50-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-50-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-100.bg {
  background-color: #C8E6C9;
  color: rgba(0,0,0,0.87);
}
.palette-Green-100.text {
  color: #C8E6C9;
}
.palette-Green-100-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-100-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-100-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-100-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-100-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-100-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-200.bg {
  background-color: #A5D6A7;
  color: rgba(0,0,0,0.87);
}
.palette-Green-200.text {
  color: #A5D6A7;
}
.palette-Green-200-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-200-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-200-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-200-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-200-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-200-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-300.bg {
  background-color: #81C784;
  color: rgba(0,0,0,0.87);
}
.palette-Green-300.text {
  color: #81C784;
}
.palette-Green-300-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-300-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-300-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-300-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-300-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-300-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-400.bg {
  background-color: #66BB6A;
  color: rgba(0,0,0,0.87);
}
.palette-Green-400.text {
  color: #66BB6A;
}
.palette-Green-400-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-400-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-400-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-400-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-400-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-400-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-500.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-500.text {
  color: #4CAF50;
}
.palette-Green-500-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-500-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-500-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-500-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-500-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-500-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-600.bg {
  background-color: #43A047;
  color: #ffffff;
}
.palette-Green-600.text {
  color: #43A047;
}
.palette-Green-600-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-600-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-600-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-600-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-600-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-600-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-700.bg {
  background-color: #388E3C;
  color: #ffffff;
}
.palette-Green-700.text {
  color: #388E3C;
}
.palette-Green-700-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-700-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-700-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-700-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-700-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-700-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-800.bg {
  background-color: #2E7D32;
  color: #ffffff;
}
.palette-Green-800.text {
  color: #2E7D32;
}
.palette-Green-800-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-800-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-800-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-800-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-800-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-800-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-900.bg {
  background-color: #1B5E20;
  color: #ffffff;
}
.palette-Green-900.text {
  color: #1B5E20;
}
.palette-Green-900-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-900-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-900-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-900-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-900-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-900-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-A100.bg {
  background-color: #B9F6CA;
  color: rgba(0,0,0,0.87);
}
.palette-Green-A100.text {
  color: #B9F6CA;
}
.palette-Green-A100-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-A100-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-A100-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A100-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A100-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A100-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-A200.bg {
  background-color: #69F0AE;
  color: rgba(0,0,0,0.87);
}
.palette-Green-A200.text {
  color: #69F0AE;
}
.palette-Green-A200-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-A200-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-A200-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A200-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A200-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A200-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-A400.bg {
  background-color: #00E676;
  color: rgba(0,0,0,0.87);
}
.palette-Green-A400.text {
  color: #00E676;
}
.palette-Green-A400-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-A400-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-A400-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A400-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A400-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A400-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}

.palette-Green-A700.bg {
  background-color: #00C853;
  color: rgba(0,0,0,0.87);
}
.palette-Green-A700.text {
  color: #00C853;
}
.palette-Green-A700-Primary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.87);
}
.palette-Green-A700-Secondary.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.54);
}
.palette-Green-A700-Icons.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A700-Disabled.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A700-Hint.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.38);
}
.palette-Green-A700-Dividers.bg {
  background-color: #4CAF50;
  color: rgba(0,0,0,0.12);
}


.palette-Light-Green.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green.text {
  color: #8BC34A;
}
.palette-Light-Green-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-50.bg {
  background-color: #F1F8E9;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-50.text {
  color: #F1F8E9;
}
.palette-Light-Green-50-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-50-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-50-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-50-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-50-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-50-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-100.bg {
  background-color: #DCEDC8;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-100.text {
  color: #DCEDC8;
}
.palette-Light-Green-100-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-100-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-100-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-100-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-100-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-100-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-200.bg {
  background-color: #C5E1A5;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-200.text {
  color: #C5E1A5;
}
.palette-Light-Green-200-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-200-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-200-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-200-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-200-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-200-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-300.bg {
  background-color: #AED581;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-300.text {
  color: #AED581;
}
.palette-Light-Green-300-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-300-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-300-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-300-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-300-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-300-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-400.bg {
  background-color: #9CCC65;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-400.text {
  color: #9CCC65;
}
.palette-Light-Green-400-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-400-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-400-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-400-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-400-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-400-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-500.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-500.text {
  color: #8BC34A;
}
.palette-Light-Green-500-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-500-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-500-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-500-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-500-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-500-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-600.bg {
  background-color: #7CB342;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-600.text {
  color: #7CB342;
}
.palette-Light-Green-600-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-600-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-600-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-600-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-600-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-600-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-700.bg {
  background-color: #689F38;
  color: #ffffff;
}
.palette-Light-Green-700.text {
  color: #689F38;
}
.palette-Light-Green-700-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-700-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-700-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-700-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-700-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-700-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-800.bg {
  background-color: #558B2F;
  color: #ffffff;
}
.palette-Light-Green-800.text {
  color: #558B2F;
}
.palette-Light-Green-800-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-800-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-800-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-800-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-800-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-800-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-900.bg {
  background-color: #33691E;
  color: #ffffff;
}
.palette-Light-Green-900.text {
  color: #33691E;
}
.palette-Light-Green-900-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-900-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-900-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-900-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-900-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-900-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-A100.bg {
  background-color: #CCFF90;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-A100.text {
  color: #CCFF90;
}
.palette-Light-Green-A100-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-A100-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-A100-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A100-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A100-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A100-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-A200.bg {
  background-color: #B2FF59;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-A200.text {
  color: #B2FF59;
}
.palette-Light-Green-A200-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-A200-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-A200-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A200-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A200-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A200-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-A400.bg {
  background-color: #76FF03;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-A400.text {
  color: #76FF03;
}
.palette-Light-Green-A400-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-A400-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-A400-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A400-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A400-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A400-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}

.palette-Light-Green-A700.bg {
  background-color: #64DD17;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-A700.text {
  color: #64DD17;
}
.palette-Light-Green-A700-Primary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.87);
}
.palette-Light-Green-A700-Secondary.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.54);
}
.palette-Light-Green-A700-Icons.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A700-Disabled.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A700-Hint.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.38);
}
.palette-Light-Green-A700-Dividers.bg {
  background-color: #8BC34A;
  color: rgba(0,0,0,0.12);
}


.palette-Lime.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime.text {
  color: #CDDC39;
}
.palette-Lime-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-50.bg {
  background-color: #F9FBE7;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-50.text {
  color: #F9FBE7;
}
.palette-Lime-50-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-50-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-50-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-50-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-50-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-50-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-100.bg {
  background-color: #F0F4C3;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-100.text {
  color: #F0F4C3;
}
.palette-Lime-100-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-100-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-100-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-100-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-100-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-100-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-200.bg {
  background-color: #E6EE9C;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-200.text {
  color: #E6EE9C;
}
.palette-Lime-200-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-200-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-200-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-200-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-200-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-200-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-300.bg {
  background-color: #DCE775;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-300.text {
  color: #DCE775;
}
.palette-Lime-300-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-300-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-300-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-300-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-300-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-300-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-400.bg {
  background-color: #D4E157;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-400.text {
  color: #D4E157;
}
.palette-Lime-400-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-400-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-400-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-400-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-400-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-400-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-500.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-500.text {
  color: #CDDC39;
}
.palette-Lime-500-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-500-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-500-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-500-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-500-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-500-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-600.bg {
  background-color: #C0CA33;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-600.text {
  color: #C0CA33;
}
.palette-Lime-600-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-600-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-600-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-600-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-600-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-600-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-700.bg {
  background-color: #AFB42B;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-700.text {
  color: #AFB42B;
}
.palette-Lime-700-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-700-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-700-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-700-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-700-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-700-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-800.bg {
  background-color: #9E9D24;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-800.text {
  color: #9E9D24;
}
.palette-Lime-800-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-800-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-800-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-800-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-800-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-800-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-900.bg {
  background-color: #827717;
  color: #ffffff;
}
.palette-Lime-900.text {
  color: #827717;
}
.palette-Lime-900-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-900-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-900-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-900-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-900-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-900-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-A100.bg {
  background-color: #F4FF81;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-A100.text {
  color: #F4FF81;
}
.palette-Lime-A100-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-A100-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-A100-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A100-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A100-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A100-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-A200.bg {
  background-color: #EEFF41;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-A200.text {
  color: #EEFF41;
}
.palette-Lime-A200-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-A200-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-A200-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A200-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A200-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A200-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-A400.bg {
  background-color: #C6FF00;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-A400.text {
  color: #C6FF00;
}
.palette-Lime-A400-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-A400-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-A400-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A400-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A400-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A400-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}

.palette-Lime-A700.bg {
  background-color: #AEEA00;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-A700.text {
  color: #AEEA00;
}
.palette-Lime-A700-Primary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.87);
}
.palette-Lime-A700-Secondary.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.54);
}
.palette-Lime-A700-Icons.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A700-Disabled.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A700-Hint.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.38);
}
.palette-Lime-A700-Dividers.bg {
  background-color: #CDDC39;
  color: rgba(0,0,0,0.12);
}


.palette-Yellow.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow.text {
  color: #FFEB3B;
}
.palette-Yellow-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-50.bg {
  background-color: #FFFDE7;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-50.text {
  color: #FFFDE7;
}
.palette-Yellow-50-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-50-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-50-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-50-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-50-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-50-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-100.bg {
  background-color: #FFF9C4;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-100.text {
  color: #FFF9C4;
}
.palette-Yellow-100-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-100-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-100-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-100-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-100-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-100-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-200.bg {
  background-color: #FFF59D;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-200.text {
  color: #FFF59D;
}
.palette-Yellow-200-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-200-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-200-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-200-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-200-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-200-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-300.bg {
  background-color: #FFF176;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-300.text {
  color: #FFF176;
}
.palette-Yellow-300-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-300-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-300-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-300-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-300-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-300-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-400.bg {
  background-color: #FFEE58;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-400.text {
  color: #FFEE58;
}
.palette-Yellow-400-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-400-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-400-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-400-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-400-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-400-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-500.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-500.text {
  color: #FFEB3B;
}
.palette-Yellow-500-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-500-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-500-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-500-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-500-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-500-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-600.bg {
  background-color: #FDD835;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-600.text {
  color: #FDD835;
}
.palette-Yellow-600-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-600-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-600-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-600-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-600-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-600-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-700.bg {
  background-color: #FBC02D;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-700.text {
  color: #FBC02D;
}
.palette-Yellow-700-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-700-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-700-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-700-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-700-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-700-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-800.bg {
  background-color: #F9A825;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-800.text {
  color: #F9A825;
}
.palette-Yellow-800-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-800-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-800-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-800-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-800-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-800-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-900.bg {
  background-color: #F57F17;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-900.text {
  color: #F57F17;
}
.palette-Yellow-900-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-900-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-900-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-900-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-900-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-900-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-A100.bg {
  background-color: #FFFF8D;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-A100.text {
  color: #FFFF8D;
}
.palette-Yellow-A100-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-A100-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-A100-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A100-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A100-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A100-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-A200.bg {
  background-color: #FFFF00;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-A200.text {
  color: #FFFF00;
}
.palette-Yellow-A200-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-A200-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-A200-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A200-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A200-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A200-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-A400.bg {
  background-color: #FFEA00;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-A400.text {
  color: #FFEA00;
}
.palette-Yellow-A400-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-A400-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-A400-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A400-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A400-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A400-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}

.palette-Yellow-A700.bg {
  background-color: #FFD600;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-A700.text {
  color: #FFD600;
}
.palette-Yellow-A700-Primary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.87);
}
.palette-Yellow-A700-Secondary.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.54);
}
.palette-Yellow-A700-Icons.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A700-Disabled.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A700-Hint.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.38);
}
.palette-Yellow-A700-Dividers.bg {
  background-color: #FFEB3B;
  color: rgba(0,0,0,0.12);
}


.palette-Amber.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber.text {
  color: #FFC107;
}
.palette-Amber-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-50.bg {
  background-color: #FFF8E1;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-50.text {
  color: #FFF8E1;
}
.palette-Amber-50-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-50-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-50-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-50-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-50-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-50-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-100.bg {
  background-color: #FFECB3;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-100.text {
  color: #FFECB3;
}
.palette-Amber-100-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-100-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-100-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-100-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-100-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-100-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-200.bg {
  background-color: #FFE082;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-200.text {
  color: #FFE082;
}
.palette-Amber-200-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-200-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-200-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-200-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-200-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-200-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-300.bg {
  background-color: #FFD54F;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-300.text {
  color: #FFD54F;
}
.palette-Amber-300-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-300-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-300-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-300-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-300-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-300-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-400.bg {
  background-color: #FFCA28;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-400.text {
  color: #FFCA28;
}
.palette-Amber-400-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-400-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-400-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-400-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-400-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-400-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-500.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-500.text {
  color: #FFC107;
}
.palette-Amber-500-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-500-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-500-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-500-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-500-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-500-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-600.bg {
  background-color: #FFB300;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-600.text {
  color: #FFB300;
}
.palette-Amber-600-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-600-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-600-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-600-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-600-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-600-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-700.bg {
  background-color: #FFA000;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-700.text {
  color: #FFA000;
}
.palette-Amber-700-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-700-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-700-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-700-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-700-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-700-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-800.bg {
  background-color: #FF8F00;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-800.text {
  color: #FF8F00;
}
.palette-Amber-800-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-800-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-800-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-800-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-800-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-800-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-900.bg {
  background-color: #FF6F00;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-900.text {
  color: #FF6F00;
}
.palette-Amber-900-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-900-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-900-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-900-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-900-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-900-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-A100.bg {
  background-color: #FFE57F;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-A100.text {
  color: #FFE57F;
}
.palette-Amber-A100-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-A100-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-A100-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A100-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A100-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A100-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-A200.bg {
  background-color: #FFD740;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-A200.text {
  color: #FFD740;
}
.palette-Amber-A200-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-A200-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-A200-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A200-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A200-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A200-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-A400.bg {
  background-color: #FFC400;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-A400.text {
  color: #FFC400;
}
.palette-Amber-A400-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-A400-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-A400-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A400-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A400-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A400-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}

.palette-Amber-A700.bg {
  background-color: #FFAB00;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-A700.text {
  color: #FFAB00;
}
.palette-Amber-A700-Primary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.87);
}
.palette-Amber-A700-Secondary.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.54);
}
.palette-Amber-A700-Icons.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A700-Disabled.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A700-Hint.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.38);
}
.palette-Amber-A700-Dividers.bg {
  background-color: #FFC107;
  color: rgba(0,0,0,0.12);
}


.palette-Orange.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange.text {
  color: #FF9800;
}
.palette-Orange-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-50.bg {
  background-color: #FFF3E0;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-50.text {
  color: #FFF3E0;
}
.palette-Orange-50-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-50-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-50-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-50-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-50-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-50-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-100.bg {
  background-color: #FFE0B2;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-100.text {
  color: #FFE0B2;
}
.palette-Orange-100-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-100-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-100-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-100-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-100-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-100-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-200.bg {
  background-color: #FFCC80;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-200.text {
  color: #FFCC80;
}
.palette-Orange-200-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-200-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-200-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-200-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-200-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-200-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-300.bg {
  background-color: #FFB74D;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-300.text {
  color: #FFB74D;
}
.palette-Orange-300-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-300-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-300-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-300-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-300-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-300-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-400.bg {
  background-color: #FFA726;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-400.text {
  color: #FFA726;
}
.palette-Orange-400-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-400-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-400-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-400-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-400-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-400-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-500.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-500.text {
  color: #FF9800;
}
.palette-Orange-500-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-500-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-500-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-500-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-500-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-500-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-600.bg {
  background-color: #FB8C00;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-600.text {
  color: #FB8C00;
}
.palette-Orange-600-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-600-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-600-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-600-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-600-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-600-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-700.bg {
  background-color: #F57C00;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-700.text {
  color: #F57C00;
}
.palette-Orange-700-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-700-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-700-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-700-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-700-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-700-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-800.bg {
  background-color: #EF6C00;
  color: #ffffff;
}
.palette-Orange-800.text {
  color: #EF6C00;
}
.palette-Orange-800-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-800-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-800-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-800-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-800-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-800-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-900.bg {
  background-color: #E65100;
  color: #ffffff;
}
.palette-Orange-900.text {
  color: #E65100;
}
.palette-Orange-900-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-900-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-900-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-900-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-900-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-900-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-A100.bg {
  background-color: #FFD180;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-A100.text {
  color: #FFD180;
}
.palette-Orange-A100-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-A100-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-A100-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A100-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A100-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A100-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-A200.bg {
  background-color: #FFAB40;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-A200.text {
  color: #FFAB40;
}
.palette-Orange-A200-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-A200-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-A200-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A200-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A200-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A200-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-A400.bg {
  background-color: #FF9100;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-A400.text {
  color: #FF9100;
}
.palette-Orange-A400-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-A400-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-A400-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A400-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A400-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A400-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}

.palette-Orange-A700.bg {
  background-color: #FF6D00;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-A700.text {
  color: #FF6D00;
}
.palette-Orange-A700-Primary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.87);
}
.palette-Orange-A700-Secondary.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.54);
}
.palette-Orange-A700-Icons.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A700-Disabled.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A700-Hint.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.38);
}
.palette-Orange-A700-Dividers.bg {
  background-color: #FF9800;
  color: rgba(0,0,0,0.12);
}


.palette-Deep-Orange.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange.text {
  color: #FF5722;
}
.palette-Deep-Orange-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-50.bg {
  background-color: #FBE9E7;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Orange-50.text {
  color: #FBE9E7;
}
.palette-Deep-Orange-50-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-50-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-50-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-50-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-50-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-50-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-100.bg {
  background-color: #FFCCBC;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Orange-100.text {
  color: #FFCCBC;
}
.palette-Deep-Orange-100-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-100-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-100-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-100-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-100-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-100-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-200.bg {
  background-color: #FFAB91;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Orange-200.text {
  color: #FFAB91;
}
.palette-Deep-Orange-200-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-200-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-200-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-200-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-200-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-200-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-300.bg {
  background-color: #FF8A65;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Orange-300.text {
  color: #FF8A65;
}
.palette-Deep-Orange-300-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-300-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-300-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-300-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-300-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-300-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-400.bg {
  background-color: #FF7043;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Orange-400.text {
  color: #FF7043;
}
.palette-Deep-Orange-400-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-400-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-400-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-400-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-400-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-400-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-500.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-500.text {
  color: #FF5722;
}
.palette-Deep-Orange-500-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-500-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-500-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-500-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-500-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-500-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-600.bg {
  background-color: #F4511E;
  color: #ffffff;
}
.palette-Deep-Orange-600.text {
  color: #F4511E;
}
.palette-Deep-Orange-600-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-600-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-600-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-600-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-600-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-600-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-700.bg {
  background-color: #E64A19;
  color: #ffffff;
}
.palette-Deep-Orange-700.text {
  color: #E64A19;
}
.palette-Deep-Orange-700-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-700-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-700-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-700-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-700-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-700-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-800.bg {
  background-color: #D84315;
  color: #ffffff;
}
.palette-Deep-Orange-800.text {
  color: #D84315;
}
.palette-Deep-Orange-800-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-800-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-800-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-800-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-800-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-800-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-900.bg {
  background-color: #BF360C;
  color: #ffffff;
}
.palette-Deep-Orange-900.text {
  color: #BF360C;
}
.palette-Deep-Orange-900-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-900-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-900-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-900-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-900-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-900-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-A100.bg {
  background-color: #FF9E80;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Orange-A100.text {
  color: #FF9E80;
}
.palette-Deep-Orange-A100-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-A100-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-A100-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A100-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A100-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A100-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-A200.bg {
  background-color: #FF6E40;
  color: rgba(0,0,0,0.87);
}
.palette-Deep-Orange-A200.text {
  color: #FF6E40;
}
.palette-Deep-Orange-A200-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-A200-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-A200-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A200-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A200-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A200-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-A400.bg {
  background-color: #FF3D00;
  color: #ffffff;
}
.palette-Deep-Orange-A400.text {
  color: #FF3D00;
}
.palette-Deep-Orange-A400-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-A400-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-A400-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A400-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A400-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A400-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}

.palette-Deep-Orange-A700.bg {
  background-color: #DD2C00;
  color: #ffffff;
}
.palette-Deep-Orange-A700.text {
  color: #DD2C00;
}
.palette-Deep-Orange-A700-Primary.bg {
  background-color: #FF5722;
  color: #ffffff;
}
.palette-Deep-Orange-A700-Secondary.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.7);
}
.palette-Deep-Orange-A700-Icons.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A700-Disabled.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A700-Hint.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.5);
}
.palette-Deep-Orange-A700-Dividers.bg {
  background-color: #FF5722;
  color: rgba(255,255,255,0.12);
}


.palette-Brown.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown.text {
  color: #795548;
}
.palette-Brown-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-50.bg {
  background-color: #EFEBE9;
  color: rgba(0,0,0,0.87);
}
.palette-Brown-50.text {
  color: #EFEBE9;
}
.palette-Brown-50-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-50-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-50-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-50-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-50-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-50-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-100.bg {
  background-color: #D7CCC8;
  color: rgba(0,0,0,0.87);
}
.palette-Brown-100.text {
  color: #D7CCC8;
}
.palette-Brown-100-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-100-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-100-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-100-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-100-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-100-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-200.bg {
  background-color: #BCAAA4;
  color: rgba(0,0,0,0.87);
}
.palette-Brown-200.text {
  color: #BCAAA4;
}
.palette-Brown-200-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-200-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-200-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-200-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-200-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-200-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-300.bg {
  background-color: #A1887F;
  color: #ffffff;
}
.palette-Brown-300.text {
  color: #A1887F;
}
.palette-Brown-300-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-300-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-300-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-300-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-300-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-300-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-400.bg {
  background-color: #8D6E63;
  color: #ffffff;
}
.palette-Brown-400.text {
  color: #8D6E63;
}
.palette-Brown-400-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-400-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-400-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-400-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-400-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-400-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-500.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-500.text {
  color: #795548;
}
.palette-Brown-500-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-500-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-500-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-500-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-500-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-500-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-600.bg {
  background-color: #6D4C41;
  color: #ffffff;
}
.palette-Brown-600.text {
  color: #6D4C41;
}
.palette-Brown-600-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-600-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-600-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-600-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-600-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-600-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-700.bg {
  background-color: #5D4037;
  color: #ffffff;
}
.palette-Brown-700.text {
  color: #5D4037;
}
.palette-Brown-700-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-700-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-700-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-700-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-700-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-700-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-800.bg {
  background-color: #4E342E;
  color: #ffffff;
}
.palette-Brown-800.text {
  color: #4E342E;
}
.palette-Brown-800-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-800-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-800-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-800-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-800-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-800-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}

.palette-Brown-900.bg {
  background-color: #3E2723;
  color: #ffffff;
}
.palette-Brown-900.text {
  color: #3E2723;
}
.palette-Brown-900-Primary.bg {
  background-color: #795548;
  color: #ffffff;
}
.palette-Brown-900-Secondary.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.7);
}
.palette-Brown-900-Icons.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-900-Disabled.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-900-Hint.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.5);
}
.palette-Brown-900-Dividers.bg {
  background-color: #795548;
  color: rgba(255,255,255,0.12);
}


.palette-Grey.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey.text {
  color: #9E9E9E;
}
.palette-Grey-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-50.bg {
  background-color: #FAFAFA;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-50.text {
  color: #FAFAFA;
}
.palette-Grey-50-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-50-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-50-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-50-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-50-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-50-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-100.bg {
  background-color: #F5F5F5;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-100.text {
  color: #F5F5F5;
}
.palette-Grey-100-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-100-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-100-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-100-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-100-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-100-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-200.bg {
  background-color: #EEEEEE;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-200.text {
  color: #EEEEEE;
}
.palette-Grey-200-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-200-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-200-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-200-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-200-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-200-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-300.bg {
  background-color: #E0E0E0;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-300.text {
  color: #E0E0E0;
}
.palette-Grey-300-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-300-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-300-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-300-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-300-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-300-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-400.bg {
  background-color: #BDBDBD;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-400.text {
  color: #BDBDBD;
}
.palette-Grey-400-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-400-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-400-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-400-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-400-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-400-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-500.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-500.text {
  color: #9E9E9E;
}
.palette-Grey-500-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-500-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-500-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-500-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-500-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-500-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-600.bg {
  background-color: #757575;
  color: #ffffff;
}
.palette-Grey-600.text {
  color: #757575;
}
.palette-Grey-600-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-600-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-600-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-600-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-600-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-600-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-700.bg {
  background-color: #616161;
  color: #ffffff;
}
.palette-Grey-700.text {
  color: #616161;
}
.palette-Grey-700-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-700-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-700-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-700-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-700-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-700-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-800.bg {
  background-color: #424242;
  color: #ffffff;
}
.palette-Grey-800.text {
  color: #424242;
}
.palette-Grey-800-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-800-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-800-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-800-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-800-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-800-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}

.palette-Grey-900.bg {
  background-color: #212121;
  color: #ffffff;
}
.palette-Grey-900.text {
  color: #212121;
}
.palette-Grey-900-Primary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.87);
}
.palette-Grey-900-Secondary.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.54);
}
.palette-Grey-900-Icons.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-900-Disabled.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-900-Hint.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.38);
}
.palette-Grey-900-Dividers.bg {
  background-color: #9E9E9E;
  color: rgba(0,0,0,0.12);
}


.palette-Blue-Grey.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey.text {
  color: #607D8B;
}
.palette-Blue-Grey-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-50.bg {
  background-color: #ECEFF1;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-Grey-50.text {
  color: #ECEFF1;
}
.palette-Blue-Grey-50-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-50-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-50-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-50-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-50-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-50-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-100.bg {
  background-color: #CFD8DC;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-Grey-100.text {
  color: #CFD8DC;
}
.palette-Blue-Grey-100-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-100-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-100-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-100-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-100-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-100-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-200.bg {
  background-color: #B0BEC5;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-Grey-200.text {
  color: #B0BEC5;
}
.palette-Blue-Grey-200-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-200-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-200-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-200-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-200-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-200-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-300.bg {
  background-color: #90A4AE;
  color: rgba(0,0,0,0.87);
}
.palette-Blue-Grey-300.text {
  color: #90A4AE;
}
.palette-Blue-Grey-300-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-300-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-300-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-300-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-300-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-300-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-400.bg {
  background-color: #78909C;
  color: #ffffff;
}
.palette-Blue-Grey-400.text {
  color: #78909C;
}
.palette-Blue-Grey-400-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-400-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-400-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-400-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-400-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-400-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-500.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-500.text {
  color: #607D8B;
}
.palette-Blue-Grey-500-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-500-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-500-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-500-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-500-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-500-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-600.bg {
  background-color: #546E7A;
  color: #ffffff;
}
.palette-Blue-Grey-600.text {
  color: #546E7A;
}
.palette-Blue-Grey-600-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-600-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-600-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-600-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-600-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-600-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-700.bg {
  background-color: #455A64;
  color: #ffffff;
}
.palette-Blue-Grey-700.text {
  color: #455A64;
}
.palette-Blue-Grey-700-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-700-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-700-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-700-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-700-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-700-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-800.bg {
  background-color: #37474F;
  color: #ffffff;
}
.palette-Blue-Grey-800.text {
  color: #37474F;
}
.palette-Blue-Grey-800-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-800-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-800-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-800-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-800-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-800-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}

.palette-Blue-Grey-900.bg {
  background-color: #263238;
  color: #ffffff;
}
.palette-Blue-Grey-900.text {
  color: #263238;
}
.palette-Blue-Grey-900-Primary.bg {
  background-color: #607D8B;
  color: #ffffff;
}
.palette-Blue-Grey-900-Secondary.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.7);
}
.palette-Blue-Grey-900-Icons.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-900-Disabled.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-900-Hint.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.5);
}
.palette-Blue-Grey-900-Dividers.bg {
  background-color: #607D8B;
  color: rgba(255,255,255,0.12);
}


.palette-Black.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black.text {
  color: #000000;
}
.palette-Black-Primary.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-Secondary.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.7);
}
.palette-Black-Icons.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Disabled.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Hint.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Dividers.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.12);
}

.palette-Black-500.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-500.text {
  color: #000000;
}
.palette-Black-500-Primary.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-500-Secondary.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.7);
}
.palette-Black-500-Icons.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-500-Disabled.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-500-Hint.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-500-Dividers.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.12);
}

.palette-Black-text.bg {
  background-color: rgba(0,0,0,0.87);
  color: #ffffff;
}
.palette-Black-text.text {
  color: rgba(0,0,0,0.87);
}
.palette-Black-text-Primary.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-text-Secondary.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.7);
}
.palette-Black-text-Icons.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-text-Disabled.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-text-Hint.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-text-Dividers.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.12);
}

.palette-Black-Primary.bg {
  background-color: rgba(0,0,0,0.87);
  color: #ffffff;
}
.palette-Black-Primary.text {
  color: rgba(0,0,0,0.87);
}
.palette-Black-Primary-Primary.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-Primary-Secondary.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.7);
}
.palette-Black-Primary-Icons.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Primary-Disabled.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Primary-Hint.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Primary-Dividers.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.12);
}

.palette-Black-Secondary.bg {
  background-color: rgba(0,0,0,0.54);
  color: #ffffff;
}
.palette-Black-Secondary.text {
  color: rgba(0,0,0,0.54);
}
.palette-Black-Secondary-Primary.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-Secondary-Secondary.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.7);
}
.palette-Black-Secondary-Icons.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Secondary-Disabled.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Secondary-Hint.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Secondary-Dividers.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.12);
}

.palette-Black-Icons.bg {
  background-color: rgba(0,0,0,0.38);
  color: #ffffff;
}
.palette-Black-Icons.text {
  color: rgba(0,0,0,0.38);
}
.palette-Black-Icons-Primary.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-Icons-Secondary.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.7);
}
.palette-Black-Icons-Icons.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Icons-Disabled.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Icons-Hint.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Icons-Dividers.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.12);
}

.palette-Black-Disabled.bg {
  background-color: rgba(0,0,0,0.38);
  color: #ffffff;
}
.palette-Black-Disabled.text {
  color: rgba(0,0,0,0.38);
}
.palette-Black-Disabled-Primary.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-Disabled-Secondary.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.7);
}
.palette-Black-Disabled-Icons.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Disabled-Disabled.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Disabled-Hint.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Disabled-Dividers.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.12);
}

.palette-Black-Hint.bg {
  background-color: rgba(0,0,0,0.38);
  color: #ffffff;
}
.palette-Black-Hint.text {
  color: rgba(0,0,0,0.38);
}
.palette-Black-Hint-Primary.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-Hint-Secondary.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.7);
}
.palette-Black-Hint-Icons.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Hint-Disabled.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Hint-Hint.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Hint-Dividers.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.12);
}

.palette-Black-Dividers.bg {
  background-color: rgba(0,0,0,0.12);
  color: #ffffff;
}
.palette-Black-Dividers.text {
  color: rgba(0,0,0,0.12);
}
.palette-Black-Dividers-Primary.bg {
  background-color: #000000;
  color: #ffffff;
}
.palette-Black-Dividers-Secondary.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.7);
}
.palette-Black-Dividers-Icons.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Dividers-Disabled.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Dividers-Hint.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.5);
}
.palette-Black-Dividers-Dividers.bg {
  background-color: #000000;
  color: rgba(255,255,255,0.12);
}


.palette-White.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White.text {
  color: #ffffff;
}
.palette-White-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-Secondary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.54);
}
.palette-White-Icons.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Disabled.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Hint.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Dividers.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.12);
}

.palette-White-500.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-500.text {
  color: #ffffff;
}
.palette-White-500-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-500-Secondary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.54);
}
.palette-White-500-Icons.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-500-Disabled.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-500-Hint.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-500-Dividers.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.12);
}

.palette-White-text.bg {
  background-color: #ffffff;
  color: #ffffff;
}
.palette-White-text.text {
  color: #ffffff;
}
.palette-White-text-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-text-Secondary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.54);
}
.palette-White-text-Icons.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-text-Disabled.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-text-Hint.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-text-Dividers.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.12);
}

.palette-White-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-Primary.text {
  color: #ffffff;
}
.palette-White-Primary-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-Primary-Secondary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.54);
}
.palette-White-Primary-Icons.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Primary-Disabled.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Primary-Hint.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Primary-Dividers.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.12);
}

.palette-White-Secondary.bg {
  background-color: rgba(255,255,255,0.7);
  color: rgba(0,0,0,0.87);
}
.palette-White-Secondary.text {
  color: rgba(255,255,255,0.7);
}
.palette-White-Secondary-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-Secondary-Secondary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.54);
}
.palette-White-Secondary-Icons.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Secondary-Disabled.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Secondary-Hint.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Secondary-Dividers.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.12);
}

.palette-White-Icons.bg {
  background-color: rgba(255,255,255,0.5);
  color: rgba(0,0,0,0.87);
}
.palette-White-Icons.text {
  color: rgba(255,255,255,0.5);
}
.palette-White-Icons-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-Icons-Secondary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.54);
}
.palette-White-Icons-Icons.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Icons-Disabled.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Icons-Hint.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Icons-Dividers.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.12);
}

.palette-White-Disabled.bg {
  background-color: rgba(255,255,255,0.5);
  color: rgba(0,0,0,0.87);
}
.palette-White-Disabled.text {
  color: rgba(255,255,255,0.5);
}
.palette-White-Disabled-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-Disabled-Secondary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.54);
}
.palette-White-Disabled-Icons.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Disabled-Disabled.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Disabled-Hint.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Disabled-Dividers.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.12);
}

.palette-White-Hint.bg {
  background-color: rgba(255,255,255,0.5);
  color: rgba(0,0,0,0.87);
}
.palette-White-Hint.text {
  color: rgba(255,255,255,0.5);
}
.palette-White-Hint-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-Hint-Secondary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.54);
}
.palette-White-Hint-Icons.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Hint-Disabled.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Hint-Hint.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Hint-Dividers.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.12);
}

.palette-White-Dividers.bg {
  background-color: rgba(255,255,255,0.12);
  color: rgba(0,0,0,0.87);
}
.palette-White-Dividers.text {
  color: rgba(255,255,255,0.12);
}
.palette-White-Dividers-Primary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.87);
}
.palette-White-Dividers-Secondary.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.54);
}
.palette-White-Dividers-Icons.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Dividers-Disabled.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Dividers-Hint.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.38);
}
.palette-White-Dividers-Dividers.bg {
  background-color: #ffffff;
  color: rgba(0,0,0,0.12);
}




/*!
 *  Material Design Iconic Font by Sergey Kupletsky (@zavoloklom) - http://zavoloklom.github.io/material-design-iconic-font/
 *  License - http://zavoloklom.github.io/material-design-iconic-font/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: 'Material-Design-Iconic-Font';
  src: url('./Material-Design-Iconic-Font.woff2?v=2.2.0') format('woff2'), url('./Material-Design-Iconic-Font.woff?v=2.2.0') format('woff'), url('./Material-Design-Iconic-Font.ttf?v=2.2.0') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.zmdi {
  display: inline-block;
  font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.zmdi-hc-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.zmdi-hc-2x {
  font-size: 2em;
}
.zmdi-hc-3x {
  font-size: 3em;
}
.zmdi-hc-4x {
  font-size: 4em;
}
.zmdi-hc-5x {
  font-size: 5em;
}
.zmdi-hc-fw {
  width: 1.28571429em;
  text-align: center;
}
.zmdi-hc-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.zmdi-hc-ul > li {
  position: relative;
}
.zmdi-hc-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.zmdi-hc-li.zmdi-hc-lg {
  left: -1.85714286em;
}
.zmdi-hc-border {
  padding: .1em .25em;
  border: solid 0.1em #9e9e9e;
  border-radius: 2px;
}
.zmdi-hc-border-circle {
  padding: .1em .25em;
  border: solid 0.1em #9e9e9e;
  border-radius: 50%;
}
.zmdi.pull-left {
  float: left;
  margin-right: .15em;
}
.zmdi.pull-right {
  float: right;
  margin-left: .15em;
}
.zmdi-hc-spin {
  -webkit-animation: zmdi-spin 1.5s infinite linear;
          animation: zmdi-spin 1.5s infinite linear;
}
.zmdi-hc-spin-reverse {
  -webkit-animation: zmdi-spin-reverse 1.5s infinite linear;
          animation: zmdi-spin-reverse 1.5s infinite linear;
}
@-webkit-keyframes zmdi-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes zmdi-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@-webkit-keyframes zmdi-spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
            transform: rotate(-359deg);
  }
}
@keyframes zmdi-spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
            transform: rotate(-359deg);
  }
}
.zmdi-hc-rotate-90 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.zmdi-hc-rotate-180 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.zmdi-hc-rotate-270 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.zmdi-hc-flip-horizontal {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.zmdi-hc-flip-vertical {
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}
.zmdi-hc-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.zmdi-hc-stack-1x,
.zmdi-hc-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.zmdi-hc-stack-1x {
  line-height: inherit;
}
.zmdi-hc-stack-2x {
  font-size: 2em;
}
.zmdi-hc-inverse {
  color: #ffffff;
}
/* Material Design Iconic Font uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.zmdi-3d-rotation:before {
  content: '\f101';
}
.zmdi-airplane-off:before {
  content: '\f102';
}
.zmdi-airplane:before {
  content: '\f103';
}
.zmdi-album:before {
  content: '\f104';
}
.zmdi-archive:before {
  content: '\f105';
}
.zmdi-assignment-account:before {
  content: '\f106';
}
.zmdi-assignment-alert:before {
  content: '\f107';
}
.zmdi-assignment-check:before {
  content: '\f108';
}
.zmdi-assignment-o:before {
  content: '\f109';
}
.zmdi-assignment-return:before {
  content: '\f10a';
}
.zmdi-assignment-returned:before {
  content: '\f10b';
}
.zmdi-assignment:before {
  content: '\f10c';
}
.zmdi-attachment-alt:before {
  content: '\f10d';
}
.zmdi-attachment:before {
  content: '\f10e';
}
.zmdi-audio:before {
  content: '\f10f';
}
.zmdi-badge-check:before {
  content: '\f110';
}
.zmdi-balance-wallet:before {
  content: '\f111';
}
.zmdi-balance:before {
  content: '\f112';
}
.zmdi-battery-alert:before {
  content: '\f113';
}
.zmdi-battery-flash:before {
  content: '\f114';
}
.zmdi-battery-unknown:before {
  content: '\f115';
}
.zmdi-battery:before {
  content: '\f116';
}
.zmdi-bike:before {
  content: '\f117';
}
.zmdi-block-alt:before {
  content: '\f118';
}
.zmdi-block:before {
  content: '\f119';
}
.zmdi-boat:before {
  content: '\f11a';
}
.zmdi-book-image:before {
  content: '\f11b';
}
.zmdi-book:before {
  content: '\f11c';
}
.zmdi-bookmark-outline:before {
  content: '\f11d';
}
.zmdi-bookmark:before {
  content: '\f11e';
}
.zmdi-brush:before {
  content: '\f11f';
}
.zmdi-bug:before {
  content: '\f120';
}
.zmdi-bus:before {
  content: '\f121';
}
.zmdi-cake:before {
  content: '\f122';
}
.zmdi-car-taxi:before {
  content: '\f123';
}
.zmdi-car-wash:before {
  content: '\f124';
}
.zmdi-car:before {
  content: '\f125';
}
.zmdi-card-giftcard:before {
  content: '\f126';
}
.zmdi-card-membership:before {
  content: '\f127';
}
.zmdi-card-travel:before {
  content: '\f128';
}
.zmdi-card:before {
  content: '\f129';
}
.zmdi-case-check:before {
  content: '\f12a';
}
.zmdi-case-download:before {
  content: '\f12b';
}
.zmdi-case-play:before {
  content: '\f12c';
}
.zmdi-case:before {
  content: '\f12d';
}
.zmdi-cast-connected:before {
  content: '\f12e';
}
.zmdi-cast:before {
  content: '\f12f';
}
.zmdi-chart-donut:before {
  content: '\f130';
}
.zmdi-chart:before {
  content: '\f131';
}
.zmdi-city-alt:before {
  content: '\f132';
}
.zmdi-city:before {
  content: '\f133';
}
.zmdi-close-circle-o:before {
  content: '\f134';
}
.zmdi-close-circle:before {
  content: '\f135';
}
.zmdi-close:before {
  content: '\f136';
}
.zmdi-cocktail:before {
  content: '\f137';
}
.zmdi-code-setting:before {
  content: '\f138';
}
.zmdi-code-smartphone:before {
  content: '\f139';
}
.zmdi-code:before {
  content: '\f13a';
}
.zmdi-coffee:before {
  content: '\f13b';
}
.zmdi-collection-bookmark:before {
  content: '\f13c';
}
.zmdi-collection-case-play:before {
  content: '\f13d';
}
.zmdi-collection-folder-image:before {
  content: '\f13e';
}
.zmdi-collection-image-o:before {
  content: '\f13f';
}
.zmdi-collection-image:before {
  content: '\f140';
}
.zmdi-collection-item-1:before {
  content: '\f141';
}
.zmdi-collection-item-2:before {
  content: '\f142';
}
.zmdi-collection-item-3:before {
  content: '\f143';
}
.zmdi-collection-item-4:before {
  content: '\f144';
}
.zmdi-collection-item-5:before {
  content: '\f145';
}
.zmdi-collection-item-6:before {
  content: '\f146';
}
.zmdi-collection-item-7:before {
  content: '\f147';
}
.zmdi-collection-item-8:before {
  content: '\f148';
}
.zmdi-collection-item-9-plus:before {
  content: '\f149';
}
.zmdi-collection-item-9:before {
  content: '\f14a';
}
.zmdi-collection-item:before {
  content: '\f14b';
}
.zmdi-collection-music:before {
  content: '\f14c';
}
.zmdi-collection-pdf:before {
  content: '\f14d';
}
.zmdi-collection-plus:before {
  content: '\f14e';
}
.zmdi-collection-speaker:before {
  content: '\f14f';
}
.zmdi-collection-text:before {
  content: '\f150';
}
.zmdi-collection-video:before {
  content: '\f151';
}
.zmdi-compass:before {
  content: '\f152';
}
.zmdi-cutlery:before {
  content: '\f153';
}
.zmdi-delete:before {
  content: '\f154';
}
.zmdi-dialpad:before {
  content: '\f155';
}
.zmdi-dns:before {
  content: '\f156';
}
.zmdi-drink:before {
  content: '\f157';
}
.zmdi-edit:before {
  content: '\f158';
}
.zmdi-email-open:before {
  content: '\f159';
}
.zmdi-email:before {
  content: '\f15a';
}
.zmdi-eye-off:before {
  content: '\f15b';
}
.zmdi-eye:before {
  content: '\f15c';
}
.zmdi-eyedropper:before {
  content: '\f15d';
}
.zmdi-favorite-outline:before {
  content: '\f15e';
}
.zmdi-favorite:before {
  content: '\f15f';
}
.zmdi-filter-list:before {
  content: '\f160';
}
.zmdi-fire:before {
  content: '\f161';
}
.zmdi-flag:before {
  content: '\f162';
}
.zmdi-flare:before {
  content: '\f163';
}
.zmdi-flash-auto:before {
  content: '\f164';
}
.zmdi-flash-off:before {
  content: '\f165';
}
.zmdi-flash:before {
  content: '\f166';
}
.zmdi-flip:before {
  content: '\f167';
}
.zmdi-flower-alt:before {
  content: '\f168';
}
.zmdi-flower:before {
  content: '\f169';
}
.zmdi-font:before {
  content: '\f16a';
}
.zmdi-fullscreen-alt:before {
  content: '\f16b';
}
.zmdi-fullscreen-exit:before {
  content: '\f16c';
}
.zmdi-fullscreen:before {
  content: '\f16d';
}
.zmdi-functions:before {
  content: '\f16e';
}
.zmdi-gas-station:before {
  content: '\f16f';
}
.zmdi-gesture:before {
  content: '\f170';
}
.zmdi-globe-alt:before {
  content: '\f171';
}
.zmdi-globe-lock:before {
  content: '\f172';
}
.zmdi-globe:before {
  content: '\f173';
}
.zmdi-graduation-cap:before {
  content: '\f174';
}
.zmdi-home:before {
  content: '\f175';
}
.zmdi-hospital-alt:before {
  content: '\f176';
}
.zmdi-hospital:before {
  content: '\f177';
}
.zmdi-hotel:before {
  content: '\f178';
}
.zmdi-hourglass-alt:before {
  content: '\f179';
}
.zmdi-hourglass-outline:before {
  content: '\f17a';
}
.zmdi-hourglass:before {
  content: '\f17b';
}
.zmdi-http:before {
  content: '\f17c';
}
.zmdi-image-alt:before {
  content: '\f17d';
}
.zmdi-image-o:before {
  content: '\f17e';
}
.zmdi-image:before {
  content: '\f17f';
}
.zmdi-inbox:before {
  content: '\f180';
}
.zmdi-invert-colors-off:before {
  content: '\f181';
}
.zmdi-invert-colors:before {
  content: '\f182';
}
.zmdi-key:before {
  content: '\f183';
}
.zmdi-label-alt-outline:before {
  content: '\f184';
}
.zmdi-label-alt:before {
  content: '\f185';
}
.zmdi-label-heart:before {
  content: '\f186';
}
.zmdi-label:before {
  content: '\f187';
}
.zmdi-labels:before {
  content: '\f188';
}
.zmdi-lamp:before {
  content: '\f189';
}
.zmdi-landscape:before {
  content: '\f18a';
}
.zmdi-layers-off:before {
  content: '\f18b';
}
.zmdi-layers:before {
  content: '\f18c';
}
.zmdi-library:before {
  content: '\f18d';
}
.zmdi-link:before {
  content: '\f18e';
}
.zmdi-lock-open:before {
  content: '\f18f';
}
.zmdi-lock-outline:before {
  content: '\f190';
}
.zmdi-lock:before {
  content: '\f191';
}
.zmdi-mail-reply-all:before {
  content: '\f192';
}
.zmdi-mail-reply:before {
  content: '\f193';
}
.zmdi-mail-send:before {
  content: '\f194';
}
.zmdi-mall:before {
  content: '\f195';
}
.zmdi-map:before {
  content: '\f196';
}
.zmdi-menu:before {
  content: '\f197';
}
.zmdi-money-box:before {
  content: '\f198';
}
.zmdi-money-off:before {
  content: '\f199';
}
.zmdi-money:before {
  content: '\f19a';
}
.zmdi-more-vert:before {
  content: '\f19b';
}
.zmdi-more:before {
  content: '\f19c';
}
.zmdi-movie-alt:before {
  content: '\f19d';
}
.zmdi-movie:before {
  content: '\f19e';
}
.zmdi-nature-people:before {
  content: '\f19f';
}
.zmdi-nature:before {
  content: '\f1a0';
}
.zmdi-navigation:before {
  content: '\f1a1';
}
.zmdi-open-in-browser:before {
  content: '\f1a2';
}
.zmdi-open-in-new:before {
  content: '\f1a3';
}
.zmdi-palette:before {
  content: '\f1a4';
}
.zmdi-parking:before {
  content: '\f1a5';
}
.zmdi-pin-account:before {
  content: '\f1a6';
}
.zmdi-pin-assistant:before {
  content: '\f1a7';
}
.zmdi-pin-drop:before {
  content: '\f1a8';
}
.zmdi-pin-help:before {
  content: '\f1a9';
}
.zmdi-pin-off:before {
  content: '\f1aa';
}
.zmdi-pin:before {
  content: '\f1ab';
}
.zmdi-pizza:before {
  content: '\f1ac';
}
.zmdi-plaster:before {
  content: '\f1ad';
}
.zmdi-power-setting:before {
  content: '\f1ae';
}
.zmdi-power:before {
  content: '\f1af';
}
.zmdi-print:before {
  content: '\f1b0';
}
.zmdi-puzzle-piece:before {
  content: '\f1b1';
}
.zmdi-quote:before {
  content: '\f1b2';
}
.zmdi-railway:before {
  content: '\f1b3';
}
.zmdi-receipt:before {
  content: '\f1b4';
}
.zmdi-refresh-alt:before {
  content: '\f1b5';
}
.zmdi-refresh-sync-alert:before {
  content: '\f1b6';
}
.zmdi-refresh-sync-off:before {
  content: '\f1b7';
}
.zmdi-refresh-sync:before {
  content: '\f1b8';
}
.zmdi-refresh:before {
  content: '\f1b9';
}
.zmdi-roller:before {
  content: '\f1ba';
}
.zmdi-ruler:before {
  content: '\f1bb';
}
.zmdi-scissors:before {
  content: '\f1bc';
}
.zmdi-screen-rotation-lock:before {
  content: '\f1bd';
}
.zmdi-screen-rotation:before {
  content: '\f1be';
}
.zmdi-search-for:before {
  content: '\f1bf';
}
.zmdi-search-in-file:before {
  content: '\f1c0';
}
.zmdi-search-in-page:before {
  content: '\f1c1';
}
.zmdi-search-replace:before {
  content: '\f1c2';
}
.zmdi-search:before {
  content: '\f1c3';
}
.zmdi-seat:before {
  content: '\f1c4';
}
.zmdi-settings-square:before {
  content: '\f1c5';
}
.zmdi-settings:before {
  content: '\f1c6';
}
.zmdi-shield-check:before {
  content: '\f1c7';
}
.zmdi-shield-security:before {
  content: '\f1c8';
}
.zmdi-shopping-basket:before {
  content: '\f1c9';
}
.zmdi-shopping-cart-plus:before {
  content: '\f1ca';
}
.zmdi-shopping-cart:before {
  content: '\f1cb';
}
.zmdi-sign-in:before {
  content: '\f1cc';
}
.zmdi-sort-amount-asc:before {
  content: '\f1cd';
}
.zmdi-sort-amount-desc:before {
  content: '\f1ce';
}
.zmdi-sort-asc:before {
  content: '\f1cf';
}
.zmdi-sort-desc:before {
  content: '\f1d0';
}
.zmdi-spellcheck:before {
  content: '\f1d1';
}
.zmdi-storage:before {
  content: '\f1d2';
}
.zmdi-store-24:before {
  content: '\f1d3';
}
.zmdi-store:before {
  content: '\f1d4';
}
.zmdi-subway:before {
  content: '\f1d5';
}
.zmdi-sun:before {
  content: '\f1d6';
}
.zmdi-tab-unselected:before {
  content: '\f1d7';
}
.zmdi-tab:before {
  content: '\f1d8';
}
.zmdi-tag-close:before {
  content: '\f1d9';
}
.zmdi-tag-more:before {
  content: '\f1da';
}
.zmdi-tag:before {
  content: '\f1db';
}
.zmdi-thumb-down:before {
  content: '\f1dc';
}
.zmdi-thumb-up-down:before {
  content: '\f1dd';
}
.zmdi-thumb-up:before {
  content: '\f1de';
}
.zmdi-ticket-star:before {
  content: '\f1df';
}
.zmdi-toll:before {
  content: '\f1e0';
}
.zmdi-toys:before {
  content: '\f1e1';
}
.zmdi-traffic:before {
  content: '\f1e2';
}
.zmdi-translate:before {
  content: '\f1e3';
}
.zmdi-triangle-down:before {
  content: '\f1e4';
}
.zmdi-triangle-up:before {
  content: '\f1e5';
}
.zmdi-truck:before {
  content: '\f1e6';
}
.zmdi-turning-sign:before {
  content: '\f1e7';
}
.zmdi-wallpaper:before {
  content: '\f1e8';
}
.zmdi-washing-machine:before {
  content: '\f1e9';
}
.zmdi-window-maximize:before {
  content: '\f1ea';
}
.zmdi-window-minimize:before {
  content: '\f1eb';
}
.zmdi-window-restore:before {
  content: '\f1ec';
}
.zmdi-wrench:before {
  content: '\f1ed';
}
.zmdi-zoom-in:before {
  content: '\f1ee';
}
.zmdi-zoom-out:before {
  content: '\f1ef';
}
.zmdi-alert-circle-o:before {
  content: '\f1f0';
}
.zmdi-alert-circle:before {
  content: '\f1f1';
}
.zmdi-alert-octagon:before {
  content: '\f1f2';
}
.zmdi-alert-polygon:before {
  content: '\f1f3';
}
.zmdi-alert-triangle:before {
  content: '\f1f4';
}
.zmdi-help-outline:before {
  content: '\f1f5';
}
.zmdi-help:before {
  content: '\f1f6';
}
.zmdi-info-outline:before {
  content: '\f1f7';
}
.zmdi-info:before {
  content: '\f1f8';
}
.zmdi-notifications-active:before {
  content: '\f1f9';
}
.zmdi-notifications-add:before {
  content: '\f1fa';
}
.zmdi-notifications-none:before {
  content: '\f1fb';
}
.zmdi-notifications-off:before {
  content: '\f1fc';
}
.zmdi-notifications-paused:before {
  content: '\f1fd';
}
.zmdi-notifications:before {
  content: '\f1fe';
}
.zmdi-account-add:before {
  content: '\f1ff';
}
.zmdi-account-box-mail:before {
  content: '\f200';
}
.zmdi-account-box-o:before {
  content: '\f201';
}
.zmdi-account-box-phone:before {
  content: '\f202';
}
.zmdi-account-box:before {
  content: '\f203';
}
.zmdi-account-calendar:before {
  content: '\f204';
}
.zmdi-account-circle:before {
  content: '\f205';
}
.zmdi-account-o:before {
  content: '\f206';
}
.zmdi-account:before {
  content: '\f207';
}
.zmdi-accounts-add:before {
  content: '\f208';
}
.zmdi-accounts-alt:before {
  content: '\f209';
}
.zmdi-accounts-list-alt:before {
  content: '\f20a';
}
.zmdi-accounts-list:before {
  content: '\f20b';
}
.zmdi-accounts-outline:before {
  content: '\f20c';
}
.zmdi-accounts:before {
  content: '\f20d';
}
.zmdi-face:before {
  content: '\f20e';
}
.zmdi-female:before {
  content: '\f20f';
}
.zmdi-male-alt:before {
  content: '\f210';
}
.zmdi-male-female:before {
  content: '\f211';
}
.zmdi-male:before {
  content: '\f212';
}
.zmdi-mood-bad:before {
  content: '\f213';
}
.zmdi-mood:before {
  content: '\f214';
}
.zmdi-run:before {
  content: '\f215';
}
.zmdi-walk:before {
  content: '\f216';
}
.zmdi-cloud-box:before {
  content: '\f217';
}
.zmdi-cloud-circle:before {
  content: '\f218';
}
.zmdi-cloud-done:before {
  content: '\f219';
}
.zmdi-cloud-download:before {
  content: '\f21a';
}
.zmdi-cloud-off:before {
  content: '\f21b';
}
.zmdi-cloud-outline-alt:before {
  content: '\f21c';
}
.zmdi-cloud-outline:before {
  content: '\f21d';
}
.zmdi-cloud-upload:before {
  content: '\f21e';
}
.zmdi-cloud:before {
  content: '\f21f';
}
.zmdi-download:before {
  content: '\f220';
}
.zmdi-file-plus:before {
  content: '\f221';
}
.zmdi-file-text:before {
  content: '\f222';
}
.zmdi-file:before {
  content: '\f223';
}
.zmdi-folder-outline:before {
  content: '\f224';
}
.zmdi-folder-person:before {
  content: '\f225';
}
.zmdi-folder-star-alt:before {
  content: '\f226';
}
.zmdi-folder-star:before {
  content: '\f227';
}
.zmdi-folder:before {
  content: '\f228';
}
.zmdi-gif:before {
  content: '\f229';
}
.zmdi-upload:before {
  content: '\f22a';
}
.zmdi-border-all:before {
  content: '\f22b';
}
.zmdi-border-bottom:before {
  content: '\f22c';
}
.zmdi-border-clear:before {
  content: '\f22d';
}
.zmdi-border-color:before {
  content: '\f22e';
}
.zmdi-border-horizontal:before {
  content: '\f22f';
}
.zmdi-border-inner:before {
  content: '\f230';
}
.zmdi-border-left:before {
  content: '\f231';
}
.zmdi-border-outer:before {
  content: '\f232';
}
.zmdi-border-right:before {
  content: '\f233';
}
.zmdi-border-style:before {
  content: '\f234';
}
.zmdi-border-top:before {
  content: '\f235';
}
.zmdi-border-vertical:before {
  content: '\f236';
}
.zmdi-copy:before {
  content: '\f237';
}
.zmdi-crop:before {
  content: '\f238';
}
.zmdi-format-align-center:before {
  content: '\f239';
}
.zmdi-format-align-justify:before {
  content: '\f23a';
}
.zmdi-format-align-left:before {
  content: '\f23b';
}
.zmdi-format-align-right:before {
  content: '\f23c';
}
.zmdi-format-bold:before {
  content: '\f23d';
}
.zmdi-format-clear-all:before {
  content: '\f23e';
}
.zmdi-format-clear:before {
  content: '\f23f';
}
.zmdi-format-color-fill:before {
  content: '\f240';
}
.zmdi-format-color-reset:before {
  content: '\f241';
}
.zmdi-format-color-text:before {
  content: '\f242';
}
.zmdi-format-indent-decrease:before {
  content: '\f243';
}
.zmdi-format-indent-increase:before {
  content: '\f244';
}
.zmdi-format-italic:before {
  content: '\f245';
}
.zmdi-format-line-spacing:before {
  content: '\f246';
}
.zmdi-format-list-bulleted:before {
  content: '\f247';
}
.zmdi-format-list-numbered:before {
  content: '\f248';
}
.zmdi-format-ltr:before {
  content: '\f249';
}
.zmdi-format-rtl:before {
  content: '\f24a';
}
.zmdi-format-size:before {
  content: '\f24b';
}
.zmdi-format-strikethrough-s:before {
  content: '\f24c';
}
.zmdi-format-strikethrough:before {
  content: '\f24d';
}
.zmdi-format-subject:before {
  content: '\f24e';
}
.zmdi-format-underlined:before {
  content: '\f24f';
}
.zmdi-format-valign-bottom:before {
  content: '\f250';
}
.zmdi-format-valign-center:before {
  content: '\f251';
}
.zmdi-format-valign-top:before {
  content: '\f252';
}
.zmdi-redo:before {
  content: '\f253';
}
.zmdi-select-all:before {
  content: '\f254';
}
.zmdi-space-bar:before {
  content: '\f255';
}
.zmdi-text-format:before {
  content: '\f256';
}
.zmdi-transform:before {
  content: '\f257';
}
.zmdi-undo:before {
  content: '\f258';
}
.zmdi-wrap-text:before {
  content: '\f259';
}
.zmdi-comment-alert:before {
  content: '\f25a';
}
.zmdi-comment-alt-text:before {
  content: '\f25b';
}
.zmdi-comment-alt:before {
  content: '\f25c';
}
.zmdi-comment-edit:before {
  content: '\f25d';
}
.zmdi-comment-image:before {
  content: '\f25e';
}
.zmdi-comment-list:before {
  content: '\f25f';
}
.zmdi-comment-more:before {
  content: '\f260';
}
.zmdi-comment-outline:before {
  content: '\f261';
}
.zmdi-comment-text-alt:before {
  content: '\f262';
}
.zmdi-comment-text:before {
  content: '\f263';
}
.zmdi-comment-video:before {
  content: '\f264';
}
.zmdi-comment:before {
  content: '\f265';
}
.zmdi-comments:before {
  content: '\f266';
}
.zmdi-check-all:before {
  content: '\f267';
}
.zmdi-check-circle-u:before {
  content: '\f268';
}
.zmdi-check-circle:before {
  content: '\f269';
}
.zmdi-check-square:before {
  content: '\f26a';
}
.zmdi-check:before {
  content: '\f26b';
}
.zmdi-circle-o:before {
  content: '\f26c';
}
.zmdi-circle:before {
  content: '\f26d';
}
.zmdi-dot-circle-alt:before {
  content: '\f26e';
}
.zmdi-dot-circle:before {
  content: '\f26f';
}
.zmdi-minus-circle-outline:before {
  content: '\f270';
}
.zmdi-minus-circle:before {
  content: '\f271';
}
.zmdi-minus-square:before {
  content: '\f272';
}
.zmdi-minus:before {
  content: '\f273';
}
.zmdi-plus-circle-o-duplicate:before {
  content: '\f274';
}
.zmdi-plus-circle-o:before {
  content: '\f275';
}
.zmdi-plus-circle:before {
  content: '\f276';
}
.zmdi-plus-square:before {
  content: '\f277';
}
.zmdi-plus:before {
  content: '\f278';
}
.zmdi-square-o:before {
  content: '\f279';
}
.zmdi-star-circle:before {
  content: '\f27a';
}
.zmdi-star-half:before {
  content: '\f27b';
}
.zmdi-star-outline:before {
  content: '\f27c';
}
.zmdi-star:before {
  content: '\f27d';
}
.zmdi-bluetooth-connected:before {
  content: '\f27e';
}
.zmdi-bluetooth-off:before {
  content: '\f27f';
}
.zmdi-bluetooth-search:before {
  content: '\f280';
}
.zmdi-bluetooth-setting:before {
  content: '\f281';
}
.zmdi-bluetooth:before {
  content: '\f282';
}
.zmdi-camera-add:before {
  content: '\f283';
}
.zmdi-camera-alt:before {
  content: '\f284';
}
.zmdi-camera-bw:before {
  content: '\f285';
}
.zmdi-camera-front:before {
  content: '\f286';
}
.zmdi-camera-mic:before {
  content: '\f287';
}
.zmdi-camera-party-mode:before {
  content: '\f288';
}
.zmdi-camera-rear:before {
  content: '\f289';
}
.zmdi-camera-roll:before {
  content: '\f28a';
}
.zmdi-camera-switch:before {
  content: '\f28b';
}
.zmdi-camera:before {
  content: '\f28c';
}
.zmdi-card-alert:before {
  content: '\f28d';
}
.zmdi-card-off:before {
  content: '\f28e';
}
.zmdi-card-sd:before {
  content: '\f28f';
}
.zmdi-card-sim:before {
  content: '\f290';
}
.zmdi-desktop-mac:before {
  content: '\f291';
}
.zmdi-desktop-windows:before {
  content: '\f292';
}
.zmdi-device-hub:before {
  content: '\f293';
}
.zmdi-devices-off:before {
  content: '\f294';
}
.zmdi-devices:before {
  content: '\f295';
}
.zmdi-dock:before {
  content: '\f296';
}
.zmdi-floppy:before {
  content: '\f297';
}
.zmdi-gamepad:before {
  content: '\f298';
}
.zmdi-gps-dot:before {
  content: '\f299';
}
.zmdi-gps-off:before {
  content: '\f29a';
}
.zmdi-gps:before {
  content: '\f29b';
}
.zmdi-headset-mic:before {
  content: '\f29c';
}
.zmdi-headset:before {
  content: '\f29d';
}
.zmdi-input-antenna:before {
  content: '\f29e';
}
.zmdi-input-composite:before {
  content: '\f29f';
}
.zmdi-input-hdmi:before {
  content: '\f2a0';
}
.zmdi-input-power:before {
  content: '\f2a1';
}
.zmdi-input-svideo:before {
  content: '\f2a2';
}
.zmdi-keyboard-hide:before {
  content: '\f2a3';
}
.zmdi-keyboard:before {
  content: '\f2a4';
}
.zmdi-laptop-chromebook:before {
  content: '\f2a5';
}
.zmdi-laptop-mac:before {
  content: '\f2a6';
}
.zmdi-laptop:before {
  content: '\f2a7';
}
.zmdi-mic-off:before {
  content: '\f2a8';
}
.zmdi-mic-outline:before {
  content: '\f2a9';
}
.zmdi-mic-setting:before {
  content: '\f2aa';
}
.zmdi-mic:before {
  content: '\f2ab';
}
.zmdi-mouse:before {
  content: '\f2ac';
}
.zmdi-network-alert:before {
  content: '\f2ad';
}
.zmdi-network-locked:before {
  content: '\f2ae';
}
.zmdi-network-off:before {
  content: '\f2af';
}
.zmdi-network-outline:before {
  content: '\f2b0';
}
.zmdi-network-setting:before {
  content: '\f2b1';
}
.zmdi-network:before {
  content: '\f2b2';
}
.zmdi-phone-bluetooth:before {
  content: '\f2b3';
}
.zmdi-phone-end:before {
  content: '\f2b4';
}
.zmdi-phone-forwarded:before {
  content: '\f2b5';
}
.zmdi-phone-in-talk:before {
  content: '\f2b6';
}
.zmdi-phone-locked:before {
  content: '\f2b7';
}
.zmdi-phone-missed:before {
  content: '\f2b8';
}
.zmdi-phone-msg:before {
  content: '\f2b9';
}
.zmdi-phone-paused:before {
  content: '\f2ba';
}
.zmdi-phone-ring:before {
  content: '\f2bb';
}
.zmdi-phone-setting:before {
  content: '\f2bc';
}
.zmdi-phone-sip:before {
  content: '\f2bd';
}
.zmdi-phone:before {
  content: '\f2be';
}
.zmdi-portable-wifi-changes:before {
  content: '\f2bf';
}
.zmdi-portable-wifi-off:before {
  content: '\f2c0';
}
.zmdi-portable-wifi:before {
  content: '\f2c1';
}
.zmdi-radio:before {
  content: '\f2c2';
}
.zmdi-reader:before {
  content: '\f2c3';
}
.zmdi-remote-control-alt:before {
  content: '\f2c4';
}
.zmdi-remote-control:before {
  content: '\f2c5';
}
.zmdi-router:before {
  content: '\f2c6';
}
.zmdi-scanner:before {
  content: '\f2c7';
}
.zmdi-smartphone-android:before {
  content: '\f2c8';
}
.zmdi-smartphone-download:before {
  content: '\f2c9';
}
.zmdi-smartphone-erase:before {
  content: '\f2ca';
}
.zmdi-smartphone-info:before {
  content: '\f2cb';
}
.zmdi-smartphone-iphone:before {
  content: '\f2cc';
}
.zmdi-smartphone-landscape-lock:before {
  content: '\f2cd';
}
.zmdi-smartphone-landscape:before {
  content: '\f2ce';
}
.zmdi-smartphone-lock:before {
  content: '\f2cf';
}
.zmdi-smartphone-portrait-lock:before {
  content: '\f2d0';
}
.zmdi-smartphone-ring:before {
  content: '\f2d1';
}
.zmdi-smartphone-setting:before {
  content: '\f2d2';
}
.zmdi-smartphone-setup:before {
  content: '\f2d3';
}
.zmdi-smartphone:before {
  content: '\f2d4';
}
.zmdi-speaker:before {
  content: '\f2d5';
}
.zmdi-tablet-android:before {
  content: '\f2d6';
}
.zmdi-tablet-mac:before {
  content: '\f2d7';
}
.zmdi-tablet:before {
  content: '\f2d8';
}
.zmdi-tv-alt-play:before {
  content: '\f2d9';
}
.zmdi-tv-list:before {
  content: '\f2da';
}
.zmdi-tv-play:before {
  content: '\f2db';
}
.zmdi-tv:before {
  content: '\f2dc';
}
.zmdi-usb:before {
  content: '\f2dd';
}
.zmdi-videocam-off:before {
  content: '\f2de';
}
.zmdi-videocam-switch:before {
  content: '\f2df';
}
.zmdi-videocam:before {
  content: '\f2e0';
}
.zmdi-watch:before {
  content: '\f2e1';
}
.zmdi-wifi-alt-2:before {
  content: '\f2e2';
}
.zmdi-wifi-alt:before {
  content: '\f2e3';
}
.zmdi-wifi-info:before {
  content: '\f2e4';
}
.zmdi-wifi-lock:before {
  content: '\f2e5';
}
.zmdi-wifi-off:before {
  content: '\f2e6';
}
.zmdi-wifi-outline:before {
  content: '\f2e7';
}
.zmdi-wifi:before {
  content: '\f2e8';
}
.zmdi-arrow-left-bottom:before {
  content: '\f2e9';
}
.zmdi-arrow-left:before {
  content: '\f2ea';
}
.zmdi-arrow-merge:before {
  content: '\f2eb';
}
.zmdi-arrow-missed:before {
  content: '\f2ec';
}
.zmdi-arrow-right-top:before {
  content: '\f2ed';
}
.zmdi-arrow-right:before {
  content: '\f2ee';
}
.zmdi-arrow-split:before {
  content: '\f2ef';
}
.zmdi-arrows:before {
  content: '\f2f0';
}
.zmdi-caret-down-circle:before {
  content: '\f2f1';
}
.zmdi-caret-down:before {
  content: '\f2f2';
}
.zmdi-caret-left-circle:before {
  content: '\f2f3';
}
.zmdi-caret-left:before {
  content: '\f2f4';
}
.zmdi-caret-right-circle:before {
  content: '\f2f5';
}
.zmdi-caret-right:before {
  content: '\f2f6';
}
.zmdi-caret-up-circle:before {
  content: '\f2f7';
}
.zmdi-caret-up:before {
  content: '\f2f8';
}
.zmdi-chevron-down:before {
  content: '\f2f9';
}
.zmdi-chevron-left:before {
  content: '\f2fa';
}
.zmdi-chevron-right:before {
  content: '\f2fb';
}
.zmdi-chevron-up:before {
  content: '\f2fc';
}
.zmdi-forward:before {
  content: '\f2fd';
}
.zmdi-long-arrow-down:before {
  content: '\f2fe';
}
.zmdi-long-arrow-left:before {
  content: '\f2ff';
}
.zmdi-long-arrow-return:before {
  content: '\f300';
}
.zmdi-long-arrow-right:before {
  content: '\f301';
}
.zmdi-long-arrow-tab:before {
  content: '\f302';
}
.zmdi-long-arrow-up:before {
  content: '\f303';
}
.zmdi-rotate-ccw:before {
  content: '\f304';
}
.zmdi-rotate-cw:before {
  content: '\f305';
}
.zmdi-rotate-left:before {
  content: '\f306';
}
.zmdi-rotate-right:before {
  content: '\f307';
}
.zmdi-square-down:before {
  content: '\f308';
}
.zmdi-square-right:before {
  content: '\f309';
}
.zmdi-swap-alt:before {
  content: '\f30a';
}
.zmdi-swap-vertical-circle:before {
  content: '\f30b';
}
.zmdi-swap-vertical:before {
  content: '\f30c';
}
.zmdi-swap:before {
  content: '\f30d';
}
.zmdi-trending-down:before {
  content: '\f30e';
}
.zmdi-trending-flat:before {
  content: '\f30f';
}
.zmdi-trending-up:before {
  content: '\f310';
}
.zmdi-unfold-less:before {
  content: '\f311';
}
.zmdi-unfold-more:before {
  content: '\f312';
}
.zmdi-apps:before {
  content: '\f313';
}
.zmdi-grid-off:before {
  content: '\f314';
}
.zmdi-grid:before {
  content: '\f315';
}
.zmdi-view-agenda:before {
  content: '\f316';
}
.zmdi-view-array:before {
  content: '\f317';
}
.zmdi-view-carousel:before {
  content: '\f318';
}
.zmdi-view-column:before {
  content: '\f319';
}
.zmdi-view-comfy:before {
  content: '\f31a';
}
.zmdi-view-compact:before {
  content: '\f31b';
}
.zmdi-view-dashboard:before {
  content: '\f31c';
}
.zmdi-view-day:before {
  content: '\f31d';
}
.zmdi-view-headline:before {
  content: '\f31e';
}
.zmdi-view-list-alt:before {
  content: '\f31f';
}
.zmdi-view-list:before {
  content: '\f320';
}
.zmdi-view-module:before {
  content: '\f321';
}
.zmdi-view-quilt:before {
  content: '\f322';
}
.zmdi-view-stream:before {
  content: '\f323';
}
.zmdi-view-subtitles:before {
  content: '\f324';
}
.zmdi-view-toc:before {
  content: '\f325';
}
.zmdi-view-web:before {
  content: '\f326';
}
.zmdi-view-week:before {
  content: '\f327';
}
.zmdi-widgets:before {
  content: '\f328';
}
.zmdi-alarm-check:before {
  content: '\f329';
}
.zmdi-alarm-off:before {
  content: '\f32a';
}
.zmdi-alarm-plus:before {
  content: '\f32b';
}
.zmdi-alarm-snooze:before {
  content: '\f32c';
}
.zmdi-alarm:before {
  content: '\f32d';
}
.zmdi-calendar-alt:before {
  content: '\f32e';
}
.zmdi-calendar-check:before {
  content: '\f32f';
}
.zmdi-calendar-close:before {
  content: '\f330';
}
.zmdi-calendar-note:before {
  content: '\f331';
}
.zmdi-calendar:before {
  content: '\f332';
}
.zmdi-time-countdown:before {
  content: '\f333';
}
.zmdi-time-interval:before {
  content: '\f334';
}
.zmdi-time-restore-setting:before {
  content: '\f335';
}
.zmdi-time-restore:before {
  content: '\f336';
}
.zmdi-time:before {
  content: '\f337';
}
.zmdi-timer-off:before {
  content: '\f338';
}
.zmdi-timer:before {
  content: '\f339';
}
.zmdi-android-alt:before {
  content: '\f33a';
}
.zmdi-android:before {
  content: '\f33b';
}
.zmdi-apple:before {
  content: '\f33c';
}
.zmdi-behance:before {
  content: '\f33d';
}
.zmdi-codepen:before {
  content: '\f33e';
}
.zmdi-dribbble:before {
  content: '\f33f';
}
.zmdi-dropbox:before {
  content: '\f340';
}
.zmdi-evernote:before {
  content: '\f341';
}
.zmdi-facebook-box:before {
  content: '\f342';
}
.zmdi-facebook:before {
  content: '\f343';
}
.zmdi-github-box:before {
  content: '\f344';
}
.zmdi-github:before {
  content: '\f345';
}
.zmdi-google-drive:before {
  content: '\f346';
}
.zmdi-google-earth:before {
  content: '\f347';
}
.zmdi-google-glass:before {
  content: '\f348';
}
.zmdi-google-maps:before {
  content: '\f349';
}
.zmdi-google-pages:before {
  content: '\f34a';
}
.zmdi-google-play:before {
  content: '\f34b';
}
.zmdi-google-plus-box:before {
  content: '\f34c';
}
.zmdi-google-plus:before {
  content: '\f34d';
}
.zmdi-google:before {
  content: '\f34e';
}
.zmdi-instagram:before {
  content: '\f34f';
}
.zmdi-language-css3:before {
  content: '\f350';
}
.zmdi-language-html5:before {
  content: '\f351';
}
.zmdi-language-javascript:before {
  content: '\f352';
}
.zmdi-language-python-alt:before {
  content: '\f353';
}
.zmdi-language-python:before {
  content: '\f354';
}
.zmdi-lastfm:before {
  content: '\f355';
}
.zmdi-linkedin-box:before {
  content: '\f356';
}
.zmdi-paypal:before {
  content: '\f357';
}
.zmdi-pinterest-box:before {
  content: '\f358';
}
.zmdi-pocket:before {
  content: '\f359';
}
.zmdi-polymer:before {
  content: '\f35a';
}
.zmdi-share:before {
  content: '\f35b';
}
.zmdi-stackoverflow:before {
  content: '\f35c';
}
.zmdi-steam-square:before {
  content: '\f35d';
}
.zmdi-steam:before {
  content: '\f35e';
}
.zmdi-twitter-box:before {
  content: '\f35f';
}
.zmdi-twitter:before {
  content: '\f360';
}
.zmdi-vk:before {
  content: '\f361';
}
.zmdi-wikipedia:before {
  content: '\f362';
}
.zmdi-windows:before {
  content: '\f363';
}
.zmdi-aspect-ratio-alt:before {
  content: '\f364';
}
.zmdi-aspect-ratio:before {
  content: '\f365';
}
.zmdi-blur-circular:before {
  content: '\f366';
}
.zmdi-blur-linear:before {
  content: '\f367';
}
.zmdi-blur-off:before {
  content: '\f368';
}
.zmdi-blur:before {
  content: '\f369';
}
.zmdi-brightness-2:before {
  content: '\f36a';
}
.zmdi-brightness-3:before {
  content: '\f36b';
}
.zmdi-brightness-4:before {
  content: '\f36c';
}
.zmdi-brightness-5:before {
  content: '\f36d';
}
.zmdi-brightness-6:before {
  content: '\f36e';
}
.zmdi-brightness-7:before {
  content: '\f36f';
}
.zmdi-brightness-auto:before {
  content: '\f370';
}
.zmdi-brightness-setting:before {
  content: '\f371';
}
.zmdi-broken-image:before {
  content: '\f372';
}
.zmdi-center-focus-strong:before {
  content: '\f373';
}
.zmdi-center-focus-weak:before {
  content: '\f374';
}
.zmdi-compare:before {
  content: '\f375';
}
.zmdi-crop-16-9:before {
  content: '\f376';
}
.zmdi-crop-3-2:before {
  content: '\f377';
}
.zmdi-crop-5-4:before {
  content: '\f378';
}
.zmdi-crop-7-5:before {
  content: '\f379';
}
.zmdi-crop-din:before {
  content: '\f37a';
}
.zmdi-crop-free:before {
  content: '\f37b';
}
.zmdi-crop-landscape:before {
  content: '\f37c';
}
.zmdi-crop-portrait:before {
  content: '\f37d';
}
.zmdi-crop-square:before {
  content: '\f37e';
}
.zmdi-exposure-alt:before {
  content: '\f37f';
}
.zmdi-exposure:before {
  content: '\f380';
}
.zmdi-filter-b-and-w:before {
  content: '\f381';
}
.zmdi-filter-center-focus:before {
  content: '\f382';
}
.zmdi-filter-frames:before {
  content: '\f383';
}
.zmdi-filter-tilt-shift:before {
  content: '\f384';
}
.zmdi-gradient:before {
  content: '\f385';
}
.zmdi-grain:before {
  content: '\f386';
}
.zmdi-graphic-eq:before {
  content: '\f387';
}
.zmdi-hdr-off:before {
  content: '\f388';
}
.zmdi-hdr-strong:before {
  content: '\f389';
}
.zmdi-hdr-weak:before {
  content: '\f38a';
}
.zmdi-hdr:before {
  content: '\f38b';
}
.zmdi-iridescent:before {
  content: '\f38c';
}
.zmdi-leak-off:before {
  content: '\f38d';
}
.zmdi-leak:before {
  content: '\f38e';
}
.zmdi-looks:before {
  content: '\f38f';
}
.zmdi-loupe:before {
  content: '\f390';
}
.zmdi-panorama-horizontal:before {
  content: '\f391';
}
.zmdi-panorama-vertical:before {
  content: '\f392';
}
.zmdi-panorama-wide-angle:before {
  content: '\f393';
}
.zmdi-photo-size-select-large:before {
  content: '\f394';
}
.zmdi-photo-size-select-small:before {
  content: '\f395';
}
.zmdi-picture-in-picture:before {
  content: '\f396';
}
.zmdi-slideshow:before {
  content: '\f397';
}
.zmdi-texture:before {
  content: '\f398';
}
.zmdi-tonality:before {
  content: '\f399';
}
.zmdi-vignette:before {
  content: '\f39a';
}
.zmdi-wb-auto:before {
  content: '\f39b';
}
.zmdi-eject-alt:before {
  content: '\f39c';
}
.zmdi-eject:before {
  content: '\f39d';
}
.zmdi-equalizer:before {
  content: '\f39e';
}
.zmdi-fast-forward:before {
  content: '\f39f';
}
.zmdi-fast-rewind:before {
  content: '\f3a0';
}
.zmdi-forward-10:before {
  content: '\f3a1';
}
.zmdi-forward-30:before {
  content: '\f3a2';
}
.zmdi-forward-5:before {
  content: '\f3a3';
}
.zmdi-hearing:before {
  content: '\f3a4';
}
.zmdi-pause-circle-outline:before {
  content: '\f3a5';
}
.zmdi-pause-circle:before {
  content: '\f3a6';
}
.zmdi-pause:before {
  content: '\f3a7';
}
.zmdi-play-circle-outline:before {
  content: '\f3a8';
}
.zmdi-play-circle:before {
  content: '\f3a9';
}
.zmdi-play:before {
  content: '\f3aa';
}
.zmdi-playlist-audio:before {
  content: '\f3ab';
}
.zmdi-playlist-plus:before {
  content: '\f3ac';
}
.zmdi-repeat-one:before {
  content: '\f3ad';
}
.zmdi-repeat:before {
  content: '\f3ae';
}
.zmdi-replay-10:before {
  content: '\f3af';
}
.zmdi-replay-30:before {
  content: '\f3b0';
}
.zmdi-replay-5:before {
  content: '\f3b1';
}
.zmdi-replay:before {
  content: '\f3b2';
}
.zmdi-shuffle:before {
  content: '\f3b3';
}
.zmdi-skip-next:before {
  content: '\f3b4';
}
.zmdi-skip-previous:before {
  content: '\f3b5';
}
.zmdi-stop:before {
  content: '\f3b6';
}
.zmdi-surround-sound:before {
  content: '\f3b7';
}
.zmdi-tune:before {
  content: '\f3b8';
}
.zmdi-volume-down:before {
  content: '\f3b9';
}
.zmdi-volume-mute:before {
  content: '\f3ba';
}
.zmdi-volume-off:before {
  content: '\f3bb';
}
.zmdi-volume-up:before {
  content: '\f3bc';
}
.zmdi-n-1-square:before {
  content: '\f3bd';
}
.zmdi-n-2-square:before {
  content: '\f3be';
}
.zmdi-n-3-square:before {
  content: '\f3bf';
}
.zmdi-n-4-square:before {
  content: '\f3c0';
}
.zmdi-n-5-square:before {
  content: '\f3c1';
}
.zmdi-n-6-square:before {
  content: '\f3c2';
}
.zmdi-neg-1:before {
  content: '\f3c3';
}
.zmdi-neg-2:before {
  content: '\f3c4';
}
.zmdi-plus-1:before {
  content: '\f3c5';
}
.zmdi-plus-2:before {
  content: '\f3c6';
}
.zmdi-sec-10:before {
  content: '\f3c7';
}
.zmdi-sec-3:before {
  content: '\f3c8';
}
.zmdi-zero:before {
  content: '\f3c9';
}
.zmdi-airline-seat-flat-angled:before {
  content: '\f3ca';
}
.zmdi-airline-seat-flat:before {
  content: '\f3cb';
}
.zmdi-airline-seat-individual-suite:before {
  content: '\f3cc';
}
.zmdi-airline-seat-legroom-extra:before {
  content: '\f3cd';
}
.zmdi-airline-seat-legroom-normal:before {
  content: '\f3ce';
}
.zmdi-airline-seat-legroom-reduced:before {
  content: '\f3cf';
}
.zmdi-airline-seat-recline-extra:before {
  content: '\f3d0';
}
.zmdi-airline-seat-recline-normal:before {
  content: '\f3d1';
}
.zmdi-airplay:before {
  content: '\f3d2';
}
.zmdi-closed-caption:before {
  content: '\f3d3';
}
.zmdi-confirmation-number:before {
  content: '\f3d4';
}
.zmdi-developer-board:before {
  content: '\f3d5';
}
.zmdi-disc-full:before {
  content: '\f3d6';
}
.zmdi-explicit:before {
  content: '\f3d7';
}
.zmdi-flight-land:before {
  content: '\f3d8';
}
.zmdi-flight-takeoff:before {
  content: '\f3d9';
}
.zmdi-flip-to-back:before {
  content: '\f3da';
}
.zmdi-flip-to-front:before {
  content: '\f3db';
}
.zmdi-group-work:before {
  content: '\f3dc';
}
.zmdi-hd:before {
  content: '\f3dd';
}
.zmdi-hq:before {
  content: '\f3de';
}
.zmdi-markunread-mailbox:before {
  content: '\f3df';
}
.zmdi-memory:before {
  content: '\f3e0';
}
.zmdi-nfc:before {
  content: '\f3e1';
}
.zmdi-play-for-work:before {
  content: '\f3e2';
}
.zmdi-power-input:before {
  content: '\f3e3';
}
.zmdi-present-to-all:before {
  content: '\f3e4';
}
.zmdi-satellite:before {
  content: '\f3e5';
}
.zmdi-tap-and-play:before {
  content: '\f3e6';
}
.zmdi-vibration:before {
  content: '\f3e7';
}
.zmdi-voicemail:before {
  content: '\f3e8';
}
.zmdi-group:before {
  content: '\f3e9';
}
.zmdi-rss:before {
  content: '\f3ea';
}
.zmdi-shape:before {
  content: '\f3eb';
}
.zmdi-spinner:before {
  content: '\f3ec';
}
.zmdi-ungroup:before {
  content: '\f3ed';
}
.zmdi-500px:before {
  content: '\f3ee';
}
.zmdi-8tracks:before {
  content: '\f3ef';
}
.zmdi-amazon:before {
  content: '\f3f0';
}
.zmdi-blogger:before {
  content: '\f3f1';
}
.zmdi-delicious:before {
  content: '\f3f2';
}
.zmdi-disqus:before {
  content: '\f3f3';
}
.zmdi-flattr:before {
  content: '\f3f4';
}
.zmdi-flickr:before {
  content: '\f3f5';
}
.zmdi-github-alt:before {
  content: '\f3f6';
}
.zmdi-google-old:before {
  content: '\f3f7';
}
.zmdi-linkedin:before {
  content: '\f3f8';
}
.zmdi-odnoklassniki:before {
  content: '\f3f9';
}
.zmdi-outlook:before {
  content: '\f3fa';
}
.zmdi-paypal-alt:before {
  content: '\f3fb';
}
.zmdi-pinterest:before {
  content: '\f3fc';
}
.zmdi-playstation:before {
  content: '\f3fd';
}
.zmdi-reddit:before {
  content: '\f3fe';
}
.zmdi-skype:before {
  content: '\f3ff';
}
.zmdi-slideshare:before {
  content: '\f400';
}
.zmdi-soundcloud:before {
  content: '\f401';
}
.zmdi-tumblr:before {
  content: '\f402';
}
.zmdi-twitch:before {
  content: '\f403';
}
.zmdi-vimeo:before {
  content: '\f404';
}
.zmdi-whatsapp:before {
  content: '\f405';
}
.zmdi-xbox:before {
  content: '\f406';
}
.zmdi-yahoo:before {
  content: '\f407';
}
.zmdi-youtube-play:before {
  content: '\f408';
}
.zmdi-youtube:before {
  content: '\f409';
}
.zmdi-3d-rotation:before {
  content: '\f101';
}
.zmdi-airplane-off:before {
  content: '\f102';
}
.zmdi-airplane:before {
  content: '\f103';
}
.zmdi-album:before {
  content: '\f104';
}
.zmdi-archive:before {
  content: '\f105';
}
.zmdi-assignment-account:before {
  content: '\f106';
}
.zmdi-assignment-alert:before {
  content: '\f107';
}
.zmdi-assignment-check:before {
  content: '\f108';
}
.zmdi-assignment-o:before {
  content: '\f109';
}
.zmdi-assignment-return:before {
  content: '\f10a';
}
.zmdi-assignment-returned:before {
  content: '\f10b';
}
.zmdi-assignment:before {
  content: '\f10c';
}
.zmdi-attachment-alt:before {
  content: '\f10d';
}
.zmdi-attachment:before {
  content: '\f10e';
}
.zmdi-audio:before {
  content: '\f10f';
}
.zmdi-badge-check:before {
  content: '\f110';
}
.zmdi-balance-wallet:before {
  content: '\f111';
}
.zmdi-balance:before {
  content: '\f112';
}
.zmdi-battery-alert:before {
  content: '\f113';
}
.zmdi-battery-flash:before {
  content: '\f114';
}
.zmdi-battery-unknown:before {
  content: '\f115';
}
.zmdi-battery:before {
  content: '\f116';
}
.zmdi-bike:before {
  content: '\f117';
}
.zmdi-block-alt:before {
  content: '\f118';
}
.zmdi-block:before {
  content: '\f119';
}
.zmdi-boat:before {
  content: '\f11a';
}
.zmdi-book-image:before {
  content: '\f11b';
}
.zmdi-book:before {
  content: '\f11c';
}
.zmdi-bookmark-outline:before {
  content: '\f11d';
}
.zmdi-bookmark:before {
  content: '\f11e';
}
.zmdi-brush:before {
  content: '\f11f';
}
.zmdi-bug:before {
  content: '\f120';
}
.zmdi-bus:before {
  content: '\f121';
}
.zmdi-cake:before {
  content: '\f122';
}
.zmdi-car-taxi:before {
  content: '\f123';
}
.zmdi-car-wash:before {
  content: '\f124';
}
.zmdi-car:before {
  content: '\f125';
}
.zmdi-card-giftcard:before {
  content: '\f126';
}
.zmdi-card-membership:before {
  content: '\f127';
}
.zmdi-card-travel:before {
  content: '\f128';
}
.zmdi-card:before {
  content: '\f129';
}
.zmdi-case-check:before {
  content: '\f12a';
}
.zmdi-case-download:before {
  content: '\f12b';
}
.zmdi-case-play:before {
  content: '\f12c';
}
.zmdi-case:before {
  content: '\f12d';
}
.zmdi-cast-connected:before {
  content: '\f12e';
}
.zmdi-cast:before {
  content: '\f12f';
}
.zmdi-chart-donut:before {
  content: '\f130';
}
.zmdi-chart:before {
  content: '\f131';
}
.zmdi-city-alt:before {
  content: '\f132';
}
.zmdi-city:before {
  content: '\f133';
}
.zmdi-close-circle-o:before {
  content: '\f134';
}
.zmdi-close-circle:before {
  content: '\f135';
}
.zmdi-close:before {
  content: '\f136';
}
.zmdi-cocktail:before {
  content: '\f137';
}
.zmdi-code-setting:before {
  content: '\f138';
}
.zmdi-code-smartphone:before {
  content: '\f139';
}
.zmdi-code:before {
  content: '\f13a';
}
.zmdi-coffee:before {
  content: '\f13b';
}
.zmdi-collection-bookmark:before {
  content: '\f13c';
}
.zmdi-collection-case-play:before {
  content: '\f13d';
}
.zmdi-collection-folder-image:before {
  content: '\f13e';
}
.zmdi-collection-image-o:before {
  content: '\f13f';
}
.zmdi-collection-image:before {
  content: '\f140';
}
.zmdi-collection-item-1:before {
  content: '\f141';
}
.zmdi-collection-item-2:before {
  content: '\f142';
}
.zmdi-collection-item-3:before {
  content: '\f143';
}
.zmdi-collection-item-4:before {
  content: '\f144';
}
.zmdi-collection-item-5:before {
  content: '\f145';
}
.zmdi-collection-item-6:before {
  content: '\f146';
}
.zmdi-collection-item-7:before {
  content: '\f147';
}
.zmdi-collection-item-8:before {
  content: '\f148';
}
.zmdi-collection-item-9-plus:before {
  content: '\f149';
}
.zmdi-collection-item-9:before {
  content: '\f14a';
}
.zmdi-collection-item:before {
  content: '\f14b';
}
.zmdi-collection-music:before {
  content: '\f14c';
}
.zmdi-collection-pdf:before {
  content: '\f14d';
}
.zmdi-collection-plus:before {
  content: '\f14e';
}
.zmdi-collection-speaker:before {
  content: '\f14f';
}
.zmdi-collection-text:before {
  content: '\f150';
}
.zmdi-collection-video:before {
  content: '\f151';
}
.zmdi-compass:before {
  content: '\f152';
}
.zmdi-cutlery:before {
  content: '\f153';
}
.zmdi-delete:before {
  content: '\f154';
}
.zmdi-dialpad:before {
  content: '\f155';
}
.zmdi-dns:before {
  content: '\f156';
}
.zmdi-drink:before {
  content: '\f157';
}
.zmdi-edit:before {
  content: '\f158';
}
.zmdi-email-open:before {
  content: '\f159';
}
.zmdi-email:before {
  content: '\f15a';
}
.zmdi-eye-off:before {
  content: '\f15b';
}
.zmdi-eye:before {
  content: '\f15c';
}
.zmdi-eyedropper:before {
  content: '\f15d';
}
.zmdi-favorite-outline:before {
  content: '\f15e';
}
.zmdi-favorite:before {
  content: '\f15f';
}
.zmdi-filter-list:before {
  content: '\f160';
}
.zmdi-fire:before {
  content: '\f161';
}
.zmdi-flag:before {
  content: '\f162';
}
.zmdi-flare:before {
  content: '\f163';
}
.zmdi-flash-auto:before {
  content: '\f164';
}
.zmdi-flash-off:before {
  content: '\f165';
}
.zmdi-flash:before {
  content: '\f166';
}
.zmdi-flip:before {
  content: '\f167';
}
.zmdi-flower-alt:before {
  content: '\f168';
}
.zmdi-flower:before {
  content: '\f169';
}
.zmdi-font:before {
  content: '\f16a';
}
.zmdi-fullscreen-alt:before {
  content: '\f16b';
}
.zmdi-fullscreen-exit:before {
  content: '\f16c';
}
.zmdi-fullscreen:before {
  content: '\f16d';
}
.zmdi-functions:before {
  content: '\f16e';
}
.zmdi-gas-station:before {
  content: '\f16f';
}
.zmdi-gesture:before {
  content: '\f170';
}
.zmdi-globe-alt:before {
  content: '\f171';
}
.zmdi-globe-lock:before {
  content: '\f172';
}
.zmdi-globe:before {
  content: '\f173';
}
.zmdi-graduation-cap:before {
  content: '\f174';
}
.zmdi-home:before {
  content: '\f175';
}
.zmdi-hospital-alt:before {
  content: '\f176';
}
.zmdi-hospital:before {
  content: '\f177';
}
.zmdi-hotel:before {
  content: '\f178';
}
.zmdi-hourglass-alt:before {
  content: '\f179';
}
.zmdi-hourglass-outline:before {
  content: '\f17a';
}
.zmdi-hourglass:before {
  content: '\f17b';
}
.zmdi-http:before {
  content: '\f17c';
}
.zmdi-image-alt:before {
  content: '\f17d';
}
.zmdi-image-o:before {
  content: '\f17e';
}
.zmdi-image:before {
  content: '\f17f';
}
.zmdi-inbox:before {
  content: '\f180';
}
.zmdi-invert-colors-off:before {
  content: '\f181';
}
.zmdi-invert-colors:before {
  content: '\f182';
}
.zmdi-key:before {
  content: '\f183';
}
.zmdi-label-alt-outline:before {
  content: '\f184';
}
.zmdi-label-alt:before {
  content: '\f185';
}
.zmdi-label-heart:before {
  content: '\f186';
}
.zmdi-label:before {
  content: '\f187';
}
.zmdi-labels:before {
  content: '\f188';
}
.zmdi-lamp:before {
  content: '\f189';
}
.zmdi-landscape:before {
  content: '\f18a';
}
.zmdi-layers-off:before {
  content: '\f18b';
}
.zmdi-layers:before {
  content: '\f18c';
}
.zmdi-library:before {
  content: '\f18d';
}
.zmdi-link:before {
  content: '\f18e';
}
.zmdi-lock-open:before {
  content: '\f18f';
}
.zmdi-lock-outline:before {
  content: '\f190';
}
.zmdi-lock:before {
  content: '\f191';
}
.zmdi-mail-reply-all:before {
  content: '\f192';
}
.zmdi-mail-reply:before {
  content: '\f193';
}
.zmdi-mail-send:before {
  content: '\f194';
}
.zmdi-mall:before {
  content: '\f195';
}
.zmdi-map:before {
  content: '\f196';
}
.zmdi-menu:before {
  content: '\f197';
}
.zmdi-money-box:before {
  content: '\f198';
}
.zmdi-money-off:before {
  content: '\f199';
}
.zmdi-money:before {
  content: '\f19a';
}
.zmdi-more-vert:before {
  content: '\f19b';
}
.zmdi-more:before {
  content: '\f19c';
}
.zmdi-movie-alt:before {
  content: '\f19d';
}
.zmdi-movie:before {
  content: '\f19e';
}
.zmdi-nature-people:before {
  content: '\f19f';
}
.zmdi-nature:before {
  content: '\f1a0';
}
.zmdi-navigation:before {
  content: '\f1a1';
}
.zmdi-open-in-browser:before {
  content: '\f1a2';
}
.zmdi-open-in-new:before {
  content: '\f1a3';
}
.zmdi-palette:before {
  content: '\f1a4';
}
.zmdi-parking:before {
  content: '\f1a5';
}
.zmdi-pin-account:before {
  content: '\f1a6';
}
.zmdi-pin-assistant:before {
  content: '\f1a7';
}
.zmdi-pin-drop:before {
  content: '\f1a8';
}
.zmdi-pin-help:before {
  content: '\f1a9';
}
.zmdi-pin-off:before {
  content: '\f1aa';
}
.zmdi-pin:before {
  content: '\f1ab';
}
.zmdi-pizza:before {
  content: '\f1ac';
}
.zmdi-plaster:before {
  content: '\f1ad';
}
.zmdi-power-setting:before {
  content: '\f1ae';
}
.zmdi-power:before {
  content: '\f1af';
}
.zmdi-print:before {
  content: '\f1b0';
}
.zmdi-puzzle-piece:before {
  content: '\f1b1';
}
.zmdi-quote:before {
  content: '\f1b2';
}
.zmdi-railway:before {
  content: '\f1b3';
}
.zmdi-receipt:before {
  content: '\f1b4';
}
.zmdi-refresh-alt:before {
  content: '\f1b5';
}
.zmdi-refresh-sync-alert:before {
  content: '\f1b6';
}
.zmdi-refresh-sync-off:before {
  content: '\f1b7';
}
.zmdi-refresh-sync:before {
  content: '\f1b8';
}
.zmdi-refresh:before {
  content: '\f1b9';
}
.zmdi-roller:before {
  content: '\f1ba';
}
.zmdi-ruler:before {
  content: '\f1bb';
}
.zmdi-scissors:before {
  content: '\f1bc';
}
.zmdi-screen-rotation-lock:before {
  content: '\f1bd';
}
.zmdi-screen-rotation:before {
  content: '\f1be';
}
.zmdi-search-for:before {
  content: '\f1bf';
}
.zmdi-search-in-file:before {
  content: '\f1c0';
}
.zmdi-search-in-page:before {
  content: '\f1c1';
}
.zmdi-search-replace:before {
  content: '\f1c2';
}
.zmdi-search:before {
  content: '\f1c3';
}
.zmdi-seat:before {
  content: '\f1c4';
}
.zmdi-settings-square:before {
  content: '\f1c5';
}
.zmdi-settings:before {
  content: '\f1c6';
}
.zmdi-shield-check:before {
  content: '\f1c7';
}
.zmdi-shield-security:before {
  content: '\f1c8';
}
.zmdi-shopping-basket:before {
  content: '\f1c9';
}
.zmdi-shopping-cart-plus:before {
  content: '\f1ca';
}
.zmdi-shopping-cart:before {
  content: '\f1cb';
}
.zmdi-sign-in:before {
  content: '\f1cc';
}
.zmdi-sort-amount-asc:before {
  content: '\f1cd';
}
.zmdi-sort-amount-desc:before {
  content: '\f1ce';
}
.zmdi-sort-asc:before {
  content: '\f1cf';
}
.zmdi-sort-desc:before {
  content: '\f1d0';
}
.zmdi-spellcheck:before {
  content: '\f1d1';
}
.zmdi-storage:before {
  content: '\f1d2';
}
.zmdi-store-24:before {
  content: '\f1d3';
}
.zmdi-store:before {
  content: '\f1d4';
}
.zmdi-subway:before {
  content: '\f1d5';
}
.zmdi-sun:before {
  content: '\f1d6';
}
.zmdi-tab-unselected:before {
  content: '\f1d7';
}
.zmdi-tab:before {
  content: '\f1d8';
}
.zmdi-tag-close:before {
  content: '\f1d9';
}
.zmdi-tag-more:before {
  content: '\f1da';
}
.zmdi-tag:before {
  content: '\f1db';
}
.zmdi-thumb-down:before {
  content: '\f1dc';
}
.zmdi-thumb-up-down:before {
  content: '\f1dd';
}
.zmdi-thumb-up:before {
  content: '\f1de';
}
.zmdi-ticket-star:before {
  content: '\f1df';
}
.zmdi-toll:before {
  content: '\f1e0';
}
.zmdi-toys:before {
  content: '\f1e1';
}
.zmdi-traffic:before {
  content: '\f1e2';
}
.zmdi-translate:before {
  content: '\f1e3';
}
.zmdi-triangle-down:before {
  content: '\f1e4';
}
.zmdi-triangle-up:before {
  content: '\f1e5';
}
.zmdi-truck:before {
  content: '\f1e6';
}
.zmdi-turning-sign:before {
  content: '\f1e7';
}
.zmdi-wallpaper:before {
  content: '\f1e8';
}
.zmdi-washing-machine:before {
  content: '\f1e9';
}
.zmdi-window-maximize:before {
  content: '\f1ea';
}
.zmdi-window-minimize:before {
  content: '\f1eb';
}
.zmdi-window-restore:before {
  content: '\f1ec';
}
.zmdi-wrench:before {
  content: '\f1ed';
}
.zmdi-zoom-in:before {
  content: '\f1ee';
}
.zmdi-zoom-out:before {
  content: '\f1ef';
}
.zmdi-alert-circle-o:before {
  content: '\f1f0';
}
.zmdi-alert-circle:before {
  content: '\f1f1';
}
.zmdi-alert-octagon:before {
  content: '\f1f2';
}
.zmdi-alert-polygon:before {
  content: '\f1f3';
}
.zmdi-alert-triangle:before {
  content: '\f1f4';
}
.zmdi-help-outline:before {
  content: '\f1f5';
}
.zmdi-help:before {
  content: '\f1f6';
}
.zmdi-info-outline:before {
  content: '\f1f7';
}
.zmdi-info:before {
  content: '\f1f8';
}
.zmdi-notifications-active:before {
  content: '\f1f9';
}
.zmdi-notifications-add:before {
  content: '\f1fa';
}
.zmdi-notifications-none:before {
  content: '\f1fb';
}
.zmdi-notifications-off:before {
  content: '\f1fc';
}
.zmdi-notifications-paused:before {
  content: '\f1fd';
}
.zmdi-notifications:before {
  content: '\f1fe';
}
.zmdi-account-add:before {
  content: '\f1ff';
}
.zmdi-account-box-mail:before {
  content: '\f200';
}
.zmdi-account-box-o:before {
  content: '\f201';
}
.zmdi-account-box-phone:before {
  content: '\f202';
}
.zmdi-account-box:before {
  content: '\f203';
}
.zmdi-account-calendar:before {
  content: '\f204';
}
.zmdi-account-circle:before {
  content: '\f205';
}
.zmdi-account-o:before {
  content: '\f206';
}
.zmdi-account:before {
  content: '\f207';
}
.zmdi-accounts-add:before {
  content: '\f208';
}
.zmdi-accounts-alt:before {
  content: '\f209';
}
.zmdi-accounts-list-alt:before {
  content: '\f20a';
}
.zmdi-accounts-list:before {
  content: '\f20b';
}
.zmdi-accounts-outline:before {
  content: '\f20c';
}
.zmdi-accounts:before {
  content: '\f20d';
}
.zmdi-face:before {
  content: '\f20e';
}
.zmdi-female:before {
  content: '\f20f';
}
.zmdi-male-alt:before {
  content: '\f210';
}
.zmdi-male-female:before {
  content: '\f211';
}
.zmdi-male:before {
  content: '\f212';
}
.zmdi-mood-bad:before {
  content: '\f213';
}
.zmdi-mood:before {
  content: '\f214';
}
.zmdi-run:before {
  content: '\f215';
}
.zmdi-walk:before {
  content: '\f216';
}
.zmdi-cloud-box:before {
  content: '\f217';
}
.zmdi-cloud-circle:before {
  content: '\f218';
}
.zmdi-cloud-done:before {
  content: '\f219';
}
.zmdi-cloud-download:before {
  content: '\f21a';
}
.zmdi-cloud-off:before {
  content: '\f21b';
}
.zmdi-cloud-outline-alt:before {
  content: '\f21c';
}
.zmdi-cloud-outline:before {
  content: '\f21d';
}
.zmdi-cloud-upload:before {
  content: '\f21e';
}
.zmdi-cloud:before {
  content: '\f21f';
}
.zmdi-download:before {
  content: '\f220';
}
.zmdi-file-plus:before {
  content: '\f221';
}
.zmdi-file-text:before {
  content: '\f222';
}
.zmdi-file:before {
  content: '\f223';
}
.zmdi-folder-outline:before {
  content: '\f224';
}
.zmdi-folder-person:before {
  content: '\f225';
}
.zmdi-folder-star-alt:before {
  content: '\f226';
}
.zmdi-folder-star:before {
  content: '\f227';
}
.zmdi-folder:before {
  content: '\f228';
}
.zmdi-gif:before {
  content: '\f229';
}
.zmdi-upload:before {
  content: '\f22a';
}
.zmdi-border-all:before {
  content: '\f22b';
}
.zmdi-border-bottom:before {
  content: '\f22c';
}
.zmdi-border-clear:before {
  content: '\f22d';
}
.zmdi-border-color:before {
  content: '\f22e';
}
.zmdi-border-horizontal:before {
  content: '\f22f';
}
.zmdi-border-inner:before {
  content: '\f230';
}
.zmdi-border-left:before {
  content: '\f231';
}
.zmdi-border-outer:before {
  content: '\f232';
}
.zmdi-border-right:before {
  content: '\f233';
}
.zmdi-border-style:before {
  content: '\f234';
}
.zmdi-border-top:before {
  content: '\f235';
}
.zmdi-border-vertical:before {
  content: '\f236';
}
.zmdi-copy:before {
  content: '\f237';
}
.zmdi-crop:before {
  content: '\f238';
}
.zmdi-format-align-center:before {
  content: '\f239';
}
.zmdi-format-align-justify:before {
  content: '\f23a';
}
.zmdi-format-align-left:before {
  content: '\f23b';
}
.zmdi-format-align-right:before {
  content: '\f23c';
}
.zmdi-format-bold:before {
  content: '\f23d';
}
.zmdi-format-clear-all:before {
  content: '\f23e';
}
.zmdi-format-clear:before {
  content: '\f23f';
}
.zmdi-format-color-fill:before {
  content: '\f240';
}
.zmdi-format-color-reset:before {
  content: '\f241';
}
.zmdi-format-color-text:before {
  content: '\f242';
}
.zmdi-format-indent-decrease:before {
  content: '\f243';
}
.zmdi-format-indent-increase:before {
  content: '\f244';
}
.zmdi-format-italic:before {
  content: '\f245';
}
.zmdi-format-line-spacing:before {
  content: '\f246';
}
.zmdi-format-list-bulleted:before {
  content: '\f247';
}
.zmdi-format-list-numbered:before {
  content: '\f248';
}
.zmdi-format-ltr:before {
  content: '\f249';
}
.zmdi-format-rtl:before {
  content: '\f24a';
}
.zmdi-format-size:before {
  content: '\f24b';
}
.zmdi-format-strikethrough-s:before {
  content: '\f24c';
}
.zmdi-format-strikethrough:before {
  content: '\f24d';
}
.zmdi-format-subject:before {
  content: '\f24e';
}
.zmdi-format-underlined:before {
  content: '\f24f';
}
.zmdi-format-valign-bottom:before {
  content: '\f250';
}
.zmdi-format-valign-center:before {
  content: '\f251';
}
.zmdi-format-valign-top:before {
  content: '\f252';
}
.zmdi-redo:before {
  content: '\f253';
}
.zmdi-select-all:before {
  content: '\f254';
}
.zmdi-space-bar:before {
  content: '\f255';
}
.zmdi-text-format:before {
  content: '\f256';
}
.zmdi-transform:before {
  content: '\f257';
}
.zmdi-undo:before {
  content: '\f258';
}
.zmdi-wrap-text:before {
  content: '\f259';
}
.zmdi-comment-alert:before {
  content: '\f25a';
}
.zmdi-comment-alt-text:before {
  content: '\f25b';
}
.zmdi-comment-alt:before {
  content: '\f25c';
}
.zmdi-comment-edit:before {
  content: '\f25d';
}
.zmdi-comment-image:before {
  content: '\f25e';
}
.zmdi-comment-list:before {
  content: '\f25f';
}
.zmdi-comment-more:before {
  content: '\f260';
}
.zmdi-comment-outline:before {
  content: '\f261';
}
.zmdi-comment-text-alt:before {
  content: '\f262';
}
.zmdi-comment-text:before {
  content: '\f263';
}
.zmdi-comment-video:before {
  content: '\f264';
}
.zmdi-comment:before {
  content: '\f265';
}
.zmdi-comments:before {
  content: '\f266';
}
.zmdi-check-all:before {
  content: '\f267';
}
.zmdi-check-circle-u:before {
  content: '\f268';
}
.zmdi-check-circle:before {
  content: '\f269';
}
.zmdi-check-square:before {
  content: '\f26a';
}
.zmdi-check:before {
  content: '\f26b';
}
.zmdi-circle-o:before {
  content: '\f26c';
}
.zmdi-circle:before {
  content: '\f26d';
}
.zmdi-dot-circle-alt:before {
  content: '\f26e';
}
.zmdi-dot-circle:before {
  content: '\f26f';
}
.zmdi-minus-circle-outline:before {
  content: '\f270';
}
.zmdi-minus-circle:before {
  content: '\f271';
}
.zmdi-minus-square:before {
  content: '\f272';
}
.zmdi-minus:before {
  content: '\f273';
}
.zmdi-plus-circle-o-duplicate:before {
  content: '\f274';
}
.zmdi-plus-circle-o:before {
  content: '\f275';
}
.zmdi-plus-circle:before {
  content: '\f276';
}
.zmdi-plus-square:before {
  content: '\f277';
}
.zmdi-plus:before {
  content: '\f278';
}
.zmdi-square-o:before {
  content: '\f279';
}
.zmdi-star-circle:before {
  content: '\f27a';
}
.zmdi-star-half:before {
  content: '\f27b';
}
.zmdi-star-outline:before {
  content: '\f27c';
}
.zmdi-star:before {
  content: '\f27d';
}
.zmdi-bluetooth-connected:before {
  content: '\f27e';
}
.zmdi-bluetooth-off:before {
  content: '\f27f';
}
.zmdi-bluetooth-search:before {
  content: '\f280';
}
.zmdi-bluetooth-setting:before {
  content: '\f281';
}
.zmdi-bluetooth:before {
  content: '\f282';
}
.zmdi-camera-add:before {
  content: '\f283';
}
.zmdi-camera-alt:before {
  content: '\f284';
}
.zmdi-camera-bw:before {
  content: '\f285';
}
.zmdi-camera-front:before {
  content: '\f286';
}
.zmdi-camera-mic:before {
  content: '\f287';
}
.zmdi-camera-party-mode:before {
  content: '\f288';
}
.zmdi-camera-rear:before {
  content: '\f289';
}
.zmdi-camera-roll:before {
  content: '\f28a';
}
.zmdi-camera-switch:before {
  content: '\f28b';
}
.zmdi-camera:before {
  content: '\f28c';
}
.zmdi-card-alert:before {
  content: '\f28d';
}
.zmdi-card-off:before {
  content: '\f28e';
}
.zmdi-card-sd:before {
  content: '\f28f';
}
.zmdi-card-sim:before {
  content: '\f290';
}
.zmdi-desktop-mac:before {
  content: '\f291';
}
.zmdi-desktop-windows:before {
  content: '\f292';
}
.zmdi-device-hub:before {
  content: '\f293';
}
.zmdi-devices-off:before {
  content: '\f294';
}
.zmdi-devices:before {
  content: '\f295';
}
.zmdi-dock:before {
  content: '\f296';
}
.zmdi-floppy:before {
  content: '\f297';
}
.zmdi-gamepad:before {
  content: '\f298';
}
.zmdi-gps-dot:before {
  content: '\f299';
}
.zmdi-gps-off:before {
  content: '\f29a';
}
.zmdi-gps:before {
  content: '\f29b';
}
.zmdi-headset-mic:before {
  content: '\f29c';
}
.zmdi-headset:before {
  content: '\f29d';
}
.zmdi-input-antenna:before {
  content: '\f29e';
}
.zmdi-input-composite:before {
  content: '\f29f';
}
.zmdi-input-hdmi:before {
  content: '\f2a0';
}
.zmdi-input-power:before {
  content: '\f2a1';
}
.zmdi-input-svideo:before {
  content: '\f2a2';
}
.zmdi-keyboard-hide:before {
  content: '\f2a3';
}
.zmdi-keyboard:before {
  content: '\f2a4';
}
.zmdi-laptop-chromebook:before {
  content: '\f2a5';
}
.zmdi-laptop-mac:before {
  content: '\f2a6';
}
.zmdi-laptop:before {
  content: '\f2a7';
}
.zmdi-mic-off:before {
  content: '\f2a8';
}
.zmdi-mic-outline:before {
  content: '\f2a9';
}
.zmdi-mic-setting:before {
  content: '\f2aa';
}
.zmdi-mic:before {
  content: '\f2ab';
}
.zmdi-mouse:before {
  content: '\f2ac';
}
.zmdi-network-alert:before {
  content: '\f2ad';
}
.zmdi-network-locked:before {
  content: '\f2ae';
}
.zmdi-network-off:before {
  content: '\f2af';
}
.zmdi-network-outline:before {
  content: '\f2b0';
}
.zmdi-network-setting:before {
  content: '\f2b1';
}
.zmdi-network:before {
  content: '\f2b2';
}
.zmdi-phone-bluetooth:before {
  content: '\f2b3';
}
.zmdi-phone-end:before {
  content: '\f2b4';
}
.zmdi-phone-forwarded:before {
  content: '\f2b5';
}
.zmdi-phone-in-talk:before {
  content: '\f2b6';
}
.zmdi-phone-locked:before {
  content: '\f2b7';
}
.zmdi-phone-missed:before {
  content: '\f2b8';
}
.zmdi-phone-msg:before {
  content: '\f2b9';
}
.zmdi-phone-paused:before {
  content: '\f2ba';
}
.zmdi-phone-ring:before {
  content: '\f2bb';
}
.zmdi-phone-setting:before {
  content: '\f2bc';
}
.zmdi-phone-sip:before {
  content: '\f2bd';
}
.zmdi-phone:before {
  content: '\f2be';
}
.zmdi-portable-wifi-changes:before {
  content: '\f2bf';
}
.zmdi-portable-wifi-off:before {
  content: '\f2c0';
}
.zmdi-portable-wifi:before {
  content: '\f2c1';
}
.zmdi-radio:before {
  content: '\f2c2';
}
.zmdi-reader:before {
  content: '\f2c3';
}
.zmdi-remote-control-alt:before {
  content: '\f2c4';
}
.zmdi-remote-control:before {
  content: '\f2c5';
}
.zmdi-router:before {
  content: '\f2c6';
}
.zmdi-scanner:before {
  content: '\f2c7';
}
.zmdi-smartphone-android:before {
  content: '\f2c8';
}
.zmdi-smartphone-download:before {
  content: '\f2c9';
}
.zmdi-smartphone-erase:before {
  content: '\f2ca';
}
.zmdi-smartphone-info:before {
  content: '\f2cb';
}
.zmdi-smartphone-iphone:before {
  content: '\f2cc';
}
.zmdi-smartphone-landscape-lock:before {
  content: '\f2cd';
}
.zmdi-smartphone-landscape:before {
  content: '\f2ce';
}
.zmdi-smartphone-lock:before {
  content: '\f2cf';
}
.zmdi-smartphone-portrait-lock:before {
  content: '\f2d0';
}
.zmdi-smartphone-ring:before {
  content: '\f2d1';
}
.zmdi-smartphone-setting:before {
  content: '\f2d2';
}
.zmdi-smartphone-setup:before {
  content: '\f2d3';
}
.zmdi-smartphone:before {
  content: '\f2d4';
}
.zmdi-speaker:before {
  content: '\f2d5';
}
.zmdi-tablet-android:before {
  content: '\f2d6';
}
.zmdi-tablet-mac:before {
  content: '\f2d7';
}
.zmdi-tablet:before {
  content: '\f2d8';
}
.zmdi-tv-alt-play:before {
  content: '\f2d9';
}
.zmdi-tv-list:before {
  content: '\f2da';
}
.zmdi-tv-play:before {
  content: '\f2db';
}
.zmdi-tv:before {
  content: '\f2dc';
}
.zmdi-usb:before {
  content: '\f2dd';
}
.zmdi-videocam-off:before {
  content: '\f2de';
}
.zmdi-videocam-switch:before {
  content: '\f2df';
}
.zmdi-videocam:before {
  content: '\f2e0';
}
.zmdi-watch:before {
  content: '\f2e1';
}
.zmdi-wifi-alt-2:before {
  content: '\f2e2';
}
.zmdi-wifi-alt:before {
  content: '\f2e3';
}
.zmdi-wifi-info:before {
  content: '\f2e4';
}
.zmdi-wifi-lock:before {
  content: '\f2e5';
}
.zmdi-wifi-off:before {
  content: '\f2e6';
}
.zmdi-wifi-outline:before {
  content: '\f2e7';
}
.zmdi-wifi:before {
  content: '\f2e8';
}
.zmdi-arrow-left-bottom:before {
  content: '\f2e9';
}
.zmdi-arrow-left:before {
  content: '\f2ea';
}
.zmdi-arrow-merge:before {
  content: '\f2eb';
}
.zmdi-arrow-missed:before {
  content: '\f2ec';
}
.zmdi-arrow-right-top:before {
  content: '\f2ed';
}
.zmdi-arrow-right:before {
  content: '\f2ee';
}
.zmdi-arrow-split:before {
  content: '\f2ef';
}
.zmdi-arrows:before {
  content: '\f2f0';
}
.zmdi-caret-down-circle:before {
  content: '\f2f1';
}
.zmdi-caret-down:before {
  content: '\f2f2';
}
.zmdi-caret-left-circle:before {
  content: '\f2f3';
}
.zmdi-caret-left:before {
  content: '\f2f4';
}
.zmdi-caret-right-circle:before {
  content: '\f2f5';
}
.zmdi-caret-right:before {
  content: '\f2f6';
}
.zmdi-caret-up-circle:before {
  content: '\f2f7';
}
.zmdi-caret-up:before {
  content: '\f2f8';
}
.zmdi-chevron-down:before {
  content: '\f2f9';
}
.zmdi-chevron-left:before {
  content: '\f2fa';
}
.zmdi-chevron-right:before {
  content: '\f2fb';
}
.zmdi-chevron-up:before {
  content: '\f2fc';
}
.zmdi-forward:before {
  content: '\f2fd';
}
.zmdi-long-arrow-down:before {
  content: '\f2fe';
}
.zmdi-long-arrow-left:before {
  content: '\f2ff';
}
.zmdi-long-arrow-return:before {
  content: '\f300';
}
.zmdi-long-arrow-right:before {
  content: '\f301';
}
.zmdi-long-arrow-tab:before {
  content: '\f302';
}
.zmdi-long-arrow-up:before {
  content: '\f303';
}
.zmdi-rotate-ccw:before {
  content: '\f304';
}
.zmdi-rotate-cw:before {
  content: '\f305';
}
.zmdi-rotate-left:before {
  content: '\f306';
}
.zmdi-rotate-right:before {
  content: '\f307';
}
.zmdi-square-down:before {
  content: '\f308';
}
.zmdi-square-right:before {
  content: '\f309';
}
.zmdi-swap-alt:before {
  content: '\f30a';
}
.zmdi-swap-vertical-circle:before {
  content: '\f30b';
}
.zmdi-swap-vertical:before {
  content: '\f30c';
}
.zmdi-swap:before {
  content: '\f30d';
}
.zmdi-trending-down:before {
  content: '\f30e';
}
.zmdi-trending-flat:before {
  content: '\f30f';
}
.zmdi-trending-up:before {
  content: '\f310';
}
.zmdi-unfold-less:before {
  content: '\f311';
}
.zmdi-unfold-more:before {
  content: '\f312';
}
.zmdi-apps:before {
  content: '\f313';
}
.zmdi-grid-off:before {
  content: '\f314';
}
.zmdi-grid:before {
  content: '\f315';
}
.zmdi-view-agenda:before {
  content: '\f316';
}
.zmdi-view-array:before {
  content: '\f317';
}
.zmdi-view-carousel:before {
  content: '\f318';
}
.zmdi-view-column:before {
  content: '\f319';
}
.zmdi-view-comfy:before {
  content: '\f31a';
}
.zmdi-view-compact:before {
  content: '\f31b';
}
.zmdi-view-dashboard:before {
  content: '\f31c';
}
.zmdi-view-day:before {
  content: '\f31d';
}
.zmdi-view-headline:before {
  content: '\f31e';
}
.zmdi-view-list-alt:before {
  content: '\f31f';
}
.zmdi-view-list:before {
  content: '\f320';
}
.zmdi-view-module:before {
  content: '\f321';
}
.zmdi-view-quilt:before {
  content: '\f322';
}
.zmdi-view-stream:before {
  content: '\f323';
}
.zmdi-view-subtitles:before {
  content: '\f324';
}
.zmdi-view-toc:before {
  content: '\f325';
}
.zmdi-view-web:before {
  content: '\f326';
}
.zmdi-view-week:before {
  content: '\f327';
}
.zmdi-widgets:before {
  content: '\f328';
}
.zmdi-alarm-check:before {
  content: '\f329';
}
.zmdi-alarm-off:before {
  content: '\f32a';
}
.zmdi-alarm-plus:before {
  content: '\f32b';
}
.zmdi-alarm-snooze:before {
  content: '\f32c';
}
.zmdi-alarm:before {
  content: '\f32d';
}
.zmdi-calendar-alt:before {
  content: '\f32e';
}
.zmdi-calendar-check:before {
  content: '\f32f';
}
.zmdi-calendar-close:before {
  content: '\f330';
}
.zmdi-calendar-note:before {
  content: '\f331';
}
.zmdi-calendar:before {
  content: '\f332';
}
.zmdi-time-countdown:before {
  content: '\f333';
}
.zmdi-time-interval:before {
  content: '\f334';
}
.zmdi-time-restore-setting:before {
  content: '\f335';
}
.zmdi-time-restore:before {
  content: '\f336';
}
.zmdi-time:before {
  content: '\f337';
}
.zmdi-timer-off:before {
  content: '\f338';
}
.zmdi-timer:before {
  content: '\f339';
}
.zmdi-android-alt:before {
  content: '\f33a';
}
.zmdi-android:before {
  content: '\f33b';
}
.zmdi-apple:before {
  content: '\f33c';
}
.zmdi-behance:before {
  content: '\f33d';
}
.zmdi-codepen:before {
  content: '\f33e';
}
.zmdi-dribbble:before {
  content: '\f33f';
}
.zmdi-dropbox:before {
  content: '\f340';
}
.zmdi-evernote:before {
  content: '\f341';
}
.zmdi-facebook-box:before {
  content: '\f342';
}
.zmdi-facebook:before {
  content: '\f343';
}
.zmdi-github-box:before {
  content: '\f344';
}
.zmdi-github:before {
  content: '\f345';
}
.zmdi-google-drive:before {
  content: '\f346';
}
.zmdi-google-earth:before {
  content: '\f347';
}
.zmdi-google-glass:before {
  content: '\f348';
}
.zmdi-google-maps:before {
  content: '\f349';
}
.zmdi-google-pages:before {
  content: '\f34a';
}
.zmdi-google-play:before {
  content: '\f34b';
}
.zmdi-google-plus-box:before {
  content: '\f34c';
}
.zmdi-google-plus:before {
  content: '\f34d';
}
.zmdi-google:before {
  content: '\f34e';
}
.zmdi-instagram:before {
  content: '\f34f';
}
.zmdi-language-css3:before {
  content: '\f350';
}
.zmdi-language-html5:before {
  content: '\f351';
}
.zmdi-language-javascript:before {
  content: '\f352';
}
.zmdi-language-python-alt:before {
  content: '\f353';
}
.zmdi-language-python:before {
  content: '\f354';
}
.zmdi-lastfm:before {
  content: '\f355';
}
.zmdi-linkedin-box:before {
  content: '\f356';
}
.zmdi-paypal:before {
  content: '\f357';
}
.zmdi-pinterest-box:before {
  content: '\f358';
}
.zmdi-pocket:before {
  content: '\f359';
}
.zmdi-polymer:before {
  content: '\f35a';
}
.zmdi-share:before {
  content: '\f35b';
}
.zmdi-stackoverflow:before {
  content: '\f35c';
}
.zmdi-steam-square:before {
  content: '\f35d';
}
.zmdi-steam:before {
  content: '\f35e';
}
.zmdi-twitter-box:before {
  content: '\f35f';
}
.zmdi-twitter:before {
  content: '\f360';
}
.zmdi-vk:before {
  content: '\f361';
}
.zmdi-wikipedia:before {
  content: '\f362';
}
.zmdi-windows:before {
  content: '\f363';
}
.zmdi-aspect-ratio-alt:before {
  content: '\f364';
}
.zmdi-aspect-ratio:before {
  content: '\f365';
}
.zmdi-blur-circular:before {
  content: '\f366';
}
.zmdi-blur-linear:before {
  content: '\f367';
}
.zmdi-blur-off:before {
  content: '\f368';
}
.zmdi-blur:before {
  content: '\f369';
}
.zmdi-brightness-2:before {
  content: '\f36a';
}
.zmdi-brightness-3:before {
  content: '\f36b';
}
.zmdi-brightness-4:before {
  content: '\f36c';
}
.zmdi-brightness-5:before {
  content: '\f36d';
}
.zmdi-brightness-6:before {
  content: '\f36e';
}
.zmdi-brightness-7:before {
  content: '\f36f';
}
.zmdi-brightness-auto:before {
  content: '\f370';
}
.zmdi-brightness-setting:before {
  content: '\f371';
}
.zmdi-broken-image:before {
  content: '\f372';
}
.zmdi-center-focus-strong:before {
  content: '\f373';
}
.zmdi-center-focus-weak:before {
  content: '\f374';
}
.zmdi-compare:before {
  content: '\f375';
}
.zmdi-crop-16-9:before {
  content: '\f376';
}
.zmdi-crop-3-2:before {
  content: '\f377';
}
.zmdi-crop-5-4:before {
  content: '\f378';
}
.zmdi-crop-7-5:before {
  content: '\f379';
}
.zmdi-crop-din:before {
  content: '\f37a';
}
.zmdi-crop-free:before {
  content: '\f37b';
}
.zmdi-crop-landscape:before {
  content: '\f37c';
}
.zmdi-crop-portrait:before {
  content: '\f37d';
}
.zmdi-crop-square:before {
  content: '\f37e';
}
.zmdi-exposure-alt:before {
  content: '\f37f';
}
.zmdi-exposure:before {
  content: '\f380';
}
.zmdi-filter-b-and-w:before {
  content: '\f381';
}
.zmdi-filter-center-focus:before {
  content: '\f382';
}
.zmdi-filter-frames:before {
  content: '\f383';
}
.zmdi-filter-tilt-shift:before {
  content: '\f384';
}
.zmdi-gradient:before {
  content: '\f385';
}
.zmdi-grain:before {
  content: '\f386';
}
.zmdi-graphic-eq:before {
  content: '\f387';
}
.zmdi-hdr-off:before {
  content: '\f388';
}
.zmdi-hdr-strong:before {
  content: '\f389';
}
.zmdi-hdr-weak:before {
  content: '\f38a';
}
.zmdi-hdr:before {
  content: '\f38b';
}
.zmdi-iridescent:before {
  content: '\f38c';
}
.zmdi-leak-off:before {
  content: '\f38d';
}
.zmdi-leak:before {
  content: '\f38e';
}
.zmdi-looks:before {
  content: '\f38f';
}
.zmdi-loupe:before {
  content: '\f390';
}
.zmdi-panorama-horizontal:before {
  content: '\f391';
}
.zmdi-panorama-vertical:before {
  content: '\f392';
}
.zmdi-panorama-wide-angle:before {
  content: '\f393';
}
.zmdi-photo-size-select-large:before {
  content: '\f394';
}
.zmdi-photo-size-select-small:before {
  content: '\f395';
}
.zmdi-picture-in-picture:before {
  content: '\f396';
}
.zmdi-slideshow:before {
  content: '\f397';
}
.zmdi-texture:before {
  content: '\f398';
}
.zmdi-tonality:before {
  content: '\f399';
}
.zmdi-vignette:before {
  content: '\f39a';
}
.zmdi-wb-auto:before {
  content: '\f39b';
}
.zmdi-eject-alt:before {
  content: '\f39c';
}
.zmdi-eject:before {
  content: '\f39d';
}
.zmdi-equalizer:before {
  content: '\f39e';
}
.zmdi-fast-forward:before {
  content: '\f39f';
}
.zmdi-fast-rewind:before {
  content: '\f3a0';
}
.zmdi-forward-10:before {
  content: '\f3a1';
}
.zmdi-forward-30:before {
  content: '\f3a2';
}
.zmdi-forward-5:before {
  content: '\f3a3';
}
.zmdi-hearing:before {
  content: '\f3a4';
}
.zmdi-pause-circle-outline:before {
  content: '\f3a5';
}
.zmdi-pause-circle:before {
  content: '\f3a6';
}
.zmdi-pause:before {
  content: '\f3a7';
}
.zmdi-play-circle-outline:before {
  content: '\f3a8';
}
.zmdi-play-circle:before {
  content: '\f3a9';
}
.zmdi-play:before {
  content: '\f3aa';
}
.zmdi-playlist-audio:before {
  content: '\f3ab';
}
.zmdi-playlist-plus:before {
  content: '\f3ac';
}
.zmdi-repeat-one:before {
  content: '\f3ad';
}
.zmdi-repeat:before {
  content: '\f3ae';
}
.zmdi-replay-10:before {
  content: '\f3af';
}
.zmdi-replay-30:before {
  content: '\f3b0';
}
.zmdi-replay-5:before {
  content: '\f3b1';
}
.zmdi-replay:before {
  content: '\f3b2';
}
.zmdi-shuffle:before {
  content: '\f3b3';
}
.zmdi-skip-next:before {
  content: '\f3b4';
}
.zmdi-skip-previous:before {
  content: '\f3b5';
}
.zmdi-stop:before {
  content: '\f3b6';
}
.zmdi-surround-sound:before {
  content: '\f3b7';
}
.zmdi-tune:before {
  content: '\f3b8';
}
.zmdi-volume-down:before {
  content: '\f3b9';
}
.zmdi-volume-mute:before {
  content: '\f3ba';
}
.zmdi-volume-off:before {
  content: '\f3bb';
}
.zmdi-volume-up:before {
  content: '\f3bc';
}
.zmdi-n-1-square:before {
  content: '\f3bd';
}
.zmdi-n-2-square:before {
  content: '\f3be';
}
.zmdi-n-3-square:before {
  content: '\f3bf';
}
.zmdi-n-4-square:before {
  content: '\f3c0';
}
.zmdi-n-5-square:before {
  content: '\f3c1';
}
.zmdi-n-6-square:before {
  content: '\f3c2';
}
.zmdi-neg-1:before {
  content: '\f3c3';
}
.zmdi-neg-2:before {
  content: '\f3c4';
}
.zmdi-plus-1:before {
  content: '\f3c5';
}
.zmdi-plus-2:before {
  content: '\f3c6';
}
.zmdi-sec-10:before {
  content: '\f3c7';
}
.zmdi-sec-3:before {
  content: '\f3c8';
}
.zmdi-zero:before {
  content: '\f3c9';
}
.zmdi-airline-seat-flat-angled:before {
  content: '\f3ca';
}
.zmdi-airline-seat-flat:before {
  content: '\f3cb';
}
.zmdi-airline-seat-individual-suite:before {
  content: '\f3cc';
}
.zmdi-airline-seat-legroom-extra:before {
  content: '\f3cd';
}
.zmdi-airline-seat-legroom-normal:before {
  content: '\f3ce';
}
.zmdi-airline-seat-legroom-reduced:before {
  content: '\f3cf';
}
.zmdi-airline-seat-recline-extra:before {
  content: '\f3d0';
}
.zmdi-airline-seat-recline-normal:before {
  content: '\f3d1';
}
.zmdi-airplay:before {
  content: '\f3d2';
}
.zmdi-closed-caption:before {
  content: '\f3d3';
}
.zmdi-confirmation-number:before {
  content: '\f3d4';
}
.zmdi-developer-board:before {
  content: '\f3d5';
}
.zmdi-disc-full:before {
  content: '\f3d6';
}
.zmdi-explicit:before {
  content: '\f3d7';
}
.zmdi-flight-land:before {
  content: '\f3d8';
}
.zmdi-flight-takeoff:before {
  content: '\f3d9';
}
.zmdi-flip-to-back:before {
  content: '\f3da';
}
.zmdi-flip-to-front:before {
  content: '\f3db';
}
.zmdi-group-work:before {
  content: '\f3dc';
}
.zmdi-hd:before {
  content: '\f3dd';
}
.zmdi-hq:before {
  content: '\f3de';
}
.zmdi-markunread-mailbox:before {
  content: '\f3df';
}
.zmdi-memory:before {
  content: '\f3e0';
}
.zmdi-nfc:before {
  content: '\f3e1';
}
.zmdi-play-for-work:before {
  content: '\f3e2';
}
.zmdi-power-input:before {
  content: '\f3e3';
}
.zmdi-present-to-all:before {
  content: '\f3e4';
}
.zmdi-satellite:before {
  content: '\f3e5';
}
.zmdi-tap-and-play:before {
  content: '\f3e6';
}
.zmdi-vibration:before {
  content: '\f3e7';
}
.zmdi-voicemail:before {
  content: '\f3e8';
}
.zmdi-group:before {
  content: '\f3e9';
}
.zmdi-rss:before {
  content: '\f3ea';
}
.zmdi-shape:before {
  content: '\f3eb';
}
.zmdi-spinner:before {
  content: '\f3ec';
}
.zmdi-ungroup:before {
  content: '\f3ed';
}
.zmdi-500px:before {
  content: '\f3ee';
}
.zmdi-8tracks:before {
  content: '\f3ef';
}
.zmdi-amazon:before {
  content: '\f3f0';
}
.zmdi-blogger:before {
  content: '\f3f1';
}
.zmdi-delicious:before {
  content: '\f3f2';
}
.zmdi-disqus:before {
  content: '\f3f3';
}
.zmdi-flattr:before {
  content: '\f3f4';
}
.zmdi-flickr:before {
  content: '\f3f5';
}
.zmdi-github-alt:before {
  content: '\f3f6';
}
.zmdi-google-old:before {
  content: '\f3f7';
}
.zmdi-linkedin:before {
  content: '\f3f8';
}
.zmdi-odnoklassniki:before {
  content: '\f3f9';
}
.zmdi-outlook:before {
  content: '\f3fa';
}
.zmdi-paypal-alt:before {
  content: '\f3fb';
}
.zmdi-pinterest:before {
  content: '\f3fc';
}
.zmdi-playstation:before {
  content: '\f3fd';
}
.zmdi-reddit:before {
  content: '\f3fe';
}
.zmdi-skype:before {
  content: '\f3ff';
}
.zmdi-slideshare:before {
  content: '\f400';
}
.zmdi-soundcloud:before {
  content: '\f401';
}
.zmdi-tumblr:before {
  content: '\f402';
}
.zmdi-twitch:before {
  content: '\f403';
}
.zmdi-vimeo:before {
  content: '\f404';
}
.zmdi-whatsapp:before {
  content: '\f405';
}
.zmdi-xbox:before {
  content: '\f406';
}
.zmdi-yahoo:before {
  content: '\f407';
}
.zmdi-youtube-play:before {
  content: '\f408';
}
.zmdi-youtube:before {
  content: '\f409';
}
.zmdi-import-export:before {
  content: '\f30c';
}
.zmdi-swap-vertical-:before {
  content: '\f30c';
}
.zmdi-airplanemode-inactive:before {
  content: '\f102';
}
.zmdi-airplanemode-active:before {
  content: '\f103';
}
.zmdi-rate-review:before {
  content: '\f103';
}
.zmdi-comment-sign:before {
  content: '\f25a';
}
.zmdi-network-warning:before {
  content: '\f2ad';
}
.zmdi-shopping-cart-add:before {
  content: '\f1ca';
}
.zmdi-file-add:before {
  content: '\f221';
}
.zmdi-network-wifi-scan:before {
  content: '\f2e4';
}
.zmdi-collection-add:before {
  content: '\f14e';
}
.zmdi-format-playlist-add:before {
  content: '\f3ac';
}
.zmdi-format-queue-music:before {
  content: '\f3ab';
}
.zmdi-plus-box:before {
  content: '\f277';
}
.zmdi-tag-backspace:before {
  content: '\f1d9';
}
.zmdi-alarm-add:before {
  content: '\f32b';
}
.zmdi-battery-charging:before {
  content: '\f114';
}
.zmdi-daydream-setting:before {
  content: '\f217';
}
.zmdi-more-horiz:before {
  content: '\f19c';
}
.zmdi-book-photo:before {
  content: '\f11b';
}
.zmdi-incandescent:before {
  content: '\f189';
}
.zmdi-wb-iridescent:before {
  content: '\f38c';
}
.zmdi-calendar-remove:before {
  content: '\f330';
}
.zmdi-refresh-sync-disabled:before {
  content: '\f1b7';
}
.zmdi-refresh-sync-problem:before {
  content: '\f1b6';
}
.zmdi-crop-original:before {
  content: '\f17e';
}
.zmdi-power-off:before {
  content: '\f1af';
}
.zmdi-power-off-setting:before {
  content: '\f1ae';
}
.zmdi-leak-remove:before {
  content: '\f38d';
}
.zmdi-star-border:before {
  content: '\f27c';
}
.zmdi-brightness-low:before {
  content: '\f36d';
}
.zmdi-brightness-medium:before {
  content: '\f36e';
}
.zmdi-brightness-high:before {
  content: '\f36f';
}
.zmdi-smartphone-portrait:before {
  content: '\f2d4';
}
.zmdi-live-tv:before {
  content: '\f2d9';
}
.zmdi-format-textdirection-l-to-r:before {
  content: '\f249';
}
.zmdi-format-textdirection-r-to-l:before {
  content: '\f24a';
}
.zmdi-arrow-back:before {
  content: '\f2ea';
}
.zmdi-arrow-forward:before {
  content: '\f2ee';
}
.zmdi-arrow-in:before {
  content: '\f2e9';
}
.zmdi-arrow-out:before {
  content: '\f2ed';
}
.zmdi-rotate-90-degrees-ccw:before {
  content: '\f304';
}
.zmdi-adb:before {
  content: '\f33a';
}
.zmdi-network-wifi:before {
  content: '\f2e8';
}
.zmdi-network-wifi-alt:before {
  content: '\f2e3';
}
.zmdi-network-wifi-lock:before {
  content: '\f2e5';
}
.zmdi-network-wifi-off:before {
  content: '\f2e6';
}
.zmdi-network-wifi-outline:before {
  content: '\f2e7';
}
.zmdi-network-wifi-info:before {
  content: '\f2e4';
}
.zmdi-layers-clear:before {
  content: '\f18b';
}
.zmdi-colorize:before {
  content: '\f15d';
}
.zmdi-format-paint:before {
  content: '\f1ba';
}
.zmdi-format-quote:before {
  content: '\f1b2';
}
.zmdi-camera-monochrome-photos:before {
  content: '\f285';
}
.zmdi-sort-by-alpha:before {
  content: '\f1cf';
}
.zmdi-folder-shared:before {
  content: '\f225';
}
.zmdi-folder-special:before {
  content: '\f226';
}
.zmdi-comment-dots:before {
  content: '\f260';
}
.zmdi-reorder:before {
  content: '\f31e';
}
.zmdi-dehaze:before {
  content: '\f197';
}
.zmdi-sort:before {
  content: '\f1ce';
}
.zmdi-pages:before {
  content: '\f34a';
}
.zmdi-stack-overflow:before {
  content: '\f35c';
}
.zmdi-calendar-account:before {
  content: '\f204';
}
.zmdi-paste:before {
  content: '\f109';
}
.zmdi-cut:before {
  content: '\f1bc';
}
.zmdi-save:before {
  content: '\f297';
}
.zmdi-smartphone-code:before {
  content: '\f139';
}
.zmdi-directions-bike:before {
  content: '\f117';
}
.zmdi-directions-boat:before {
  content: '\f11a';
}
.zmdi-directions-bus:before {
  content: '\f121';
}
.zmdi-directions-car:before {
  content: '\f125';
}
.zmdi-directions-railway:before {
  content: '\f1b3';
}
.zmdi-directions-run:before {
  content: '\f215';
}
.zmdi-directions-subway:before {
  content: '\f1d5';
}
.zmdi-directions-walk:before {
  content: '\f216';
}
.zmdi-local-hotel:before {
  content: '\f178';
}
.zmdi-local-activity:before {
  content: '\f1df';
}
.zmdi-local-play:before {
  content: '\f1df';
}
.zmdi-local-airport:before {
  content: '\f103';
}
.zmdi-local-atm:before {
  content: '\f198';
}
.zmdi-local-bar:before {
  content: '\f137';
}
.zmdi-local-cafe:before {
  content: '\f13b';
}
.zmdi-local-car-wash:before {
  content: '\f124';
}
.zmdi-local-convenience-store:before {
  content: '\f1d3';
}
.zmdi-local-dining:before {
  content: '\f153';
}
.zmdi-local-drink:before {
  content: '\f157';
}
.zmdi-local-florist:before {
  content: '\f168';
}
.zmdi-local-gas-station:before {
  content: '\f16f';
}
.zmdi-local-grocery-store:before {
  content: '\f1cb';
}
.zmdi-local-hospital:before {
  content: '\f177';
}
.zmdi-local-laundry-service:before {
  content: '\f1e9';
}
.zmdi-local-library:before {
  content: '\f18d';
}
.zmdi-local-mall:before {
  content: '\f195';
}
.zmdi-local-movies:before {
  content: '\f19d';
}
.zmdi-local-offer:before {
  content: '\f187';
}
.zmdi-local-parking:before {
  content: '\f1a5';
}
.zmdi-local-parking:before {
  content: '\f1a5';
}
.zmdi-local-pharmacy:before {
  content: '\f176';
}
.zmdi-local-phone:before {
  content: '\f2be';
}
.zmdi-local-pizza:before {
  content: '\f1ac';
}
.zmdi-local-post-office:before {
  content: '\f15a';
}
.zmdi-local-printshop:before {
  content: '\f1b0';
}
.zmdi-local-see:before {
  content: '\f28c';
}
.zmdi-local-shipping:before {
  content: '\f1e6';
}
.zmdi-local-store:before {
  content: '\f1d4';
}
.zmdi-local-taxi:before {
  content: '\f123';
}
.zmdi-local-wc:before {
  content: '\f211';
}
.zmdi-my-location:before {
  content: '\f299';
}
.zmdi-directions:before {
  content: '\f1e7';
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

/*!
 * Bootstrap Colorpicker
 * http://mjolnic.github.io/bootstrap-colorpicker/
 *
 * Originally written by (c) 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0.txt
 *
 */

.colorpicker-saturation {
  float: left;
  width: 100px;
  height: 100px;
  cursor: crosshair;
  background-image: url("../img/bootstrap-colorpicker/saturation.png");
}

.colorpicker-saturation i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: -4px 0 0 -4px;
  border: 1px solid #000;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

.colorpicker-saturation i b {
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

.colorpicker-hue,
.colorpicker-alpha {
  float: left;
  width: 15px;
  height: 100px;
  margin-bottom: 4px;
  margin-left: 4px;
  cursor: row-resize;
}

.colorpicker-hue i,
.colorpicker-alpha i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: -1px;
  background: #000;
  border-top: 1px solid #fff;
}

.colorpicker-hue {
  background-image: url("../img/bootstrap-colorpicker/hue.png");
}

.colorpicker-alpha {
  display: none;
  background-image: url("../img/bootstrap-colorpicker/alpha.png");
}

.colorpicker-saturation,
.colorpicker-hue,
.colorpicker-alpha {
  background-size: contain;
}

.colorpicker {
  top: 0;
  left: 0;
  z-index: 2500;
  min-width: 130px;
  padding: 4px;
  margin-top: 1px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  *zoom: 1;
}

.colorpicker:before,
.colorpicker:after {
  display: table;
  line-height: 0;
  content: "";
}

.colorpicker:after {
  clear: both;
}

.colorpicker:before {
  position: absolute;
  top: -7px;
  left: 6px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.colorpicker:after {
  position: absolute;
  top: -6px;
  left: 7px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  content: '';
}

.colorpicker div {
  position: relative;
}

.colorpicker.colorpicker-with-alpha {
  min-width: 140px;
}

.colorpicker.colorpicker-with-alpha .colorpicker-alpha {
  display: block;
}

.colorpicker-color {
  height: 10px;
  margin-top: 5px;
  clear: both;
  background-image: url("../img/bootstrap-colorpicker/alpha.png");
  background-position: 0 100%;
}

.colorpicker-color div {
  height: 10px;
}

.colorpicker-element .input-group-addon i,
.colorpicker-element .add-on i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  cursor: pointer;
}

.colorpicker.colorpicker-inline {
  position: relative;
  z-index: auto;
  display: inline-block;
  float: none;
}

.colorpicker.colorpicker-horizontal {
  width: 110px;
  height: auto;
  min-width: 110px;
}

.colorpicker.colorpicker-horizontal .colorpicker-saturation {
  margin-bottom: 4px;
}

.colorpicker.colorpicker-horizontal .colorpicker-color {
  width: 100px;
}

.colorpicker.colorpicker-horizontal .colorpicker-hue,
.colorpicker.colorpicker-horizontal .colorpicker-alpha {
  float: left;
  width: 100px;
  height: 15px;
  margin-bottom: 4px;
  margin-left: 0;
  cursor: col-resize;
}

.colorpicker.colorpicker-horizontal .colorpicker-hue i,
.colorpicker.colorpicker-horizontal .colorpicker-alpha i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 15px;
  margin-top: 0;
  background: #ffffff;
  border: none;
}

.colorpicker.colorpicker-horizontal .colorpicker-hue {
  background-image: url("../img/bootstrap-colorpicker/hue-horizontal.png");
}

.colorpicker.colorpicker-horizontal .colorpicker-alpha {
  background-image: url("../img/bootstrap-colorpicker/alpha-horizontal.png");
}

.colorpicker.colorpicker-hidden {
  display: none;
}

.colorpicker.colorpicker-visible {
  display: block;
}

.colorpicker-inline.colorpicker-visible {
  display: inline-block;
}

.colorpicker-right:before {
  right: 6px;
  left: auto;
}

.colorpicker-right:after {
  right: 7px;
  left: auto;
}
/**
  * bootstrap-switch - Turn checkboxes and radio buttons into toggle switches.
  *
  * @version v3.3.4
  * @homepage https://bttstrp.github.io/bootstrap-switch
  * @author Mattia Larentis <mattia@larentis.eu> (http://larentis.eu)
  * @license Apache-2.0
  */

.bootstrap-switch {
  display: inline-block;
  direction: ltr;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid;
  border-color: #ccc;
  position: relative;
  text-align: left;
  overflow: hidden;
  line-height: 8px;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bootstrap-switch .bootstrap-switch-container {
  display: inline-block;
  top: 0;
  border-radius: 4px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
  text-align: center;
  z-index: 1;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
  color: #fff;
  background: #337ab7;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
  color: #fff;
  background: #5bc0de;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
  color: #fff;
  background: #5cb85c;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
  background: #f0ad4e;
  color: #fff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
  color: #fff;
  background: #d9534f;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
  color: #000;
  background: #eeeeee;
}
.bootstrap-switch .bootstrap-switch-label {
  text-align: center;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 100;
  color: #333;
  background: #fff;
}
.bootstrap-switch span::before {
  content: "\200b";
}
.bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.bootstrap-switch .bootstrap-switch-handle-off {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
  position: absolute !important;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
}
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
  padding: 6px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate {
  cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
  -webkit-transition: margin-left 0.5s;
  -o-transition: margin-left 0.5s;
  transition: margin-left 0.5s;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-focused {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

/*!
   * Bootstrap Datetime Picker v4.17.49
   * Copyright 2015-2020 Jonathan Peterson
   * Licensed under MIT (https://github.com/Eonasdan/bootstrap-datetimepicker/blob/master/LICENSE)
   */
.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}
@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: 0.8em;
  height: 20px;
  line-height: 20px;
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #eeeeee;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #337ab7;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table td span:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*
 * bootstrap-tagsinput v0.8.0
 * 
 */

.bootstrap-tagsinput {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  display: inline-block;
  padding: 4px 6px;
  color: #555;
  vertical-align: middle;
  border-radius: 4px;
  max-width: 100%;
  line-height: 22px;
  cursor: text;
}
.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0 6px;
  margin: 0;
  width: auto;
  max-width: inherit;
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
  color: #777;
  opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput input:focus {
  border: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
  margin-right: 2px;
  color: white;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "x";
  padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
.showSweetAlert {
  animation: showSweetAlert 0.3s;
}
.showSweetAlert[data-animation=none] {
  animation: none;
}
.showSweetAlert[data-animation=slide-from-top] {
  animation: slideFromTop 0.3s;
}
.showSweetAlert[data-animation=slide-from-bottom] {
  animation: slideFromBottom 0.3s;
}
.hideSweetAlert {
  animation: hideSweetAlert 0.3s;
}
.hideSweetAlert[data-animation=none] {
  animation: none;
}
.hideSweetAlert[data-animation=slide-from-top] {
  animation: slideToTop 0.3s;
}
.hideSweetAlert[data-animation=slide-from-bottom] {
  animation: slideToBottom 0.3s;
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
.animateSuccessTip {
  animation: animateSuccessTip 0.75s;
}
.animateSuccessLong {
  animation: animateSuccessLong 0.75s;
}
.sa-icon.sa-success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in;
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
.animateErrorIcon {
  animation: animateErrorIcon 0.5s;
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.animateXMark {
  animation: animateXMark 0.5s;
}
@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
.pulseWarning {
  animation: pulseWarning 0.75s infinite alternate;
}
@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate;
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}
.sweet-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 1040;
}
.sweet-alert {
  background-color: #ffffff;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 2000;
}
@media all and (max-width: 767px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert .form-group {
  display: none;
}
.sweet-alert .form-group .sa-input-error {
  display: none;
}
.sweet-alert.show-input .form-group {
  display: block;
}
.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}
.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: -9px;
  opacity: 0;
  visibility: hidden;
}
.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default;
}
.sweet-alert button.confirm[disabled] {
  color: transparent;
}
.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 50%;
  margin: 20px auto;
  position: relative;
  box-sizing: content-box;
}
.sweet-alert .sa-icon.sa-error {
  border-color: #d43f3a;
}
.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}
.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #d9534f;
  display: block;
  top: 37px;
  border-radius: 2px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  transform: rotate(45deg);
  left: 17px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  transform: rotate(-45deg);
  right: 16px;
}
.sweet-alert .sa-icon.sa-warning {
  border-color: #eea236;
}
.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #f0ad4e;
}
.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #f0ad4e;
}
.sweet-alert .sa-icon.sa-info {
  border-color: #46b8da;
}
.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #5bc0de;
}
.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #5bc0de;
}
.sweet-alert .sa-icon.sa-success {
  border-color: #4cae4c;
}
.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
  content: '';
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: #ffffff;
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
  transform-origin: 60px 60px;
}
.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0px 60px;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(92, 184, 92, 0.2);
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: #ffffff;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #5cb85c;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}
.sweet-alert .btn-default:focus {
  border-color: #cccccc;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(204, 204, 204, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(204, 204, 204, 0.6);
}
.sweet-alert .btn-success:focus {
  border-color: #4cae4c;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 174, 76, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 174, 76, 0.6);
}
.sweet-alert .btn-info:focus {
  border-color: #46b8da;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 184, 218, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 184, 218, 0.6);
}
.sweet-alert .btn-danger:focus {
  border-color: #d43f3a;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 63, 58, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 63, 58, 0.6);
}
.sweet-alert .btn-warning:focus {
  border-color: #eea236;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(238, 162, 54, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(238, 162, 54, 0.6);
}
.sweet-alert button::-moz-focus-inner {
  border: 0;
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-ball-fall.la-dark {
  color: #333;
}
.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-fall {
  width: 54px;
  height: 18px;
}
.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite;
}
.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms;
}
.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms;
}
.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms;
}
.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}
.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}
.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}
.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}
.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}
.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@-moz-keyframes ball-fall {
  0% {
    opacity: 0;
    -moz-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@-o-keyframes ball-fall {
  0% {
    opacity: 0;
    -o-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -o-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%);
  }
}

.bootstrap-dialog {
  /* dialog types */
  /**
     * Icon animation
     * Copied from font-awesome: http://fontawesome.io/
     **/
  /** End of icon animation **/
}
.bootstrap-dialog .modal-header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.bootstrap-dialog .bootstrap-dialog-title {
  color: #fff;
  display: inline-block;
  font-size: 16px;
}
.bootstrap-dialog .bootstrap-dialog-message {
  font-size: 14px;
}
.bootstrap-dialog .bootstrap-dialog-button-icon {
  margin-right: 3px;
}
.bootstrap-dialog .bootstrap-dialog-close-button {
  font-size: 20px;
  float: right;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.bootstrap-dialog .bootstrap-dialog-close-button:hover {
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
.bootstrap-dialog.type-default .modal-header {
  background-color: #ffffff;
}
.bootstrap-dialog.type-default .bootstrap-dialog-title {
  color: #333;
}
.bootstrap-dialog.type-info .modal-header {
  background-color: #5bc0de;
}
.bootstrap-dialog.type-primary .modal-header {
  background-color: #337ab7;
}
.bootstrap-dialog.type-success .modal-header {
  background-color: #5cb85c;
}
.bootstrap-dialog.type-warning .modal-header {
  background-color: #f0ad4e;
}
.bootstrap-dialog.type-danger .modal-header {
  background-color: #d9534f;
}
.bootstrap-dialog.size-large .bootstrap-dialog-title {
  font-size: 24px;
}
.bootstrap-dialog.size-large .bootstrap-dialog-close-button {
  font-size: 30px;
}
.bootstrap-dialog.size-large .bootstrap-dialog-message {
  font-size: 18px;
}
.bootstrap-dialog .icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

/*!
 * Cropper.js v0.7.2
 * https://github.com/fengyuanchen/cropperjs
 *
 * Copyright (c) 2015-2016 Fengyuan Chen
 * Released under the MIT license
 *
 * Date: 2016-06-08T12:25:05.932Z
 */
.cropper-container {
  font-size: 0;
  line-height: 0;

  position: relative;

  -ms-user-select: none;
      user-select: none;

  direction: ltr !important;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.cropper-container img {
  display: block;

  width: 100%;
  min-width: 0 !important;
  max-width: none !important;
  height: 100%;
  min-height: 0 !important;
  max-height: none !important;

  image-orientation: 0deg !important;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cropper-wrap-box {
  overflow: hidden;
}

.cropper-drag-box {
  opacity: 0;
  background-color: #fff;
}

.cropper-modal {
  opacity: .5;
  background-color: #000;
}

.cropper-view-box {
  display: block;
  overflow: hidden;

  width: 100%;
  height: 100%;

  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, .75);
}

.cropper-dashed {
  position: absolute;

  display: block;

  opacity: .5;
  border: 0 dashed #eee;
}

.cropper-dashed.dashed-h {
  top: 33.33333%;
  left: 0;

  width: 100%;
  height: 33.33333%;

  border-top-width: 1px;
  border-bottom-width: 1px;
}

.cropper-dashed.dashed-v {
  top: 0;
  left: 33.33333%;

  width: 33.33333%;
  height: 100%;

  border-right-width: 1px;
  border-left-width: 1px;
}

.cropper-center {
  position: absolute;
  top: 50%;
  left: 50%;

  display: block;

  width: 0;
  height: 0;

  opacity: .75;
}

.cropper-center:before,
.cropper-center:after {
  position: absolute;

  display: block;

  content: ' ';

  background-color: #eee;
}

.cropper-center:before {
  top: 0;
  left: -3px;

  width: 7px;
  height: 1px;
}

.cropper-center:after {
  top: -3px;
  left: 0;

  width: 1px;
  height: 7px;
}

.cropper-face,
.cropper-line,
.cropper-point {
  position: absolute;

  display: block;

  width: 100%;
  height: 100%;

  opacity: .1;
}

.cropper-face {
  top: 0;
  left: 0;

  background-color: #fff;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  top: 0;
  right: -3px;

  width: 5px;

  cursor: e-resize;
}

.cropper-line.line-n {
  top: -3px;
  left: 0;

  height: 5px;

  cursor: n-resize;
}

.cropper-line.line-w {
  top: 0;
  left: -3px;

  width: 5px;

  cursor: w-resize;
}

.cropper-line.line-s {
  bottom: -3px;
  left: 0;

  height: 5px;

  cursor: s-resize;
}

.cropper-point {
  width: 5px;
  height: 5px;

  opacity: .75;
  background-color: #39f;
}

.cropper-point.point-e {
  top: 50%;
  right: -3px;

  margin-top: -3px;

  cursor: e-resize;
}

.cropper-point.point-n {
  top: -3px;
  left: 50%;

  margin-left: -3px;

  cursor: n-resize;
}

.cropper-point.point-w {
  top: 50%;
  left: -3px;

  margin-top: -3px;

  cursor: w-resize;
}

.cropper-point.point-s {
  bottom: -3px;
  left: 50%;

  margin-left: -3px;

  cursor: s-resize;
}

.cropper-point.point-ne {
  top: -3px;
  right: -3px;

  cursor: ne-resize;
}

.cropper-point.point-nw {
  top: -3px;
  left: -3px;

  cursor: nw-resize;
}

.cropper-point.point-sw {
  bottom: -3px;
  left: -3px;

  cursor: sw-resize;
}

.cropper-point.point-se {
  right: -3px;
  bottom: -3px;

  width: 20px;
  height: 20px;

  cursor: se-resize;

  opacity: 1;
}

.cropper-point.point-se:before {
  position: absolute;
  right: -50%;
  bottom: -50%;

  display: block;

  width: 200%;
  height: 200%;

  content: ' ';

  opacity: 0;
  background-color: #39f;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    width: 15px;
    height: 15px;
  }
}

@media (min-width: 992px) {
  .cropper-point.point-se {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 1200px) {
  .cropper-point.point-se {
    width: 5px;
    height: 5px;

    opacity: .75;
  }
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
  position: absolute;

  display: block;

  width: 0;
  height: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

@font-face{font-family:"summernote";font-style:normal;font-weight:normal;src:url("./font/summernote.eot?4c7e83314b68cfa6a0d18a8b4690044b");src:url("./font/summernote.eot?4c7e83314b68cfa6a0d18a8b4690044b#iefix") format("embedded-opentype"),url("./font/summernote.woff?4c7e83314b68cfa6a0d18a8b4690044b") format("woff"),url("./font/summernote.ttf?4c7e83314b68cfa6a0d18a8b4690044b") format("truetype")}[class^="note-icon-"]:before,[class*=" note-icon-"]:before{display:inline-block;font:normal normal normal 14px summernote;font-size:inherit;-webkit-font-smoothing:antialiased;text-decoration:inherit;text-rendering:auto;text-transform:none;vertical-align:middle;speak:none;-moz-osx-font-smoothing:grayscale}.note-icon-align-center:before,.note-icon-align-indent:before,.note-icon-align-justify:before,.note-icon-align-left:before,.note-icon-align-outdent:before,.note-icon-align-right:before,.note-icon-align:before,.note-icon-arrow-circle-down:before,.note-icon-arrow-circle-left:before,.note-icon-arrow-circle-right:before,.note-icon-arrow-circle-up:before,.note-icon-arrows-alt:before,.note-icon-arrows-h:before,.note-icon-arrows-v:before,.note-icon-bold:before,.note-icon-caret:before,.note-icon-chain-broken:before,.note-icon-circle:before,.note-icon-close:before,.note-icon-code:before,.note-icon-col-after:before,.note-icon-col-before:before,.note-icon-col-remove:before,.note-icon-eraser:before,.note-icon-font:before,.note-icon-frame:before,.note-icon-italic:before,.note-icon-link:before,.note-icon-magic:before,.note-icon-menu-check:before,.note-icon-minus:before,.note-icon-orderedlist:before,.note-icon-pencil:before,.note-icon-picture:before,.note-icon-question:before,.note-icon-redo:before,.note-icon-row-above:before,.note-icon-row-below:before,.note-icon-row-remove:before,.note-icon-special-character:before,.note-icon-square:before,.note-icon-strikethrough:before,.note-icon-subscript:before,.note-icon-summernote:before,.note-icon-superscript:before,.note-icon-table:before,.note-icon-text-height:before,.note-icon-trash:before,.note-icon-underline:before,.note-icon-undo:before,.note-icon-unorderedlist:before,.note-icon-video:before{display:inline-block;font-family:"summernote";font-style:normal;font-weight:normal;text-decoration:inherit}.note-icon-align-center:before{content:"\f101"}.note-icon-align-indent:before{content:"\f102"}.note-icon-align-justify:before{content:"\f103"}.note-icon-align-left:before{content:"\f104"}.note-icon-align-outdent:before{content:"\f105"}.note-icon-align-right:before{content:"\f106"}.note-icon-align:before{content:"\f107"}.note-icon-arrow-circle-down:before{content:"\f108"}.note-icon-arrow-circle-left:before{content:"\f109"}.note-icon-arrow-circle-right:before{content:"\f10a"}.note-icon-arrow-circle-up:before{content:"\f10b"}.note-icon-arrows-alt:before{content:"\f10c"}.note-icon-arrows-h:before{content:"\f10d"}.note-icon-arrows-v:before{content:"\f10e"}.note-icon-bold:before{content:"\f10f"}.note-icon-caret:before{content:"\f110"}.note-icon-chain-broken:before{content:"\f111"}.note-icon-circle:before{content:"\f112"}.note-icon-close:before{content:"\f113"}.note-icon-code:before{content:"\f114"}.note-icon-col-after:before{content:"\f115"}.note-icon-col-before:before{content:"\f116"}.note-icon-col-remove:before{content:"\f117"}.note-icon-eraser:before{content:"\f118"}.note-icon-font:before{content:"\f119"}.note-icon-frame:before{content:"\f11a"}.note-icon-italic:before{content:"\f11b"}.note-icon-link:before{content:"\f11c"}.note-icon-magic:before{content:"\f11d"}.note-icon-menu-check:before{content:"\f11e"}.note-icon-minus:before{content:"\f11f"}.note-icon-orderedlist:before{content:"\f120"}.note-icon-pencil:before{content:"\f121"}.note-icon-picture:before{content:"\f122"}.note-icon-question:before{content:"\f123"}.note-icon-redo:before{content:"\f124"}.note-icon-row-above:before{content:"\f125"}.note-icon-row-below:before{content:"\f126"}.note-icon-row-remove:before{content:"\f127"}.note-icon-special-character:before{content:"\f128"}.note-icon-square:before{content:"\f129"}.note-icon-strikethrough:before{content:"\f12a"}.note-icon-subscript:before{content:"\f12b"}.note-icon-summernote:before{content:"\f12c"}.note-icon-superscript:before{content:"\f12d"}.note-icon-table:before{content:"\f12e"}.note-icon-text-height:before{content:"\f12f"}.note-icon-trash:before{content:"\f130"}.note-icon-underline:before{content:"\f131"}.note-icon-undo:before{content:"\f132"}.note-icon-unorderedlist:before{content:"\f133"}.note-icon-video:before{content:"\f134"}.note-editor{position:relative}.note-editor .note-dropzone{position:absolute;z-index:100;display:none;color:#87cefa;background-color:#fff;opacity:.95}.note-editor .note-dropzone .note-dropzone-message{display:table-cell;font-size:28px;font-weight:700;text-align:center;vertical-align:middle}.note-editor .note-dropzone.hover{color:#098ddf}.note-editor.dragover .note-dropzone{display:table}.note-editor .note-editing-area{position:relative}.note-editor .note-editing-area .note-editable{outline:0}.note-editor .note-editing-area .note-editable sup{vertical-align:super}.note-editor .note-editing-area .note-editable sub{vertical-align:sub}.note-editor .note-editing-area img.note-float-left{margin-right:10px}.note-editor .note-editing-area img.note-float-right{margin-left:10px}.note-editor.note-frame{border:1px solid #a9a9a9}.note-editor.note-frame.codeview .note-editing-area .note-editable{display:none}.note-editor.note-frame.codeview .note-editing-area .note-codable{display:block}.note-editor.note-frame .note-editing-area{overflow:hidden}.note-editor.note-frame .note-editing-area .note-editable{padding:10px;overflow:auto;color:#000;word-wrap:break-word;background-color:#fff}.note-editor.note-frame .note-editing-area .note-editable[contenteditable="false"]{background-color:#e5e5e5}.note-editor.note-frame .note-editing-area .note-codable{display:none;width:100%;padding:10px;margin-bottom:0;font-family:Menlo,Monaco,monospace,sans-serif;font-size:14px;color:#ccc;background-color:#222;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;box-shadow:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;resize:none}.note-editor.note-frame.fullscreen{position:fixed;top:0;left:0;z-index:1050;width:100%!important}.note-editor.note-frame.fullscreen .note-editable{background-color:#fff}.note-editor.note-frame.fullscreen .note-resizebar{display:none}.note-editor.note-frame .note-status-output{display:block;width:100%;height:20px;margin-bottom:0;font-size:14px;line-height:1.42857143;color:#000;border:0;border-top:1px solid #e2e2e2}.note-editor.note-frame .note-status-output:empty{height:0;border-top:0 solid transparent}.note-editor.note-frame .note-status-output .pull-right{float:right!important}.note-editor.note-frame .note-status-output .text-muted{color:#777}.note-editor.note-frame .note-status-output .text-primary{color:#286090}.note-editor.note-frame .note-status-output .text-success{color:#3c763d}.note-editor.note-frame .note-status-output .text-info{color:#31708f}.note-editor.note-frame .note-status-output .text-warning{color:#8a6d3b}.note-editor.note-frame .note-status-output .text-danger{color:#a94442}.note-editor.note-frame .note-status-output .alert{padding:7px 10px 2px 10px;margin:-7px 0 0 0;color:#000;background-color:#f5f5f5;border-radius:0}.note-editor.note-frame .note-status-output .alert .note-icon{margin-right:5px}.note-editor.note-frame .note-status-output .alert-success{color:#3c763d!important;background-color:#dff0d8!important}.note-editor.note-frame .note-status-output .alert-info{color:#31708f!important;background-color:#d9edf7!important}.note-editor.note-frame .note-status-output .alert-warning{color:#8a6d3b!important;background-color:#fcf8e3!important}.note-editor.note-frame .note-status-output .alert-danger{color:#a94442!important;background-color:#f2dede!important}.note-editor.note-frame .note-statusbar{background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.note-editor.note-frame .note-statusbar .note-resizebar{width:100%;height:9px;padding-top:1px;cursor:ns-resize}.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar{width:20px;margin:1px auto;border-top:1px solid #a9a9a9}.note-editor.note-frame .note-statusbar.locked .note-resizebar{cursor:default}.note-editor.note-frame .note-statusbar.locked .note-resizebar .note-icon-bar{display:none}.note-editor.note-frame .note-placeholder{padding:10px}.note-popover.popover{max-width:none}.note-popover.popover .popover-content a{display:inline-block;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle}.note-popover.popover .arrow{left:20px!important}.note-toolbar{position:relative;z-index:500}.note-popover .popover-content,.panel-heading.note-toolbar{padding:0 0 5px 5px;margin:0}.note-popover .popover-content>.btn-group,.panel-heading.note-toolbar>.btn-group{margin-top:5px;margin-right:5px;margin-left:0}.note-popover .popover-content .btn-group .note-table,.panel-heading.note-toolbar .btn-group .note-table{min-width:0;padding:5px}.note-popover .popover-content .btn-group .note-table .note-dimension-picker,.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker{font-size:18px}.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher,.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher{position:absolute!important;z-index:3;width:10em;height:10em;cursor:pointer}.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted,.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted{position:relative!important;z-index:1;width:5em;height:5em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat}.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted,.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted{position:absolute!important;z-index:2;width:1em;height:1em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat}.note-popover .popover-content .note-style .dropdown-style blockquote,.panel-heading.note-toolbar .note-style .dropdown-style blockquote,.note-popover .popover-content .note-style .dropdown-style pre,.panel-heading.note-toolbar .note-style .dropdown-style pre{padding:5px 10px;margin:0}.note-popover .popover-content .note-style .dropdown-style h1,.panel-heading.note-toolbar .note-style .dropdown-style h1,.note-popover .popover-content .note-style .dropdown-style h2,.panel-heading.note-toolbar .note-style .dropdown-style h2,.note-popover .popover-content .note-style .dropdown-style h3,.panel-heading.note-toolbar .note-style .dropdown-style h3,.note-popover .popover-content .note-style .dropdown-style h4,.panel-heading.note-toolbar .note-style .dropdown-style h4,.note-popover .popover-content .note-style .dropdown-style h5,.panel-heading.note-toolbar .note-style .dropdown-style h5,.note-popover .popover-content .note-style .dropdown-style h6,.panel-heading.note-toolbar .note-style .dropdown-style h6,.note-popover .popover-content .note-style .dropdown-style p,.panel-heading.note-toolbar .note-style .dropdown-style p{padding:0;margin:0}.note-popover .popover-content .note-color-all .dropdown-menu,.panel-heading.note-toolbar .note-color-all .dropdown-menu{min-width:337px}.note-popover .popover-content .note-color .dropdown-toggle,.panel-heading.note-toolbar .note-color .dropdown-toggle{width:20px;padding-left:5px}.note-popover .popover-content .note-color .dropdown-menu .note-palette,.panel-heading.note-toolbar .note-color .dropdown-menu .note-palette{display:inline-block;width:160px;margin:0}.note-popover .popover-content .note-color .dropdown-menu .note-palette:first-child,.panel-heading.note-toolbar .note-color .dropdown-menu .note-palette:first-child{margin:0 5px}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-palette-title,.panel-heading.note-toolbar .note-color .dropdown-menu .note-palette .note-palette-title{margin:2px 7px;font-size:12px;text-align:center;border-bottom:1px solid #eee}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-reset,.panel-heading.note-toolbar .note-color .dropdown-menu .note-palette .note-color-reset,.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-select,.panel-heading.note-toolbar .note-color .dropdown-menu .note-palette .note-color-select{width:100%;padding:0 3px;margin:3px;font-size:11px;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-row,.panel-heading.note-toolbar .note-color .dropdown-menu .note-palette .note-color-row{height:20px}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-reset:hover,.panel-heading.note-toolbar .note-color .dropdown-menu .note-palette .note-color-reset:hover{background:#eee}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-select-btn,.panel-heading.note-toolbar .note-color .dropdown-menu .note-palette .note-color-select-btn{display:none}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-holder-custom .note-color-btn,.panel-heading.note-toolbar .note-color .dropdown-menu .note-palette .note-holder-custom .note-color-btn{border:1px solid #eee}.note-popover .popover-content .note-para .dropdown-menu,.panel-heading.note-toolbar .note-para .dropdown-menu{min-width:216px;padding:5px}.note-popover .popover-content .note-para .dropdown-menu>div:first-child,.panel-heading.note-toolbar .note-para .dropdown-menu>div:first-child{margin-right:5px}.note-popover .popover-content .dropdown-menu,.panel-heading.note-toolbar .dropdown-menu{min-width:90px}.note-popover .popover-content .dropdown-menu.right,.panel-heading.note-toolbar .dropdown-menu.right{right:0;left:auto}.note-popover .popover-content .dropdown-menu.right::before,.panel-heading.note-toolbar .dropdown-menu.right::before{right:9px;left:auto!important}.note-popover .popover-content .dropdown-menu.right::after,.panel-heading.note-toolbar .dropdown-menu.right::after{right:10px;left:auto!important}.note-popover .popover-content .dropdown-menu.note-check li a i,.panel-heading.note-toolbar .dropdown-menu.note-check li a i{color:deepskyblue;visibility:hidden}.note-popover .popover-content .dropdown-menu.note-check li a.checked i,.panel-heading.note-toolbar .dropdown-menu.note-check li a.checked i{visibility:visible}.note-popover .popover-content .note-fontsize-10,.panel-heading.note-toolbar .note-fontsize-10{font-size:10px}.note-popover .popover-content .note-color-palette,.panel-heading.note-toolbar .note-color-palette{line-height:1}.note-popover .popover-content .note-color-palette div .note-color-btn,.panel-heading.note-toolbar .note-color-palette div .note-color-btn{width:20px;height:20px;padding:0;margin:0;border:1px solid #fff}.note-popover .popover-content .note-color-palette div .note-color-btn:hover,.panel-heading.note-toolbar .note-color-palette div .note-color-btn:hover{border:1px solid #000}.note-dialog>div{display:none}.note-dialog .form-group{margin-right:0;margin-left:0}.note-dialog .note-modal-form{margin:0}.note-dialog .note-image-dialog .note-dropzone{min-height:100px;margin-bottom:10px;font-size:30px;line-height:4;color:lightgray;text-align:center;border:4px dashed lightgray}@-moz-document url-prefix(){.note-image-input{height:auto}}.note-placeholder{position:absolute;display:none;color:gray}.note-handle .note-control-selection{position:absolute;display:none;border:1px solid #000}.note-handle .note-control-selection>div{position:absolute}.note-handle .note-control-selection .note-control-selection-bg{width:100%;height:100%;background-color:#000;-webkit-opacity:.3;-khtml-opacity:.3;-moz-opacity:.3;opacity:.3;-ms-filter:alpha(opacity=30);filter:alpha(opacity=30)}.note-handle .note-control-selection .note-control-handle{width:7px;height:7px;border:1px solid #000}.note-handle .note-control-selection .note-control-holder{width:7px;height:7px;border:1px solid #000}.note-handle .note-control-selection .note-control-sizing{width:7px;height:7px;background-color:#fff;border:1px solid #000}.note-handle .note-control-selection .note-control-nw{top:-5px;left:-5px;border-right:0;border-bottom:0}.note-handle .note-control-selection .note-control-ne{top:-5px;right:-5px;border-bottom:0;border-left:none}.note-handle .note-control-selection .note-control-sw{bottom:-5px;left:-5px;border-top:0;border-right:0}.note-handle .note-control-selection .note-control-se{right:-5px;bottom:-5px;cursor:se-resize}.note-handle .note-control-selection .note-control-se.note-control-holder{cursor:default;border-top:0;border-left:none}.note-handle .note-control-selection .note-control-selection-info{right:0;bottom:0;padding:5px;margin:5px;font-size:12px;color:#fff;background-color:#000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-opacity:.7;-khtml-opacity:.7;-moz-opacity:.7;opacity:.7;-ms-filter:alpha(opacity=70);filter:alpha(opacity=70)}.note-hint-popover{min-width:100px;padding:2px}.note-hint-popover .popover-content{max-height:150px;padding:3px;overflow:auto}.note-hint-popover .popover-content .note-hint-group .note-hint-item{display:block!important;padding:3px}.note-hint-popover .popover-content .note-hint-group .note-hint-item.active,.note-hint-popover .popover-content .note-hint-group .note-hint-item:hover{display:block;clear:both;font-weight:400;line-height:1.4;color:#fff;text-decoration:none;white-space:nowrap;cursor:pointer;background-color:#428bca;outline:0}
/*! quickselect - v2.2.0 - 2016-11-30
* http://quick-select.wstone.io/
* Copyright (c) 2016 Will Stone; Licensed MIT */
.quickselect__more {
	position: relative;
}
.quickselect__select {
	-webkit-appearance: menulist-button; /* Fix for Chrome's select box height bug */
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	color: #333;
	border: 0;
}
.quickselect__select:not(:disabled) {
	cursor: pointer;
}
.quickselect__select.quickselect__hidden {
	position: absolute;
	width: 0;
	height: 0;
	visibility: hidden;
	padding: 0;
}

/**
 * Datatable specific presto styles
 *
 * Changelog 002 :
 *  - Change processing styling (move inside search header)
 *  - Add min height to pagination to avois content jumping
 *  - Pods filters container and elements styles
 *
 */
div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0.5em;
}

div.dataTables_wrapper div.dataTables_paginate {
    text-align: right;
    min-height: 64px;
}

.pagination .first {
    position: relative;
    margin-left: 15px;
}

.pagination .previous::before, .pagination .first::before {
    position: absolute;
    font-family: 'FontAwesome';
    content: '\f104';
    font-size: 13px;
    left: -1px;
    top: 3px;
}

.pagination .first::before {
    content: '\f100';
    left: -2px;
}

.pagination .previous {
    position: relative;
    font-weight: 700;
    margin-left: 10px;
}

.pagination .next, .pagination .last {
    position: relative;
    margin-right: 10px;
}

.pagination .next {
    font-weight: 700;
}

.pagination .next::after, .pagination .last::after {
    position: absolute;
    font-family: 'FontAwesome';
    content: '\f105';
    font-size: 13px;
    right: -1px;
    top: 3px;
}

.pagination .last::after {
    content: '\f101';
    right: -2px;
}

div.dataTables_wrapper div.mdl-grid.dt-table {
    padding-top: 0;
    padding-bottom: 0;
}

div.dataTables_wrapper div.mdl-grid.dt-table > div.mdl-cell {
    margin-top: 0;
    margin-bottom: 0;
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
    padding-right: 30px;
}

table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
    outline: none;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative;
}

table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    position: absolute;
    bottom: 11px;
    display: block;
    opacity: 0.3;
    font-size: 1.3em;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
    right: 1em;
    content: "\2191";
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
    right: 0.5em;
    content: "\2193";
}

table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
    opacity: 1;
}

table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    opacity: 0;
}

/**
override
------------------------------
*/

div.dataTables_wrapper div.dataTables_processing {
    position: absolute;
    z-index: 600;
    top: 5px;
    right: 6px;
    background: transparent;
}

div.dataTables_wrapper div.dataTables_processing i.processing-loading {
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
}

table.dataTable > thead > tr > th {
    font-weight: bold;
}

table.dataTable > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 10px 15px;
}

div.dt-search-input-container .hs-input {
    height: 35px;
}

.dt-search-input-container {
    position: relative;
    float: right;
    width: 350px;
}

.dt-search-input-container .hs-reset:before, .hs-reset:after {
    position: absolute;
    left: 14px;
    top: 10px;
}

.dt-actions-container {
    width: calc(100% - 360px);
    float: left;
    font-size: 14px;
    color: #fff;
}

.dt-actions-container a, .dt-actions-container a:hover, .dt-actions-container a:visited {
    color: #fff;
}

.dt-actions-container .active {
    font-weight: bold;
}

.dt-top-container {
    padding: 15px 5px 20px 5px;
    border-top: 1px solid #f4f4f4;
    border-bottom: 5px solid #f4f4f4;
}

.dt-action-header.action-header {
    margin-bottom: 0;
    position: sticky;
    top: 0;
}

/** Allow header to stick on the top in chrome */
@media (min-width: 768px) {
    table.dataTable thead.dt-header th {
        position: sticky;
        top: 85px;
        z-index: 1000;
    }
}

.focused .hs-input + .hs-reset:before, .focused .hs-input + .hs-reset:after {
    position: absolute;
    left: 14px;
    top: 10px;
}

div.dataTables_wrapper div.dataTables_info:empty {
    border: none;
}

div.dataTables_wrapper div.dataTables_info {
    white-space: nowrap;
    border: 1px solid #EEE;
    display: inline-block;
    padding: 7px 30px;
    font-size: 12px;
    margin-left: 15px;
    margin-top: 5px;
    margin-bottom: 15px;
}

/** Selectable rows background colors */
.table-striped > tbody > tr:nth-of-type(odd).selected {
    background-color: #d4ecff;
}

.table-striped > tbody > tr:nth-of-type(even).selected {
    background-color: #e0f1ff;
}


/** Presto pods datatable operations */
.dt-selectable-rows-operations-container {
    z-index: 1001;
    position: absolute;
    margin-top: 15px;
    margin-left: 15px;
}

.dt-selectable-rows-operations-container .checkbox {
    margin-top: 2px;
    margin-bottom: 2px;
}

.dt-selectable-rows-operations-container label.active {
    font-weight: bold;
    background-color: #2196F3;
    color: #fff;
}

.dt-selectable-rows-operations-container label.active span.badge {
    background-color: #fff;
    color: #2196F3;
}

.dt-selectable-rows-operations-container label:not(.active) {
    font-weight: normal;
    background-color: #fff;
    color: #2196F3;
}

.dt-selectable-rows-operations-container label:not(.active) span {
    color: #2196F3;
}

.dt-selectable-rows-operations-container label:not(.active) span.badge {
    color: #fff;
}

.dt-selectable-rows-operations-container a.js-selectable-rows-operation i.fa {
    color: #2196F3;
}

.dt-selectable-rows-operations-container a.js-selectable-rows-operation i.fa.destructive {
    color: #f44336;
}

/**
 * Pods container datatable & filters
 */

.dt-toggle-filter {
    float: right;
    height: 34px;
}

.dt-toggle-filter.open {

}

.dt-pods-container {
    display: flex;
    justify-content: space-between;
}

.dt-pods-container .dt-pods-table {
    flex: 1;
}

.dt-pods-container .action-header {
    margin-bottom: 0;
    padding-bottom: 0;
}

.dt-pods-container .dt-pods-filters {
    background: #fff;
    border-left: 2px solid #f8f8f8;
    width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.dt-pods-container .dt-pods-filters h2 {
    font-size: 15px;
    margin: 0;
    color: #000;
    font-weight: 500;
    line-height: 1.1;
    margin-left: 10px;
}

.dt-pods-container .dt-pods-filters .actions {
    padding: 10px;
    display: flex;
    justify-content: flex-end;
}

.dt-pods-container .dt-pods-filters .actions div {
    margin-left: 5px;
}

.dt-pods-container .dt-pods-filters .filter-container {
    margin-bottom: 25px;
}

.dt-pods-container .dt-pods-filters .filter-container .header {
    background: #f4f4f4;
    padding: 10px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.dt-pods-container .dt-pods-filters .filter-container .body {
    padding: 5px;
}

.dt-pods-container .dt-pods-filters .filter-container h3 {
    font-size: 13px;
    margin: 0;
    #color: #848484;
}

.dt-pods-container .dt-pods-filters .filter-container .date-range {
    display: flex;
    align-items: center;
}

.dt-pods-container .dt-pods-filters .filter-container .date-range .datepicker {
    flex: 2;
    margin-left: 10px;
}

.dt-pods-container .dt-pods-filters .filter-container .date-helpers {
    display: flex;
    justify-content: space-evenly;
}

.dt-pods-container .dt-pods-filters .filter-container .date-helpers a{
    cursor: pointer;
}

.dt-pods-container .select2-container {
    width: 100% !important;
}


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('./fontawesome-webfont.eot?v=4.7.0');
  src: url('./fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('./fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('./fontawesome-webfont.woff?v=4.7.0') format('woff'), url('./fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('./fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

@charset "UTF-8";
/*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face { font-family: "Ionicons"; src: url("/src/backend/fonts/ionicons.eot?v=2.0.0"); src: url("/src/backend/fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("/src/backend/fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("/src/backend/fonts/ionicons.woff?v=2.0.0") format("woff"), url("/src/backend/fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg"); font-weight: normal; font-style: normal; }
.ion, .ionicons, .ion-alert:before, .ion-alert-circled:before, .ion-android-add:before, .ion-android-add-circle:before, .ion-android-alarm-clock:before, .ion-android-alert:before, .ion-android-apps:before, .ion-android-archive:before, .ion-android-arrow-back:before, .ion-android-arrow-down:before, .ion-android-arrow-dropdown:before, .ion-android-arrow-dropdown-circle:before, .ion-android-arrow-dropleft:before, .ion-android-arrow-dropleft-circle:before, .ion-android-arrow-dropright:before, .ion-android-arrow-dropright-circle:before, .ion-android-arrow-dropup:before, .ion-android-arrow-dropup-circle:before, .ion-android-arrow-forward:before, .ion-android-arrow-up:before, .ion-android-attach:before, .ion-android-bar:before, .ion-android-bicycle:before, .ion-android-boat:before, .ion-android-bookmark:before, .ion-android-bulb:before, .ion-android-bus:before, .ion-android-calendar:before, .ion-android-call:before, .ion-android-camera:before, .ion-android-cancel:before, .ion-android-car:before, .ion-android-cart:before, .ion-android-chat:before, .ion-android-checkbox:before, .ion-android-checkbox-blank:before, .ion-android-checkbox-outline:before, .ion-android-checkbox-outline-blank:before, .ion-android-checkmark-circle:before, .ion-android-clipboard:before, .ion-android-close:before, .ion-android-cloud:before, .ion-android-cloud-circle:before, .ion-android-cloud-done:before, .ion-android-cloud-outline:before, .ion-android-color-palette:before, .ion-android-compass:before, .ion-android-contact:before, .ion-android-contacts:before, .ion-android-contract:before, .ion-android-create:before, .ion-android-delete:before, .ion-android-desktop:before, .ion-android-document:before, .ion-android-done:before, .ion-android-done-all:before, .ion-android-download:before, .ion-android-drafts:before, .ion-android-exit:before, .ion-android-expand:before, .ion-android-favorite:before, .ion-android-favorite-outline:before, .ion-android-film:before, .ion-android-folder:before, .ion-android-folder-open:before, .ion-android-funnel:before, .ion-android-globe:before, .ion-android-hand:before, .ion-android-hangout:before, .ion-android-happy:before, .ion-android-home:before, .ion-android-image:before, .ion-android-laptop:before, .ion-android-list:before, .ion-android-locate:before, .ion-android-lock:before, .ion-android-mail:before, .ion-android-map:before, .ion-android-menu:before, .ion-android-microphone:before, .ion-android-microphone-off:before, .ion-android-more-horizontal:before, .ion-android-more-vertical:before, .ion-android-navigate:before, .ion-android-notifications:before, .ion-android-notifications-none:before, .ion-android-notifications-off:before, .ion-android-open:before, .ion-android-options:before, .ion-android-people:before, .ion-android-person:before, .ion-android-person-add:before, .ion-android-phone-landscape:before, .ion-android-phone-portrait:before, .ion-android-pin:before, .ion-android-plane:before, .ion-android-playstore:before, .ion-android-print:before, .ion-android-radio-button-off:before, .ion-android-radio-button-on:before, .ion-android-refresh:before, .ion-android-remove:before, .ion-android-remove-circle:before, .ion-android-restaurant:before, .ion-android-sad:before, .ion-android-search:before, .ion-android-send:before, .ion-android-settings:before, .ion-android-share:before, .ion-android-share-alt:before, .ion-android-star:before, .ion-android-star-half:before, .ion-android-star-outline:before, .ion-android-stopwatch:before, .ion-android-subway:before, .ion-android-sunny:before, .ion-android-sync:before, .ion-android-textsms:before, .ion-android-time:before, .ion-android-train:before, .ion-android-unlock:before, .ion-android-upload:before, .ion-android-volume-down:before, .ion-android-volume-mute:before, .ion-android-volume-off:before, .ion-android-volume-up:before, .ion-android-walk:before, .ion-android-warning:before, .ion-android-watch:before, .ion-android-wifi:before, .ion-aperture:before, .ion-archive:before, .ion-arrow-down-a:before, .ion-arrow-down-b:before, .ion-arrow-down-c:before, .ion-arrow-expand:before, .ion-arrow-graph-down-left:before, .ion-arrow-graph-down-right:before, .ion-arrow-graph-up-left:before, .ion-arrow-graph-up-right:before, .ion-arrow-left-a:before, .ion-arrow-left-b:before, .ion-arrow-left-c:before, .ion-arrow-move:before, .ion-arrow-resize:before, .ion-arrow-return-left:before, .ion-arrow-return-right:before, .ion-arrow-right-a:before, .ion-arrow-right-b:before, .ion-arrow-right-c:before, .ion-arrow-shrink:before, .ion-arrow-swap:before, .ion-arrow-up-a:before, .ion-arrow-up-b:before, .ion-arrow-up-c:before, .ion-asterisk:before, .ion-at:before, .ion-backspace:before, .ion-backspace-outline:before, .ion-bag:before, .ion-battery-charging:before, .ion-battery-empty:before, .ion-battery-full:before, .ion-battery-half:before, .ion-battery-low:before, .ion-beaker:before, .ion-beer:before, .ion-bluetooth:before, .ion-bonfire:before, .ion-bookmark:before, .ion-bowtie:before, .ion-briefcase:before, .ion-bug:before, .ion-calculator:before, .ion-calendar:before, .ion-camera:before, .ion-card:before, .ion-cash:before, .ion-chatbox:before, .ion-chatbox-working:before, .ion-chatboxes:before, .ion-chatbubble:before, .ion-chatbubble-working:before, .ion-chatbubbles:before, .ion-checkmark:before, .ion-checkmark-circled:before, .ion-checkmark-round:before, .ion-chevron-down:before, .ion-chevron-left:before, .ion-chevron-right:before, .ion-chevron-up:before, .ion-clipboard:before, .ion-clock:before, .ion-close:before, .ion-close-circled:before, .ion-close-round:before, .ion-closed-captioning:before, .ion-cloud:before, .ion-code:before, .ion-code-download:before, .ion-code-working:before, .ion-coffee:before, .ion-compass:before, .ion-compose:before, .ion-connection-bars:before, .ion-contrast:before, .ion-crop:before, .ion-cube:before, .ion-disc:before, .ion-document:before, .ion-document-text:before, .ion-drag:before, .ion-earth:before, .ion-easel:before, .ion-edit:before, .ion-egg:before, .ion-eject:before, .ion-email:before, .ion-email-unread:before, .ion-erlenmeyer-flask:before, .ion-erlenmeyer-flask-bubbles:before, .ion-eye:before, .ion-eye-disabled:before, .ion-female:before, .ion-filing:before, .ion-film-marker:before, .ion-fireball:before, .ion-flag:before, .ion-flame:before, .ion-flash:before, .ion-flash-off:before, .ion-folder:before, .ion-fork:before, .ion-fork-repo:before, .ion-forward:before, .ion-funnel:before, .ion-gear-a:before, .ion-gear-b:before, .ion-grid:before, .ion-hammer:before, .ion-happy:before, .ion-happy-outline:before, .ion-headphone:before, .ion-heart:before, .ion-heart-broken:before, .ion-help:before, .ion-help-buoy:before, .ion-help-circled:before, .ion-home:before, .ion-icecream:before, .ion-image:before, .ion-images:before, .ion-information:before, .ion-information-circled:before, .ion-ionic:before, .ion-ios-alarm:before, .ion-ios-alarm-outline:before, .ion-ios-albums:before, .ion-ios-albums-outline:before, .ion-ios-americanfootball:before, .ion-ios-americanfootball-outline:before, .ion-ios-analytics:before, .ion-ios-analytics-outline:before, .ion-ios-arrow-back:before, .ion-ios-arrow-down:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-left:before, .ion-ios-arrow-right:before, .ion-ios-arrow-thin-down:before, .ion-ios-arrow-thin-left:before, .ion-ios-arrow-thin-right:before, .ion-ios-arrow-thin-up:before, .ion-ios-arrow-up:before, .ion-ios-at:before, .ion-ios-at-outline:before, .ion-ios-barcode:before, .ion-ios-barcode-outline:before, .ion-ios-baseball:before, .ion-ios-baseball-outline:before, .ion-ios-basketball:before, .ion-ios-basketball-outline:before, .ion-ios-bell:before, .ion-ios-bell-outline:before, .ion-ios-body:before, .ion-ios-body-outline:before, .ion-ios-bolt:before, .ion-ios-bolt-outline:before, .ion-ios-book:before, .ion-ios-book-outline:before, .ion-ios-bookmarks:before, .ion-ios-bookmarks-outline:before, .ion-ios-box:before, .ion-ios-box-outline:before, .ion-ios-briefcase:before, .ion-ios-briefcase-outline:before, .ion-ios-browsers:before, .ion-ios-browsers-outline:before, .ion-ios-calculator:before, .ion-ios-calculator-outline:before, .ion-ios-calendar:before, .ion-ios-calendar-outline:before, .ion-ios-camera:before, .ion-ios-camera-outline:before, .ion-ios-cart:before, .ion-ios-cart-outline:before, .ion-ios-chatboxes:before, .ion-ios-chatboxes-outline:before, .ion-ios-chatbubble:before, .ion-ios-chatbubble-outline:before, .ion-ios-checkmark:before, .ion-ios-checkmark-empty:before, .ion-ios-checkmark-outline:before, .ion-ios-circle-filled:before, .ion-ios-circle-outline:before, .ion-ios-clock:before, .ion-ios-clock-outline:before, .ion-ios-close:before, .ion-ios-close-empty:before, .ion-ios-close-outline:before, .ion-ios-cloud:before, .ion-ios-cloud-download:before, .ion-ios-cloud-download-outline:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloud-upload-outline:before, .ion-ios-cloudy:before, .ion-ios-cloudy-night:before, .ion-ios-cloudy-night-outline:before, .ion-ios-cloudy-outline:before, .ion-ios-cog:before, .ion-ios-cog-outline:before, .ion-ios-color-filter:before, .ion-ios-color-filter-outline:before, .ion-ios-color-wand:before, .ion-ios-color-wand-outline:before, .ion-ios-compose:before, .ion-ios-compose-outline:before, .ion-ios-contact:before, .ion-ios-contact-outline:before, .ion-ios-copy:before, .ion-ios-copy-outline:before, .ion-ios-crop:before, .ion-ios-crop-strong:before, .ion-ios-download:before, .ion-ios-download-outline:before, .ion-ios-drag:before, .ion-ios-email:before, .ion-ios-email-outline:before, .ion-ios-eye:before, .ion-ios-eye-outline:before, .ion-ios-fastforward:before, .ion-ios-fastforward-outline:before, .ion-ios-filing:before, .ion-ios-filing-outline:before, .ion-ios-film:before, .ion-ios-film-outline:before, .ion-ios-flag:before, .ion-ios-flag-outline:before, .ion-ios-flame:before, .ion-ios-flame-outline:before, .ion-ios-flask:before, .ion-ios-flask-outline:before, .ion-ios-flower:before, .ion-ios-flower-outline:before, .ion-ios-folder:before, .ion-ios-folder-outline:before, .ion-ios-football:before, .ion-ios-football-outline:before, .ion-ios-game-controller-a:before, .ion-ios-game-controller-a-outline:before, .ion-ios-game-controller-b:before, .ion-ios-game-controller-b-outline:before, .ion-ios-gear:before, .ion-ios-gear-outline:before, .ion-ios-glasses:before, .ion-ios-glasses-outline:before, .ion-ios-grid-view:before, .ion-ios-grid-view-outline:before, .ion-ios-heart:before, .ion-ios-heart-outline:before, .ion-ios-help:before, .ion-ios-help-empty:before, .ion-ios-help-outline:before, .ion-ios-home:before, .ion-ios-home-outline:before, .ion-ios-infinite:before, .ion-ios-infinite-outline:before, .ion-ios-information:before, .ion-ios-information-empty:before, .ion-ios-information-outline:before, .ion-ios-ionic-outline:before, .ion-ios-keypad:before, .ion-ios-keypad-outline:before, .ion-ios-lightbulb:before, .ion-ios-lightbulb-outline:before, .ion-ios-list:before, .ion-ios-list-outline:before, .ion-ios-location:before, .ion-ios-location-outline:before, .ion-ios-locked:before, .ion-ios-locked-outline:before, .ion-ios-loop:before, .ion-ios-loop-strong:before, .ion-ios-medical:before, .ion-ios-medical-outline:before, .ion-ios-medkit:before, .ion-ios-medkit-outline:before, .ion-ios-mic:before, .ion-ios-mic-off:before, .ion-ios-mic-outline:before, .ion-ios-minus:before, .ion-ios-minus-empty:before, .ion-ios-minus-outline:before, .ion-ios-monitor:before, .ion-ios-monitor-outline:before, .ion-ios-moon:before, .ion-ios-moon-outline:before, .ion-ios-more:before, .ion-ios-more-outline:before, .ion-ios-musical-note:before, .ion-ios-musical-notes:before, .ion-ios-navigate:before, .ion-ios-navigate-outline:before, .ion-ios-nutrition:before, .ion-ios-nutrition-outline:before, .ion-ios-paper:before, .ion-ios-paper-outline:before, .ion-ios-paperplane:before, .ion-ios-paperplane-outline:before, .ion-ios-partlysunny:before, .ion-ios-partlysunny-outline:before, .ion-ios-pause:before, .ion-ios-pause-outline:before, .ion-ios-paw:before, .ion-ios-paw-outline:before, .ion-ios-people:before, .ion-ios-people-outline:before, .ion-ios-person:before, .ion-ios-person-outline:before, .ion-ios-personadd:before, .ion-ios-personadd-outline:before, .ion-ios-photos:before, .ion-ios-photos-outline:before, .ion-ios-pie:before, .ion-ios-pie-outline:before, .ion-ios-pint:before, .ion-ios-pint-outline:before, .ion-ios-play:before, .ion-ios-play-outline:before, .ion-ios-plus:before, .ion-ios-plus-empty:before, .ion-ios-plus-outline:before, .ion-ios-pricetag:before, .ion-ios-pricetag-outline:before, .ion-ios-pricetags:before, .ion-ios-pricetags-outline:before, .ion-ios-printer:before, .ion-ios-printer-outline:before, .ion-ios-pulse:before, .ion-ios-pulse-strong:before, .ion-ios-rainy:before, .ion-ios-rainy-outline:before, .ion-ios-recording:before, .ion-ios-recording-outline:before, .ion-ios-redo:before, .ion-ios-redo-outline:before, .ion-ios-refresh:before, .ion-ios-refresh-empty:before, .ion-ios-refresh-outline:before, .ion-ios-reload:before, .ion-ios-reverse-camera:before, .ion-ios-reverse-camera-outline:before, .ion-ios-rewind:before, .ion-ios-rewind-outline:before, .ion-ios-rose:before, .ion-ios-rose-outline:before, .ion-ios-search:before, .ion-ios-search-strong:before, .ion-ios-settings:before, .ion-ios-settings-strong:before, .ion-ios-shuffle:before, .ion-ios-shuffle-strong:before, .ion-ios-skipbackward:before, .ion-ios-skipbackward-outline:before, .ion-ios-skipforward:before, .ion-ios-skipforward-outline:before, .ion-ios-snowy:before, .ion-ios-speedometer:before, .ion-ios-speedometer-outline:before, .ion-ios-star:before, .ion-ios-star-half:before, .ion-ios-star-outline:before, .ion-ios-stopwatch:before, .ion-ios-stopwatch-outline:before, .ion-ios-sunny:before, .ion-ios-sunny-outline:before, .ion-ios-telephone:before, .ion-ios-telephone-outline:before, .ion-ios-tennisball:before, .ion-ios-tennisball-outline:before, .ion-ios-thunderstorm:before, .ion-ios-thunderstorm-outline:before, .ion-ios-time:before, .ion-ios-time-outline:before, .ion-ios-timer:before, .ion-ios-timer-outline:before, .ion-ios-toggle:before, .ion-ios-toggle-outline:before, .ion-ios-trash:before, .ion-ios-trash-outline:before, .ion-ios-undo:before, .ion-ios-undo-outline:before, .ion-ios-unlocked:before, .ion-ios-unlocked-outline:before, .ion-ios-upload:before, .ion-ios-upload-outline:before, .ion-ios-videocam:before, .ion-ios-videocam-outline:before, .ion-ios-volume-high:before, .ion-ios-volume-low:before, .ion-ios-wineglass:before, .ion-ios-wineglass-outline:before, .ion-ios-world:before, .ion-ios-world-outline:before, .ion-ipad:before, .ion-iphone:before, .ion-ipod:before, .ion-jet:before, .ion-key:before, .ion-knife:before, .ion-laptop:before, .ion-leaf:before, .ion-levels:before, .ion-lightbulb:before, .ion-link:before, .ion-load-a:before, .ion-load-b:before, .ion-load-c:before, .ion-load-d:before, .ion-location:before, .ion-lock-combination:before, .ion-locked:before, .ion-log-in:before, .ion-log-out:before, .ion-loop:before, .ion-magnet:before, .ion-male:before, .ion-man:before, .ion-map:before, .ion-medkit:before, .ion-merge:before, .ion-mic-a:before, .ion-mic-b:before, .ion-mic-c:before, .ion-minus:before, .ion-minus-circled:before, .ion-minus-round:before, .ion-model-s:before, .ion-monitor:before, .ion-more:before, .ion-mouse:before, .ion-music-note:before, .ion-navicon:before, .ion-navicon-round:before, .ion-navigate:before, .ion-network:before, .ion-no-smoking:before, .ion-nuclear:before, .ion-outlet:before, .ion-paintbrush:before, .ion-paintbucket:before, .ion-paper-airplane:before, .ion-paperclip:before, .ion-pause:before, .ion-person:before, .ion-person-add:before, .ion-person-stalker:before, .ion-pie-graph:before, .ion-pin:before, .ion-pinpoint:before, .ion-pizza:before, .ion-plane:before, .ion-planet:before, .ion-play:before, .ion-playstation:before, .ion-plus:before, .ion-plus-circled:before, .ion-plus-round:before, .ion-podium:before, .ion-pound:before, .ion-power:before, .ion-pricetag:before, .ion-pricetags:before, .ion-printer:before, .ion-pull-request:before, .ion-qr-scanner:before, .ion-quote:before, .ion-radio-waves:before, .ion-record:before, .ion-refresh:before, .ion-reply:before, .ion-reply-all:before, .ion-ribbon-a:before, .ion-ribbon-b:before, .ion-sad:before, .ion-sad-outline:before, .ion-scissors:before, .ion-search:before, .ion-settings:before, .ion-share:before, .ion-shuffle:before, .ion-skip-backward:before, .ion-skip-forward:before, .ion-social-android:before, .ion-social-android-outline:before, .ion-social-angular:before, .ion-social-angular-outline:before, .ion-social-apple:before, .ion-social-apple-outline:before, .ion-social-bitcoin:before, .ion-social-bitcoin-outline:before, .ion-social-buffer:before, .ion-social-buffer-outline:before, .ion-social-chrome:before, .ion-social-chrome-outline:before, .ion-social-codepen:before, .ion-social-codepen-outline:before, .ion-social-css3:before, .ion-social-css3-outline:before, .ion-social-designernews:before, .ion-social-designernews-outline:before, .ion-social-dribbble:before, .ion-social-dribbble-outline:before, .ion-social-dropbox:before, .ion-social-dropbox-outline:before, .ion-social-euro:before, .ion-social-euro-outline:before, .ion-social-facebook:before, .ion-social-facebook-outline:before, .ion-social-foursquare:before, .ion-social-foursquare-outline:before, .ion-social-freebsd-devil:before, .ion-social-github:before, .ion-social-github-outline:before, .ion-social-google:before, .ion-social-google-outline:before, .ion-social-googleplus:before, .ion-social-googleplus-outline:before, .ion-social-hackernews:before, .ion-social-hackernews-outline:before, .ion-social-html5:before, .ion-social-html5-outline:before, .ion-social-instagram:before, .ion-social-instagram-outline:before, .ion-social-javascript:before, .ion-social-javascript-outline:before, .ion-social-linkedin:before, .ion-social-linkedin-outline:before, .ion-social-markdown:before, .ion-social-nodejs:before, .ion-social-octocat:before, .ion-social-pinterest:before, .ion-social-pinterest-outline:before, .ion-social-python:before, .ion-social-reddit:before, .ion-social-reddit-outline:before, .ion-social-rss:before, .ion-social-rss-outline:before, .ion-social-sass:before, .ion-social-skype:before, .ion-social-skype-outline:before, .ion-social-snapchat:before, .ion-social-snapchat-outline:before, .ion-social-tumblr:before, .ion-social-tumblr-outline:before, .ion-social-tux:before, .ion-social-twitch:before, .ion-social-twitch-outline:before, .ion-social-twitter:before, .ion-social-twitter-outline:before, .ion-social-usd:before, .ion-social-usd-outline:before, .ion-social-vimeo:before, .ion-social-vimeo-outline:before, .ion-social-whatsapp:before, .ion-social-whatsapp-outline:before, .ion-social-windows:before, .ion-social-windows-outline:before, .ion-social-wordpress:before, .ion-social-wordpress-outline:before, .ion-social-yahoo:before, .ion-social-yahoo-outline:before, .ion-social-yen:before, .ion-social-yen-outline:before, .ion-social-youtube:before, .ion-social-youtube-outline:before, .ion-soup-can:before, .ion-soup-can-outline:before, .ion-speakerphone:before, .ion-speedometer:before, .ion-spoon:before, .ion-star:before, .ion-stats-bars:before, .ion-steam:before, .ion-stop:before, .ion-thermometer:before, .ion-thumbsdown:before, .ion-thumbsup:before, .ion-toggle:before, .ion-toggle-filled:before, .ion-transgender:before, .ion-trash-a:before, .ion-trash-b:before, .ion-trophy:before, .ion-tshirt:before, .ion-tshirt-outline:before, .ion-umbrella:before, .ion-university:before, .ion-unlocked:before, .ion-upload:before, .ion-usb:before, .ion-videocamera:before, .ion-volume-high:before, .ion-volume-low:before, .ion-volume-medium:before, .ion-volume-mute:before, .ion-wand:before, .ion-waterdrop:before, .ion-wifi:before, .ion-wineglass:before, .ion-woman:before, .ion-wrench:before, .ion-xbox:before { display: inline-block; font-family: "Ionicons"; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-rendering: auto; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.ion-alert:before { content: "\f101"; }

.ion-alert-circled:before { content: "\f100"; }

.ion-android-add:before { content: "\f2c7"; }

.ion-android-add-circle:before { content: "\f359"; }

.ion-android-alarm-clock:before { content: "\f35a"; }

.ion-android-alert:before { content: "\f35b"; }

.ion-android-apps:before { content: "\f35c"; }

.ion-android-archive:before { content: "\f2c9"; }

.ion-android-arrow-back:before { content: "\f2ca"; }

.ion-android-arrow-down:before { content: "\f35d"; }

.ion-android-arrow-dropdown:before { content: "\f35f"; }

.ion-android-arrow-dropdown-circle:before { content: "\f35e"; }

.ion-android-arrow-dropleft:before { content: "\f361"; }

.ion-android-arrow-dropleft-circle:before { content: "\f360"; }

.ion-android-arrow-dropright:before { content: "\f363"; }

.ion-android-arrow-dropright-circle:before { content: "\f362"; }

.ion-android-arrow-dropup:before { content: "\f365"; }

.ion-android-arrow-dropup-circle:before { content: "\f364"; }

.ion-android-arrow-forward:before { content: "\f30f"; }

.ion-android-arrow-up:before { content: "\f366"; }

.ion-android-attach:before { content: "\f367"; }

.ion-android-bar:before { content: "\f368"; }

.ion-android-bicycle:before { content: "\f369"; }

.ion-android-boat:before { content: "\f36a"; }

.ion-android-bookmark:before { content: "\f36b"; }

.ion-android-bulb:before { content: "\f36c"; }

.ion-android-bus:before { content: "\f36d"; }

.ion-android-calendar:before { content: "\f2d1"; }

.ion-android-call:before { content: "\f2d2"; }

.ion-android-camera:before { content: "\f2d3"; }

.ion-android-cancel:before { content: "\f36e"; }

.ion-android-car:before { content: "\f36f"; }

.ion-android-cart:before { content: "\f370"; }

.ion-android-chat:before { content: "\f2d4"; }

.ion-android-checkbox:before { content: "\f374"; }

.ion-android-checkbox-blank:before { content: "\f371"; }

.ion-android-checkbox-outline:before { content: "\f373"; }

.ion-android-checkbox-outline-blank:before { content: "\f372"; }

.ion-android-checkmark-circle:before { content: "\f375"; }

.ion-android-clipboard:before { content: "\f376"; }

.ion-android-close:before { content: "\f2d7"; }

.ion-android-cloud:before { content: "\f37a"; }

.ion-android-cloud-circle:before { content: "\f377"; }

.ion-android-cloud-done:before { content: "\f378"; }

.ion-android-cloud-outline:before { content: "\f379"; }

.ion-android-color-palette:before { content: "\f37b"; }

.ion-android-compass:before { content: "\f37c"; }

.ion-android-contact:before { content: "\f2d8"; }

.ion-android-contacts:before { content: "\f2d9"; }

.ion-android-contract:before { content: "\f37d"; }

.ion-android-create:before { content: "\f37e"; }

.ion-android-delete:before { content: "\f37f"; }

.ion-android-desktop:before { content: "\f380"; }

.ion-android-document:before { content: "\f381"; }

.ion-android-done:before { content: "\f383"; }

.ion-android-done-all:before { content: "\f382"; }

.ion-android-download:before { content: "\f2dd"; }

.ion-android-drafts:before { content: "\f384"; }

.ion-android-exit:before { content: "\f385"; }

.ion-android-expand:before { content: "\f386"; }

.ion-android-favorite:before { content: "\f388"; }

.ion-android-favorite-outline:before { content: "\f387"; }

.ion-android-film:before { content: "\f389"; }

.ion-android-folder:before { content: "\f2e0"; }

.ion-android-folder-open:before { content: "\f38a"; }

.ion-android-funnel:before { content: "\f38b"; }

.ion-android-globe:before { content: "\f38c"; }

.ion-android-hand:before { content: "\f2e3"; }

.ion-android-hangout:before { content: "\f38d"; }

.ion-android-happy:before { content: "\f38e"; }

.ion-android-home:before { content: "\f38f"; }

.ion-android-image:before { content: "\f2e4"; }

.ion-android-laptop:before { content: "\f390"; }

.ion-android-list:before { content: "\f391"; }

.ion-android-locate:before { content: "\f2e9"; }

.ion-android-lock:before { content: "\f392"; }

.ion-android-mail:before { content: "\f2eb"; }

.ion-android-map:before { content: "\f393"; }

.ion-android-menu:before { content: "\f394"; }

.ion-android-microphone:before { content: "\f2ec"; }

.ion-android-microphone-off:before { content: "\f395"; }

.ion-android-more-horizontal:before { content: "\f396"; }

.ion-android-more-vertical:before { content: "\f397"; }

.ion-android-navigate:before { content: "\f398"; }

.ion-android-notifications:before { content: "\f39b"; }

.ion-android-notifications-none:before { content: "\f399"; }

.ion-android-notifications-off:before { content: "\f39a"; }

.ion-android-open:before { content: "\f39c"; }

.ion-android-options:before { content: "\f39d"; }

.ion-android-people:before { content: "\f39e"; }

.ion-android-person:before { content: "\f3a0"; }

.ion-android-person-add:before { content: "\f39f"; }

.ion-android-phone-landscape:before { content: "\f3a1"; }

.ion-android-phone-portrait:before { content: "\f3a2"; }

.ion-android-pin:before { content: "\f3a3"; }

.ion-android-plane:before { content: "\f3a4"; }

.ion-android-playstore:before { content: "\f2f0"; }

.ion-android-print:before { content: "\f3a5"; }

.ion-android-radio-button-off:before { content: "\f3a6"; }

.ion-android-radio-button-on:before { content: "\f3a7"; }

.ion-android-refresh:before { content: "\f3a8"; }

.ion-android-remove:before { content: "\f2f4"; }

.ion-android-remove-circle:before { content: "\f3a9"; }

.ion-android-restaurant:before { content: "\f3aa"; }

.ion-android-sad:before { content: "\f3ab"; }

.ion-android-search:before { content: "\f2f5"; }

.ion-android-send:before { content: "\f2f6"; }

.ion-android-settings:before { content: "\f2f7"; }

.ion-android-share:before { content: "\f2f8"; }

.ion-android-share-alt:before { content: "\f3ac"; }

.ion-android-star:before { content: "\f2fc"; }

.ion-android-star-half:before { content: "\f3ad"; }

.ion-android-star-outline:before { content: "\f3ae"; }

.ion-android-stopwatch:before { content: "\f2fd"; }

.ion-android-subway:before { content: "\f3af"; }

.ion-android-sunny:before { content: "\f3b0"; }

.ion-android-sync:before { content: "\f3b1"; }

.ion-android-textsms:before { content: "\f3b2"; }

.ion-android-time:before { content: "\f3b3"; }

.ion-android-train:before { content: "\f3b4"; }

.ion-android-unlock:before { content: "\f3b5"; }

.ion-android-upload:before { content: "\f3b6"; }

.ion-android-volume-down:before { content: "\f3b7"; }

.ion-android-volume-mute:before { content: "\f3b8"; }

.ion-android-volume-off:before { content: "\f3b9"; }

.ion-android-volume-up:before { content: "\f3ba"; }

.ion-android-walk:before { content: "\f3bb"; }

.ion-android-warning:before { content: "\f3bc"; }

.ion-android-watch:before { content: "\f3bd"; }

.ion-android-wifi:before { content: "\f305"; }

.ion-aperture:before { content: "\f313"; }

.ion-archive:before { content: "\f102"; }

.ion-arrow-down-a:before { content: "\f103"; }

.ion-arrow-down-b:before { content: "\f104"; }

.ion-arrow-down-c:before { content: "\f105"; }

.ion-arrow-expand:before { content: "\f25e"; }

.ion-arrow-graph-down-left:before { content: "\f25f"; }

.ion-arrow-graph-down-right:before { content: "\f260"; }

.ion-arrow-graph-up-left:before { content: "\f261"; }

.ion-arrow-graph-up-right:before { content: "\f262"; }

.ion-arrow-left-a:before { content: "\f106"; }

.ion-arrow-left-b:before { content: "\f107"; }

.ion-arrow-left-c:before { content: "\f108"; }

.ion-arrow-move:before { content: "\f263"; }

.ion-arrow-resize:before { content: "\f264"; }

.ion-arrow-return-left:before { content: "\f265"; }

.ion-arrow-return-right:before { content: "\f266"; }

.ion-arrow-right-a:before { content: "\f109"; }

.ion-arrow-right-b:before { content: "\f10a"; }

.ion-arrow-right-c:before { content: "\f10b"; }

.ion-arrow-shrink:before { content: "\f267"; }

.ion-arrow-swap:before { content: "\f268"; }

.ion-arrow-up-a:before { content: "\f10c"; }

.ion-arrow-up-b:before { content: "\f10d"; }

.ion-arrow-up-c:before { content: "\f10e"; }

.ion-asterisk:before { content: "\f314"; }

.ion-at:before { content: "\f10f"; }

.ion-backspace:before { content: "\f3bf"; }

.ion-backspace-outline:before { content: "\f3be"; }

.ion-bag:before { content: "\f110"; }

.ion-battery-charging:before { content: "\f111"; }

.ion-battery-empty:before { content: "\f112"; }

.ion-battery-full:before { content: "\f113"; }

.ion-battery-half:before { content: "\f114"; }

.ion-battery-low:before { content: "\f115"; }

.ion-beaker:before { content: "\f269"; }

.ion-beer:before { content: "\f26a"; }

.ion-bluetooth:before { content: "\f116"; }

.ion-bonfire:before { content: "\f315"; }

.ion-bookmark:before { content: "\f26b"; }

.ion-bowtie:before { content: "\f3c0"; }

.ion-briefcase:before { content: "\f26c"; }

.ion-bug:before { content: "\f2be"; }

.ion-calculator:before { content: "\f26d"; }

.ion-calendar:before { content: "\f117"; }

.ion-camera:before { content: "\f118"; }

.ion-card:before { content: "\f119"; }

.ion-cash:before { content: "\f316"; }

.ion-chatbox:before { content: "\f11b"; }

.ion-chatbox-working:before { content: "\f11a"; }

.ion-chatboxes:before { content: "\f11c"; }

.ion-chatbubble:before { content: "\f11e"; }

.ion-chatbubble-working:before { content: "\f11d"; }

.ion-chatbubbles:before { content: "\f11f"; }

.ion-checkmark:before { content: "\f122"; }

.ion-checkmark-circled:before { content: "\f120"; }

.ion-checkmark-round:before { content: "\f121"; }

.ion-chevron-down:before { content: "\f123"; }

.ion-chevron-left:before { content: "\f124"; }

.ion-chevron-right:before { content: "\f125"; }

.ion-chevron-up:before { content: "\f126"; }

.ion-clipboard:before { content: "\f127"; }

.ion-clock:before { content: "\f26e"; }

.ion-close:before { content: "\f12a"; }

.ion-close-circled:before { content: "\f128"; }

.ion-close-round:before { content: "\f129"; }

.ion-closed-captioning:before { content: "\f317"; }

.ion-cloud:before { content: "\f12b"; }

.ion-code:before { content: "\f271"; }

.ion-code-download:before { content: "\f26f"; }

.ion-code-working:before { content: "\f270"; }

.ion-coffee:before { content: "\f272"; }

.ion-compass:before { content: "\f273"; }

.ion-compose:before { content: "\f12c"; }

.ion-connection-bars:before { content: "\f274"; }

.ion-contrast:before { content: "\f275"; }

.ion-crop:before { content: "\f3c1"; }

.ion-cube:before { content: "\f318"; }

.ion-disc:before { content: "\f12d"; }

.ion-document:before { content: "\f12f"; }

.ion-document-text:before { content: "\f12e"; }

.ion-drag:before { content: "\f130"; }

.ion-earth:before { content: "\f276"; }

.ion-easel:before { content: "\f3c2"; }

.ion-edit:before { content: "\f2bf"; }

.ion-egg:before { content: "\f277"; }

.ion-eject:before { content: "\f131"; }

.ion-email:before { content: "\f132"; }

.ion-email-unread:before { content: "\f3c3"; }

.ion-erlenmeyer-flask:before { content: "\f3c5"; }

.ion-erlenmeyer-flask-bubbles:before { content: "\f3c4"; }

.ion-eye:before { content: "\f133"; }

.ion-eye-disabled:before { content: "\f306"; }

.ion-female:before { content: "\f278"; }

.ion-filing:before { content: "\f134"; }

.ion-film-marker:before { content: "\f135"; }

.ion-fireball:before { content: "\f319"; }

.ion-flag:before { content: "\f279"; }

.ion-flame:before { content: "\f31a"; }

.ion-flash:before { content: "\f137"; }

.ion-flash-off:before { content: "\f136"; }

.ion-folder:before { content: "\f139"; }

.ion-fork:before { content: "\f27a"; }

.ion-fork-repo:before { content: "\f2c0"; }

.ion-forward:before { content: "\f13a"; }

.ion-funnel:before { content: "\f31b"; }

.ion-gear-a:before { content: "\f13d"; }

.ion-gear-b:before { content: "\f13e"; }

.ion-grid:before { content: "\f13f"; }

.ion-hammer:before { content: "\f27b"; }

.ion-happy:before { content: "\f31c"; }

.ion-happy-outline:before { content: "\f3c6"; }

.ion-headphone:before { content: "\f140"; }

.ion-heart:before { content: "\f141"; }

.ion-heart-broken:before { content: "\f31d"; }

.ion-help:before { content: "\f143"; }

.ion-help-buoy:before { content: "\f27c"; }

.ion-help-circled:before { content: "\f142"; }

.ion-home:before { content: "\f144"; }

.ion-icecream:before { content: "\f27d"; }

.ion-image:before { content: "\f147"; }

.ion-images:before { content: "\f148"; }

.ion-information:before { content: "\f14a"; }

.ion-information-circled:before { content: "\f149"; }

.ion-ionic:before { content: "\f14b"; }

.ion-ios-alarm:before { content: "\f3c8"; }

.ion-ios-alarm-outline:before { content: "\f3c7"; }

.ion-ios-albums:before { content: "\f3ca"; }

.ion-ios-albums-outline:before { content: "\f3c9"; }

.ion-ios-americanfootball:before { content: "\f3cc"; }

.ion-ios-americanfootball-outline:before { content: "\f3cb"; }

.ion-ios-analytics:before { content: "\f3ce"; }

.ion-ios-analytics-outline:before { content: "\f3cd"; }

.ion-ios-arrow-back:before { content: "\f3cf"; }

.ion-ios-arrow-down:before { content: "\f3d0"; }

.ion-ios-arrow-forward:before { content: "\f3d1"; }

.ion-ios-arrow-left:before { content: "\f3d2"; }

.ion-ios-arrow-right:before { content: "\f3d3"; }

.ion-ios-arrow-thin-down:before { content: "\f3d4"; }

.ion-ios-arrow-thin-left:before { content: "\f3d5"; }

.ion-ios-arrow-thin-right:before { content: "\f3d6"; }

.ion-ios-arrow-thin-up:before { content: "\f3d7"; }

.ion-ios-arrow-up:before { content: "\f3d8"; }

.ion-ios-at:before { content: "\f3da"; }

.ion-ios-at-outline:before { content: "\f3d9"; }

.ion-ios-barcode:before { content: "\f3dc"; }

.ion-ios-barcode-outline:before { content: "\f3db"; }

.ion-ios-baseball:before { content: "\f3de"; }

.ion-ios-baseball-outline:before { content: "\f3dd"; }

.ion-ios-basketball:before { content: "\f3e0"; }

.ion-ios-basketball-outline:before { content: "\f3df"; }

.ion-ios-bell:before { content: "\f3e2"; }

.ion-ios-bell-outline:before { content: "\f3e1"; }

.ion-ios-body:before { content: "\f3e4"; }

.ion-ios-body-outline:before { content: "\f3e3"; }

.ion-ios-bolt:before { content: "\f3e6"; }

.ion-ios-bolt-outline:before { content: "\f3e5"; }

.ion-ios-book:before { content: "\f3e8"; }

.ion-ios-book-outline:before { content: "\f3e7"; }

.ion-ios-bookmarks:before { content: "\f3ea"; }

.ion-ios-bookmarks-outline:before { content: "\f3e9"; }

.ion-ios-box:before { content: "\f3ec"; }

.ion-ios-box-outline:before { content: "\f3eb"; }

.ion-ios-briefcase:before { content: "\f3ee"; }

.ion-ios-briefcase-outline:before { content: "\f3ed"; }

.ion-ios-browsers:before { content: "\f3f0"; }

.ion-ios-browsers-outline:before { content: "\f3ef"; }

.ion-ios-calculator:before { content: "\f3f2"; }

.ion-ios-calculator-outline:before { content: "\f3f1"; }

.ion-ios-calendar:before { content: "\f3f4"; }

.ion-ios-calendar-outline:before { content: "\f3f3"; }

.ion-ios-camera:before { content: "\f3f6"; }

.ion-ios-camera-outline:before { content: "\f3f5"; }

.ion-ios-cart:before { content: "\f3f8"; }

.ion-ios-cart-outline:before { content: "\f3f7"; }

.ion-ios-chatboxes:before { content: "\f3fa"; }

.ion-ios-chatboxes-outline:before { content: "\f3f9"; }

.ion-ios-chatbubble:before { content: "\f3fc"; }

.ion-ios-chatbubble-outline:before { content: "\f3fb"; }

.ion-ios-checkmark:before { content: "\f3ff"; }

.ion-ios-checkmark-empty:before { content: "\f3fd"; }

.ion-ios-checkmark-outline:before { content: "\f3fe"; }

.ion-ios-circle-filled:before { content: "\f400"; }

.ion-ios-circle-outline:before { content: "\f401"; }

.ion-ios-clock:before { content: "\f403"; }

.ion-ios-clock-outline:before { content: "\f402"; }

.ion-ios-close:before { content: "\f406"; }

.ion-ios-close-empty:before { content: "\f404"; }

.ion-ios-close-outline:before { content: "\f405"; }

.ion-ios-cloud:before { content: "\f40c"; }

.ion-ios-cloud-download:before { content: "\f408"; }

.ion-ios-cloud-download-outline:before { content: "\f407"; }

.ion-ios-cloud-outline:before { content: "\f409"; }

.ion-ios-cloud-upload:before { content: "\f40b"; }

.ion-ios-cloud-upload-outline:before { content: "\f40a"; }

.ion-ios-cloudy:before { content: "\f410"; }

.ion-ios-cloudy-night:before { content: "\f40e"; }

.ion-ios-cloudy-night-outline:before { content: "\f40d"; }

.ion-ios-cloudy-outline:before { content: "\f40f"; }

.ion-ios-cog:before { content: "\f412"; }

.ion-ios-cog-outline:before { content: "\f411"; }

.ion-ios-color-filter:before { content: "\f414"; }

.ion-ios-color-filter-outline:before { content: "\f413"; }

.ion-ios-color-wand:before { content: "\f416"; }

.ion-ios-color-wand-outline:before { content: "\f415"; }

.ion-ios-compose:before { content: "\f418"; }

.ion-ios-compose-outline:before { content: "\f417"; }

.ion-ios-contact:before { content: "\f41a"; }

.ion-ios-contact-outline:before { content: "\f419"; }

.ion-ios-copy:before { content: "\f41c"; }

.ion-ios-copy-outline:before { content: "\f41b"; }

.ion-ios-crop:before { content: "\f41e"; }

.ion-ios-crop-strong:before { content: "\f41d"; }

.ion-ios-download:before { content: "\f420"; }

.ion-ios-download-outline:before { content: "\f41f"; }

.ion-ios-drag:before { content: "\f421"; }

.ion-ios-email:before { content: "\f423"; }

.ion-ios-email-outline:before { content: "\f422"; }

.ion-ios-eye:before { content: "\f425"; }

.ion-ios-eye-outline:before { content: "\f424"; }

.ion-ios-fastforward:before { content: "\f427"; }

.ion-ios-fastforward-outline:before { content: "\f426"; }

.ion-ios-filing:before { content: "\f429"; }

.ion-ios-filing-outline:before { content: "\f428"; }

.ion-ios-film:before { content: "\f42b"; }

.ion-ios-film-outline:before { content: "\f42a"; }

.ion-ios-flag:before { content: "\f42d"; }

.ion-ios-flag-outline:before { content: "\f42c"; }

.ion-ios-flame:before { content: "\f42f"; }

.ion-ios-flame-outline:before { content: "\f42e"; }

.ion-ios-flask:before { content: "\f431"; }

.ion-ios-flask-outline:before { content: "\f430"; }

.ion-ios-flower:before { content: "\f433"; }

.ion-ios-flower-outline:before { content: "\f432"; }

.ion-ios-folder:before { content: "\f435"; }

.ion-ios-folder-outline:before { content: "\f434"; }

.ion-ios-football:before { content: "\f437"; }

.ion-ios-football-outline:before { content: "\f436"; }

.ion-ios-game-controller-a:before { content: "\f439"; }

.ion-ios-game-controller-a-outline:before { content: "\f438"; }

.ion-ios-game-controller-b:before { content: "\f43b"; }

.ion-ios-game-controller-b-outline:before { content: "\f43a"; }

.ion-ios-gear:before { content: "\f43d"; }

.ion-ios-gear-outline:before { content: "\f43c"; }

.ion-ios-glasses:before { content: "\f43f"; }

.ion-ios-glasses-outline:before { content: "\f43e"; }

.ion-ios-grid-view:before { content: "\f441"; }

.ion-ios-grid-view-outline:before { content: "\f440"; }

.ion-ios-heart:before { content: "\f443"; }

.ion-ios-heart-outline:before { content: "\f442"; }

.ion-ios-help:before { content: "\f446"; }

.ion-ios-help-empty:before { content: "\f444"; }

.ion-ios-help-outline:before { content: "\f445"; }

.ion-ios-home:before { content: "\f448"; }

.ion-ios-home-outline:before { content: "\f447"; }

.ion-ios-infinite:before { content: "\f44a"; }

.ion-ios-infinite-outline:before { content: "\f449"; }

.ion-ios-information:before { content: "\f44d"; }

.ion-ios-information-empty:before { content: "\f44b"; }

.ion-ios-information-outline:before { content: "\f44c"; }

.ion-ios-ionic-outline:before { content: "\f44e"; }

.ion-ios-keypad:before { content: "\f450"; }

.ion-ios-keypad-outline:before { content: "\f44f"; }

.ion-ios-lightbulb:before { content: "\f452"; }

.ion-ios-lightbulb-outline:before { content: "\f451"; }

.ion-ios-list:before { content: "\f454"; }

.ion-ios-list-outline:before { content: "\f453"; }

.ion-ios-location:before { content: "\f456"; }

.ion-ios-location-outline:before { content: "\f455"; }

.ion-ios-locked:before { content: "\f458"; }

.ion-ios-locked-outline:before { content: "\f457"; }

.ion-ios-loop:before { content: "\f45a"; }

.ion-ios-loop-strong:before { content: "\f459"; }

.ion-ios-medical:before { content: "\f45c"; }

.ion-ios-medical-outline:before { content: "\f45b"; }

.ion-ios-medkit:before { content: "\f45e"; }

.ion-ios-medkit-outline:before { content: "\f45d"; }

.ion-ios-mic:before { content: "\f461"; }

.ion-ios-mic-off:before { content: "\f45f"; }

.ion-ios-mic-outline:before { content: "\f460"; }

.ion-ios-minus:before { content: "\f464"; }

.ion-ios-minus-empty:before { content: "\f462"; }

.ion-ios-minus-outline:before { content: "\f463"; }

.ion-ios-monitor:before { content: "\f466"; }

.ion-ios-monitor-outline:before { content: "\f465"; }

.ion-ios-moon:before { content: "\f468"; }

.ion-ios-moon-outline:before { content: "\f467"; }

.ion-ios-more:before { content: "\f46a"; }

.ion-ios-more-outline:before { content: "\f469"; }

.ion-ios-musical-note:before { content: "\f46b"; }

.ion-ios-musical-notes:before { content: "\f46c"; }

.ion-ios-navigate:before { content: "\f46e"; }

.ion-ios-navigate-outline:before { content: "\f46d"; }

.ion-ios-nutrition:before { content: "\f470"; }

.ion-ios-nutrition-outline:before { content: "\f46f"; }

.ion-ios-paper:before { content: "\f472"; }

.ion-ios-paper-outline:before { content: "\f471"; }

.ion-ios-paperplane:before { content: "\f474"; }

.ion-ios-paperplane-outline:before { content: "\f473"; }

.ion-ios-partlysunny:before { content: "\f476"; }

.ion-ios-partlysunny-outline:before { content: "\f475"; }

.ion-ios-pause:before { content: "\f478"; }

.ion-ios-pause-outline:before { content: "\f477"; }

.ion-ios-paw:before { content: "\f47a"; }

.ion-ios-paw-outline:before { content: "\f479"; }

.ion-ios-people:before { content: "\f47c"; }

.ion-ios-people-outline:before { content: "\f47b"; }

.ion-ios-person:before { content: "\f47e"; }

.ion-ios-person-outline:before { content: "\f47d"; }

.ion-ios-personadd:before { content: "\f480"; }

.ion-ios-personadd-outline:before { content: "\f47f"; }

.ion-ios-photos:before { content: "\f482"; }

.ion-ios-photos-outline:before { content: "\f481"; }

.ion-ios-pie:before { content: "\f484"; }

.ion-ios-pie-outline:before { content: "\f483"; }

.ion-ios-pint:before { content: "\f486"; }

.ion-ios-pint-outline:before { content: "\f485"; }

.ion-ios-play:before { content: "\f488"; }

.ion-ios-play-outline:before { content: "\f487"; }

.ion-ios-plus:before { content: "\f48b"; }

.ion-ios-plus-empty:before { content: "\f489"; }

.ion-ios-plus-outline:before { content: "\f48a"; }

.ion-ios-pricetag:before { content: "\f48d"; }

.ion-ios-pricetag-outline:before { content: "\f48c"; }

.ion-ios-pricetags:before { content: "\f48f"; }

.ion-ios-pricetags-outline:before { content: "\f48e"; }

.ion-ios-printer:before { content: "\f491"; }

.ion-ios-printer-outline:before { content: "\f490"; }

.ion-ios-pulse:before { content: "\f493"; }

.ion-ios-pulse-strong:before { content: "\f492"; }

.ion-ios-rainy:before { content: "\f495"; }

.ion-ios-rainy-outline:before { content: "\f494"; }

.ion-ios-recording:before { content: "\f497"; }

.ion-ios-recording-outline:before { content: "\f496"; }

.ion-ios-redo:before { content: "\f499"; }

.ion-ios-redo-outline:before { content: "\f498"; }

.ion-ios-refresh:before { content: "\f49c"; }

.ion-ios-refresh-empty:before { content: "\f49a"; }

.ion-ios-refresh-outline:before { content: "\f49b"; }

.ion-ios-reload:before { content: "\f49d"; }

.ion-ios-reverse-camera:before { content: "\f49f"; }

.ion-ios-reverse-camera-outline:before { content: "\f49e"; }

.ion-ios-rewind:before { content: "\f4a1"; }

.ion-ios-rewind-outline:before { content: "\f4a0"; }

.ion-ios-rose:before { content: "\f4a3"; }

.ion-ios-rose-outline:before { content: "\f4a2"; }

.ion-ios-search:before { content: "\f4a5"; }

.ion-ios-search-strong:before { content: "\f4a4"; }

.ion-ios-settings:before { content: "\f4a7"; }

.ion-ios-settings-strong:before { content: "\f4a6"; }

.ion-ios-shuffle:before { content: "\f4a9"; }

.ion-ios-shuffle-strong:before { content: "\f4a8"; }

.ion-ios-skipbackward:before { content: "\f4ab"; }

.ion-ios-skipbackward-outline:before { content: "\f4aa"; }

.ion-ios-skipforward:before { content: "\f4ad"; }

.ion-ios-skipforward-outline:before { content: "\f4ac"; }

.ion-ios-snowy:before { content: "\f4ae"; }

.ion-ios-speedometer:before { content: "\f4b0"; }

.ion-ios-speedometer-outline:before { content: "\f4af"; }

.ion-ios-star:before { content: "\f4b3"; }

.ion-ios-star-half:before { content: "\f4b1"; }

.ion-ios-star-outline:before { content: "\f4b2"; }

.ion-ios-stopwatch:before { content: "\f4b5"; }

.ion-ios-stopwatch-outline:before { content: "\f4b4"; }

.ion-ios-sunny:before { content: "\f4b7"; }

.ion-ios-sunny-outline:before { content: "\f4b6"; }

.ion-ios-telephone:before { content: "\f4b9"; }

.ion-ios-telephone-outline:before { content: "\f4b8"; }

.ion-ios-tennisball:before { content: "\f4bb"; }

.ion-ios-tennisball-outline:before { content: "\f4ba"; }

.ion-ios-thunderstorm:before { content: "\f4bd"; }

.ion-ios-thunderstorm-outline:before { content: "\f4bc"; }

.ion-ios-time:before { content: "\f4bf"; }

.ion-ios-time-outline:before { content: "\f4be"; }

.ion-ios-timer:before { content: "\f4c1"; }

.ion-ios-timer-outline:before { content: "\f4c0"; }

.ion-ios-toggle:before { content: "\f4c3"; }

.ion-ios-toggle-outline:before { content: "\f4c2"; }

.ion-ios-trash:before { content: "\f4c5"; }

.ion-ios-trash-outline:before { content: "\f4c4"; }

.ion-ios-undo:before { content: "\f4c7"; }

.ion-ios-undo-outline:before { content: "\f4c6"; }

.ion-ios-unlocked:before { content: "\f4c9"; }

.ion-ios-unlocked-outline:before { content: "\f4c8"; }

.ion-ios-upload:before { content: "\f4cb"; }

.ion-ios-upload-outline:before { content: "\f4ca"; }

.ion-ios-videocam:before { content: "\f4cd"; }

.ion-ios-videocam-outline:before { content: "\f4cc"; }

.ion-ios-volume-high:before { content: "\f4ce"; }

.ion-ios-volume-low:before { content: "\f4cf"; }

.ion-ios-wineglass:before { content: "\f4d1"; }

.ion-ios-wineglass-outline:before { content: "\f4d0"; }

.ion-ios-world:before { content: "\f4d3"; }

.ion-ios-world-outline:before { content: "\f4d2"; }

.ion-ipad:before { content: "\f1f9"; }

.ion-iphone:before { content: "\f1fa"; }

.ion-ipod:before { content: "\f1fb"; }

.ion-jet:before { content: "\f295"; }

.ion-key:before { content: "\f296"; }

.ion-knife:before { content: "\f297"; }

.ion-laptop:before { content: "\f1fc"; }

.ion-leaf:before { content: "\f1fd"; }

.ion-levels:before { content: "\f298"; }

.ion-lightbulb:before { content: "\f299"; }

.ion-link:before { content: "\f1fe"; }

.ion-load-a:before { content: "\f29a"; }

.ion-load-b:before { content: "\f29b"; }

.ion-load-c:before { content: "\f29c"; }

.ion-load-d:before { content: "\f29d"; }

.ion-location:before { content: "\f1ff"; }

.ion-lock-combination:before { content: "\f4d4"; }

.ion-locked:before { content: "\f200"; }

.ion-log-in:before { content: "\f29e"; }

.ion-log-out:before { content: "\f29f"; }

.ion-loop:before { content: "\f201"; }

.ion-magnet:before { content: "\f2a0"; }

.ion-male:before { content: "\f2a1"; }

.ion-man:before { content: "\f202"; }

.ion-map:before { content: "\f203"; }

.ion-medkit:before { content: "\f2a2"; }

.ion-merge:before { content: "\f33f"; }

.ion-mic-a:before { content: "\f204"; }

.ion-mic-b:before { content: "\f205"; }

.ion-mic-c:before { content: "\f206"; }

.ion-minus:before { content: "\f209"; }

.ion-minus-circled:before { content: "\f207"; }

.ion-minus-round:before { content: "\f208"; }

.ion-model-s:before { content: "\f2c1"; }

.ion-monitor:before { content: "\f20a"; }

.ion-more:before { content: "\f20b"; }

.ion-mouse:before { content: "\f340"; }

.ion-music-note:before { content: "\f20c"; }

.ion-navicon:before { content: "\f20e"; }

.ion-navicon-round:before { content: "\f20d"; }

.ion-navigate:before { content: "\f2a3"; }

.ion-network:before { content: "\f341"; }

.ion-no-smoking:before { content: "\f2c2"; }

.ion-nuclear:before { content: "\f2a4"; }

.ion-outlet:before { content: "\f342"; }

.ion-paintbrush:before { content: "\f4d5"; }

.ion-paintbucket:before { content: "\f4d6"; }

.ion-paper-airplane:before { content: "\f2c3"; }

.ion-paperclip:before { content: "\f20f"; }

.ion-pause:before { content: "\f210"; }

.ion-person:before { content: "\f213"; }

.ion-person-add:before { content: "\f211"; }

.ion-person-stalker:before { content: "\f212"; }

.ion-pie-graph:before { content: "\f2a5"; }

.ion-pin:before { content: "\f2a6"; }

.ion-pinpoint:before { content: "\f2a7"; }

.ion-pizza:before { content: "\f2a8"; }

.ion-plane:before { content: "\f214"; }

.ion-planet:before { content: "\f343"; }

.ion-play:before { content: "\f215"; }

.ion-playstation:before { content: "\f30a"; }

.ion-plus:before { content: "\f218"; }

.ion-plus-circled:before { content: "\f216"; }

.ion-plus-round:before { content: "\f217"; }

.ion-podium:before { content: "\f344"; }

.ion-pound:before { content: "\f219"; }

.ion-power:before { content: "\f2a9"; }

.ion-pricetag:before { content: "\f2aa"; }

.ion-pricetags:before { content: "\f2ab"; }

.ion-printer:before { content: "\f21a"; }

.ion-pull-request:before { content: "\f345"; }

.ion-qr-scanner:before { content: "\f346"; }

.ion-quote:before { content: "\f347"; }

.ion-radio-waves:before { content: "\f2ac"; }

.ion-record:before { content: "\f21b"; }

.ion-refresh:before { content: "\f21c"; }

.ion-reply:before { content: "\f21e"; }

.ion-reply-all:before { content: "\f21d"; }

.ion-ribbon-a:before { content: "\f348"; }

.ion-ribbon-b:before { content: "\f349"; }

.ion-sad:before { content: "\f34a"; }

.ion-sad-outline:before { content: "\f4d7"; }

.ion-scissors:before { content: "\f34b"; }

.ion-search:before { content: "\f21f"; }

.ion-settings:before { content: "\f2ad"; }

.ion-share:before { content: "\f220"; }

.ion-shuffle:before { content: "\f221"; }

.ion-skip-backward:before { content: "\f222"; }

.ion-skip-forward:before { content: "\f223"; }

.ion-social-android:before { content: "\f225"; }

.ion-social-android-outline:before { content: "\f224"; }

.ion-social-angular:before { content: "\f4d9"; }

.ion-social-angular-outline:before { content: "\f4d8"; }

.ion-social-apple:before { content: "\f227"; }

.ion-social-apple-outline:before { content: "\f226"; }

.ion-social-bitcoin:before { content: "\f2af"; }

.ion-social-bitcoin-outline:before { content: "\f2ae"; }

.ion-social-buffer:before { content: "\f229"; }

.ion-social-buffer-outline:before { content: "\f228"; }

.ion-social-chrome:before { content: "\f4db"; }

.ion-social-chrome-outline:before { content: "\f4da"; }

.ion-social-codepen:before { content: "\f4dd"; }

.ion-social-codepen-outline:before { content: "\f4dc"; }

.ion-social-css3:before { content: "\f4df"; }

.ion-social-css3-outline:before { content: "\f4de"; }

.ion-social-designernews:before { content: "\f22b"; }

.ion-social-designernews-outline:before { content: "\f22a"; }

.ion-social-dribbble:before { content: "\f22d"; }

.ion-social-dribbble-outline:before { content: "\f22c"; }

.ion-social-dropbox:before { content: "\f22f"; }

.ion-social-dropbox-outline:before { content: "\f22e"; }

.ion-social-euro:before { content: "\f4e1"; }

.ion-social-euro-outline:before { content: "\f4e0"; }

.ion-social-facebook:before { content: "\f231"; }

.ion-social-facebook-outline:before { content: "\f230"; }

.ion-social-foursquare:before { content: "\f34d"; }

.ion-social-foursquare-outline:before { content: "\f34c"; }

.ion-social-freebsd-devil:before { content: "\f2c4"; }

.ion-social-github:before { content: "\f233"; }

.ion-social-github-outline:before { content: "\f232"; }

.ion-social-google:before { content: "\f34f"; }

.ion-social-google-outline:before { content: "\f34e"; }

.ion-social-googleplus:before { content: "\f235"; }

.ion-social-googleplus-outline:before { content: "\f234"; }

.ion-social-hackernews:before { content: "\f237"; }

.ion-social-hackernews-outline:before { content: "\f236"; }

.ion-social-html5:before { content: "\f4e3"; }

.ion-social-html5-outline:before { content: "\f4e2"; }

.ion-social-instagram:before { content: "\f351"; }

.ion-social-instagram-outline:before { content: "\f350"; }

.ion-social-javascript:before { content: "\f4e5"; }

.ion-social-javascript-outline:before { content: "\f4e4"; }

.ion-social-linkedin:before { content: "\f239"; }

.ion-social-linkedin-outline:before { content: "\f238"; }

.ion-social-markdown:before { content: "\f4e6"; }

.ion-social-nodejs:before { content: "\f4e7"; }

.ion-social-octocat:before { content: "\f4e8"; }

.ion-social-pinterest:before { content: "\f2b1"; }

.ion-social-pinterest-outline:before { content: "\f2b0"; }

.ion-social-python:before { content: "\f4e9"; }

.ion-social-reddit:before { content: "\f23b"; }

.ion-social-reddit-outline:before { content: "\f23a"; }

.ion-social-rss:before { content: "\f23d"; }

.ion-social-rss-outline:before { content: "\f23c"; }

.ion-social-sass:before { content: "\f4ea"; }

.ion-social-skype:before { content: "\f23f"; }

.ion-social-skype-outline:before { content: "\f23e"; }

.ion-social-snapchat:before { content: "\f4ec"; }

.ion-social-snapchat-outline:before { content: "\f4eb"; }

.ion-social-tumblr:before { content: "\f241"; }

.ion-social-tumblr-outline:before { content: "\f240"; }

.ion-social-tux:before { content: "\f2c5"; }

.ion-social-twitch:before { content: "\f4ee"; }

.ion-social-twitch-outline:before { content: "\f4ed"; }

.ion-social-twitter:before { content: "\f243"; }

.ion-social-twitter-outline:before { content: "\f242"; }

.ion-social-usd:before { content: "\f353"; }

.ion-social-usd-outline:before { content: "\f352"; }

.ion-social-vimeo:before { content: "\f245"; }

.ion-social-vimeo-outline:before { content: "\f244"; }

.ion-social-whatsapp:before { content: "\f4f0"; }

.ion-social-whatsapp-outline:before { content: "\f4ef"; }

.ion-social-windows:before { content: "\f247"; }

.ion-social-windows-outline:before { content: "\f246"; }

.ion-social-wordpress:before { content: "\f249"; }

.ion-social-wordpress-outline:before { content: "\f248"; }

.ion-social-yahoo:before { content: "\f24b"; }

.ion-social-yahoo-outline:before { content: "\f24a"; }

.ion-social-yen:before { content: "\f4f2"; }

.ion-social-yen-outline:before { content: "\f4f1"; }

.ion-social-youtube:before { content: "\f24d"; }

.ion-social-youtube-outline:before { content: "\f24c"; }

.ion-soup-can:before { content: "\f4f4"; }

.ion-soup-can-outline:before { content: "\f4f3"; }

.ion-speakerphone:before { content: "\f2b2"; }

.ion-speedometer:before { content: "\f2b3"; }

.ion-spoon:before { content: "\f2b4"; }

.ion-star:before { content: "\f24e"; }

.ion-stats-bars:before { content: "\f2b5"; }

.ion-steam:before { content: "\f30b"; }

.ion-stop:before { content: "\f24f"; }

.ion-thermometer:before { content: "\f2b6"; }

.ion-thumbsdown:before { content: "\f250"; }

.ion-thumbsup:before { content: "\f251"; }

.ion-toggle:before { content: "\f355"; }

.ion-toggle-filled:before { content: "\f354"; }

.ion-transgender:before { content: "\f4f5"; }

.ion-trash-a:before { content: "\f252"; }

.ion-trash-b:before { content: "\f253"; }

.ion-trophy:before { content: "\f356"; }

.ion-tshirt:before { content: "\f4f7"; }

.ion-tshirt-outline:before { content: "\f4f6"; }

.ion-umbrella:before { content: "\f2b7"; }

.ion-university:before { content: "\f357"; }

.ion-unlocked:before { content: "\f254"; }

.ion-upload:before { content: "\f255"; }

.ion-usb:before { content: "\f2b8"; }

.ion-videocamera:before { content: "\f256"; }

.ion-volume-high:before { content: "\f257"; }

.ion-volume-low:before { content: "\f258"; }

.ion-volume-medium:before { content: "\f259"; }

.ion-volume-mute:before { content: "\f25a"; }

.ion-wand:before { content: "\f358"; }

.ion-waterdrop:before { content: "\f25b"; }

.ion-wifi:before { content: "\f25c"; }

.ion-wineglass:before { content: "\f2b9"; }

.ion-woman:before { content: "\f25d"; }

.ion-wrench:before { content: "\f2ba"; }

.ion-xbox:before { content: "\f30c"; }

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: white;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option[aria-selected=true] {
    background: #ececec;
    color: #333333;
}

.select2-container--default .select2-results__option[aria-selected=true]:before {
    content: "\f26b";
    font-family: 'Material-Design-Iconic-Font';
    position: absolute;
    right: 20px;
    font-size: 15px;
}

.select2-container--default:before {
    background-image: url("/src/backend/images/material/select.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
}

.select2-container--default.select2-container--open:before {
    background-image: none;
}

.select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single, .select2-container--default.select2-container--focus .select2-selection--multiple {
    height: 40px;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: 0
}

.select2-container--default .select2-selection--multiple, .select2-container--default.select2-container--focus .select2-selection--multiple {
    height: auto
}

.select2-container--default .select2-search--inline .select2-search__field {
    height: 30px
}

.select2-container--default .select2-selection--multiple input {
    margin: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border: none;
    color: #fff;
    margin-top: 4px;
    padding: 2px 4px;
    background-color: #42A5F5;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
    margin-right: 5px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    padding-left: 0
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
}

.select2-container--open .select2-dropdown {
    box-shadow: 0 2px 10px rgba(66, 165, 245, 0.5);
    margin-top: 1px;
    border: 0;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    top: 0;
}

.select2-container--open .select2-dropdown--above, .select2-container--open .select2-dropdown--below {
    border: none;
    box-shadow: 0 8px 10px rgba(0, 0, 0, .26)
}

.select2-results__option {
    padding: 1rem;
    padding: 5px 5px 5px 40px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: #f7f7f7;
    padding-left: 30px;
    border: none;
}

.select2-search--dropdown {
    padding: 0px;
}

.select2-container--default .select2-search--dropdown:before {
    content: "\f1c3";
    font-family: 'Material-Design-Iconic-Font';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    font-size: 16px;
    padding: 3px 0 0 9px;
}

.select2-container--default .select2-search--dropdown input[type=text] {
    border: 0;
    height: 35px;
    /*line-height: 1.42857143;*/
    background-image: none !important;
}

.fg-line.fg-toggled:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
div.spinedit { display: inline-block; position: relative; }
input[type="text"].spinedit { display: inline-block; width: 50px; }
div.spinedit .fa-chevron-up,
div.spinedit .fa-chevron-down { position: relative; cursor: pointer; width: 12px; left: 8px; }
div.spinedit .fa-chevron-up { top: -12px; }
div.spinedit .fa-chevron-down { top: 3px; left: -4px; }
.form-search div.spinedit, .form-inline div.spinedit, .form-horizontal div.spinedit { top: 5px; }
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
  cursor: default !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
  display: none !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child,
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
  top: 8px;
  left: 7px;
  height: 14px;
  width: 14px;
  display: block;
  position: absolute;
  text-align: center;
  text-indent: 0 !important;
  content: '⮀';
  color: #6d6d6d;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
  content: '▼';
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
  padding-left: 27px;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
  top: 5px;
  left: 4px;
  height: 14px;
  width: 14px;
  border-radius: 14px;
  line-height: 14px;
  text-indent: 3px;
}
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
  position: relative;
  cursor: pointer;
}
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
  top: 50%;
  left: 50%;
  height: 16px;
  width: 16px;
  margin-top: -10px;
  margin-left: -10px;
  display: block;
  position: absolute;
  color: white;
  border: 2px solid white;
  border-radius: 14px;
  box-shadow: 0 0 3px #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: 'Courier New', Courier, monospace;
  line-height: 14px;
  content: '+';
  background-color: #31b131;
}
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  content: '-';
  background-color: #d33333;
}
table.dataTable > tbody > tr.child {
  padding: 0.5em 1em;
}
table.dataTable > tbody > tr.child:hover {
  background: transparent !important;
}
table.dataTable > tbody > tr.child ul.dtr-details {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li {
  border-bottom: 1px solid #efefef;
  padding: 0.5em 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:first-child {
  padding-top: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
  border-bottom: none;
}
table.dataTable > tbody > tr.child span.dtr-title {
  display: inline-block;
  min-width: 75px;
  font-weight: bold;
}

div.dtr-modal {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  padding: 10em 1em;
}
div.dtr-modal div.dtr-modal-display {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: auto;
  margin: auto;
  z-index: 102;
  overflow: auto;
  background-color: #f5f5f7;
  border: 1px solid black;
  border-radius: 0.5em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
div.dtr-modal div.dtr-modal-content {
  position: relative;
  padding: 1em;
}
div.dtr-modal div.dtr-modal-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border: 1px solid #eaeaea;
  background-color: #f9f9f9;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  z-index: 12;
}
div.dtr-modal div.dtr-modal-close:hover {
  background-color: #eaeaea;
}
div.dtr-modal div.dtr-modal-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
  div.dtr-modal div.dtr-modal-display {
    width: 95%;
  }
}

/**
 * CONTENTS
 *
 * #Introduction........Naming conventions used throughout the code.
 *
 * #SETTINGS
 * Variables............Globally-available variables and config.
 *
 * #TOOLS
 * Mixins...............Useful mixins.
 *
 * #GENERIC
 * Demo styles..........Styles for demo only (consider removing these).
 *
 * #BASE
 * Raw styles...........The very basic component wrapper.
 * Modifiers............The basic styles dependant on component placement.
 * Debuggers............The basic styles dependant on component placement.
 *
 * #BUTTONS
 * Base..................Wrapping and constraining every button.
 * Modifiers.............Styles that depends on state and settings.
 * Animations............Main animations of the component.
 * Debuggers.............Styles for development.
 *
 * #LABELS
 * Base..................Wrapping and constraining every label.
 * Modifiers.............Styles that depends on state and settings.
 * Debuggers.............Styles for development.
 *
 * #DEVELOPMENT
 * In development........These styles are in development and not yet finalised
 * Debuggers.............Helper styles and flags for development.
 */
/*------------------------------------*\
    #Introduction
\*------------------------------------*/
/**
 * The code AND the comments use naming conventions to refer to each part of
 * the UI put in place by this component. If you see that somewhere they are
 * not followed please consider a Pull Request. The naming conventions are:
 *
 * "Component" : the widget itself as a whole. This is the last time it will be
 *               called anything different than "component". So, stay away from
 *               "widget", "button" or anything else when referring to the
 *               Component in general.
 *
 * "Main Button" : the button that is always in view. Hovering or clicking on it
 *                 will reveal the child buttons.
 *
 * "Child buttons" : if you've read the previous point you know what they are.
 *                   Did you read the previous point? :)
 *
 * "Label(s)" : the tooltip that fades in when hovering over a button.

/*------------------------------------*\
    #SETTINGS | Variables
\*------------------------------------*/
/**
 * These variables are the default styles that serve as fallback and can be
 * easily customised at compile time.
 * Consider overriding them in your own style sheets rather than editing them
 * here. Refer to the docs for more info.
 */
/* COLORS ----------------------------*/
/* EFFECTS ---------------------------*/
/* SPEEDS ----------------------------*/
/* SIZES -----------------------------*/
/* SPACING ---------------------------*/
/* OTHER VARIABLES -------------------*/
/*------------------------------------*\
    #BASE | Raw styles
\*------------------------------------*/
/**
 * The very core styling of the button.
 * These styles are shared by every instance of the button.
 * Styles placed here should NOT care about placement in the screen,
 * options chosen by the user or state of the button.
 */
.mfb-component--tl, .mfb-component--tr, .mfb-component--bl, .mfb-component--br {
  box-sizing: border-box;
  margin: 25px;
  position: fixed;
  white-space: nowrap;
  z-index: 30;
  padding-left: 0;
  list-style: none; }
  .mfb-component--tl *, .mfb-component--tr *, .mfb-component--bl *, .mfb-component--br *, .mfb-component--tl *:before, .mfb-component--tr *:before, .mfb-component--bl *:before, .mfb-component--br *:before, .mfb-component--tl *:after, .mfb-component--tr *:after, .mfb-component--bl *:after, .mfb-component--br *:after {
    box-sizing: inherit; }

/*------------------------------------*\
    #BASE | Modifiers
\*------------------------------------*/
/**
 * These styles depends on the placement of the button.
 * Styles can be:
 * 1. Top-left:  modified by the " --tl " suffix.
 * 2. Top-right: modified by the " --tr " suffix.
 * 3. Bottom-left:  modified by the " --bl " suffix.
 * 4. Bottom-right: modified by the " --br " suffix.
 */
.mfb-component--tl {
  left: 0;
  top: 0; }

.mfb-component--tr {
  right: 0;
  top: 0; }

.mfb-component--bl {
  left: 0;
  bottom: 0; }

.mfb-component--br {
  right: 0;
  bottom: 0; }

/*------------------------------------*\
    #BUTTONS | Base
\*------------------------------------*/
.mfb-component__button--main, .mfb-component__button--child {
  background-color: #FF4081;
  display: inline-block;
  position: relative;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  outline: none;
  padding: 0;
  position: relative;
  -webkit-user-drag: none;
  font-weight: bold;
  color: #f1f1f1; }

/**
 * This is the unordered list for the list items that contain
 * the child buttons.
 *
 */
.mfb-component__list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .mfb-component__list > li {
    display: block;
    position: absolute;
    top: 0;
    right: 1px;
    padding: 10px 0;
    margin: -10px 0; }

/**
 * These are the basic styles for all the icons inside the main button
 */
.mfb-component__icon, .mfb-component__main-icon--active,
.mfb-component__main-icon--resting, .mfb-component__child-icon {
  position: absolute;
  font-size: 18px;
  text-align: center;
  line-height: 56px;
  width: 100%; }

.mfb-component__wrap {
  padding: 25px;
  margin: -30px; }

[data-mfb-toggle="hover"]:hover .mfb-component__icon, [data-mfb-toggle="hover"]:hover .mfb-component__main-icon--active,
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--resting, [data-mfb-toggle="hover"]:hover .mfb-component__child-icon,
[data-mfb-state="open"] .mfb-component__icon,
[data-mfb-state="open"] .mfb-component__main-icon--active,
[data-mfb-state="open"] .mfb-component__main-icon--resting,
[data-mfb-state="open"] .mfb-component__child-icon {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg); }

/*------------------------------------*\
    #BUTTONS | Modifiers
\*------------------------------------*/
.mfb-component__button--main {
  height: 56px;
  width: 56px;
  z-index: 20; }

.mfb-component__button--child {
  height: 46px;
  width: 46px; }

.mfb-component__main-icon--active,
.mfb-component__main-icon--resting {
  -webkit-transform: scale(1) rotate(360deg);
  transform: scale(1) rotate(360deg);
  -webkit-transition: -webkit-transform 150ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 150ms cubic-bezier(0.4, 0, 1, 1); }

.mfb-component__child-icon,
.mfb-component__child-icon {
  line-height: 46px;
  font-size: 18px; }

.mfb-component__main-icon--active {
  opacity: 0; }

[data-mfb-toggle="hover"]:hover .mfb-component__main-icon,
[data-mfb-state="open"] .mfb-component__main-icon {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg); }
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--resting,
[data-mfb-state="open"] .mfb-component__main-icon--resting {
  opacity: 0; }
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--active,
[data-mfb-state="open"] .mfb-component__main-icon--active {
  opacity: 1; }

/*------------------------------------*\
    #BUTTONS | Animations
\*------------------------------------*/
/**
 * SLIDE IN + FADE
 * When hovering the main button, the child buttons slide out from beneath
 * the main button while transitioning from transparent to opaque.
 *
 */
.mfb-component--tl.mfb-slidein .mfb-component__list li,
.mfb-component--tr.mfb-slidein .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s; }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li, .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1; }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px);
  transform: translateY(70px); }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px);
  transform: translateY(140px); }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px);
  transform: translateY(210px); }
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px);
  transform: translateY(280px); }

.mfb-component--bl.mfb-slidein .mfb-component__list li,
.mfb-component--br.mfb-slidein .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s; }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li, .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1; }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px); }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px); }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px);
  transform: translateY(-210px); }
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px);
  transform: translateY(-280px); }

/**
 * SLIDE IN SPRING
 * Same as slide-in but with a springy animation.
 *
 */
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li,
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s; }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li, .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1; }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
  -webkit-transform: translateY(70px);
  transform: translateY(70px); }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
  -webkit-transform: translateY(140px);
  transform: translateY(140px); }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
  -webkit-transform: translateY(210px);
  transform: translateY(210px); }
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
  -webkit-transform: translateY(280px);
  transform: translateY(280px); }

.mfb-component--bl.mfb-slidein-spring .mfb-component__list li,
.mfb-component--br.mfb-slidein-spring .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s; }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li, .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1; }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px); }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px); }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
  -webkit-transform: translateY(-210px);
  transform: translateY(-210px); }
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
  -webkit-transform: translateY(-280px);
  transform: translateY(-280px); }

/**
 * ZOOM-IN
 * When hovering the main button, the child buttons grow
 * from zero to normal size.
 *
 */
.mfb-component--tl.mfb-zoomin .mfb-component__list li,
.mfb-component--tr.mfb-zoomin .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0); }
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(0);
  transform: translateY(70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(0);
  transform: translateY(140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(0);
  transform: translateY(210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(0);
  transform: translateY(280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s; }
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(1);
  transform: translateY(70px) scale(1);
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(1);
  transform: translateY(140px) scale(1);
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(1);
  transform: translateY(210px) scale(1);
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(1);
  transform: translateY(280px) scale(1);
  transition-delay: 0.2s; }

.mfb-component--bl.mfb-zoomin .mfb-component__list li,
.mfb-component--br.mfb-zoomin .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0); }
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(0);
  transform: translateY(-70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(0);
  transform: translateY(-140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(0);
  transform: translateY(-210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(0);
  transform: translateY(-280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s; }
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(1);
  transform: translateY(-70px) scale(1);
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(1);
  transform: translateY(-140px) scale(1);
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(1);
  transform: translateY(-210px) scale(1);
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(1);
  transform: translateY(-280px) scale(1);
  transition-delay: 0.2s; }

/**
 * FOUNTAIN
 * When hovering the main button the child buttons
 * jump into view from outside the viewport
 */
.mfb-component--tl.mfb-fountain .mfb-component__list li,
.mfb-component--tr.mfb-fountain .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0); }
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(0);
  transform: translateY(-70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(0);
  transform: translateY(-140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(0);
  transform: translateY(-210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(0);
  transform: translateY(-280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s; }
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(1);
  transform: translateY(70px) scale(1);
  transition-delay: 0.05s; }
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(1);
  transform: translateY(140px) scale(1);
  transition-delay: 0.1s; }
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(1);
  transform: translateY(210px) scale(1);
  transition-delay: 0.15s; }
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(1);
  transform: translateY(280px) scale(1);
  transition-delay: 0.2s; }

.mfb-component--bl.mfb-fountain .mfb-component__list li,
.mfb-component--br.mfb-fountain .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0); }
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(0);
  transform: translateY(70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(0);
  transform: translateY(140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(0);
  transform: translateY(210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(0);
  transform: translateY(280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s; }
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1), .mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(1);
  transform: translateY(-70px) scale(1);
  transition-delay: 0.05s; }
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2), .mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(1);
  transform: translateY(-140px) scale(1);
  transition-delay: 0.1s; }
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3), .mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(1);
  transform: translateY(-210px) scale(1);
  transition-delay: 0.15s; }
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4), .mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(1);
  transform: translateY(-280px) scale(1);
  transition-delay: 0.2s; }

/*------------------------------------*\
    #LABELS | base
\*------------------------------------*/
/**
 * These are the labels associated to each button,
 * exposed only when hovering the related button.
 * They are called labels but are in fact data-attributes of
 * each button (an anchor tag).
 */
[data-mfb-label]:after {
  content: attr(data-mfb-label);
  opacity: 0;
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  margin-top: -10.5px;
  transition: all 0.5s; }

[data-mfb-toggle="hover"] [data-mfb-label]:hover:after,
[data-mfb-state="open"] [data-mfb-label]:after {
  content: attr(data-mfb-label);
  opacity: 1;
  transition: all 0.3s; }

/*------------------------------------*\
    #LABELS | Modifiers
\*------------------------------------*/
.mfb-component--br [data-mfb-label]:after, .mfb-component--tr [data-mfb-label]:after {
  content: attr(data-mfb-label);
  right: 70px; }

.mfb-component--br .mfb-component__list [data-mfb-label]:after, .mfb-component--tr .mfb-component__list [data-mfb-label]:after {
  content: attr(data-mfb-label);
  right: 70px; }

.mfb-component--tl [data-mfb-label]:after, .mfb-component--bl [data-mfb-label]:after {
  content: attr(data-mfb-label);
  left: 70px; }

.mfb-component--tl .mfb-component__list [data-mfb-label]:after, .mfb-component--bl .mfb-component__list [data-mfb-label]:after {
  content: attr(data-mfb-label);
  left: 70px; }

/*------------------------------------*\
    #DEVELOPMENT | In development
\*------------------------------------*/
/**
 * This part is where unfinished code should stay.
 * When a feature is ready(sh) move these styles to their proper place.
 */
/*------------------------------------*\
    #DEVELOPMENT | Debuggers
\*------------------------------------*/
/**
 * These are mainly helpers for development. They do not have to end up
 * in production but it's handy to keep them when developing.
 */
/**
 * Apply this class to the html tag when developing the slide-in button
 */

/*# sourceMappingURL=mfb.css.map */



.mfb-component--br a:focus, .mfb-component--br a:hover, .mfb-component--br a:visited {
  color: #ffffff;
}
/*
 * Changelog 004:
 *  - Make summernote toolbar more compact
 *  - Make datatable cells height a little bit more compact and vertical center content
 *  - Add a way to callapse/hide sidebar menu
*/

/*
 * Load Main Bootstrap LESS files
 */

/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .navbar {
        display: none;
    }

    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table td,
    .table th {
        background-color: #fff !important;
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
    content: "\002a";
}

.glyphicon-plus:before {
    content: "\002b";
}

.glyphicon-euro:before,
.glyphicon-eur:before {
    content: "\20ac";
}

.glyphicon-minus:before {
    content: "\2212";
}

.glyphicon-cloud:before {
    content: "\2601";
}

.glyphicon-envelope:before {
    content: "\2709";
}

.glyphicon-pencil:before {
    content: "\270f";
}

.glyphicon-glass:before {
    content: "\e001";
}

.glyphicon-music:before {
    content: "\e002";
}

.glyphicon-search:before {
    content: "\e003";
}

.glyphicon-heart:before {
    content: "\e005";
}

.glyphicon-star:before {
    content: "\e006";
}

.glyphicon-star-empty:before {
    content: "\e007";
}

.glyphicon-user:before {
    content: "\e008";
}

.glyphicon-film:before {
    content: "\e009";
}

.glyphicon-th-large:before {
    content: "\e010";
}

.glyphicon-th:before {
    content: "\e011";
}

.glyphicon-th-list:before {
    content: "\e012";
}

.glyphicon-ok:before {
    content: "\e013";
}

.glyphicon-remove:before {
    content: "\e014";
}

.glyphicon-zoom-in:before {
    content: "\e015";
}

.glyphicon-zoom-out:before {
    content: "\e016";
}

.glyphicon-off:before {
    content: "\e017";
}

.glyphicon-signal:before {
    content: "\e018";
}

.glyphicon-cog:before {
    content: "\e019";
}

.glyphicon-trash:before {
    content: "\e020";
}

.glyphicon-home:before {
    content: "\e021";
}

.glyphicon-file:before {
    content: "\e022";
}

.glyphicon-time:before {
    content: "\e023";
}

.glyphicon-road:before {
    content: "\e024";
}

.glyphicon-download-alt:before {
    content: "\e025";
}

.glyphicon-download:before {
    content: "\e026";
}

.glyphicon-upload:before {
    content: "\e027";
}

.glyphicon-inbox:before {
    content: "\e028";
}

.glyphicon-play-circle:before {
    content: "\e029";
}

.glyphicon-repeat:before {
    content: "\e030";
}

.glyphicon-refresh:before {
    content: "\e031";
}

.glyphicon-list-alt:before {
    content: "\e032";
}

.glyphicon-lock:before {
    content: "\e033";
}

.glyphicon-flag:before {
    content: "\e034";
}

.glyphicon-headphones:before {
    content: "\e035";
}

.glyphicon-volume-off:before {
    content: "\e036";
}

.glyphicon-volume-down:before {
    content: "\e037";
}

.glyphicon-volume-up:before {
    content: "\e038";
}

.glyphicon-qrcode:before {
    content: "\e039";
}

.glyphicon-barcode:before {
    content: "\e040";
}

.glyphicon-tag:before {
    content: "\e041";
}

.glyphicon-tags:before {
    content: "\e042";
}

.glyphicon-book:before {
    content: "\e043";
}

.glyphicon-bookmark:before {
    content: "\e044";
}

.glyphicon-print:before {
    content: "\e045";
}

.glyphicon-camera:before {
    content: "\e046";
}

.glyphicon-font:before {
    content: "\e047";
}

.glyphicon-bold:before {
    content: "\e048";
}

.glyphicon-italic:before {
    content: "\e049";
}

.glyphicon-text-height:before {
    content: "\e050";
}

.glyphicon-text-width:before {
    content: "\e051";
}

.glyphicon-align-left:before {
    content: "\e052";
}

.glyphicon-align-center:before {
    content: "\e053";
}

.glyphicon-align-right:before {
    content: "\e054";
}

.glyphicon-align-justify:before {
    content: "\e055";
}

.glyphicon-list:before {
    content: "\e056";
}

.glyphicon-indent-left:before {
    content: "\e057";
}

.glyphicon-indent-right:before {
    content: "\e058";
}

.glyphicon-facetime-video:before {
    content: "\e059";
}

.glyphicon-picture:before {
    content: "\e060";
}

.glyphicon-map-marker:before {
    content: "\e062";
}

.glyphicon-adjust:before {
    content: "\e063";
}

.glyphicon-tint:before {
    content: "\e064";
}

.glyphicon-edit:before {
    content: "\e065";
}

.glyphicon-share:before {
    content: "\e066";
}

.glyphicon-check:before {
    content: "\e067";
}

.glyphicon-move:before {
    content: "\e068";
}

.glyphicon-step-backward:before {
    content: "\e069";
}

.glyphicon-fast-backward:before {
    content: "\e070";
}

.glyphicon-backward:before {
    content: "\e071";
}

.glyphicon-play:before {
    content: "\e072";
}

.glyphicon-pause:before {
    content: "\e073";
}

.glyphicon-stop:before {
    content: "\e074";
}

.glyphicon-forward:before {
    content: "\e075";
}

.glyphicon-fast-forward:before {
    content: "\e076";
}

.glyphicon-step-forward:before {
    content: "\e077";
}

.glyphicon-eject:before {
    content: "\e078";
}

.glyphicon-chevron-left:before {
    content: "\e079";
}

.glyphicon-chevron-right:before {
    content: "\e080";
}

.glyphicon-plus-sign:before {
    content: "\e081";
}

.glyphicon-minus-sign:before {
    content: "\e082";
}

.glyphicon-remove-sign:before {
    content: "\e083";
}

.glyphicon-ok-sign:before {
    content: "\e084";
}

.glyphicon-question-sign:before {
    content: "\e085";
}

.glyphicon-info-sign:before {
    content: "\e086";
}

.glyphicon-screenshot:before {
    content: "\e087";
}

.glyphicon-remove-circle:before {
    content: "\e088";
}

.glyphicon-ok-circle:before {
    content: "\e089";
}

.glyphicon-ban-circle:before {
    content: "\e090";
}

.glyphicon-arrow-left:before {
    content: "\e091";
}

.glyphicon-arrow-right:before {
    content: "\e092";
}

.glyphicon-arrow-up:before {
    content: "\e093";
}

.glyphicon-arrow-down:before {
    content: "\e094";
}

.glyphicon-share-alt:before {
    content: "\e095";
}

.glyphicon-resize-full:before {
    content: "\e096";
}

.glyphicon-resize-small:before {
    content: "\e097";
}

.glyphicon-exclamation-sign:before {
    content: "\e101";
}

.glyphicon-gift:before {
    content: "\e102";
}

.glyphicon-leaf:before {
    content: "\e103";
}

.glyphicon-fire:before {
    content: "\e104";
}

.glyphicon-eye-open:before {
    content: "\e105";
}

.glyphicon-eye-close:before {
    content: "\e106";
}

.glyphicon-warning-sign:before {
    content: "\e107";
}

.glyphicon-plane:before {
    content: "\e108";
}

.glyphicon-calendar:before {
    content: "\e109";
}

.glyphicon-random:before {
    content: "\e110";
}

.glyphicon-comment:before {
    content: "\e111";
}

.glyphicon-magnet:before {
    content: "\e112";
}

.glyphicon-chevron-up:before {
    content: "\e113";
}

.glyphicon-chevron-down:before {
    content: "\e114";
}

.glyphicon-retweet:before {
    content: "\e115";
}

.glyphicon-shopping-cart:before {
    content: "\e116";
}

.glyphicon-folder-close:before {
    content: "\e117";
}

.glyphicon-folder-open:before {
    content: "\e118";
}

.glyphicon-resize-vertical:before {
    content: "\e119";
}

.glyphicon-resize-horizontal:before {
    content: "\e120";
}

.glyphicon-hdd:before {
    content: "\e121";
}

.glyphicon-bullhorn:before {
    content: "\e122";
}

.glyphicon-bell:before {
    content: "\e123";
}

.glyphicon-certificate:before {
    content: "\e124";
}

.glyphicon-thumbs-up:before {
    content: "\e125";
}

.glyphicon-thumbs-down:before {
    content: "\e126";
}

.glyphicon-hand-right:before {
    content: "\e127";
}

.glyphicon-hand-left:before {
    content: "\e128";
}

.glyphicon-hand-up:before {
    content: "\e129";
}

.glyphicon-hand-down:before {
    content: "\e130";
}

.glyphicon-circle-arrow-right:before {
    content: "\e131";
}

.glyphicon-circle-arrow-left:before {
    content: "\e132";
}

.glyphicon-circle-arrow-up:before {
    content: "\e133";
}

.glyphicon-circle-arrow-down:before {
    content: "\e134";
}

.glyphicon-globe:before {
    content: "\e135";
}

.glyphicon-wrench:before {
    content: "\e136";
}

.glyphicon-tasks:before {
    content: "\e137";
}

.glyphicon-filter:before {
    content: "\e138";
}

.glyphicon-briefcase:before {
    content: "\e139";
}

.glyphicon-fullscreen:before {
    content: "\e140";
}

.glyphicon-dashboard:before {
    content: "\e141";
}

.glyphicon-paperclip:before {
    content: "\e142";
}

.glyphicon-heart-empty:before {
    content: "\e143";
}

.glyphicon-link:before {
    content: "\e144";
}

.glyphicon-phone:before {
    content: "\e145";
}

.glyphicon-pushpin:before {
    content: "\e146";
}

.glyphicon-usd:before {
    content: "\e148";
}

.glyphicon-gbp:before {
    content: "\e149";
}

.glyphicon-sort:before {
    content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152";
}

.glyphicon-sort-by-order:before {
    content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154";
}

.glyphicon-sort-by-attributes:before {
    content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156";
}

.glyphicon-unchecked:before {
    content: "\e157";
}

.glyphicon-expand:before {
    content: "\e158";
}

.glyphicon-collapse-down:before {
    content: "\e159";
}

.glyphicon-collapse-up:before {
    content: "\e160";
}

.glyphicon-log-in:before {
    content: "\e161";
}

.glyphicon-flash:before {
    content: "\e162";
}

.glyphicon-log-out:before {
    content: "\e163";
}

.glyphicon-new-window:before {
    content: "\e164";
}

.glyphicon-record:before {
    content: "\e165";
}

.glyphicon-save:before {
    content: "\e166";
}

.glyphicon-open:before {
    content: "\e167";
}

.glyphicon-saved:before {
    content: "\e168";
}

.glyphicon-import:before {
    content: "\e169";
}

.glyphicon-export:before {
    content: "\e170";
}

.glyphicon-send:before {
    content: "\e171";
}

.glyphicon-floppy-disk:before {
    content: "\e172";
}

.glyphicon-floppy-saved:before {
    content: "\e173";
}

.glyphicon-floppy-remove:before {
    content: "\e174";
}

.glyphicon-floppy-save:before {
    content: "\e175";
}

.glyphicon-floppy-open:before {
    content: "\e176";
}

.glyphicon-credit-card:before {
    content: "\e177";
}

.glyphicon-transfer:before {
    content: "\e178";
}

.glyphicon-cutlery:before {
    content: "\e179";
}

.glyphicon-header:before {
    content: "\e180";
}

.glyphicon-compressed:before {
    content: "\e181";
}

.glyphicon-earphone:before {
    content: "\e182";
}

.glyphicon-phone-alt:before {
    content: "\e183";
}

.glyphicon-tower:before {
    content: "\e184";
}

.glyphicon-stats:before {
    content: "\e185";
}

.glyphicon-sd-video:before {
    content: "\e186";
}

.glyphicon-hd-video:before {
    content: "\e187";
}

.glyphicon-subtitles:before {
    content: "\e188";
}

.glyphicon-sound-stereo:before {
    content: "\e189";
}

.glyphicon-sound-dolby:before {
    content: "\e190";
}

.glyphicon-sound-5-1:before {
    content: "\e191";
}

.glyphicon-sound-6-1:before {
    content: "\e192";
}

.glyphicon-sound-7-1:before {
    content: "\e193";
}

.glyphicon-copyright-mark:before {
    content: "\e194";
}

.glyphicon-registration-mark:before {
    content: "\e195";
}

.glyphicon-cloud-download:before {
    content: "\e197";
}

.glyphicon-cloud-upload:before {
    content: "\e198";
}

.glyphicon-tree-conifer:before {
    content: "\e199";
}

.glyphicon-tree-deciduous:before {
    content: "\e200";
}

.glyphicon-cd:before {
    content: "\e201";
}

.glyphicon-save-file:before {
    content: "\e202";
}

.glyphicon-open-file:before {
    content: "\e203";
}

.glyphicon-level-up:before {
    content: "\e204";
}

.glyphicon-copy:before {
    content: "\e205";
}

.glyphicon-paste:before {
    content: "\e206";
}

.glyphicon-alert:before {
    content: "\e209";
}

.glyphicon-equalizer:before {
    content: "\e210";
}

.glyphicon-king:before {
    content: "\e211";
}

.glyphicon-queen:before {
    content: "\e212";
}

.glyphicon-pawn:before {
    content: "\e213";
}

.glyphicon-bishop:before {
    content: "\e214";
}

.glyphicon-knight:before {
    content: "\e215";
}

.glyphicon-baby-formula:before {
    content: "\e216";
}

.glyphicon-tent:before {
    content: "\26fa";
}

.glyphicon-blackboard:before {
    content: "\e218";
}

.glyphicon-bed:before {
    content: "\e219";
}

.glyphicon-apple:before {
    content: "\f8ff";
}

.glyphicon-erase:before {
    content: "\e221";
}

.glyphicon-hourglass:before {
    content: "\231b";
}

.glyphicon-lamp:before {
    content: "\e223";
}

.glyphicon-duplicate:before {
    content: "\e224";
}

.glyphicon-piggy-bank:before {
    content: "\e225";
}

.glyphicon-scissors:before {
    content: "\e226";
}

.glyphicon-bitcoin:before {
    content: "\e227";
}

.glyphicon-btc:before {
    content: "\e227";
}

.glyphicon-xbt:before {
    content: "\e227";
}

.glyphicon-yen:before {
    content: "\00a5";
}

.glyphicon-jpy:before {
    content: "\00a5";
}

.glyphicon-ruble:before {
    content: "\20bd";
}

.glyphicon-rub:before {
    content: "\20bd";
}

.glyphicon-scale:before {
    content: "\e230";
}

.glyphicon-ice-lolly:before {
    content: "\e231";
}

.glyphicon-ice-lolly-tasted:before {
    content: "\e232";
}

.glyphicon-education:before {
    content: "\e233";
}

.glyphicon-option-horizontal:before {
    content: "\e234";
}

.glyphicon-option-vertical:before {
    content: "\e235";
}

.glyphicon-menu-hamburger:before {
    content: "\e236";
}

.glyphicon-modal-window:before {
    content: "\e237";
}

.glyphicon-oil:before {
    content: "\e238";
}

.glyphicon-grain:before {
    content: "\e239";
}

.glyphicon-sunglasses:before {
    content: "\e240";
}

.glyphicon-text-size:before {
    content: "\e241";
}

.glyphicon-text-color:before {
    content: "\e242";
}

.glyphicon-text-background:before {
    content: "\e243";
}

.glyphicon-object-align-top:before {
    content: "\e244";
}

.glyphicon-object-align-bottom:before {
    content: "\e245";
}

.glyphicon-object-align-horizontal:before {
    content: "\e246";
}

.glyphicon-object-align-left:before {
    content: "\e247";
}

.glyphicon-object-align-vertical:before {
    content: "\e248";
}

.glyphicon-object-align-right:before {
    content: "\e249";
}

.glyphicon-triangle-right:before {
    content: "\e250";
}

.glyphicon-triangle-left:before {
    content: "\e251";
}

.glyphicon-triangle-bottom:before {
    content: "\e252";
}

.glyphicon-triangle-top:before {
    content: "\e253";
}

.glyphicon-console:before {
    content: "\e254";
}

.glyphicon-superscript:before {
    content: "\e255";
}

.glyphicon-subscript:before {
    content: "\e256";
}

.glyphicon-menu-left:before {
    content: "\e257";
}

.glyphicon-menu-right:before {
    content: "\e258";
}

.glyphicon-menu-down:before {
    content: "\e259";
}

.glyphicon-menu-up:before {
    content: "\e260";
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'AvenirNext',-apple-system,BlinkMacSystemFont,segoe ui,roboto,oxygen,ubuntu,cantarell,fira sans,droid sans,helvetica neue,sans-serif;
    font-size: 13px;
    line-height: 1.42857143;
    color: #5e5e5e;
    background-color: #edecec;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #2196f3;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #0a6ebd;
    text-decoration: none;
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
    outline: none !important;
}

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 2px;
}

.img-thumbnail {
    padding: 3px;
    line-height: 1.42857143;
    background-color: #ffffff;
    border: 1px solid #ededed;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 18px;
    margin-bottom: 18px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

[role="button"] {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: #000000;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777777;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 18px;
    margin-bottom: 9px;
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
    font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 9px;
    margin-bottom: 9px;
}

h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
    font-size: 75%;
}

h1,
.h1 {
    font-size: 33px;
}

h2,
.h2 {
    font-size: 27px;
}

h3,
.h3 {
    font-size: 23px;
}

h4,
.h4 {
    font-size: 17px;
}

h5,
.h5 {
    font-size: 13px;
}

h6,
.h6 {
    font-size: 12px;
}

p {
    margin: 0 0 9px;
}

.lead {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .lead {
        font-size: 19.5px;
    }
}

small,
.small {
    font-size: 92%;
}

mark,
.mark {
    background-color: #ffa829;
    padding: .2em;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: #777777;
}

.text-primary {
    color: #2196f3;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #0c7cd5;
}

.text-success {
    color: #67bd6a;
}

a.text-success:hover,
a.text-success:focus {
    color: #49a84d;
}

.text-info {
    color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
    color: #245269;
}

.text-warning {
    color: #ffa829;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #f59200;
}

.text-danger {
    color: #f6675d;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #f33a2c;
}

.bg-primary {
    color: #fff;
    background-color: #2196f3;
}

a.bg-primary:hover,
a.bg-primary:focus {
    background-color: #0c7cd5;
}

.bg-success {
    background-color: #67bd6a;
}

a.bg-success:hover,
a.bg-success:focus {
    background-color: #49a84d;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #ffa829;
}

a.bg-warning:hover,
a.bg-warning:focus {
    background-color: #f59200;
}

.bg-danger {
    background-color: #f6675d;
}

a.bg-danger:hover,
a.bg-danger:focus {
    background-color: #f33a2c;
}

.page-header {
    padding-bottom: 8px;
    margin: 36px 0 18px;
    border-bottom: 1px solid #eeeeee;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 9px;
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

dl {
    margin-top: 0;
    margin-bottom: 18px;
}

dt,
dd {
    line-height: 1.42857143;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-horizontal dd {
        margin-left: 180px;
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777777;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

blockquote {
    padding: 9px 18px;
    margin: 0 0 18px;
    font-size: 16.25px;
    border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
    margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857143;
    color: #777777;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
    content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eeeeee;
    border-left: 0;
    text-align: right;
}

.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
    content: '';
}

.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
    content: '\00A0 \2014';
}

address {
    margin-bottom: 18px;
    font-style: normal;
    line-height: 1.42857143;
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 2px;
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #ffffff;
    background-color: #333333;
    border-radius: 2px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none;
}

pre {
    display: block;
    padding: 8.5px;
    margin: 0 0 9px;
    font-size: 12px;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #cccccc;
    background-color: #333333;
    border: 1px solid #333333;
    border-radius: 2px;
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 100%;
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

table {
    background-color: #ffffff;
}

caption {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #777777;
    text-align: left;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: middle;
    border-top: 1px solid #f0f0f0;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #f0f0f0;
}

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}

.table > tbody + tbody {
    border-top: 2px solid #f0f0f0;
}

.table .table {
    background-color: #edecec;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 10px;
}

.table-bordered {
    border: 1px solid #f0f0f0;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #f0f0f0;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f4f4f4;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #fffcbe;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
    background-color: #fffba4;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background-color: #67bd6a;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #55b559;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background-color: #ffa829;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #ff9e0f;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #f6675d;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #f55145;
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 13.5px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #f0f0f0;
    }

    .table-responsive > .table {
        margin-bottom: 0;
    }

    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }

    .table-responsive > .table-bordered {
        border: 0;
    }

    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0;
    }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 18px;
    font-size: 19.5px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
    outline: none !important;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #000000;
}

.form-control {
    display: block;
    width: 100%;
    height: 35px;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #000000;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
    border-color: #b4b4b4;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(180, 180, 180, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(180, 180, 180, 0.6);
}

.form-control::-moz-placeholder {
    color: #999999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999999;
}

.form-control::-webkit-input-placeholder {
    color: #999999;
}

.form-control::-ms-expand {
    border: 0;
    background-color: transparent;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed;
}

textarea.form-control {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 35px;
    }

    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm,
    .input-group-sm input[type="date"],
    .input-group-sm input[type="time"],
    .input-group-sm input[type="datetime-local"],
    .input-group-sm input[type="month"] {
        line-height: 30px;
    }

    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg,
    .input-group-lg input[type="date"],
    .input-group-lg input[type="time"],
    .input-group-lg input[type="datetime-local"],
    .input-group-lg input[type="month"] {
        line-height: 40px;
    }
}

.form-group {
    margin-bottom: 15px;
}

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.radio label,
.checkbox label {
    min-height: 18px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9;
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 31px;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0;
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

select.input-sm {
    height: 30px;
    line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto;
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 30px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.input-lg {
    height: 40px;
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.3333333;
    border-radius: 0px;
}

select.input-lg {
    height: 40px;
    line-height: 40px;
}

textarea.input-lg,
select[multiple].input-lg {
    height: auto;
}

.form-group-lg .form-control {
    height: 40px;
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.3333333;
    border-radius: 0px;
}

.form-group-lg select.form-control {
    height: 40px;
    line-height: 40px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto;
}

.form-group-lg .form-control-static {
    height: 40px;
    min-height: 35px;
    padding: 11px 16px;
    font-size: 17px;
    line-height: 1.3333333;
}

.has-feedback {
    position: relative;
}

.has-feedback .form-control {
    padding-right: 43.75px;
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
    color: #67bd6a;
}

.has-success .form-control {
    border-color: #67bd6a;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
    border-color: #49a84d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #aedcb0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #aedcb0;
}

.has-success .input-group-addon {
    color: #67bd6a;
    border-color: #67bd6a;
    background-color: #67bd6a;
}

.has-success .form-control-feedback {
    color: #67bd6a;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
    color: #ffa829;
}

.has-warning .form-control {
    border-color: #ffa829;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
    border-color: #f59200;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffd28f;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffd28f;
}

.has-warning .input-group-addon {
    color: #ffa829;
    border-color: #ffa829;
    background-color: #ffa829;
}

.has-warning .form-control-feedback {
    color: #ffa829;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #f6675d;
}

.has-error .form-control {
    border-color: #f6675d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
    border-color: #f33a2c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fbc2bd;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fbc2bd;
}

.has-error .input-group-addon {
    color: #f6675d;
    border-color: #f6675d;
    background-color: #f6675d;
}

.has-error .form-control-feedback {
    color: #f6675d;
}

.has-feedback label ~ .form-control-feedback {
    top: 23px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #9e9e9e;
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-static {
        display: inline-block;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
        width: auto;
    }

    .form-inline .input-group > .form-control {
        width: 100%;
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio label,
    .form-inline .checkbox label {
        padding-left: 0;
    }

    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0;
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 25px;
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px;
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 17px;
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px;
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    border-radius: 2px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
    outline: none !important;
}

.btn:hover,
.btn:focus,
.btn.focus {
    color: #333333;
    text-decoration: none;
}

.btn:active,
.btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-default {
    color: #333333;
    background-color: #ffffff;
    border-color: #cccccc;
}

.btn-default:focus,
.btn-default.focus {
    color: #333333;
    background-color: #e6e6e6;
    border-color: #8c8c8c;
}

.btn-default:hover {
    color: #333333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #333333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
    color: #333333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
    background-color: #ffffff;
    border-color: #cccccc;
}

.btn-default .badge {
    color: #ffffff;
    background-color: #333333;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
    color: #333333;
    background-color: #ffffff;
    border-color: transparent;
}

.btn-default:hover:hover,
.btn-default:focus:hover,
.btn-default.focus:hover,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:hover:focus,
.btn-default:focus:focus,
.btn-default.focus:focus,
.btn-default:active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:hover.focus,
.btn-default:focus.focus,
.btn-default.focus.focus,
.btn-default:active.focus,
.open > .dropdown-toggle.btn-default.focus {
    color: #333333;
    background-color: #ffffff;
    border-color: transparent;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active {
    background-color: #ffffff;
    border-color: #cccccc;
}

.btn-default .badge {
    color: #ffffff;
    background-color: #333333;
}

.btn-primary {
    color: #ffffff;
    background-color: #2196f3;
    border-color: #0d8aee;
}

.btn-primary:focus,
.btn-primary.focus {
    color: #ffffff;
    background-color: #0c7cd5;
    border-color: #064475;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #0c7cd5;
    border-color: #0a68b4;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #0c7cd5;
    border-color: #0a68b4;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
    color: #ffffff;
    background-color: #0a68b4;
    border-color: #064475;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
    background-color: #2196f3;
    border-color: #0d8aee;
}

.btn-primary .badge {
    color: #2196f3;
    background-color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #2196f3;
    border-color: transparent;
}

.btn-primary:hover:hover,
.btn-primary:focus:hover,
.btn-primary.focus:hover,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:hover:focus,
.btn-primary:focus:focus,
.btn-primary.focus:focus,
.btn-primary:active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:hover.focus,
.btn-primary:focus.focus,
.btn-primary.focus.focus,
.btn-primary:active.focus,
.open > .dropdown-toggle.btn-primary.focus {
    color: #ffffff;
    background-color: #2196f3;
    border-color: transparent;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active {
    background-color: #2196f3;
    border-color: #0d8aee;
}

.btn-primary .badge {
    color: #2196f3;
    background-color: #ffffff;
}

.btn-success {
    color: #ffffff;
    background-color: #4caf50;
    border-color: #449d48;
}

.btn-success:focus,
.btn-success.focus {
    color: #ffffff;
    background-color: #3d8b40;
    border-color: #1e441f;
}

.btn-success:hover {
    color: #ffffff;
    background-color: #3d8b40;
    border-color: #327334;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    color: #ffffff;
    background-color: #3d8b40;
    border-color: #327334;
}

.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
    color: #ffffff;
    background-color: #327334;
    border-color: #1e441f;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    background-image: none;
}

.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
    background-color: #4caf50;
    border-color: #449d48;
}

.btn-success .badge {
    color: #4caf50;
    background-color: #ffffff;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.open > .dropdown-toggle.btn-success {
    color: #ffffff;
    background-color: #4caf50;
    border-color: transparent;
}

.btn-success:hover:hover,
.btn-success:focus:hover,
.btn-success.focus:hover,
.btn-success:active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:hover:focus,
.btn-success:focus:focus,
.btn-success.focus:focus,
.btn-success:active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:hover.focus,
.btn-success:focus.focus,
.btn-success.focus.focus,
.btn-success:active.focus,
.open > .dropdown-toggle.btn-success.focus {
    color: #ffffff;
    background-color: #4caf50;
    border-color: transparent;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    background-image: none;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active {
    background-color: #4caf50;
    border-color: #449d48;
}

.btn-success .badge {
    color: #4caf50;
    background-color: #ffffff;
}

.btn-info {
    color: #ffffff;
    background-color: #8bc34a;
    border-color: #00a5bb;
}

.btn-info:focus,
.btn-info.focus {
    color: #ffffff;
    background-color: #008fa1;
    border-color: #00343b;
}

.btn-info:hover {
    color: #ffffff;
    background-color: #008fa1;
    border-color: #006f7d;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    color: #ffffff;
    background-color: #008fa1;
    border-color: #006f7d;
}

.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
    color: #ffffff;
    background-color: #006f7d;
    border-color: #00343b;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    background-image: none;
}

.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
    background-color: #00bcd4;
    border-color: #00a5bb;
}

.btn-info .badge {
    color: #00bcd4;
    background-color: #ffffff;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.open > .dropdown-toggle.btn-info {
    color: #ffffff;
    background-color: #00bcd4;
    border-color: transparent;
}

.btn-info:hover:hover,
.btn-info:focus:hover,
.btn-info.focus:hover,
.btn-info:active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:hover:focus,
.btn-info:focus:focus,
.btn-info.focus:focus,
.btn-info:active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:hover.focus,
.btn-info:focus.focus,
.btn-info.focus.focus,
.btn-info:active.focus,
.open > .dropdown-toggle.btn-info.focus {
    color: #ffffff;
    background-color: #00bcd4;
    border-color: transparent;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    background-image: none;
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active {
    background-color: #00bcd4;
    border-color: #00a5bb;
}

.btn-info .badge {
    color: #00bcd4;
    background-color: #ffffff;
}

.btn-warning {
    color: #ffffff;
    background-color: #ff9800;
    border-color: #e68900;
}

.btn-warning:focus,
.btn-warning.focus {
    color: #ffffff;
    background-color: #cc7a00;
    border-color: #663d00;
}

.btn-warning:hover {
    color: #ffffff;
    background-color: #cc7a00;
    border-color: #a86400;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    color: #ffffff;
    background-color: #cc7a00;
    border-color: #a86400;
}

.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
    color: #ffffff;
    background-color: #a86400;
    border-color: #663d00;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    background-image: none;
}

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
    background-color: #ff9800;
    border-color: #e68900;
}

.btn-warning .badge {
    color: #ff9800;
    background-color: #ffffff;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning:active,
.open > .dropdown-toggle.btn-warning {
    color: #ffffff;
    background-color: #ff9800;
    border-color: transparent;
}

.btn-warning:hover:hover,
.btn-warning:focus:hover,
.btn-warning.focus:hover,
.btn-warning:active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:hover:focus,
.btn-warning:focus:focus,
.btn-warning.focus:focus,
.btn-warning:active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:hover.focus,
.btn-warning:focus.focus,
.btn-warning.focus.focus,
.btn-warning:active.focus,
.open > .dropdown-toggle.btn-warning.focus {
    color: #ffffff;
    background-color: #ff9800;
    border-color: transparent;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    background-image: none;
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active {
    background-color: #ff9800;
    border-color: #e68900;
}

.btn-warning .badge {
    color: #ff9800;
    background-color: #ffffff;
}

.btn-danger {
    color: #ffffff;
    background-color: #f44336;
    border-color: #f32c1e;
}

.btn-danger:focus,
.btn-danger.focus {
    color: #ffffff;
    background-color: #ea1c0d;
    border-color: #891008;
}

.btn-danger:hover {
    color: #ffffff;
    background-color: #ea1c0d;
    border-color: #c8180b;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #ea1c0d;
    border-color: #c8180b;
}

.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
    color: #ffffff;
    background-color: #c8180b;
    border-color: #891008;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    background-image: none;
}

.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
    background-color: #f44336;
    border-color: #f32c1e;
}

.btn-danger .badge {
    color: #f44336;
    background-color: #ffffff;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger:active,
.open > .dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #f44336;
    border-color: transparent;
}

.btn-danger:hover:hover,
.btn-danger:focus:hover,
.btn-danger.focus:hover,
.btn-danger:active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:hover:focus,
.btn-danger:focus:focus,
.btn-danger.focus:focus,
.btn-danger:active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:hover.focus,
.btn-danger:focus.focus,
.btn-danger.focus.focus,
.btn-danger:active.focus,
.open > .dropdown-toggle.btn-danger.focus {
    color: #ffffff;
    background-color: #f44336;
    border-color: transparent;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    background-image: none;
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active {
    background-color: #f44336;
    border-color: #f32c1e;
}

.btn-danger .badge {
    color: #f44336;
    background-color: #ffffff;
}

.btn-link {
    color: #2196f3;
    font-weight: normal;
    border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
    color: #0a6ebd;
    text-decoration: none;
    background-color: transparent;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none;
}

.btn-lg,
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.3333333;
    border-radius: 2px;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

.btn-xs,
.btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.fade.in {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 13px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 8px 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.08);
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #5e5e5e;
    white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #333333;
    background-color: rgba(0, 0, 0, 0.075);
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #333333;
    text-decoration: none;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.075);
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #e4e4e4;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    cursor: not-allowed;
}

.open > .dropdown-menu {
    display: block;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.dropdown-menu-left {
    left: 0;
    right: auto;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777777;
    white-space: nowrap;
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0;
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto;
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    float: left;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
    z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    margin-left: -5px;
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left;
}

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
    margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group > .btn-group {
    float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn .caret {
    margin-left: 0;
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

.btn-group-vertical > .btn-group > .btn {
    float: none;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%;
}

.btn-group-justified > .btn-group .btn {
    width: 100%;
}

.btn-group-justified > .btn-group .dropdown-menu {
    left: auto;
}

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0;
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.input-group .form-control:focus {
    z-index: 3;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
    height: 40px;
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.3333333;
    border-radius: 0px;
}

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
    height: 40px;
    line-height: 40px;
}

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
    height: auto;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px;
}

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: normal;
    line-height: 1;
    color: #000000;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 2px;
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 17px;
    border-radius: 0px;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.input-group-addon:first-child {
    border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.input-group-addon:last-child {
    border-left: 0;
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

.input-group-btn > .btn {
    position: relative;
}

.input-group-btn > .btn + .btn {
    margin-left: -1px;
}

.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
    z-index: 2;
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
    margin-right: -1px;
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px;
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.nav > li {
    position: relative;
    display: block;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}

.nav > li.disabled > a {
    color: #777777;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
    color: #777777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #2196f3;
}

.nav .nav-divider {
    height: 1px;
    margin: 8px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.nav > li > a > img {
    max-width: none;
}

.nav-tabs {
    border-bottom: 1px solid #ffffff;
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 2px 2px 0 0;
}

.nav-tabs > li > a:hover {
    border-color: #eeeeee #eeeeee #ffffff;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #555555;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-bottom-color: transparent;
    cursor: default;
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0;
}

.nav-tabs.nav-justified > li {
    float: none;
}

.nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0;
    }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 2px;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #dddddd;
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #dddddd;
        border-radius: 2px 2px 0 0;
    }

    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #edecec;
    }
}

.nav-pills > li {
    float: left;
}

.nav-pills > li > a {
    border-radius: 2px;
}

.nav-pills > li + li {
    margin-left: 2px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    color: #ffffff;
    background-color: #2196f3;
}

.nav-stacked > li {
    float: none;
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0;
}

.nav-justified {
    width: 100%;
}

.nav-justified > li {
    float: none;
}

.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px;
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }

    .nav-justified > li > a {
        margin-bottom: 0;
    }
}

.nav-tabs-justified {
    border-bottom: 0;
}

.nav-tabs-justified > li > a {
    margin-right: 0;
    border-radius: 2px;
}

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border: 1px solid #dddddd;
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #dddddd;
        border-radius: 2px 2px 0 0;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #edecec;
    }
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 2px;
    }
}

@media (min-width: 768px) {
    .navbar-header {
        float: left;
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
    overflow-y: auto;
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }

    .navbar-collapse.in {
        overflow-y: visible;
    }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px;
    }
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 768px) {
    .container > .navbar-header,
    .container-fluid > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.navbar-brand {
    float: left;
    padding: 16px 15px;
    font-size: 17px;
    line-height: 18px;
    height: 50px;
}

.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none;
}

.navbar-brand > img {
    display: block;
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 2px;
}

.navbar-toggle:focus {
    outline: 0;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-nav {
    margin: 8px -15px;
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 18px;
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

    .navbar-nav .open .dropdown-menu > li > a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 18px;
    }

    .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-nav .open .dropdown-menu > li > a:focus {
        background-image: none;
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }

    .navbar-nav > li {
        float: left;
    }

    .navbar-nav > li > a {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 7.5px;
    margin-bottom: 7.5px;
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .navbar-form .form-control-static {
        display: inline-block;
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle;
    }

    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn,
    .navbar-form .input-group .form-control {
        width: auto;
    }

    .navbar-form .input-group > .form-control {
        width: 100%;
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .radio label,
    .navbar-form .checkbox label {
        padding-left: 0;
    }

    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0;
    }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.navbar-btn {
    margin-top: 7.5px;
    margin-bottom: 7.5px;
}

.navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px;
}

.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px;
}

.navbar-text {
    margin-top: 16px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important;
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px;
    }

    .navbar-right ~ .navbar-right {
        margin-right: 0;
    }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
    color: #777777;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent;
}

.navbar-default .navbar-text {
    color: #777777;
}

.navbar-default .navbar-nav > li > a {
    color: #777777;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #333333;
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
    border-color: #dddddd;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #dddddd;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888888;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555555;
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777777;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333333;
        background-color: transparent;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #cccccc;
        background-color: transparent;
    }
}

.navbar-default .navbar-link {
    color: #777777;
}

.navbar-default .navbar-link:hover {
    color: #333333;
}

.navbar-default .btn-link {
    color: #777777;
}

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
    color: #333333;
}

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
    color: #cccccc;
}

.navbar-inverse {
    background-color: #222222;
    border-color: #080808;
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #ffffff;
    background-color: transparent;
}

.navbar-inverse .navbar-text {
    color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #ffffff;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
}

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
}

.navbar-inverse .navbar-toggle {
    border-color: #333333;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #333333;
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #ffffff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #080808;
    color: #ffffff;
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #ffffff;
        background-color: transparent;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #ffffff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444444;
        background-color: transparent;
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d;
}

.navbar-inverse .navbar-link:hover {
    color: #ffffff;
}

.navbar-inverse .btn-link {
    color: #9d9d9d;
}

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
    color: #ffffff;
}

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444444;
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 18px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 2px;
}

.breadcrumb > li {
    display: inline-block;
}

.breadcrumb > li + li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #cccccc;
}

.breadcrumb > .active {
    color: #777777;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 18px 0;
    border-radius: 2px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #7e7e7e;
    background-color: #e2e2e2;
    border: 1px solid #ffffff;
    margin-left: -1px;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #333333;
    background-color: #d7d7d7;
    border-color: #ffffff;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #ffffff;
    background-color: #00bcd4;
    border-color: #ffffff;
    cursor: default;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777777;
    background-color: #e2e2e2;
    border-color: #ffffff;
    cursor: not-allowed;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
}

.pager {
    padding-left: 0;
    margin: 18px 0;
    list-style: none;
    text-align: center;
}

.pager li {
    display: inline;
}

.pager li > a,
.pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #e2e2e2;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.pager li > a:hover,
.pager li > a:focus {
    text-decoration: none;
    background-color: #d7d7d7;
}

.pager .next > a,
.pager .next > span {
    float: right;
}

.pager .previous > a,
.pager .previous > span {
    float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
    color: #777777;
    background-color: #e2e2e2;
    cursor: not-allowed;
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

a.label:hover,
a.label:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.label:empty {
    display: none;
}

.btn .label {
    position: relative;
    top: -1px;
}

.label-default {
    background-color: #777777;
}

.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #5e5e5e;
}

.label-primary {
    background-color: #2196f3;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #0c7cd5;
}

.label-success {
    background-color: #4caf50;
}

.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #3d8b40;
}

.label-info {
    background-color: #00bcd4;
}

.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #008fa1;
}

.label-warning {
    background-color: #ff9800;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #cc7a00;
}

.label-danger {
    background-color: #f44336;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #ea1c0d;
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #2196f3;
    border-radius: 2px;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.btn-xs .badge,
.btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px;
}

a.badge:hover,
a.badge:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: #ffffff;
    background-color: #2196f3;
}

.list-group-item > .badge {
    float: right;
}

.list-group-item > .badge + .badge {
    margin-right: 5px;
}

.nav-pills > li > a > .badge {
    margin-left: 3px;
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #f7f7f7;
}

.jumbotron h1,
.jumbotron .h1 {
    color: inherit;
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 200;
}

.jumbotron > hr {
    border-top-color: #dedede;
}

.container .jumbotron,
.container-fluid .jumbotron {
    border-radius: 2px;
    padding-left: 15px;
    padding-right: 15px;
}

.jumbotron .container {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px;
    }

    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 59px;
    }
}

.thumbnail {
    display: block;
    padding: 3px;
    margin-bottom: 18px;
    line-height: 1.42857143;
    background-color: #ffffff;
    border: 1px solid #ededed;
    border-radius: 2px;
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
}

.thumbnail > img,
.thumbnail a > img {
    margin-left: auto;
    margin-right: auto;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #2196f3;
}

.thumbnail .caption {
    padding: 9px;
    color: #5e5e5e;
}

.alert {
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid transparent;
    border-radius: 2px;
}

.alert h4 {
    margin-top: 0;
    color: inherit;
}

.alert .alert-link {
    font-weight: bold;
}

.alert > p,
.alert > ul {
    margin-bottom: 0;
}

.alert > p + p {
    margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

.alert-success {
    background-color: #4caf50;
    border-color: transparent;
    color: #ffffff;
}

.alert-success hr {
    border-top-color: rgba(0, 0, 0, 0);
}

.alert-success .alert-link {
    color: #e6e6e6;
}

.alert-info {
    background-color: #2196f3;
    border-color: transparent;
    color: #ffffff;
}

.alert-info hr {
    border-top-color: rgba(0, 0, 0, 0);
}

.alert-info .alert-link {
    color: #e6e6e6;
}

.alert-warning {
    background-color: #ffc107;
    border-color: transparent;
    color: #ffffff;
}

.alert-warning hr {
    border-top-color: rgba(0, 0, 0, 0);
}

.alert-warning .alert-link {
    color: #e6e6e6;
}

.alert-danger {
    background-color: #f44336;
    border-color: transparent;
    color: #ffffff;
}

.alert-danger hr {
    border-top-color: rgba(0, 0, 0, 0);
}

.alert-danger .alert-link {
    color: #e6e6e6;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    overflow: hidden;
    height: 18px;
    margin-bottom: 18px;
    background-color: #f5f5f5;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    text-align: center;
    background-color: #2196f3;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
    background-color: #4caf50;
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
    background-color: #00bcd4;
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
    background-color: #ff9800;
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
    background-color: #f44336;
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media {
    margin-top: 15px;
}

.media:first-child {
    margin-top: 0;
}

.media,
.media-body {
    zoom: 1;
    overflow: hidden;
}

.media-body {
    width: 10000px;
}

.media-object {
    display: block;
}

.media-object.img-thumbnail {
    max-width: none;
}

.media-right,
.media > .pull-right {
    padding-left: 10px;
}

.media-left,
.media > .pull-left {
    padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top;
}

.media-middle {
    vertical-align: middle;
}

.media-bottom {
    vertical-align: bottom;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: transparent;
    border: 1px solid #f4f4f4;
}

.list-group-item:first-child {
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

a.list-group-item,
button.list-group-item {
    color: #555555;
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
    color: #333333;
}

a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
    text-decoration: none;
    color: #555555;
    background-color: #f5f5f5;
}

button.list-group-item {
    width: 100%;
    text-align: left;
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
    background-color: #ffffff;
    color: #b5b4b4;
    cursor: not-allowed;
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
    color: inherit;
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
    color: #b5b4b4;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    z-index: 2;
    color: #000000;
    background-color: #f5f5f5;
    border-color: #f4f4f4;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
    color: #ffffff;
}

.list-group-item-success {
    color: #67bd6a;
    background-color: #67bd6a;
}

a.list-group-item-success,
button.list-group-item-success {
    color: #67bd6a;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
    color: inherit;
}

a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
    color: #67bd6a;
    background-color: #55b559;
}

a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #67bd6a;
    border-color: #67bd6a;
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
    color: #31708f;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
    color: inherit;
}

a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3;
}

a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f;
}

.list-group-item-warning {
    color: #ffa829;
    background-color: #ffa829;
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #ffa829;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
    color: inherit;
}

a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
    color: #ffa829;
    background-color: #ff9e0f;
}

a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #ffa829;
    border-color: #ffa829;
}

.list-group-item-danger {
    color: #f6675d;
    background-color: #f6675d;
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: #f6675d;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
    color: inherit;
}

a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
    color: #f6675d;
    background-color: #f55145;
}

a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #f6675d;
    border-color: #f6675d;
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}

.panel {
    margin-bottom: 18px;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
    padding: 15px;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15px;
    color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
    color: inherit;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #dddddd;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
    margin-bottom: 0;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.list-group + .panel-footer {
    border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
    margin-bottom: 0;
}

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px;
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
    border-top-left-radius: 1px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
    border-top-right-radius: 1px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 1px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 1px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
    border-top: 1px solid #f0f0f0;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0;
}

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0;
}

.panel-group {
    margin-bottom: 18px;
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 2px;
}

.panel-group .panel + .panel {
    margin-top: 5px;
}

.panel-group .panel-heading {
    border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 1px solid #dddddd;
}

.panel-group .panel-footer {
    border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #dddddd;
}

.panel-default {
    border-color: #dddddd;
}

.panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #dddddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #dddddd;
}

.panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #333333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #dddddd;
}

.panel-primary {
    border-color: #2196f3;
}

.panel-primary > .panel-heading {
    color: #ffffff;
    background-color: #2196f3;
    border-color: #2196f3;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #2196f3;
}

.panel-primary > .panel-heading .badge {
    color: #2196f3;
    background-color: #ffffff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #2196f3;
}

.panel-success {
    border-color: #61b555;
}

.panel-success > .panel-heading {
    color: #67bd6a;
    background-color: #67bd6a;
    border-color: #61b555;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #61b555;
}

.panel-success > .panel-heading .badge {
    color: #67bd6a;
    background-color: #67bd6a;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #61b555;
}

.panel-info {
    border-color: #bce8f1;
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1;
}

.panel-warning {
    border-color: #ff760f;
}

.panel-warning > .panel-heading {
    color: #ffa829;
    background-color: #ffa829;
    border-color: #ff760f;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ff760f;
}

.panel-warning > .panel-heading .badge {
    color: #ffa829;
    background-color: #ffa829;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ff760f;
}

.panel-danger {
    border-color: #f54556;
}

.panel-danger > .panel-heading {
    color: #f6675d;
    background-color: #f6675d;
    border-color: #f54556;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #f54556;
}

.panel-danger > .panel-heading .badge {
    color: #f6675d;
    background-color: #f6675d;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #f54556;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
    padding: 24px;
    border-radius: 2px;
}

.well-sm {
    padding: 9px;
    border-radius: 2px;
}

.close {
    float: right;
    font-size: 19.5px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-color: #000000;
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}

.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid transparent;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: transparent;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid transparent;
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: 'AvenirNext', sans-serif;;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0);
}

.tooltip.in {
    opacity: 1;
    filter: alpha(opacity=100);
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0;
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px;
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0;
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #ffffff;
    text-align: center;
    background-color: #737373;
    border-radius: 2px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #737373;
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #737373;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #737373;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #737373;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #737373;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #737373;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #737373;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #737373;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: 'AvenirNext', sans-serif;;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 13px;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #ffffff;
    border-radius: 2px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
    margin-top: -10px;
}

.popover.right {
    margin-left: 10px;
}

.popover.bottom {
    margin-top: 10px;
}

.popover.left {
    margin-left: -10px;
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 13px;
    background-color: #ffffff;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 1px 1px 0 0;
}

.popover-content {
    padding: 9px 14px;
}

.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow {
    border-width: 11px;
}

.popover > .arrow:after {
    border-width: 10px;
    content: "";
}

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #cccccc;
    border-top-color: #ffffff;
    bottom: -11px;
}

.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #ffffff;
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #cccccc;
    border-right-color: #ffffff;
}

.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #ffffff;
}

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #cccccc;
    border-bottom-color: #ffffff;
    top: -11px;
}

.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #ffffff;
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #cccccc;
    border-left-color: #ffffff;
}

.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #ffffff;
    bottom: -10px;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px;
    }

    .carousel-inner > .item.next,
    .carousel-inner > .item.active.right {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        left: 0;
    }

    .carousel-inner > .item.prev,
    .carousel-inner > .item.active.left {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        left: 0;
    }

    .carousel-inner > .item.next.left,
    .carousel-inner > .item.prev.right,
    .carousel-inner > .item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0;
    }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    left: 100%;
}

.carousel-inner > .prev {
    left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}

.carousel-inner > .active.left {
    left: -100%;
}

.carousel-inner > .active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0);
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:hover,
.carousel-control:focus {
    outline: 0;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif;
}

.carousel-control .icon-prev:before {
    content: '\2039';
}

.carousel-control .icon-next:before {
    content: '\203a';
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
    text-shadow: none;
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px;
    }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px;
    }

    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px;
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    content: " ";
    display: table;
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

@-ms-viewport {
    width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table !important;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table !important;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table !important;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table !important;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table !important;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

/*
 * Avenir Next
 */

@font-face{
    font-family: 'AvenirNext', sans-serif;;
    src:url("/src/backend/fonts/avenir/2cd55546-ec00-4af9-aeca-4a3cd186da53.woff2") format("woff2"), url("/src/backend/fonts/avenir/1e9892c0-6927-4412-9874-1b82801ba47a.woff") format("woff"), url("/src/backend/fonts/avenir/52a192b1-bea5-4b48-879f-107f009b666f.svg#52a192b1-bea5-4b48-879f-107f009b666f") format("svg");
    font-style: normal;
}

@font-face{
    font-family: 'AvenirNext', sans-serif;;
    src:url("/src/backend/fonts/avenir/14c73713-e4df-4dba-933b-057feeac8dd1.woff2") format("woff2"),url("/src/backend/fonts/avenir/b8e906a1-f5e8-4bf1-8e80-82c646ca4d5f.woff"), url("/src/backend/fonts/avenir/ed104d8c-7f39-4e8b-90a9-4076be06b857.svg#ed104d8c-7f39-4e8b-90a9-4076be06b857") format("svg");
    font-style: normal;
    font-weight: bold;
}

/**
 * Glyphicons
 */

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('/src/backend/fonts/glyphicons-halflings-regular.eot');
    src: url('/src/backend/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/src/backend/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('/src/backend/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/src/backend/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/src/backend/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}



/*
 * Vendors
 */

.icon-0:before {
    content: ":";
}

.icon-1:before {
    content: "p";
}

.icon-2:before {
    content: "S";
}

.icon-3:before {
    content: "Q";
}

.icon-4:before {
    content: "S";
}

.icon-5:before {
    content: "W";
}

.icon-6:before {
    content: "W";
}

.icon-7:before {
    content: "W";
}

.icon-8:before {
    content: "W";
}

.icon-9:before {
    content: "I";
}

.icon-10:before {
    content: "W";
}

.icon-11:before {
    content: "I";
}

.icon-12:before {
    content: "I";
}

.icon-13:before {
    content: "I";
}

.icon-14:before {
    content: "I";
}

.icon-15:before {
    content: "W";
}

.icon-16:before {
    content: "I";
}

.icon-17:before {
    content: "W";
}

.icon-18:before {
    content: "U";
}

.icon-19:before {
    content: "Z";
}

.icon-20:before {
    content: "Z";
}

.icon-21:before {
    content: "Z";
}

.icon-22:before {
    content: "Z";
}

.icon-23:before {
    content: "Z";
}

.icon-24:before {
    content: "E";
}

.icon-25:before {
    content: "E";
}

.icon-26:before {
    content: "3";
}

.icon-27:before {
    content: "a";
}

.icon-28:before {
    content: "A";
}

.icon-29:before {
    content: "a";
}

.icon-30:before {
    content: "A";
}

.icon-31:before {
    content: "6";
}

.icon-32:before {
    content: "1";
}

.icon-33:before {
    content: "6";
}

.icon-34:before {
    content: "1";
}

.icon-35:before {
    content: "W";
}

.icon-36:before {
    content: "1";
}

.icon-37:before {
    content: "S";
}

.icon-38:before {
    content: "S";
}

.icon-39:before {
    content: "S";
}

.icon-40:before {
    content: "M";
}

.icon-41:before {
    content: "W";
}

.icon-42:before {
    content: "I";
}

.icon-43:before {
    content: "W";
}

.icon-44:before {
    content: "a";
}

.icon-45:before {
    content: "S";
}

.icon-46:before {
    content: "U";
}

.icon-47:before {
    content: "S";
}

.btn-file {
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}

.btn-file > input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 23px;
    height: 100%;
    width: 100%;
    direction: ltr;
    cursor: pointer;
}

.fileinput {
    margin-bottom: 9px;
    display: inline-block;
}

.fileinput .form-control {
    padding-top: 7px;
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 0px;
    vertical-align: middle;
    cursor: text;
}

.fileinput .thumbnail {
    overflow: hidden;
    display: inline-block;
    margin-bottom: 5px;
    vertical-align: middle;
    text-align: center;
}

.fileinput .thumbnail > img {
    max-height: 100%;
}

.fileinput .btn {
    vertical-align: middle;
}

.fileinput-exists .fileinput-new,
.fileinput-new .fileinput-exists {
    display: none;
}

.fileinput-inline .fileinput-controls {
    display: inline;
}

.fileinput-filename {
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
}

.form-control .fileinput-filename {
    vertical-align: bottom;
}

.fileinput.input-group {
    display: table;
}

.fileinput.input-group > * {
    position: relative;
    z-index: 2;
}

.fileinput.input-group > .btn-file {
    z-index: 1;
}

.fileinput-new.input-group .btn-file,
.fileinput-new .input-group .btn-file {
    border-radius: 0 2px 2px 0;
}

.fileinput-new.input-group .btn-file.btn-xs,
.fileinput-new .input-group .btn-file.btn-xs,
.fileinput-new.input-group .btn-file.btn-sm,
.fileinput-new .input-group .btn-file.btn-sm {
    border-radius: 0 2px 2px 0;
}

.fileinput-new.input-group .btn-file.btn-lg,
.fileinput-new .input-group .btn-file.btn-lg {
    border-radius: 0 2px 2px 0;
}

.form-group.has-warning .fileinput .fileinput-preview {
    color: #ffa829;
}

.form-group.has-warning .fileinput .thumbnail {
    border-color: #ff760f;
}

.form-group.has-error .fileinput .fileinput-preview {
    color: #f6675d;
}

.form-group.has-error .fileinput .thumbnail {
    border-color: #f54556;
}

.form-group.has-success .fileinput .fileinput-preview {
    color: #67bd6a;
}

.form-group.has-success .fileinput .thumbnail {
    border-color: #61b555;
}

.input-group-addon:not(:first-child) {
    border-left: 0;
}

/*!
 * Waves v0.7.4
 * http://fian.my.id/Waves
 *
 * Copyright 2014 Alfiana E. Sibuea and other contributors
 * Released under the MIT license
 * https://github.com/fians/Waves/blob/master/LICENSE
 */

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    background: -webkit-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: scale(0) translate(0, 0);
    -moz-transform: scale(0) translate(0, 0);
    -ms-transform: scale(0) translate(0, 0);
    -o-transform: scale(0) translate(0, 0);
    transform: scale(0) translate(0, 0);
    pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
    background: -webkit-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
}

.waves-effect.waves-classic .waves-ripple {
    background: rgba(0, 0, 0, 0.2);
}

.waves-effect.waves-classic.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
}

.waves-notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.waves-button,
.waves-circle {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, #ffffff 100%, #000000 100%);
}

.waves-button,
.waves-button:hover,
.waves-button:visited,
.waves-button-input {
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    outline: none;
    color: inherit;
    background-color: rgba(0, 0, 0, 0);
    font-size: 1em;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    z-index: 1;
}

.waves-button {
    padding: 0.85em 1.1em;
    border-radius: 0.2em;
}

.waves-button-input {
    margin: 0;
    padding: 0.85em 1.1em;
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom;
}

.waves-input-wrapper.waves-button {
    padding: 0;
}

.waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
}

.waves-float {
    -webkit-mask-image: none;
    -webkit-box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.waves-float:active {
    -webkit-box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
}

.waves-block {
    display: block;
}

/* Firefox Bug: link not triggered */

a.waves-effect .waves-ripple {
    z-index: -1;
}

/**
 * google-material-color v1.2.6
 * https://github.com/danlevan/google-material-color
 */

/*
 * Load Website related LESS files
 */

/*
 * Generate Margin Class
 * margin, margin-top, margin-bottom, margin-left, margin-right
 */

.m-0 {
    margin: 0px !important;
}

.m-t-0 {
    margin-top: 0px !important;
}

.m-b-0 {
    margin-bottom: 0px !important;
}

.m-l-0 {
    margin-left: 0px !important;
}

.m-r-0 {
    margin-right: 0px !important;
}

.m-b-1 {
    margin-bottom: 1px !important;
}

.m-5 {
    margin: 5px !important;
}

.m-t-5 {
    margin-top: 5px !important;
}

.m-b-5 {
    margin-bottom: 5px !important;
}

.m-l-5 {
    margin-left: 5px !important;
}

.m-r-5 {
    margin-right: 5px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.m-l-10 {
    margin-left: 10px !important;
}

.m-r-10 {
    margin-right: 10px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-b-15 {
    margin-bottom: 15px !important;
}

.m-l-15 {
    margin-left: 15px !important;
}

.m-r-15 {
    margin-right: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-t-20 {
    margin-top: 20px !important;
}

.m-b-20 {
    margin-bottom: 20px !important;
}

.m-l-20 {
    margin-left: 20px !important;
}

.m-r-20 {
    margin-right: 20px !important;
}

.m-25 {
    margin: 25px !important;
}

.m-t-25 {
    margin-top: 25px !important;
}

.m-b-25 {
    margin-bottom: 25px !important;
}

.m-l-25 {
    margin-left: 25px !important;
}

.m-r-25 {
    margin-right: 25px !important;
}

.m-30 {
    margin: 30px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-b-30 {
    margin-bottom: 30px !important;
}

.m-l-30 {
    margin-left: 30px !important;
}

.m-r-30 {
    margin-right: 30px !important;
}

/*
 * Generate Padding Class
 * padding, padding-top, padding-bottom, padding-left, padding-right
 */

.p-0 {
    padding: 0px !important;
}

.p-t-0 {
    padding-top: 0px !important;
}

.p-b-0 {
    padding-bottom: 0px !important;
}

.p-l-0 {
    padding-left: 0px !important;
}

.p-r-0 {
    padding-right: 0px !important;
}


.p-2 {
    padding: 2px !important;
}

.p-t-2 {
    padding-top: 2px !important;
}

.p-b-2 {
    padding-bottom: 2px !important;
}

.p-l-2 {
    padding-left: 2px !important;
}

.p-r-2 {
    padding-right: 2px !important;
}

.p-5 {
    padding: 5px !important;
}

.p-t-5 {
    padding-top: 5px !important;
}

.p-b-5 {
    padding-bottom: 5px !important;
}

.p-l-5 {
    padding-left: 5px !important;
}

.p-r-5 {
    padding-right: 5px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-t-10 {
    padding-top: 10px !important;
}

.p-b-10 {
    padding-bottom: 10px !important;
}

.p-l-10 {
    padding-left: 10px !important;
}

.p-r-10 {
    padding-right: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-t-15 {
    padding-top: 15px !important;
}

.p-b-15 {
    padding-bottom: 15px !important;
}

.p-l-15 {
    padding-left: 15px !important;
}

.p-r-15 {
    padding-right: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-t-20 {
    padding-top: 20px !important;
}

.p-b-20 {
    padding-bottom: 20px !important;
}

.p-l-20 {
    padding-left: 20px !important;
}

.p-r-20 {
    padding-right: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-t-25 {
    padding-top: 25px !important;
}

.p-b-25 {
    padding-bottom: 25px !important;
}

.p-l-25 {
    padding-left: 25px !important;
}

.p-r-25 {
    padding-right: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-t-30 {
    padding-top: 30px !important;
}

.p-b-30 {
    padding-bottom: 30px !important;
}

.p-l-30 {
    padding-left: 30px !important;
}

.p-r-30 {
    padding-right: 30px !important;
}

/*
 * Generate Font-Size Classes (8px - 20px)
 */

.f-8 {
    font-size: 8px !important;
}

.f-9 {
    font-size: 9px !important;
}

.f-10 {
    font-size: 10px !important;
}

.f-11 {
    font-size: 11px !important;
}

.f-12 {
    font-size: 12px !important;
}

.f-13 {
    font-size: 13px !important;
}

.f-14 {
    font-size: 14px !important;
}

.f-15 {
    font-size: 15px !important;
}

.f-16 {
    font-size: 16px !important;
}

.f-17 {
    font-size: 17px !important;
}

.f-18 {
    font-size: 18px !important;
}

.f-19 {
    font-size: 19px !important;
}

.f-20 {
    font-size: 20px !important;
}

/*
 * Font Weight
 */

.f-300 {
    font-weight: 300 !important;
}

.f-400 {
    font-weight: 400 !important;
}

.f-500 {
    font-weight: 500 !important;
}

.f-700 {
    font-weight: 700 !important;
}

/*
 * Position Classes
 */

.p-relative {
    position: relative !important;
}

.p-absolute {
    position: absolute !important;
}

.p-fixed {
    position: fixed !important;
}

.p-static {
    position: static !important;
}

/*
 * Overflow
 */

.o-hidden {
    overflow: hidden !important;
}

.o-visible {
    overflow: visible !important;
}

.o-auto {
    overflow: auto !important;
}

/*
 * Display
 */

.d-block {
    display: block !important;
}

.di-block {
    display: inline-block !important;
}

/*
 * Material Background Colors
 */

.bgm-white {
    background-color: #ffffff !important;
}

.c-white {
    color: #ffffff !important;
}

.bgm-black {
    background-color: #000000 !important;
}

.c-black {
    color: #000000 !important;
}

.bgm-brown {
    background-color: #795548 !important;
}

.c-brown {
    color: #795548 !important;
}

.bgm-pink {
    background-color: #e91e63 !important;
}

.c-pink {
    color: #e91e63 !important;
}

.bgm-red {
    background-color: #f44336 !important;
}

.c-red {
    color: #f44336 !important;
}

.bgm-blue {
    background-color: #2196f3 !important;
}

.c-blue {
    color: #2196f3 !important;
}

.bgm-purple {
    background-color: #9c27b0 !important;
}

.c-purple {
    color: #9c27b0 !important;
}

.bgm-deeppurple {
    background-color: #673ab7 !important;
}

.c-deeppurple {
    color: #673ab7 !important;
}

.bgm-lightblue {
    background-color: #03a9f4 !important;
}

.c-lightblue {
    color: #03a9f4 !important;
}

.bgm-cyan {
    background-color: #00bcd4 !important;
}

.c-cyan {
    color: #00bcd4 !important;
}

.bgm-teal {
    background-color: #009688 !important;
}

.c-teal {
    color: #009688 !important;
}

.bgm-green {
    background-color: #4caf50 !important;
}

.c-green {
    color: #4caf50 !important;
}

.bgm-lightgreen {
    background-color: #8bc34a !important;
}

.c-lightgreen {
    color: #8bc34a !important;
}

.bgm-lime {
    background-color: #cddc39 !important;
}

.c-lime {
    color: #cddc39 !important;
}

.bgm-yellow {
    background-color: #ffeb3b !important;
}

.c-yellow {
    color: #ffeb3b !important;
}

.bgm-amber {
    background-color: #ffc107 !important;
}

.c-amber {
    color: #ffc107 !important;
}

.bgm-orange {
    background-color: #ff9800 !important;
}

.c-orange {
    color: #ff9800 !important;
}

.bgm-deeporange {
    background-color: #ff5722 !important;
}

.c-deeporange {
    color: #ff5722 !important;
}

.bgm-gray {
    background-color: #9e9e9e !important;
}

.c-gray {
    color: #9e9e9e !important;
}

.bgm-bluegray {
    background-color: #607d8b !important;
}

.c-bluegray {
    color: #607d8b !important;
}

.bgm-indigo {
    background-color: #3f51b5 !important;
}

.c-indigo {
    color: #3f51b5 !important;
}

/*
 * Background Colors
 */

.bg-black-trp {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.overlay-white {
    background-color: rgba(255, 255, 255, 0.12) !important;
}

/*
 * Border
 */

.b-0 {
    border: 0 !important;
}

/*
 * width
 */

.w-100 {
    width: 100% !important;
}

/*
 * Border Radius
 */

.brd-2 {
    border-radius: 2px;
}

/*
 * Text Overflow
 */

.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*
 * Media - Overriding the Media object to 3.2 version in order to prevent issues like text overflow.
 */

.media {
    overflow: visible;
}

.media:before,
.media:after {
    content: " ";
    display: table;
}

.media:after {
    clear: both;
}

.media:before,
.media:after {
    content: " ";
    display: table;
}

.media:after {
    clear: both;
}

.media > .pull-left {
    padding-right: 15px;
}

.media > .pull-right {
    padding-left: 15px;
}

.media-heading {
    font-size: 14px;
    margin-bottom: 10px;
}

.media-body {
    zoom: 1;
    display: block;
    width: auto;
}

.media-object {
    border-radius: 2px;
}

.close {
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-weight: normal;
    text-shadow: none;
}

.close:hover {
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}

.dl-horizontal dt {
    text-align: left;
}

*,
button,
input,
i,
a {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:active,
*:hover {
    outline: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

html {
    overflow-x: hidden\0/;
    -ms-overflow-style: none;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

* {
    -moz-font-smoothing: none;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

body:before {
    content: '';
    height: 235px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

audio,
video {
    outline: none;
}

p {
    margin-bottom: 20px;
}

blockquote {
    color: #AEAEAE;
}

pre {
    padding: 25px;
}

.container {
    padding: 0;
}

.container.c-boxed {
    max-width: 1200px;
}

#main {
    position: relative;
}

@media (min-width: 1280px) {
    #main {
        padding: 0 40px 30px 270px;
        min-height: calc(100vh - 159px);
    }
}

@media (max-width: 1279px) and (min-width: 768px) {
    #main {
        padding: 0 40px 30px;
    }
}

@media (max-width: 767px) {
    #main {
        padding: 0 15px 30px;
    }
}

.clist {
    list-style: none;
}

.clist > li:before {
    font-family: 'Material-Design-Iconic-Font';
    margin: 0 10px 0 -20px;
    vertical-align: middle;
}

.clist.clist-angle > li:before {
    content: "\f2fb";
}

.clist.clist-check > li:before {
    content: "\f26b";
}

.clist.clist-star > li:before {
    content: "\f27d";
}

#header {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    padding: 40px 45px;
    margin-bottom: 0px;
    z-index: 10;
}

@media (max-width: 767px) {
    #header {
        padding: 15px 25px;
    }
}

/*----------------------------------
    Logo
-----------------------------------*/

@media (min-width: 767px) {
    .h-logo {
        width: 223px;
    }
}

.h-logo a {
    color: #fff;
    font-weight: 700;
    font-size: 23px;
    display: inline-block;
}

.h-logo a small {
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    margin-top: -3px;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 1280px) {
    .h-logo .menu-collapse {
        display: none;
    }
}

@media (max-width: 1279px) {
    .h-logo .menu-collapse {
        margin-top: 8px;
        float: left;
    }
}

/*----------------------------------
    Hedaer Search
-----------------------------------*/

.h-search {
    padding: 2px 30px 2px 0;
}

.h-search,
.hs-input,
.hs-reset:before,
.hs-reset:after {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.hs-input {
    border: 0;
    height: 50px;
    padding: 10px 20px 10px 50px;
    border-radius: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 15px;
}

.hs-input::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

.hs-input:-ms-input-placeholder {
    color: #ffffff;
}

.hs-input::-webkit-input-placeholder {
    color: #ffffff;
}

.hs-input.ie9-placeholder {
    color: #fff !important;
}

.focused .hs-input {
    background-color: #fff;
    color: #5e5e5e;
}

.focused .hs-input + .hs-reset {
    color: #5e5e5e;
}

.focused .hs-input + .hs-reset:before {
    -webkit-transform: scale(0) rotate(180deg);
    -ms-transform: scale(0) rotate(180deg);
    -o-transform: scale(0) rotate(180deg);
    transform: scale(0) rotate(180deg);
}

.focused .hs-input + .hs-reset:after {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

.focused .hs-input::-moz-placeholder {
    color: #6b6b6b;
    opacity: 1;
}

.focused .hs-input:-ms-input-placeholder {
    color: #6b6b6b;
}

.focused .hs-input::-webkit-input-placeholder {
    color: #6b6b6b;
}

.hs-reset {
    left: 0;
    font-size: 20px;
    color: #fff;
    top: 0;
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 100%;
}

.hs-reset:hover {
    opacity: 0.7;
}

.hs-reset:before,
.hs-reset:after {
    position: absolute;
    left: 20px;
    top: 16px;
}

.hs-reset:after {
    content: '\f2ff';
    -webkit-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
    color: #5e5e5e;
}

@media (min-width: 992px) {
    /* Search trigger icon for mobile */

    .hm-search-trigger {
        display: none !important;
    }
}

@media (max-width: 991px) {
    /* Header Search */

    .h-search {
        padding: 40px 40px 0;
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        background-color: #009688;
        z-index: 1;
        opacity: 0;
        -webkit-transform: translate3d(0, -65px, 0);
        transform: translate3d(0, -65px, 0);
    }

    .h-search.toggled {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .hs-input {
        background-color: #fff;
        color: #777777;
    }

    .hs-input::-moz-placeholder {
        color: #cccccc;
        opacity: 1;
    }

    .hs-input:-ms-input-placeholder {
        color: #cccccc;
    }

    .hs-input::-webkit-input-placeholder {
        color: #cccccc;
    }

    .hs-reset:after {
        -webkit-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        -o-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    /* Header Search for IE9 */

    .ie9 .h-search {
        display: none;
    }

    .ie9 .h-search.toggled {
        display: block;
    }

    /* Search trigger icon for mobile */

    .hm-search-trigger {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    /* Header Search */

    .h-search {
        padding: 30px 15px 0;
    }
}

/*----------------------------------
    Hedaer menu
-----------------------------------*/

.h-menu {
    list-style: none;
    padding: 0;
}

.h-menu > li {
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
    min-width: 50px;
}

.h-menu > li > a {
    color: #fff;
    display: block;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hm-icon {
    font-size: 24px;
    line-height: 36px;
}

.hm-label {
    line-height: 35px;
    white-space: nowrap;
    padding: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.hmn-counts {
    position: absolute;
    font-style: normal;
    background: #f44336;
    padding: 1px 5px;
    border-radius: 2px;
    right: 7px;
    top: -3px;
    font-size: 10px;
    line-height: 15px;
}

.hm-profile > a {
    margin: -5px 0 0 5px;
}

.hm-profile > a img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

@media (min-width: 1280px) {
    .hm-alerts {
        display: none !important;
    }
}

/*----------------------------------
    Header Apps Menu
-----------------------------------*/

.h-apps .dropdown-menu {
    width: 305px;
    padding: 25px 10px 15px;
}

.h-apps .dropdown-menu > li {
    display: inline-block;
    width: 95px;
    margin-right: -4px;
    margin-bottom: 5px;
}

.h-apps .dropdown-menu > li > a {
    display: block;
    text-align: center;
}

.h-apps .dropdown-menu > li > a > small,
.h-apps .dropdown-menu > li > a > i {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.h-apps .dropdown-menu > li > a > i {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 52px;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
}

.h-apps .dropdown-menu > li > a > small {
    display: block;
    text-align: center;
    color: #ABABAB;
    margin-top: 5px;
}

.h-apps .dropdown-menu > li > a:hover {
    background: transparent;
}

.h-apps .dropdown-menu > li > a:hover > small {
    color: #333;
}

.h-apps .dropdown-menu > li > a:hover > i {
    -webkit-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

/*----------------------------------
    Fullscreen
-----------------------------------*/

:-webkit-full-screen [data-action="fullscreen"] {
    display: none;
}

:-moz-full-screen [data-action="fullscreen"] {
    display: none;
}

:-ms-fullscreen [data-action="fullscreen"] {
    display: none;
}

:fullscreen [data-action="fullscreen"] {
    display: none;
}

#s-main-menu {
    left: 0;
}

@media (min-width: 1280px) {
    #s-main-menu {
        width: 270px;
        position: absolute;
        height: 100%;
        min-height: 100vh;
        top: 0;
    }
}

@media (max-width: 1279px) {
    #s-main-menu {
        padding-top: 80px;
        opacity: 0;
        -webkit-transform: translate3d(-320px, 0, 0);
        transform: translate3d(-320px, 0, 0);
        position: fixed;
        top: 0;
        height: 100%;
        width: 300px;
        box-shadow: 0px 0 30px rgba(0, 0, 0, 0.3);
        background: #fff;
    }

    #s-main-menu.toggled {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        z-index: 101;
    }
}

#s-main-menu,
.sub-menu > a:before,
.sub-menu > a:after {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.smm-header {
    display: none;
}



@media (max-width: 1279px) {
    .smm-header {
        display: block;
        height: 80px;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        background-position: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        z-index: 10;
    }

    .smm-header i {
        font-size: 21px;
        color: #009688;
        background: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
        line-height: 41px;
        margin: 20px 30px 0;
        cursor: pointer;
    }
}

.sidebar-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 100;
}

/*----------------------------------
    User Alerts
-----------------------------------*/

.smm-alerts {
    list-style: none;
    padding: 0;
    margin: 30px 0 60px;
    padding-left: 40px;
}

.smm-alerts > li {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-align: center;
    line-height: 43px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 13px;
    color: #fff;
    font-size: 20px;
    vertical-align: top;
    cursor: pointer;
    -webkit-transition: background-color;
    -o-transition: background-color;
    transition: background-color;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.smm-alerts > li.active {
    background-color: #fff;
    position: relative;
}

.smm-alerts > li.active:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.smm-alerts > li.active:hover:before {
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.smm-alerts > li.active:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: -10px;
    left: 19px;
}

.smm-alerts > li:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1279px) {
    .smm-alerts {
        display: none;
    }
}

#s-user-alerts {
    position: fixed;
    top: 0;
    width: 320px;
    background: #fff;
    height: 100%;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.3);
    left: -320px;
    opacity: 0;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

#s-user-alerts.toggled {
    left: 0;
    opacity: 1;
    z-index: 101;
}

@media (min-width: 1280px) {
    #s-user-alerts .m-btn {
        position: absolute;
        right: auto;
        left: 230px;
    }
}

@media (max-width: 1279px) {
    #s-user-alerts {
        left: auto;
        right: -320px;
    }

    #s-user-alerts.toggled {
        left: auto;
        right: 0;
    }
}

#s-user-alerts .tab-nav {
    overflow: hidden;
    box-shadow: none;
}

#s-user-alerts .tab-nav > li:nth-child(1).active > a {
    color: #03a9f4;
}

#s-user-alerts .tab-nav > li:nth-child(2).active > a {
    color: #ff9800;
}

#s-user-alerts .tab-nav > li:nth-child(3).active > a {
    color: #4caf50;
}

#s-user-alerts .tab-nav > li a:after {
    background: transparent;
}

#s-user-alerts .list-group {
    padding: 15px 0;
    height: calc(100vh - 100px);
    overflow-y: auto;
}

.sua-menu {
    margin: -22px 0 0;
    padding: 10px 0;
    text-align: right;
    position: relative;
    z-index: 1;
    text-align: center;
}

.sua-menu li {
    padding: 0;
}

.sua-menu li:hover a {
    color: #fff;
}

.sua-menu li a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 10px;
    font-size: 12px;
}

.sua-menu li a i {
    font-size: 15px;
    line-height: 100%;
    vertical-align: top;
    margin-top: 2px;
    margin-right: 3px;
}

/*----------------------------------
    Main menu
-----------------------------------*/

.main-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.main-menu a {
    color: #4c4c4c;
}

.main-menu > li > a {
    padding: 16px 25px 16px 75px;
    display: block;
    position: relative;
    color: #333333;
    font-size:14px;
}

.main-menu > li > a:hover {
    background-color: #F3F3F3;
}

.main-menu > li > a > i {
    position: absolute;
    left: 35px;
    font-size: 22px;
    top: 2px;
    width: 25px;
    text-align: center;
    padding: 13px 0;
}

@media (max-width: 1279px) {
    .main-menu {
        height: 100%;
        overflow-y: auto;
    }
}

/*----------------------------------
    Sub menu
-----------------------------------*/

.sub-menu > a {
    position: relative;
}

.sub-menu > a:before,
.sub-menu > a:after {
    position: absolute;
    top: 14px;
    color: #9ba1b1;
    font-family: 'Material-Design-Iconic-Font';
    font-size: 17px;
    right: 25px;
    opacity: 0;
    filter: alpha(opacity=0);
}

.sub-menu > a:before {
    content: "\f278";
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.sub-menu > a:after {
    content: "\f273";
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.sub-menu > a:hover:before,
.sub-menu > a:hover:after {
    opacity: 1;
    filter: alpha(opacity=100);
}

.sub-menu.toggled > a:before,
.sub-menu.toggled > a:after {
    opacity: 1;
    filter: alpha(opacity=100);
}

.sub-menu.toggled > a:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.sub-menu.toggled > a:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.sub-menu .sub-menu > a:before,
.sub-menu .sub-menu > a:after {
    top: 5px;
}

.sub-menu ul {
    list-style: none;
    display: none;
    padding: 0;
}

.sub-menu ul > li > a {
    padding: 8px 25px 8px 75px;
    font-size: 14px;
    display: block;
}

.sub-menu ul > li:first-child > a {
    padding-top: 14px;
}

.sub-menu ul > li:last-child > a {
    padding-bottom: 16px;
}

.sub-menu ul > li ul {
    font-size: 12px;
    margin: 10px 0;
    background-color: #F3F3F3;
}

.sub-menu.active > ul {
    display: block;
}

.dropdown-menu {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    padding: 10px 0;
    border-radius: 3px;
    top: -1px;
    margin: 0;
    border: 0;
}

.dropdown-menu > li > a {
    padding: 10px 20px;
    -webkit-transition: background-color;
    -o-transition: background-color;
    transition: background-color;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.dropdown-menu.dm-icon > li > a > .zmdi {
    line-height: 100%;
    vertical-align: top;
    font-size: 18px;
    width: 28px;
}

.dm-dark > li > a,
.dm-dark > li > a:hover {
    color: #fff;
}

.dropdown-header {
    padding: 10px 16px 5px;
    color: #B9B9B9;
    text-transform: uppercase;
}

.list-group {
    margin-bottom: 0;
}

.list-group.lg-alt .list-group-item {
    border: 0;
    margin: 0;
    padding: 15px 25px;
}

.list-group:not(.lg-alt).lg-listview .list-group-item {
    border-left: 0;
    border-right: 0;
}

.list-group:not(.lg-alt).lg-listview .list-group-item:last-child {
    border-bottom: 0;
}

.list-group.lg-odd-white .list-group-item:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.12);
}

.list-group.lg-even-white .list-group-item:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.12);
}

.list-group.lg-odd-black .list-group-item:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.04);
}

.list-group.lg-even-black .list-group-item:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.04);
}

.lgi-heading {
    color: #333;
    margin-bottom: 4px;
}

.lgi-heading > small {
    font-size: 11px;
    color: #C5C5C5;
    margin-left: 10px;
}

.lgi-heading,
.lgi-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lgi-text {
    display: block;
    font-size: 12px;
    color: #AEAEAE;
}

.lgi-text:not(:last-child) {
    margin-bottom: 4px;
}

.lgi-checkbox {
    margin-top: 8px;
    margin-bottom: 0;
}

.lgi-attrs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lgi-attrs > li {
    display: inline-block;
    border: 1px solid #D6D6D6;
    margin: 2px 2px 2px 0;
    padding: 2px 5px;
    font-size: 12px;
    color: #AEAEAE;
    background: #fff;
}

.lgi-attrs > li > a {
    display: block;
}

.list-group-item-header {
    padding: 0 30px;
    margin: 20px 0 10px;
}

.progress {
    box-shadow: none;
    border-radius: 0;
    height: 5px;
    margin-bottom: 0;
}

.progress .progress-bar {
    box-shadow: none;
}

.tab-nav {
    list-style: none;
    padding: 0;
    white-space: nowrap;
    margin: 0;
    overflow: auto;
    box-shadow: inset 0 -2px 0 0 #eeeeee;
    width: 100%;
}

.tab-nav li {
    display: inline-block;
    vertical-align: top;
}

.tab-nav li > a {
    display: inline-block;
    color: #BBBBBB;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    font-weight: 500;
}

.tab-nav li > a:after {
    content: "";
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

@media (min-width: 768px) {
    .tab-nav li > a {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .tab-nav li > a {
        padding: 15px 8px;
    }
}

.tab-nav li.active > a {
    color: #000;
}

.tab-nav li.active > a:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.tab-nav.tab-nav-right {
    text-align: right;
}

.tab-nav.tn-justified > li {
    display: table-cell;
    width: 1%;
    text-align: center;
}

.tab-nav.tn-icon > li .zmdi {
    font-size: 22px;
    line-height: 100%;
    min-height: 25px;
}

.tab-nav:not([data-tab-color]) > li > a:after {
    background: #2196f3;
}

.tab-nav[data-tab-color="green"] > li > a:after {
    background: #4caf50;
}

.tab-nav[data-tab-color="red"] > li > a:after {
    background: #f44336;
}

.tab-nav[data-tab-color="teal"] > li > a:after {
    background: #009688;
}

.tab-nav[data-tab-color="amber"] > li > a:after {
    background: #ffc107;
}

.tab-nav[data-tab-color="black"] > li > a:after {
    background: #000000;
}

.tab-nav[data-tab-color="cyan"] > li > a:after {
    background: #00bcd4;
}

.tab-content {
    padding: 20px 0;
}

.card {
    position: relative;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    border-radius: 2px;
}

.card.c-dark .card-header > h2 {
    color: #fff;
}

.card.c-dark .card-header > h2 small {
    color: rgba(255, 255, 255, 0.7);
}

.card > .actions,
.card-header .actions {
    position: absolute;
    right: 20px;
    z-index: 2;
    top: 25px;
}

.card-body.card-padding {
    padding: 30px 33px;
}

.card-body.card-padding-sm {
    padding: 15px;
}

.card-body > .btn-float {
    bottom: 30px;
    right: 30px;
}

.card-header {
    position: relative;
    padding: 30px;
    border-radius: 2px 2px 0 0;
}

.card-header h2 {
    margin: 0;
    line-height: 100%;
    font-size: 17px;
    font-weight: 400;
}

.card-header h2 small {
    display: block;
    margin-top: 10px;
    line-height: 160%;
    font-size: 12px;
    color: #AEAEAE;
}

.card-header.ch-dark h2,
.card-header.ch-dark small {
    color: #fff;
}

.card-header .btn-float {
    right: 25px;
    bottom: -23px;
    z-index: 1;
}

.card-header.ch-img {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.card-header.ch-img h2,
.card-header.ch-img small {
    color: #fff;
    text-shadow: 0 0px 5px rgba(0, 0, 0, 0.25);
}

.card-header + .card-body {
    padding-top: 0;
}

.chart-edge {
    margin: 0 -8px 0 -10px;
    overflow: hidden;
    position: relative;
}

.chart-edge .flot-chart {
    bottom: -14px;
}

.charts-row {
    margin-top: 50px;
    margin-bottom: 20px;
}

/*----------------------------------
    Easy Pie Charts
-----------------------------------*/

.easy-pie {
    display: inline-block;
    position: relative;
}

.ep-value {
    position: absolute;
    color: #fff;
    left: 0;
    top: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 15px;
    line-height: 74px;
}

.ep-value:after {
    content: "%";
}

.ep-lg .ep-value {
    line-height: 149px;
    font-size: 40px;
}

/*----------------------------------
    Number Stats Chart
-----------------------------------*/

.ns-chart {
    height: 130px;
}

.ns-item > h3 {
    color: #fff;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ns-item > small {
    color: #fff;
}

/*----------------------------------
    Content Anylitics
-----------------------------------*/

.c-analytics {
    padding: 14px 0 70px;
}

.ca-item {
    padding: 10px 20px 15px;
    border-radius: 2px;
    margin-top: -20px !important;
    background: rgba(255, 255, 255, 0.09);
}

.ca-item h2,
.ca-item small {
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ca-item h2 {
    line-height: 100%;
    margin: 7px 0 0;
}

.cai-chart {
    position: relative;
    top: 4px;
}

/*
 * Flot Chart
 */

[class*="flot-chart"] {
    width: 100%;
    display: block;
}

.flot-chart {
    height: 200px;
}

.flot-chart-pie {
    height: 300px;
}

@media (min-width: 768px) {
    .flot-chart-pie {
        margin-bottom: 20px;
    }
}

.flot-tooltip,
#flotTip {
    position: absolute;
    color: #333;
    display: none;
    font-size: 12px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    background-color: #fff;
    z-index: 99999;
    border-radius: 2px;
}

[class*="flc-"] {
    text-align: center;
    margin: 10px 0 5px;
}

[class*="flc-"] table {
    display: inline-block;
}

[class*="flc-"] .legendColorBox > div {
    border: #fff !important;
}

[class*="flc-"] .legendColorBox > div > div {
    border-radius: 50%;
}

[class*="flc-"] .legendLabel {
    padding: 0 8px 0 3px;
}

/*----------------------------------
    Sparkline Charts
-----------------------------------*/

#jqstooltip {
    min-width: 21px;
    min-height: 23px;
    border: 0;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 2px;
}

#jqstooltip .jqsfield {
    font-size: 12px;
    font-family: inherit;
    text-align: center;
    color: #333;
}

#jqstooltip .jqsfield > span {
    display: none;
}

/*----------------------------------
    Recent Signups
-----------------------------------*/

.rs-list {
    list-style: none;
    background: rgba(255, 255, 255, 0.16);
    padding: 25px 30px 20px;
    text-align: center;
}

.rs-list > li {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px 6px 0;
}

.rs-list > li > a {
    display: block;
}

.rs-list .avatar-char {
    background: #909090;
    color: #fff;
}

/*----------------------------------
    Todo Lists
-----------------------------------*/

#todo-lists .checked {
    text-decoration: line-through;
}

/*----------------------------------
    Calendar
-----------------------------------*/

.cwh-year {
    color: rgba(255, 255, 255, 0.42);
    font-weight: 700;
    font-size: 15px;
}

.cwh-day {
    font-size: 25px;
    line-height: 100%;
    color: #fff;
}

/*----------------------------------
    Pie Grid
-----------------------------------*/

.pg-item {
    padding: 20px 0;
}

.pg-item:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.12);
}

.pgi-title {
    margin-top: -2px;
    line-height: 15px;
    color: #fff;
    font-size: 11px;
}

.dash-widget-item {
    position: relative;
    min-height: 380px;
    margin-bottom: 30px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.dash-widget-item .dash-widget-header {
    position: relative;
}

.dash-widget-item .dash-widget-header .actions {
    display: none;
    position: absolute;
    right: 4px;
    top: 6px;
}

.dash-widget-item .dash-widget-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.dash-widget-item .dash-widget-title {
    padding: 12px 20px;
    position: absolute;
    width: 100%;
    left: 0;
    font-weight: 300;
}

.dash-widget-item:hover .dash-widget-header .actions {
    display: block;
}


/*----------------------------------
    Profile
-----------------------------------*/

.profile-view {
    color: #fff;
}

.profile-view .list-group-item {
    border-bottom: 1px solid #fff;
}

.pv-header {
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 30px 30px 25px;
}

.pv-header h2 {
    color: #fff;
    margin: 10px 0 0px;
    font-size: 20px;
    line-height: 100%;
}

.pv-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #2196F3;
}

.pvb-list {
    margin: 0;
    padding: 30px;
}

.pvb-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
}

/*----------------------------------
    Picture Grid
-----------------------------------*/

.picture-list .pl-body {
    padding: 2px;
}

.picture-list .pl-body [class*="col-"] {
    padding: 0;
    padding: 2px;
}

.picture-list .pl-body [class*="col-"] > a {
    display: block;
}

.picture-list .pl-body [class*="col-"] > a img {
    width: 100%;
}

/*----------------------------------
    Rating
-----------------------------------*/

.rating-list {
    padding: 0 0 20px;
}

.rating-list .rl-star {
    margin-top: 10px;
    margin-bottom: 4px;
}

.rating-list .rl-star .zmdi {
    font-size: 20px;
}

.rating-list .rl-star .zmdi:not(.active) {
    color: #ccc;
}

.rating-list .rl-star .zmdi.active {
    color: #ff9800;
}

.rating-list .media .zmdi-star {
    line-height: 100%;
    font-size: 22px;
    color: #FF9800;
    vertical-align: middle;
    position: relative;
    top: -2px;
    left: 6px;
}

.rating-list .media .media-body {
    padding: 7px 10px 0 5px;
}

.table {
    background-color: #ffffff;
    margin-bottom: 0;
}

.table > thead > tr > th {
    background-color: #fff;
    vertical-align: middle;
    font-weight: 500;
    color: #333;
    border-width: 1px;
    text-transform: uppercase;
}

.table [class*="bg-"] > tr > th {
    color: #fff;
    border-bottom: 0;
}

.table [class*="bg-"] + tbody > tr > td {
    border-top: 0;
}

.table.table-inner {
    border: 0;
}

.table > thead > tr > th:first-child,
.table > tbody > tr > th:first-child,
.table > tfoot > tr > th:first-child,
.table > thead > tr > td:first-child,
.table > tbody > tr > td:first-child,
.table > tfoot > tr > td:first-child {
    padding-left: 30px;
}

.table > thead > tr > th:last-child,
.table > tbody > tr > th:last-child,
.table > tfoot > tr > th:last-child,
.table > thead > tr > td:last-child,
.table > tbody > tr > td:last-child,
.table > tfoot > tr > td:last-child {
    padding-right: 30px;
}

.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > tbody > tr.succes > td,
.table > tfoot > tr.succes > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td {
    border: 0;
}

.table > tbody > tr:last-child > td,
.table > tfoot > tr:last-child > td {
    padding-bottom: 20px;
}

.table-striped td,
.table-striped th {
    border: 0 !important;
}

.table-bordered {
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th {
    border-bottom: 0;
    border-left: 0;
}

.table-bordered > tbody > tr > td:last-child,
.table-bordered > tbody > tr > th:last-child {
    border-right: 0;
}

.table-bordered > thead > tr > th {
    border-left: 0;
}

.table-bordered > thead > tr > th:last-child {
    border-right: 0;
}

.table-vmiddle td {
    vertical-align: middle !important;
}

.table-responsive {
    border: 0;
}

.btn {
    border: 0;
}

.btn .caret {
    margin-top: -3px;
}

.btn:not(.btn-link) {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
}

.btn:not(.palette-White):not(.btn-default) {
    color: #fff;
}

.btn.palette-White {
    color: #333;
}

.btn-group:not(.bootstrap-select),
.btn-group-vertical:not(.bootstrap-select) {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
}

.btn-group .btn,
.btn-group-vertical .btn,
.btn-group .btn:active,
.btn-group-vertical .btn:active,
.btn-group .btn:focus,
.btn-group-vertical .btn:focus,
.btn-group .btn-group,
.btn-group-vertical .btn-group {
    box-shadow: none !important;
}

.btn-group .btn,
.btn-group-vertical .btn {
    margin: 0;
}

.btn-xs,
.btn-group-xs > .btn {
    padding: 2px 5px;
    font-size: 11px;
    line-height: 1.5;
    border-radius: 2px;
}

.btn-link {
    color: #797979;
    text-decoration: none;
    border-radius: 2px;
}

.btn-link:hover {
    color: #0a0a0a;
}

.btn-link:hover,
.btn-link:active,
.btn-link:focus {
    text-decoration: none;
}

.btn-inverse {
    color: #ffffff;
    background-color: #454545;
    border-color: transparent;
}

.btn-inverse:focus,
.btn-inverse.focus {
    color: #ffffff;
    background-color: #2b2b2b;
    border-color: rgba(0, 0, 0, 0);
}

.btn-inverse:hover {
    color: #ffffff;
    background-color: #2b2b2b;
    border-color: rgba(0, 0, 0, 0);
}

.btn-inverse:active,
.btn-inverse.active,
.open > .dropdown-toggle.btn-inverse {
    color: #ffffff;
    background-color: #2b2b2b;
    border-color: rgba(0, 0, 0, 0);
}

.btn-inverse:active:hover,
.btn-inverse.active:hover,
.open > .dropdown-toggle.btn-inverse:hover,
.btn-inverse:active:focus,
.btn-inverse.active:focus,
.open > .dropdown-toggle.btn-inverse:focus,
.btn-inverse:active.focus,
.btn-inverse.active.focus,
.open > .dropdown-toggle.btn-inverse.focus {
    color: #ffffff;
    background-color: #1a1a1a;
    border-color: rgba(0, 0, 0, 0);
}

.btn-inverse:active,
.btn-inverse.active,
.open > .dropdown-toggle.btn-inverse {
    background-image: none;
}

.btn-inverse.disabled:hover,
.btn-inverse[disabled]:hover,
fieldset[disabled] .btn-inverse:hover,
.btn-inverse.disabled:focus,
.btn-inverse[disabled]:focus,
fieldset[disabled] .btn-inverse:focus,
.btn-inverse.disabled.focus,
.btn-inverse[disabled].focus,
fieldset[disabled] .btn-inverse.focus {
    background-color: #454545;
    border-color: transparent;
}

.btn-inverse .badge {
    color: #454545;
    background-color: #ffffff;
}

.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse.focus,
.btn-inverse:active,
.open > .dropdown-toggle.btn-inverse {
    color: #ffffff;
    background-color: #454545;
    border-color: transparent;
}

.btn-inverse:hover:hover,
.btn-inverse:focus:hover,
.btn-inverse.focus:hover,
.btn-inverse:active:hover,
.open > .dropdown-toggle.btn-inverse:hover,
.btn-inverse:hover:focus,
.btn-inverse:focus:focus,
.btn-inverse.focus:focus,
.btn-inverse:active:focus,
.open > .dropdown-toggle.btn-inverse:focus,
.btn-inverse:hover.focus,
.btn-inverse:focus.focus,
.btn-inverse.focus.focus,
.btn-inverse:active.focus,
.open > .dropdown-toggle.btn-inverse.focus {
    color: #ffffff;
    background-color: #454545;
    border-color: transparent;
}

.btn-inverse:active,
.btn-inverse.active,
.open > .dropdown-toggle.btn-inverse {
    background-image: none;
}

.btn-inverse.disabled,
.btn-inverse[disabled],
fieldset[disabled] .btn-inverse,
.btn-inverse.disabled:hover,
.btn-inverse[disabled]:hover,
fieldset[disabled] .btn-inverse:hover,
.btn-inverse.disabled:focus,
.btn-inverse[disabled]:focus,
fieldset[disabled] .btn-inverse:focus,
.btn-inverse.disabled.focus,
.btn-inverse[disabled].focus,
fieldset[disabled] .btn-inverse.focus,
.btn-inverse.disabled:active,
.btn-inverse[disabled]:active,
fieldset[disabled] .btn-inverse:active {
    background-color: #454545;
    border-color: transparent;
}

.btn-inverse .badge {
    color: #454545;
    background-color: #ffffff;
}

.btn-icon {
    border-radius: 50%;
    width: 40px;
    line-height: 43px;
    height: 40px;
    padding: 0;
    text-align: center;
}

.btn-icon .zmdi {
    font-size: 17px;
}

.btn-icon-text > .zmdi {
    font-size: 15px;
    vertical-align: top;
    display: inline-block;
    margin-top: 2px;
    line-height: 100%;
    margin-right: 5px;
}

.btn-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 45px !important;
}

.btn-float:not(.m-btn) {
    position: absolute !important;
}

.btn-float i {
    font-size: 23px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.btn-float:hover i {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.open .btn {
    outline: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

.open .btn:focus,
.open .btn:active {
    outline: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

/*
 * Material Design Add button
 */

.m-btn {
    z-index: 1;
    bottom: 40px;
    right: 40px;
    position: fixed !important;
}

label {
    font-weight: 500;
}

/*
 * Reset Focus and Active shadows
 */

input:active,
input:focus {
    outline: 0;
    box-shadow: none !important;
}

.form-control {
    box-shadow: none !important;
    resize: none;
}

.form-control:active,
.form-control:focus {
    box-shadow: none;
}

.form-control:not(.fc-alt) {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
}

.form-control:not(.fc-alt).auto-size {
    padding-top: 6px;
}

.form-group {
    margin-bottom: 25px;
}

/*
 * Checkbox and Radio
 */

.input-helper:before,
.input-helper:after,
.checkbox label:before,
.radio label:before,
.radio-inline:before,
.checkbox-inline:before {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.checkbox label,
.radio label,
.radio-inline,
.checkbox-inline {
    padding-left: 30px;
    position: relative;
}

.checkbox label:before,
.radio label:before,
.radio-inline:before,
.checkbox-inline:before {
    content: '';
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.04);
    position: absolute;
    left: -15px;
    top: -15px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.checkbox label:active:before,
.radio label:active:before,
.radio-inline:active:before,
.checkbox-inline:active:before {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.checkbox label,
.radio label {
    display: block;
}

.checkbox input,
.radio input {
    top: 0;
    left: 0;
    margin-left: 0 !important;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 0;
}

.checkbox input:checked + .input-helper:before,
.radio input:checked + .input-helper:before {
    border-color: #26a69a;
}

.checkbox .input-helper:before,
.radio .input-helper:before,
.checkbox .input-helper:after,
.radio .input-helper:after {
    position: absolute;
    content: "";
}

.checkbox .input-helper:before,
.radio .input-helper:before {
    left: 0;
    border: 2px solid #7a7a7a;
}

.checkbox.disabled,
.radio.disabled {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.checkbox input {
    width: 17px;
    height: 17px;
}

.checkbox input:checked + .input-helper:before {
    background-color: #26a69a;
}

.checkbox input:checked + .input-helper:after {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.checkbox .input-helper:before {
    top: 0;
    width: 17px;
    height: 17px;
    border-radius: 2px;
}

.checkbox .input-helper:after {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    content: '\f26b';
    font-family: 'Material-Design-Iconic-Font';
    position: absolute;
    font-size: 13px;
    left: 2px;
    top: 0px;
    color: #fff;
    font-weight: bold;
}

.radio input {
    width: 19px;
    height: 19px;
}

.radio input:checked + .input-helper:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.radio .input-helper:before {
    top: -1px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
}

.radio .input-helper:after {
    width: 9px;
    height: 9px;
    background: #2196f3;
    border-radius: 50%;
    top: 4px;
    left: 5px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.checkbox-inline,
.radio-inline {
    vertical-align: top;
    margin-top: 0;
    padding-left: 25px;
}

/*
 * Select
 */

html:not(.ie9) .select {
    position: relative;
}

html:not(.ie9) .select:before {
    position: absolute;
    top: -1px;
    content: "";
    height: calc(100% - 1px);
    width: 30px;
    background-color: #FFF;
    background-position: right calc(100% - 7px);
    background-repeat: no-repeat;
    background-image: url("/src/backend/images/material/select.png");
    pointer-events: none;
    z-index: 5;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    html:not(.ie9) .select:before {
        background-image: url("/src/backend/images/material/select@2x.png");
        background-size: 12px 12px;
    }
}

html:not(.ie9) .select:not(.fg-line):before {
    right: 0;
}

html:not(.ie9) .select.fg-line:before {
    right: 10px;
}

/*
 * Input Group Addon
 */

.input-group .input-group-addon {
    font-size: 18px;
    padding: 0;
    min-width: 45px;
}

.input-group .input-group-addon > .zmdi {
    position: relative;
    top: 3px;
}

.input-group-lg .input-group-addon {
    font-size: 20px;
}

.input-group-sm .input-group-addon {
    font-size: 16px;
}

/*
 * Input Feilds
 */

.fg-line {
    position: relative;
    vertical-align: top;
}

.fg-line:not(.form-group) {
    display: inline-block;
    width: 100%;
}

.fg-line .form-control:disabled {
    color: #9d9d9d;
    background: transparent;
}

.fg-line:not(.disabled):after,
.fg-line:not(.readonly):after {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    content: "";
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.fg-line:not([class*=has-]):after {
    background: #2196f3;
}

.fg-line.readonly .form-control {
    color: #9d9d9d;
    background: transparent;
}

.fg-line.fg-toggled:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.fg-float {
    margin-top: 2px;
    position: relative;
}

.fg-float .form-control {
    position: relative;
    background: transparent;
    z-index: 1;
}

.fg-float .form-control::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

.fg-float .form-control:-ms-input-placeholder {
    color: #ffffff;
}

.fg-float .form-control::-webkit-input-placeholder {
    color: #ffffff;
}

.fg-float .fg-label {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    position: absolute;
    top: 5px;
    font-weight: 400;
    color: #959595;
    pointer-events: none;
    z-index: 0;
    left: 0;
    white-space: nowrap;
}

.fg-float .fg-toggled .fg-label {
    top: -20px;
    font-size: 11px;
}

.control-label {
    font-weight: normal;
}

/*
 * Toggle Switch
 */

.toggle-switch {
    display: inline-block;
    vertical-align: top;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggle-switch .ts-label {
    display: inline-block;
    margin: 0 20px 0 0;
    vertical-align: top;
    -webkit-transition: color 0.56s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.56s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-switch .ts-helper {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.26);
    -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
    cursor: pointer;
}

.toggle-switch .ts-helper:before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 24px;
    height: 24px;
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    border-radius: 50%;
    webkit-transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-switch:not(.disabled) .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}

.toggle-switch input {
    position: absolute;
    z-index: 1;
    width: 46px;
    margin: 0 0 0 -4px;
    height: 24px;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
}

.toggle-switch input:checked + .ts-helper:before {
    left: 20px;
}

.toggle-switch:not([data-ts-color]) input:not(:disabled):checked + .ts-helper {
    background: rgba(0, 150, 136, 0.5);
}

.toggle-switch:not([data-ts-color]) input:not(:disabled):checked + .ts-helper:before {
    background: #009688;
}

.toggle-switch:not([data-ts-color]) input:not(:disabled):checked + .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}

.toggle-switch.disabled {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.toggle-switch[data-ts-color="red"] input:not(:disabled):checked + .ts-helper {
    background: rgba(244, 67, 54, 0.5);
}

.toggle-switch[data-ts-color="red"] input:not(:disabled):checked + .ts-helper:before {
    background: #f44336;
}

.toggle-switch[data-ts-color="red"] input:not(:disabled):checked + .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(244, 67, 54, 0.2);
}

.toggle-switch[data-ts-color="blue"] input:not(:disabled):checked + .ts-helper {
    background: rgba(33, 150, 243, 0.5);
}

.toggle-switch[data-ts-color="blue"] input:not(:disabled):checked + .ts-helper:before {
    background: #2196f3;
}

.toggle-switch[data-ts-color="blue"] input:not(:disabled):checked + .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(33, 150, 243, 0.2);
}

.toggle-switch[data-ts-color="amber"] input:not(:disabled):checked + .ts-helper {
    background: rgba(255, 193, 7, 0.5);
}

.toggle-switch[data-ts-color="amber"] input:not(:disabled):checked + .ts-helper:before {
    background: #ffc107;
}

.toggle-switch[data-ts-color="amber"] input:not(:disabled):checked + .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(255, 193, 7, 0.2);
}

.toggle-switch[data-ts-color="purple"] input:not(:disabled):checked + .ts-helper {
    background: rgba(156, 39, 176, 0.5);
}

.toggle-switch[data-ts-color="purple"] input:not(:disabled):checked + .ts-helper:before {
    background: #9c27b0;
}

.toggle-switch[data-ts-color="purple"] input:not(:disabled):checked + .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(156, 39, 176, 0.2);
}

.toggle-switch[data-ts-color="pink"] input:not(:disabled):checked + .ts-helper {
    background: rgba(233, 30, 99, 0.5);
}

.toggle-switch[data-ts-color="pink"] input:not(:disabled):checked + .ts-helper:before {
    background: #e91e63;
}

.toggle-switch[data-ts-color="pink"] input:not(:disabled):checked + .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(233, 30, 99, 0.2);
}

.toggle-switch[data-ts-color="lime"] input:not(:disabled):checked + .ts-helper {
    background: rgba(205, 220, 57, 0.5);
}

.toggle-switch[data-ts-color="lime"] input:not(:disabled):checked + .ts-helper:before {
    background: #cddc39;
}

.toggle-switch[data-ts-color="lime"] input:not(:disabled):checked + .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(205, 220, 57, 0.2);
}

.toggle-switch[data-ts-color="cyan"] input:not(:disabled):checked + .ts-helper {
    background: rgba(0, 188, 212, 0.5);
}

.toggle-switch[data-ts-color="cyan"] input:not(:disabled):checked + .ts-helper:before {
    background: #00bcd4;
}

.toggle-switch[data-ts-color="cyan"] input:not(:disabled):checked + .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 188, 212, 0.2);
}

.toggle-switch[data-ts-color="green"] input:not(:disabled):checked + .ts-helper {
    background: rgba(76, 175, 80, 0.5);
}

.toggle-switch[data-ts-color="green"] input:not(:disabled):checked + .ts-helper:before {
    background: #4caf50;
}

.toggle-switch[data-ts-color="green"] input:not(:disabled):checked + .ts-helper:active:before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(76, 175, 80, 0.2);
}

/*
 * IE 9 Placeholder
 */

.ie9-placeholder {
    color: #888 !important;
    font-weight: normal;
}

.pagination {
    border-radius: 0;
}

.pagination > li {
    margin: 0 2px;
    display: inline-block;
    vertical-align: top;
}

.pagination > li > a,
.pagination > li > span {
    border-radius: 50% !important;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    font-size: 14px;
    z-index: 1;
    position: relative;
    cursor: pointer;
}

.pagination > li > a > .zmdi,
.pagination > li > span > .zmdi {
    font-size: 22px;
    line-height: 39px;
}

.pagination > li.disabled {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

/*
 * Listview Pagination
 */

.lg-pagination {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    margin-top: 0;
    margin-bottom: 0;
}

/*
 * Pager
 */

.pager li > a,
.pager li > span {
    padding: 5px 10px 6px;
    color: #7e7e7e;
}

.popover {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.popover-title {
    border-bottom: 0;
    padding: 15px;
    font-size: 12px;
    text-transform: uppercase;
}

.popover-title + .popover-content {
    padding-top: 0;
}

.popover-content {
    padding: 15px;
}

.popover-content p {
    margin-bottom: 0;
}

.fw-container .tab-content {
    padding: 25px 0;
}

.fw-container .fw-footer {
    text-align: center;
    margin: 30px 0 0;
    width: 100%;
    border-top: 2px solid #eee;
    padding: 15px 0;
}

.alert {
    padding-left: 30px;
    font-size: 13px;
}

.alert span {
    cursor: pointer;
}

.alert:not(.alert-dismissible) {
    padding-right: 30px;
}

.alert.alert-dismissable {
    padding-right: 44px;
}

.alert-inverse {
    background-color: #333333;
    border-color: transparent;
    color: #ffffff;
}

.alert-inverse hr {
    border-top-color: rgba(0, 0, 0, 0);
}

.alert-inverse .alert-link {
    color: #e6e6e6;
}

.growl-animated.alert-inverse {
    box-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
}

.growl-animated.alert-info {
    box-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
}

.growl-animated.alert-success {
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.growl-animated.alert-warning {
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.growl-animated.alert-danger {
    box-shadow: 0 0 5px rgba(244, 67, 54, 0.5);
}

.alert-link {
    color: #fff !important;
}

/*
 * Lightbox
 */

.lightbox .lightbox-item > img {
    width: 100%;
    border-radius: 2px;
}

.lightbox .lightbox-item:hover {
    cursor: pointer;
    opacity: 0.85;
    filter: alpha(opacity=85);
}

.lightbox [data-src]:before,
.lightbox [data-src]:after {
    content: " ";
    display: table;
}

.lightbox [data-src]:after {
    clear: both;
}

.lightbox [data-src]:before,
.lightbox [data-src]:after {
    content: " ";
    display: table;
}

.lightbox [data-src]:after {
    clear: both;
}

.lightbox .lightbox-item:not(.p-item) {
    position: relative;
}

/*
 * Carousel
 */

.carousel .carousel-control {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    opacity: 0;
    filter: alpha(opacity=0);
}

.carousel .carousel-control .zmdi {
    position: absolute;
    top: 50%;
    left: 50%;
    line-height: 100%;
}

@media screen and (min-width: 768px) {
    .carousel .carousel-control .zmdi {
        font-size: 60px;
        width: 60px;
        height: 60px;
        margin-top: -30px;
        margin-left: -30px;
    }
}

@media screen and (max-width: 991px) {
    .carousel .carousel-control .zmdi {
        width: 24px;
        height: 24px;
        margin-top: -12px;
        margin-left: -12px;
    }
}

.carousel:hover .carousel-control {
    opacity: 1;
    filter: alpha(opacity=100);
}

.carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding-bottom: 50px;
}

.carousel .carousel-caption > h3 {
    color: #fff;
    margin: 0 0 5px;
    font-weight: 300;
}

.carousel .carousel-caption > p {
    margin: 0;
}

@media screen and (max-width: 991px) {
    .carousel .carousel-caption {
        display: none;
    }
}

.carousel .carousel-indicators {
    bottom: 10px;
    margin: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 0 6px;
    background: rgba(0, 0, 0, 0.6);
}

.carousel .carousel-indicators li {
    border-radius: 0;
    width: 15px;
    border: 0;
    background: #fff;
    height: 3px;
    margin: 0;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.carousel .carousel-indicators li.active {
    width: 25px;
    height: 3px;
    background: #ff9800;
}

.modal .modal-content {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.31);
    border-radius: 3px;
    border: 0;
}

.modal .modal-header {
    padding: 23px 26px;
}

.modal .modal-body {
    padding: 0 26px 10px;
}

.modal .modal-footer .btn-link {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.modal .modal-footer .btn-link:hover {
    background-color: #eee;
}

.modal:not([data-modal-color]) .modal-footer .btn-link {
    font-weight: 500;
}

.modal:not([data-modal-color]) .modal-footer .btn-link:hover {
    background-color: #eee;
}

.modal[data-modal-color] {
    color: #fff;
}

.modal[data-modal-color] .modal-title,
.modal[data-modal-color] .modal-footer .btn-link {
    color: #fff;
}

.modal[data-modal-color] .modal-footer {
    background: rgba(0, 0, 0, 0.1);
}

.modal[data-modal-color] .modal-backdrop {
    background: #fff;
}

.modal[data-modal-color] .modal-footer .btn-link {
    font-weight: 400;
}

.modal[data-modal-color] .modal-footer .btn-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.modal[data-modal-color="blue"] .modal-content {
    background: #2196f3;
}

.modal[data-modal-color="cyan"] .modal-content {
    background: #00bcd4;
}

.modal[data-modal-color="green"] .modal-content {
    background: #4caf50;
}

.modal[data-modal-color="lightgreen"] .modal-content {
    background: #8bc34a;
}

.modal[data-modal-color="lightblue"] .modal-content {
    background: #03a9f4;
}

.modal[data-modal-color="amber"] .modal-content {
    background: #ffc107;
}

.modal[data-modal-color="teal"] .modal-content {
    background: #009688;
}

.modal[data-modal-color="orange"] .modal-content {
    background: #ff9800;
}

.modal[data-modal-color="bluegray"] .modal-content {
    background: #607d8b;
}

.modal[data-modal-color="red"] .modal-content {
    background: #f44336;
}

.panel {
    box-shadow: none;
    border: 0;
}

.panel-heading {
    padding: 0;
}

.panel-title > a {
    padding: 10px 15px;
    display: block;
    font-size: 13px;
}

.panel-collapse .panel-heading {
    position: relative;
}

.panel-collapse .panel-heading .panel-title > a {
    padding: 8px 5px 16px 30px;
    color: #000;
    position: relative;
}

.panel-collapse .panel-heading .panel-title > a:after,
.panel-collapse .panel-heading .panel-title > a:before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    content: "";
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.panel-collapse .panel-heading .panel-title > a:after {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.panel-collapse .panel-heading:not(.active) .panel-title > a:before {
    background: #eee;
}

.panel-collapse .panel-heading:before,
.panel-collapse .panel-heading:after {
    font-family: 'Material-Design-Iconic-Font';
    font-size: 17px;
    position: absolute;
    left: 0;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    top: 4px;
}

.panel-collapse .panel-heading:before {
    content: "\f278";
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.panel-collapse .panel-heading:after {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    content: "\f273";
}

.panel-collapse .panel-heading.active .panel-title > a:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.panel-collapse .panel-heading.active:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.panel-collapse .panel-heading.active:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.panel-collapse .panel-body {
    border-top: 0 !important;
    padding-left: 5px;
    padding-right: 5px;
}

.panel-group:not([data-collapse-color]) .panel-collapse .panel-heading.active .panel-title > a:after {
    background: #2196f3;
}

.panel-group[data-collapse-color="red"] .panel-collapse .panel-heading.active .panel-title > a:after {
    background: #f44336;
}

.panel-group[data-collapse-color="green"] .panel-collapse .panel-heading.active .panel-title > a:after {
    background: #4caf50;
}

.panel-group[data-collapse-color="amber"] .panel-collapse .panel-heading.active .panel-title > a:after {
    background: #ffc107;
}

.panel-group[data-collapse-color="teal"] .panel-collapse .panel-heading.active .panel-title > a:after {
    background: #009688;
}

.panel-group[data-collapse-color="black"] .panel-collapse .panel-heading.active .panel-title > a:after {
    background: #000000;
}

.panel-group[data-collapse-color="cyan"] .panel-collapse .panel-heading.active .panel-title > a:after {
    background: #00bcd4;
}

.tooltip-inner {
    border-radius: 1px;
    padding: 5px 15px 5px;
}

#messages {
    position: relative;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    #messages {
        overflow: hidden;
    }
}

.ms-user {
    height: 65px;
    padding: 17px 24px;
}

.ms-user > img {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    width: 30px;
    float: left;
}

.ms-user > div {
    overflow: hidden;
    padding: 0px 5px 7px 12px;
    font-size: 11px;
    color: #fff;
}

.ms-menu {
    position: absolute;
    left: 0;
    top: 0;
    padding-bottom: 50px;
    height: 100%;
    background: #fff;
    width: 250px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.ms-menu:before {
    position: absolute;
    right: 0;
    top: 65px;
    content: '';
    height: calc(100% - 65px);
    width: 2px;
    background-color: #f5f5f5;
}

@media (max-width: 767px) {
    .ms-menu {
        height: calc(100% - 58px);
        -webkit-transform: translate3d(-240px, 0, 0);
        transform: translate3d(-240px, 0, 0);
        opacity: 0;
        filter: alpha(opacity=0);
        z-index: 1;
        box-shadow: 0px 0 30px rgba(0, 0, 0, 0.2);
        height: 100%;
    }

    .ms-menu.toggled {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .ms-menu.toggled:before {
        display: none;
    }
}

.ms-menu .list-group-item {
    padding: 12px 22px !important;
}

@media (min-width: 768px) {
    .ms-body {
        padding-left: 250px;
    }
}

@media (max-width: 767px) {
    .ms-body {
        overflow: hidden;
    }
}

.ms-body .list-group-item:nth-child(odd) .msb-item {
    background-color: #eeeeee;
}

.ms-body .list-group-item:nth-child(even) {
    text-align: right;
}

.ms-body .list-group-item:nth-child(even) .msb-item {
    background-color: #ffc107;
    color: #fff;
}

.ms-body .menu-collapse {
    float: left;
    margin: -10px;
}

#ms-menu-trigger {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: left;
    margin: 1px 0 0 -7px;
}

@media (min-width: 768px) {
    #ms-menu-trigger {
        display: none;
    }
}

#ms-menu-trigger .line-wrap .line {
    background-color: #717171;
}

.msb-item {
    padding: 13px 19px 15px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .msb-item {
        max-width: 70%;
    }
}

.ms-date {
    display: block;
    color: #B3B3B3;
}

.ms-date > i {
    font-size: 14px;
    vertical-align: bottom;
    line-height: 100%;
}

.ms-reply {
    position: relative;
    border-top: 2px solid #f5f5f5;
    margin-top: 30px;
}

.ms-reply textarea {
    width: 100%;
    font-size: 13px;
    border: 0;
    padding: 12px 14px;
    resize: none;
    height: 80px;
}

.ms-reply button {
    position: absolute;
    top: 16px;
    right: 17px;
    border: 0;
    height: 50px;
    width: 50px;
    font-size: 22px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    background: #66bb6a;
}

.ms-reply button:hover {
    background: #4caf50;
}

.four-zero {
    background-color: #607d8b;
    height: 100vh;
    text-align: center;
}

.four-zero:before {
    content: '';
    width: 1px;
    height: 100vh;
}

.four-zero:before,
.fz-inner {
    display: inline-block;
    vertical-align: middle;
}

.fz-inner {
    max-width: 500px;
    padding: 50px;
    background-color: #546e7a;
    border-radius: 3px;
    color: #fff;
    width: 90%;
}

.fz-inner h2 {
    color: #fff;
    margin: 0;
    font-size: 100px;
}

.login {
    overflow: hidden;
    height: 100vh;
    text-align: center;
    -webkit-transition: background-color;
    -o-transition: background-color;
    transition: background-color;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.login:before {
    content: '';
    height: 100vh;
    display: inline-block;
    vertical-align: middle;
    width: 1px;
}

[data-lbg="teal"] {
    background-color: #26a69a;
}

[data-lbg="blue"] {
    background-color: #42a5f5;
}

[data-lbg="purple"] {
    background-color: #ab47bc;
}

.l-block {
    background: #fff;
    border-radius: 2px;
    max-width: 350px;
    width: 100%;
    vertical-align: middle;
    position: relative;
    display: none;
    text-align: left;
}

.l-block.toggled {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 10;
    display: inline-block;
}

.lb-header {
    padding: 25px 30px;
    color: #fff;
    border-radius: 1px 1px 0 0;
}

.lb-header i,
.lb-header .avatar-img {
    display: block;
    margin-bottom: 10px;
}

.lb-header .avatar-img {
    border: 2px solid #fff;
}

.lb-header i {
    font-size: 40px;
}

.lb-body {
    padding: 30px;
}

.lb-body a:hover {
    text-decoration: underline;
}

#profile-main {
    min-height: 500px;
    position: relative;
}

#profile-main .pm-overview {
    overflow-y: auto;
}

@media (min-width: 1200px) {
    #profile-main .pm-overview {
        width: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    #profile-main .pm-overview {
        width: 250px;
    }
}

@media (min-width: 768px) {
    #profile-main .pm-overview {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        background: #f8f8f8;
        border-right: 1px solid #eee;
    }
}

@media (max-width: 767px) {
    #profile-main .pm-overview {
        width: 100%;
        background: #333;
        text-align: center;
    }
}

@media (min-width: 1200px) {
    #profile-main .pm-body {
        padding-left: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    #profile-main .pm-body {
        padding-left: 250px;
    }
}

@media (max-width: 767px) {
    #profile-main .pm-body {
        padding-left: 0;
    }
}

#profile-main .pmo-pic {
    position: relative;
    margin: 20px;
}

@media (min-width: 768px) {
    #profile-main .pmo-pic img {
        width: 100%;
        border-radius: 2px 2px 0 0;
    }
}

@media (max-width: 767px) {
    #profile-main .pmo-pic img {
        width: 180px;
        display: inline-block;
        height: 180px;
        border-radius: 50%;
        border: 4px solid #fff;
        box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
    }
}

#profile-main .pmo-pic .pmo-stat {
    border-radius: 0 0 2px 2px;
    color: #fff;
    text-align: center;
    padding: 30px 5px 0;
}

@media (min-width: 768px) {
    #profile-main .pmo-pic .pmo-stat {
        background: #ffc107;
        padding-bottom: 15px;
    }
}

#profile-main .pmo-pic .pmop-edit {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.38);
    text-align: center;
    padding: 10px 10px 11px;
    -webkit-transition: opacity;
    -o-transition: opacity;
    transition: opacity;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

#profile-main .pmo-pic .pmop-edit:hover {
    background: rgba(0, 0, 0, 0.8);
}

#profile-main .pmo-pic .pmop-edit i {
    font-size: 18px;
    vertical-align: middle;
    margin-top: -3px;
}

@media (min-width: 768px) {
    #profile-main .pmo-pic .pmop-edit {
        width: 100%;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    #profile-main .pmo-pic .pmop-edit i {
        margin-right: 4px;
    }
}

#profile-main .pmo-pic:hover .pmop-edit {
    opacity: 1;
    filter: alpha(opacity=100);
}

#profile-main .pmo-pic .pmop-message {
    position: absolute;
    bottom: 27px;
    left: 50%;
    margin-left: -25px;
}

#profile-main .pmo-pic .pmop-message .dropdown-menu {
    padding: 5px 0 55px;
    left: -90px;
    width: 228px;
    height: 150px;
    top: -74px;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

#profile-main .pmo-pic .pmop-message .dropdown-menu textarea {
    width: 100%;
    height: 95px;
    border: 0;
    resize: none;
    padding: 10px 19px;
}

#profile-main .pmo-pic .pmop-message .dropdown-menu button {
    bottom: 5px;
    left: 88px;
}

#profile-main .pmb-block {
    margin-bottom: 20px;
}

@media (min-width: 1200px) {
    #profile-main .pmb-block {
        padding: 40px 42px 0;
    }
}

@media (max-width: 1199px) {
    #profile-main .pmb-block {
        padding: 30px 20px 0;
    }
}

#profile-main .pmb-block:last-child {
    margin-bottom: 50px;
}

#profile-main .pmb-block .pmbb-header {
    margin-bottom: 25px;
    position: relative;
}

#profile-main .pmb-block .pmbb-header .actions {
    position: absolute;
    top: -2px;
    right: 0;
}

#profile-main .pmb-block .pmbb-header h2 {
    margin: 0;
    font-weight: 100;
    font-size: 20px;
}

#profile-main .pmb-block .pmbb-edit {
    position: relative;
    z-index: 1;
    display: none;
}

#profile-main .pmb-block .pmbb-edit,
#profile-main .pmb-block .pmbb-view {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#profile-main .pmb-block.toggled .pmbb-edit {
    display: block;
}

#profile-main .pmb-block.toggled .pmbb-view {
    display: none;
}

#profile-main .pmo-block {
    padding: 25px;
}

#profile-main .pmo-block > h2 {
    font-size: 16px;
    margin: 0 0 15px;
}

#profile-main .pmo-items .pmob-body {
    padding: 0 10px;
}

#profile-main .pmo-items a {
    display: block;
    padding: 4px;
}

#profile-main .pmo-items a img {
    width: 100%;
}

.pmo-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pmo-contact ul li {
    position: relative;
    padding: 8px 0 8px 35px;
}

.pmo-contact ul li i {
    font-size: 18px;
    vertical-align: top;
    line-height: 100%;
    position: absolute;
    left: 0;
    width: 18px;
    text-align: center;
}

.pmo-map {
    margin: 20px -28px -25px;
    display: block;
}

.pmo-map img {
    width: 100%;
}

@media (max-width: 767px) {
    .c-timeline {
        background: #edecec;
        box-shadow: none;
    }

    .c-timeline .tab-nav {
        background: #fff;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    }
}

.timeline {
    position: relative;
}

@media (min-width: 768px) {
    .timeline {
        padding: 50px;
        padding-left: 100px;
    }
}

@media (max-width: 767px) {
    .timeline {
        margin-top: 30px;
    }
}

.t-view {
    border: 1px solid #eee;
    position: relative;
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .t-view {
        background: #fff;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    }
}

.t-view .tv-header {
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
    background: #F9F9F9;
}

.t-view .tv-header .actions {
    position: absolute;
    top: 5px;
    right: 10px;
}

.t-view .tv-body {
    padding: 23px 25px;
}

.t-view .tv-body .tvb-lightbox {
    margin: 0 -8px 15px;
}

.t-view .tv-body .tvb-lightbox [data-src] {
    padding: 0 5px;
    margin-bottom: 5px;
}

.t-view .tvh-user {
    display: block;
}

.t-view .tvh-user img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.t-view:before {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    left: -70px;
    top: 0;
    border: 3px solid #FFF;
    text-align: center;
    font-size: 16px;
    line-height: 34px;
    color: #FFF;
    font-family: 'Material-Design-Iconic-Font';
    z-index: 1;
}

.t-view:after {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 1px;
    height: calc(100% + 37px);
}

.t-view[data-tv-type="text"]:before {
    content: "\f24f";
    background: #00bcd4;
    box-shadow: 0 0 0 1px #00bcd4;
}

.t-view[data-tv-type="text"]:after {
    background: #00bcd4;
}

.t-view[data-tv-type="image"]:before {
    content: "\f17f";
    background: #4caf50;
    box-shadow: 0 0 0 1px #4caf50;
}

.t-view[data-tv-type="image"]:after {
    background: #4caf50;
}

.t-view[data-tv-type="video"]:before {
    content: "\f3a9";
    background: #ffc107;
    box-shadow: 0 0 0 1px #ffc107;
}

.t-view[data-tv-type="video"]:after {
    background: #ffc107;
}

.t-view .tvb-stats {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
}

.t-view .tvb-stats > li {
    display: inline-block;
    padding: 5px 10px 6px;
    border: 1px solid #ccc;
    margin-right: 2px;
}

.t-view .tvb-stats > li i {
    font-size: 15px;
    line-height: 100%;
    vertical-align: top;
    margin-top: 2px;
}

.t-view .tvb-stats > li.tvbs-comments {
    border-color: #4caf50;
    color: #4caf50;
}

.t-view .tvb-stats > li.tvbs-likes {
    border-color: #03a9f4;
    color: #03a9f4;
}

.t-view .tvb-stats > li.tvbs-views {
    border-color: #ff9800;
    color: #ff9800;
}

.tv-comments .tvc-lists {
    padding: 0;
    list-style: none;
    margin: 0;
}

.tv-comments .tvc-lists > li {
    padding: 15px 20px;
    margin: 0;
    border-top: 1px solid #eee;
}

.tvc-more {
    color: #333;
    display: block;
    margin-bottom: -10px;
}

.tvc-more:hover {
    color: #000;
}

.tvc-more i {
    vertical-align: middle;
    margin-right: 5px;
}

.p-header {
    position: relative;
    margin: 0 -7px;
}

.p-header .actions {
    position: absolute;
    top: -18px;
    right: 0;
}

.p-menu {
    list-style: none;
    padding: 0 5px;
    margin: 0 0 30px;
}

.p-menu > li {
    display: inline-block;
    vertical-align: top;
}

.p-menu > li > a {
    display: block;
    padding: 5px 20px 5px 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
}

.p-menu > li > a > i {
    margin-right: 4px;
    font-size: 20px;
    vertical-align: middle;
    margin-top: -2px;
}

.p-menu > li:not(.active) > a {
    color: #4285F4;
}

.p-menu > li:not(.active) > a:hover {
    color: #333;
}

.p-menu > li.active > a {
    color: #000;
}

@media (max-width: 991px) {
    .p-menu .pm-search {
        margin: 20px 2px 30px;
        display: block;
    }

    .p-menu .pm-search input[type="text"] {
        width: 100%;
        border: 1px solid #ccc;
    }
}

.p-menu .pms-inner {
    margin: -2px 0 0;
    position: relative;
    top: -2px;
    overflow: hidden;
    white-space: nowrap;
}

.p-menu .pms-inner i {
    vertical-align: top;
    font-size: 20px;
    line-height: 100%;
    position: absolute;
    left: 9px;
    top: 8px;
    color: #333;
}

.p-menu .pms-inner input[type="text"] {
    height: 35px;
    border-radius: 2px;
    padding: 0 10px 0 40px;
}

@media (min-width: 768px) {
    .p-menu .pms-inner input[type="text"] {
        border: 1px solid #fff;
        width: 50px;
        background: transparent;
        position: relative;
        z-index: 1;
        -webkit-transition: all;
        -o-transition: all;
        transition: all;
        -webkit-transition-duration: 300ms;
        transition-duration: 300ms;
    }

    .p-menu .pms-inner input[type="text"]:focus {
        border-color: #DFDFDF;
        width: 200px;
    }
}

.photos {
    margin: -10px 0 0;
}

.photos .lightbox {
    margin: 0 -8px;
}

.photos:not(.p-timeline) [data-src] {
    padding: 3px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 150ms;
    transition-duration: 150ms;
}

.p-timeline {
    position: relative;
    padding-left: 80px;
    margin-bottom: 75px;
}

.p-timeline [data-src] {
    float: left;
    width: 70px;
    height: 70px;
    margin: 0 3px 3px 0;
}

.p-timeline:last-child .pt-line:before {
    height: 100%;
}

.ptb-title {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
}

.pt-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    line-height: 14px;
}

.pt-line:before,
.pt-line:after {
    content: "";
    position: absolute;
}

.pt-line:before {
    width: 1px;
    height: calc(100% + 63px);
    background: #E2E2E2;
    top: 14px;
    right: -20px;
}

.pt-line:after {
    top: 2px;
    right: -26px;
    width: 13px;
    height: 13px;
    border: 1px solid #C1C1C1;
    border-radius: 50%;
}

.contacts:not(.c-profile) {
    padding: 0 8px;
}

.contacts > [class*="col-"] {
    padding: 0 10px;
}

.contacts .c-item {
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    margin-bottom: 24px;
}

.contacts .c-item .ci-avatar {
    display: block;
}

.contacts .c-item .ci-avatar img {
    width: 100%;
    border-radius: 2px 2px 0 0;
}

.contacts .ci-avatar {
    margin: -1px -1px 0;
}

.contacts .c-info {
    text-align: center;
    margin-top: 15px;
    padding: 0 5px;
}

.contacts .c-info strong {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.contacts .c-info small {
    color: #999;
    margin-top: 3px;
}

.contacts .c-info strong,
.contacts .c-info small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.contacts .c-footer {
    border-top: 1px solid #e2e2e2;
    margin-top: 18px;
}

.contacts .c-footer > button {
    padding: 4px 10px 3px;
    display: block;
    width: 100%;
    text-align: center;
    color: #333;
    font-weight: 500;
    border-radius: 2px;
    background: #fff;
    border: 0;
}

.contacts .c-footer > button > i {
    font-size: 16px;
    vertical-align: middle;
    margin-top: -3px;
}

.z-depth-1 {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
}

.z-depth-1-top {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.z-depth-1-bottom {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}

.z-depth-2 {
    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}

.z-depth-2-top {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.19);
}

.z-depth-2-bottom {
    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2);
}

.z-depth-3 {
    box-shadow: 0 12px 15px rgba(0, 0, 0, 0.24), 0 17px 50px rgba(0, 0, 0, 0.19);
}

.z-depth-3-top {
    box-shadow: 0 17px 50px rgba(0, 0, 0, 0.19);
}

.z-depth-3-bottom {
    box-shadow: 0 12px 15px rgba(0, 0, 0, 0.24);
}

.z-depth-4 {
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22), 0 25px 55px rgba(0, 0, 0, 0.21);
}

.z-depth-4-top {
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.21);
}

.z-depth-4-bottom {
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.z-depth-5 {
    box-shadow: 0 27px 24px rgba(0, 0, 0, 0.2), 0 40px 77px rgba(0, 0, 0, 0.22);
}

.z-depth-5-top {
    box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22);
}

.z-depth-5-bottom {
    box-shadow: 0 27px 24px rgba(0, 0, 0, 0.2);
}

.z-depth-animation .z-depth-1,
.z-depth-animation .z-depth-2,
.z-depth-animation .z-depth-3,
.z-depth-animation .z-depth-4,
.z-depth-animation .z-depth-5 {
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/*----------------------------------
    Avatars
-----------------------------------*/

.avatar-img,
.avatar-char {
    border-radius: 50%;
}

.avatar-img:not(.a-lg),
.avatar-char:not(.a-lg) {
    width: 38px;
    height: 38px;
}

.avatar-img.a-lg,
.avatar-char.a-lg {
    width: 50px;
    height: 50px;
}

.avatar-char {
    color: #fff;
    line-height: 38px;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
}

.avatar-char.ac-light {
    color: #717171;
}

.ac-check {
    position: relative;
    cursor: pointer;
}

.ac-check .acc-helper,
.ac-check .acc-check {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.ac-check .acc-check {
    z-index: 1;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.ac-check .acc-check:checked + span {
    background-color: #e1e1e1;
    font-size: 0px;
}

.ac-check .acc-check:checked + span:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    border: 0;
    background-color: transparent;
    content: '\f26b';
    font-family: 'Material-Design-Iconic-Font';
    font-size: 23px;
    color: #333;
}

.ac-check .acc-helper {
    border-radius: 50%;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 100ms;
    transition-duration: 100ms;
}

.ac-check:hover .acc-helper {
    background-color: #e1e1e1;
}

.ac-check:hover .acc-helper:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 2px solid #7a7a7a;
    background-color: #fff;
    top: 10px;
    left: 10px;
}

/*----------------------------------
    View More
-----------------------------------*/

.view-more {
    text-align: center;
    padding: 10px 0;
    color: #AEAEAE;
    font-size: 12px;
    margin-top: 10px;
    border-bottom: 0;
}

.view-more:hover {
    color: #929292;
}

.view-more i {
    font-size: 15px;
    line-height: 100%;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #EFEFEF;
    text-align: center;
    line-height: 30px;
    margin-right: 5px;
    color: #9E9E9E;
}

/*
 * Content Header
 * Used for Heading outside the Cards.
 */

.c-header {
    margin-bottom: 25px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .c-header {
        padding: 0 32px;
    }
}

@media screen and (max-width: 991px) {
    .c-header {
        padding: 0 17px;
    }
}

.c-header > h2 {
    font-size: 15px;
    color: #fff;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
}

.c-header > h2 i {
    font-weight: 800;
}

.c-header > h2 > small {
    display: block;
    text-transform: none;
    margin-top: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 140%;
    font-size: 13px;
}

.c-header .actions {
    position: absolute;
    right: 15px;
    top: -5px;
    z-index: 4;
}

/*
 * Header Actions
 */

.actions {
    list-style: none;
    padding: 0;
    z-index: 3;
    margin: 0;
}

.actions > li {
    display: inline-block;
    vertical-align: baseline;
}

.actions > li > a {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    padding-top: 5px;
    border-radius: 50%;
}

.actions > li > a > i {
    color: #adadad;
    font-size: 20px;
}

.actions > li > a:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.actions > li > a:hover > i {
    color: #000;
}

.actions > li > a,
.actions > li > a > i {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.actions.a-alt > li > a > i {
    color: #fff;
}

/*
 * Collapse Menu Icons
 */

.menu-collapse:before,
.mc-wrap,
.mcw-line {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.menu-collapse {
    cursor: pointer;
    position: relative;
    width: 55px;
    height: 35px;
    padding: 12px 0 0 8px;
}

.menu-collapse:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -6px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    z-index: 0;
}

.menu-collapse.toggled .mc-wrap {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.menu-collapse.toggled .mc-wrap .mcw-line.top {
    width: 12px;
    transform: translateX(8px) translateY(1px) rotate(45deg);
    -webkit-transform: translateX(8px) translateY(1px) rotate(45deg);
}

.menu-collapse.toggled .mc-wrap .mcw-line.bottom {
    width: 12px;
    transform: translateX(8px) translateY(-1px) rotate(-45deg);
    -webkit-transform: translateX(8px) translateY(-1px) rotate(-45deg);
}

.menu-collapse.toggled:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.mc-wrap {
    width: 18px;
    height: 12px;
}

.mc-wrap .mcw-line {
    width: 18px;
    height: 2px;
}

.mc-wrap .mcw-line.center {
    margin: 3px 0;
}

/*
 * Load More
 */

.load-more {
    text-align: center;
    margin-top: 30px;
}

.load-more a {
    padding: 8px 15px 6px;
    display: inline-block;
    background-color: #f44336;
    color: #FFF;
    border-radius: 2px;
    white-space: nowrap;
}

.load-more a i {
    font-size: 20px;
    vertical-align: middle;
    position: relative;
    margin-top: -2px;
}

.load-more a:hover {
    background-color: #ea1c0d;
}

/*
 * Page Loader
 */

html:not(.ismobile) .page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

html:not(.ismobile) .page-loader .preloader {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

html.ismobile .page-loader {
    display: none;
}

/*----------------------------------------
    Action Header
-----------------------------------------*/

.action-header {
    padding: 25px 30px;
    line-height: 100%;
    font-weight: 500;
    color: #4C4C4C;
    margin-bottom: 10px;
    font-size: 15px;
    position: relative;
    z-index: 1;
    background-color: #f7f7f7;
    min-height: 65px;
}

.action-header .actions {
    position: absolute;
    top: 18px;
    right: 17px;
    z-index: 10;
}

.ah-search {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 11;
    background: #fff;
    display: none;
}

.ahs-input {
    border: 0;
    padding: 0 26px 0 55px;
    height: 100%;
    font-size: 15px;
    width: 100%;
    font-weight: 100;
    background: #fff;
    border-bottom: 1px solid #EEE;
    line-height: 60px;
}

.ah-search-close {
    font-style: normal;
    position: absolute;
    top: 23px;
    left: 22px;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    cursor: pointer;
}

.ah-search-close:hover {
    opacity: 0.7;
}

/*----------------------------------
    Body overflow hidden
-----------------------------------*/

body.o-hidden {
    overflow: hidden;
    height: 100%;
    height: 100vh;
}

.ie-warning {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #000000;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    padding: 50px 0;
}

.ie-warning p {
    font-size: 17px;
}

.ie-warning .iew-container {
    min-width: 1024px;
    width: 100%;
    height: 200px;
    background: #fff;
    margin: 50px 0;
}

.ie-warning .iew-download {
    list-style: none;
    padding: 30px 0;
    margin: 0 auto;
    width: 720px;
}

.ie-warning .iew-download > li {
    float: left;
    vertical-align: top;
}

.ie-warning .iew-download > li > a {
    display: block;
    color: #000;
    width: 140px;
    font-size: 15px;
    padding: 15px 0;
}

.ie-warning .iew-download > li > a > div {
    margin-top: 10px;
}

.ie-warning .iew-download > li > a:hover {
    background-color: #eee;
}

#footer {
    text-align: center;
    width: 100%;
    color: #a2a2a2;
    padding-bottom: 20px;
    padding-top: 20px;
}

#footer .f-menu {
    display: block;
    width: 100%;
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
    margin-top: 8px;
    margin-bottom: 0;
}

#footer .f-menu > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

#footer .f-menu > li > a {
    color: #a2a2a2;
}

#footer .f-menu > li > a:hover {
    color: #777;
}

.pricing-table {
    text-align: center;
}

.pt-item {
    max-width: 380px;
    display: inline-block;
}

.pti-header {
    padding: 45px 10px 70px;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
}

.pti-header > h2 {
    margin: 0;
    line-height: 100%;
    color: #fff;
    font-weight: 100;
    font-size: 50px;
}

.pti-header > h2 small {
    color: #fff;
    letter-spacing: 0;
    vertical-align: top;
    font-size: 16px;
    font-weight: 100;
}

.ptih-title {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 8px 10px 9px;
    text-transform: uppercase;
    margin: 0 -10px;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.pti-body {
    padding: 0 23px;
}

.ptib-item {
    padding: 15px 0;
    font-weight: 400;
}

.ptib-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.pti-footer {
    padding: 10px 20px 30px;
}

.pti-footer > a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    display: inline-block;
    line-height: 60px;
    font-size: 30px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.pti-footer > a:hover {
    opacity: 0.85;
    filter: alpha(opacity=85);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
}

.invoice {
    min-width: 1100px;
    max-width: 1170px;
}

.i-logo {
    width: 150px;
}

.i-table .highlight {
    background-color: #eee;
    border-bottom: 1px solid #e6e6e6;
}

.i-table td.highlight {
    font-size: 14px;
    font-weight: 500;
}

.wall-attrs {
    margin-bottom: 0;
}

.wa-stats {
    float: left;
}

.wa-stats > span {
    margin-right: -1px;
    padding: 7px 12px;
    border: 1px solid #E0E0E0;
    float: left;
    font-weight: 500;
}

.wa-stats > span.active {
    color: #4caf50;
}

.wa-stats > span:first-child {
    border-radius: 2px 0 0 2px;
}

.wa-stats > span:last-child {
    border-radius: 0 2px 2px 0;
}

.wa-stats > span > i {
    line-height: 100%;
    vertical-align: top;
    position: relative;
    top: 2px;
    font-size: 15px;
    margin-right: 2px;
}

.wa-users {
    float: right;
    padding: 0 !important;
    margin-right: -5px;
}

.wa-users > a {
    display: inline-block;
    margin-left: 2px;
}

.wa-users > a > img {
    width: 33px;
    height: 33px;
    border-radius: 50%;
}

.wa-users > a > img:hover {
    opacity: 0.85;
    filter: alpha(opacity=85);
}

.wcc-inner {
    border: 1px solid #E4E4E4;
    padding: 10px 15px;
    resize: none;
    border-radius: 2px;
    background: #fff;
    color: #9A9A9A;
    cursor: pointer;
}

.wcci-text {
    border: 0;
    display: block;
    width: 100%;
    resize: none;
    padding: 0;
}

.wall-comment-list {
    padding: 20px;
    background: #f7f7f7;
}

.wall-comment-list .media {
    position: relative;
}

.wall-comment-list .media:hover .actions {
    display: block;
}

.wall-comment-list .actions {
    display: none;
    position: absolute;
    right: -20px;
    top: -1px;
}

.wcl-list + .wcl-form {
    margin-top: 25px;
}

.wp-text {
    border: 0;
    padding: 0;
    display: block;
    width: 100%;
    resize: none;
}

.wp-media {
    background: #f7f7f7;
    border: 1px solid #E4E4E4;
    padding: 12px 15px;
    margin-top: 25px;
    text-align: center;
}

.wpb-actions {
    position: relative;
    background: #f7f7f7;
    margin: 0;
    padding: 13px 25px 10px;
}

.wpb-actions button {
    position: absolute;
    right: 20px;
    top: -14px;
}

[data-wpba="image"] {
    color: #4caf50;
}

[data-wpba="image"]:hover {
    color: #449d48;
}

[data-wpba="video"] {
    color: #ff9800;
}

[data-wpba="video"]:hover {
    color: #e68900;
}

[data-wpba="link"] {
    color: #00bcd4;
}

[data-wpba="link"]:hover {
    color: #00a5bb;
}

.wpba-attrs > ul > li {
    padding: 0;
    margin-right: 5px;
}

.wpba-attrs > ul > li > a {
    display: block;
    width: 22px;
}

.wpba-attrs > ul > li > a > i {
    font-size: 20px;
}

.wpba-attrs > ul > li.active i {
    color: #333;
}

.wall-img-preview {
    text-align: center;
    margin: 0 -31px 20px;
}

.wall-img-preview .wip-item {
    display: block;
    float: left;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.wall-img-preview .wip-item > img {
    display: none;
}

.wall-img-preview .wip-item:first-child:nth-last-child(2),
.wall-img-preview .wip-item:first-child:nth-last-child(2) ~ div {
    width: 50%;
    padding-bottom: 40%;
}

.wall-img-preview .wip-item:first-child:nth-last-child(3),
.wall-img-preview .wip-item:first-child:nth-last-child(3) ~ div,
.wall-img-preview .wip-item:first-child:nth-last-child(4),
.wall-img-preview .wip-item:first-child:nth-last-child(4) ~ div:not(:last-child),
.wall-img-preview .wip-item:first-child:nth-last-child(5),
.wall-img-preview .wip-item:first-child:nth-last-child(5) ~ div:not( :nth-last-of-type(-n+2)),
.wall-img-preview .wip-item:first-child:nth-last-child(6),
.wall-img-preview .wip-item:first-child:nth-last-child(6) ~ div,
.wall-img-preview .wip-item:first-child:nth-last-child(7) ~ div:nth-last-of-type(-n+3) {
    width: 33.333333%;
    padding-bottom: 30%;
}

.wall-img-preview .wip-item:first-child:nth-last-child(5) ~ div:nth-last-of-type(-n+2) {
    width: 50%;
    padding-bottom: 40%;
}

.wall-img-preview .wip-item:first-child:nth-last-child(7),
.wall-img-preview .wip-item:first-child:nth-last-child(7) ~ div:not( :nth-last-of-type(-n+3)),
.wall-img-preview .wip-item:first-child:nth-last-child(n+8),
.wall-img-preview .wip-item:first-child:nth-last-child(n+8) ~ div {
    width: 25%;
    padding-bottom: 22%;
}

.wall-img-preview .wip-item:only-child,
.wall-img-preview .wip-item:first-child:nth-last-child(4) ~ div:nth-child(4) {
    width: 100%;
    padding-bottom: 50%;
}

.preloader {
    position: relative;
    margin: 0px auto;
    display: inline-block;
}

.preloader:not([class*="pl-"]) {
    width: 40px;
}

.preloader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.preloader.pl-xs {
    width: 20px;
}

.preloader.pl-sm {
    width: 30px;
}

.preloader.pl-lg {
    width: 50px;
}

.preloader.pl-xl {
    width: 80px;
}

.preloader.pl-xxl {
    width: 100px;
}

.preloader:not([class*="pls-"]) .plc-path {
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
}

.preloader[class*="pls-"] .plc-path {
    animation: dash 1.5s ease-in-out infinite;
}

.preloader.pls-red .plc-path {
    stroke: #f44336;
}

.preloader.pls-blue .plc-path {
    stroke: #2196f3;
}

.preloader.pls-green .plc-path {
    stroke: #4caf50;
}

.preloader.pls-yellow .plc-path {
    stroke: #ffeb3b;
}

.preloader.pls-bluegray .plc-path {
    stroke: #607d8b;
}

.preloader.pls-amber .plc-path {
    stroke: #ffc107;
}

.preloader.pls-teal .plc-path {
    stroke: #009688;
}

.preloader.pls-gray .plc-path {
    stroke: #9e9e9e;
}

.preloader.pls-pink .plc-path {
    stroke: #e91e63;
}

.preloader.pls-purple .plc-path {
    stroke: #9c27b0;
}

.preloader.pls-white .plc-path {
    stroke: #fff;
}

.pl-circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.plc-path {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke-width: 2;
    stroke-miterlimit: 10;
    fill: none;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #f44336;
    }

    40% {
        stroke: #2196f3;
    }

    66% {
        stroke: #4caf50;
    }

    80%, 90% {
        stroke: #ffc107;
    }
}

[data-ma-header="teal"]:before,
[data-ma-header="teal"] #header {
    background-color: #009688;
}

[data-ma-header="teal"] .smm-alerts > li.active,
[data-ma-header="teal"] .main-menu li.active > a {
    color: #009688;
}

[data-ma-header="blue"]:before,
[data-ma-header="blue"] #header {
    background-color: #2196f3;
}

[data-ma-header="blue"] .smm-alerts > li.active,
[data-ma-header="blue"] .main-menu li.active > a {
    color: #2196f3;
}

[data-ma-header="bluegrey"]:before,
[data-ma-header="bluegrey"] #header {
    background-color: #607d8b;
}

[data-ma-header="bluegrey"] .smm-alerts > li.active,
[data-ma-header="bluegrey"] .main-menu li.active > a {
    color: #607d8b;
}

[data-ma-header="cyan-600"]:before,
[data-ma-header="cyan-600"] #header {
    background-color: #00acc1;
}

[data-ma-header="cyan-600"] .smm-alerts > li.active,
[data-ma-header="cyan-600"] .main-menu li.active > a {
    color: #00acc1;
}

[data-ma-header="green"]:before,
[data-ma-header="green"] #header {
    background-color: #4caf50;
}

[data-ma-header="green"] .smm-alerts > li.active,
[data-ma-header="green"] .main-menu li.active > a {
    color: #4caf50;
}

[data-ma-header="lightgreen"]:before,
[data-ma-header="lightgreen"] #header {
    background-color: #8bc34a;
}

[data-ma-header="lightgreen"] .smm-alerts > li.active,
[data-ma-header="lightgreen"] .main-menu li.active > a {
    color: #8bc34a;
}

[data-ma-header="purple-400"]:before,
[data-ma-header="purple-400"] #header {
    background-color: #ab47bc;
}

[data-ma-header="purple-400"] .smm-alerts > li.active,
[data-ma-header="purple-400"] .main-menu li.active > a {
    color: #ab47bc;
}

[data-ma-header="red-400"]:before,
[data-ma-header="red-400"] #header {
    background-color: #ef5350;
}

[data-ma-header="red-400"] .smm-alerts > li.active,
[data-ma-header="red-400"] .main-menu li.active > a {
    color: #ef5350;
}

[data-ma-header="pink-400"]:before,
[data-ma-header="pink-400"] #header {
    background-color: #ec407a;
}

[data-ma-header="pink-400"] .smm-alerts > li.active,
[data-ma-header="pink-400"] .main-menu li.active > a {
    color: #ec407a;
}

[data-ma-header="brown"]:before,
[data-ma-header="brown"] #header {
    background-color: #795548;
}

[data-ma-header="brown"] .smm-alerts > li.active,
[data-ma-header="brown"] .main-menu li.active > a {
    color: #795548;
}

[data-ma-header="grey-600"]:before,
[data-ma-header="grey-600"] #header {
    background-color: #757575;
}

[data-ma-header="grey-600"] .smm-alerts > li.active,
[data-ma-header="grey-600"] .main-menu li.active > a {
    color: #757575;
}

[data-ma-header="orange"]:before,
[data-ma-header="orange"] #header {
    background-color: #ff9800;
}

[data-ma-header="orange"] .smm-alerts > li.active,
[data-ma-header="orange"] .main-menu li.active > a {
    color: #ff9800;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #e0e0e0;
    box-shadow: 0 0 6px #EAEAEA;
}

.thumbnail .caption {
    padding: 10px 20px 15px;
}

@media screen and (min-width: 1500px) {
    #c-grid[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

@media screen and (min-width: 768px) {
    #c-grid {
        margin: 0 -15px;
    }

    .column {
        padding: 0 15px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1499px) {
    #c-grid[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (max-width: 767px) {
    #c-grid {
        margin: 0 -10px;
    }

    .column {
        padding: 0 10px;
    }

    #c-grid[data-columns]::before {
        content: '1 .column.size-1of1';
    }
}

.column {
    float: left;
}

.size-1of1 {
    width: 100%;
}

.size-1of2 {
    width: 50%;
}

.size-1of3 {
    width: 33.333%;
}

@media print {
    @page {
        margin: 0;
        size: auto;
    }

    body {
        margin: 0mm 0mm 0mm 0mm !important;
        padding: 0mm !important;
    }

    #header,
    .c-header,
    #footer,
    #s-user-alerts,
    #s-main-menu,
    #chat,
    .growl-animated,
    .m-btn {
        display: none !important;
    }

    /*
       * INVOICE
       */

    .invoice {
        padding: 30px !important;
        -webkit-print-color-adjust: exact !important;
    }

    .invoice .card-header {
        background: #eee !important;
        padding: 20px;
        margin-bottom: 20px;
        margin: -10px -30px 25px -30px;
    }

    .invoice .block-header {
        display: none;
    }

    .invoice .highlight {
        background: #eee !important;
    }
}

/*
 * Vendor Overrides
 */

#fc-actions {
    position: absolute;
    bottom: 10px;
    right: 12px;
}

.fc td,
.fc th {
    border-color: transparent;
}

.fc th {
    font-weight: 400;
    padding: 5px 0;
}

.fc table {
    background: transparent;
}

.fc table tr > td:first-child {
    border-left-width: 0;
}

#calendar-widget .fc-toolbar h2 {
    font-size: 16px;
}

#calendar-widget .fc-day-number {
    text-align: center;
    color: #000;
}

#calendar-widget .fc-day-grid-event {
    margin: 1px 3px 1px;
}

#calendar-widget .ui-widget-header th,
#calendar-widget .ui-widget-header {
    border-width: 0;
}

#calendar .fc-toolbar {
    height: 300px;
    background-image: url('/src/backend/images/material/cal-header.jpg');
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-position: inherit;
}

#calendar .fc-toolbar h2 {
    font-size: 20px;
    color: #fff;
}

#calendar .fc-toolbar:before {
    content: "";
    height: 50px;
    width: 100%;
    background: rgba(0, 0, 0, 0.36);
    position: absolute;
    bottom: 0;
    left: 0;
}

#calendar .fc-toolbar .fc-center {
    margin-top: 238px;
    position: relative;
}

#calendar .fc-toolbar .ui-button {
    margin-top: 3px;
}

#calendar .fc-toolbar .ui-button span {
    color: #fff;
}

#calendar .fc-toolbar .ui-button:hover span {
    color: #333;
}

@media screen and (max-width: 991px) {
    #calendar .fc-toolbar {
        height: 200px;
    }

    #calendar .fc-toolbar .fc-center {
        margin-top: 138px;
    }
}

#calendar .fc-day-number {
    padding-left: 10px !important;
    color: #CCC;
    text-align: left !important;
}

@media screen and (min-width: 991px) {
    #calendar .fc-day-number {
        font-size: 25px;
        letter-spacing: -2px;
    }
}

#calendar .fc-day-header {
    color: #333 !important;
    text-align: left !important;
}

#calendar .fc-day-grid-event {
    margin: 1px 9px 0;
}

.fc-day-header {
    font-size: 0;
    padding-bottom: 20px !important;
}

.fc-day-header:first-letter {
    font-size: 14px;
    color: #c2c2c2;
    text-align: left;
    border-bottom-width: 0;
    border-right-color: #eee;
    padding: 10px 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.fc-today {
    color: #ffc107;
}

.fc-toolbar {
    margin-bottom: 0;
    padding: 20px 17px 19px;
    position: relative;
}

.fc-toolbar h2 {
    margin-top: 7px;
}

.fc-toolbar .ui-button {
    border: 0;
    background: 0 0;
    padding: 0;
    outline: none !important;
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.fc-toolbar .ui-button:hover {
    background: #EFEFEF;
}

.fc-toolbar .ui-button > span {
    position: relative;
    font-family: 'Material-Design-Iconic-Font';
    font-size: 24px;
    line-height: 100%;
    width: 30px;
    display: block;
    margin-top: 2px;
}

.fc-toolbar .ui-button > span:before {
    position: relative;
    z-index: 1;
}

.fc-toolbar .ui-button > span.ui-icon-circle-triangle-w:before {
    content: "\f2fa";
}

.fc-toolbar .ui-button > span.ui-icon-circle-triangle-e:before {
    content: "\f2fb";
}

.fc-event {
    padding: 0;
    font-size: 11px;
    border-radius: 2px;
    border: 0;
}

.fc-event .fc-title {
    padding: 2px 8px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fc-event .fc-time {
    float: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    margin: 0 0 0 -1px;
}

.fc-view,
.fc-view > table {
    border: 0;
    overflow: hidden;
}

.fc-view > table > tbody > tr > .ui-widget-content {
    border-top: 0;
}

div.fc-row {
    margin-right: 0 !important;
    border: 0 !important;
}

.fc-today {
    color: #ffc107 !important;
}

/* Even Tag Color */

.event-tag {
    margin-top: 5px;
}

.event-tag > span {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 3px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.event-tag > span:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.event-tag > span.selected:before {
    font-family: 'Material-Design-Iconic-Font';
    content: "\f26b";
    position: absolute;
    text-align: center;
    top: 3px;
    width: 100%;
    font-size: 17px;
    color: #FFF;
}

hr.fc-divider {
    border-width: 1px;
    border-color: #eee;
}

.fc-day-grid-container.fc-scroller {
    height: auto !important;
    overflow: hidden !important;
}

/* Even Tag Color */

.event-tag {
    margin-top: 5px;
}

.event-tag > span {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 3px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.event-tag > span:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.event-tag > span.selected:before {
    font-family: 'Material-Design-Iconic-Font';
    content: "\f26b";
    position: absolute;
    text-align: center;
    top: 3px;
    width: 100%;
    font-size: 17px;
    color: #FFF;
}

.bootgrid-footer .infoBar,
.bootgrid-header .actionBar {
    text-align: left;
}

.bootgrid-footer .search,
.bootgrid-header .search {
    vertical-align: top;
}

.bootgrid-header {
    padding: 0 25px 10px;
}

.bootgrid-header .search {
    border: 1px solid #e0e0e0;
}

.bootgrid-header .search .form-control,
.bootgrid-header .search .input-group-addon {
    border: 0;
}

.bootgrid-header .search .glyphicon-search {
    vertical-align: top;
    padding: 9px 10px 0;
}

.bootgrid-header .search .glyphicon-search:before {
    content: "\f1c3";
    font-family: 'Material-Design-Iconic-Font';
    font-size: 17px;
    vertical-align: top;
    line-height: 100%;
}

@media (min-width: 480px) {
    .bootgrid-header .search {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .bootgrid-header .search {
        width: 100%;
        padding-right: 90px;
    }
}

.bootgrid-header .actions {
    box-shadow: none;
}

.bootgrid-header .actions .btn-group {
    border: 1px solid #e0e0e0;
}

.bootgrid-header .actions .btn-group .btn {
    height: 35px;
    box-shadow: none !important;
    background: transparent;
}

.bootgrid-header .actions .btn-group .dropdown-menu {
    padding: 10px 20px;
}

.bootgrid-header .actions .btn-group .dropdown-menu .dropdown-item {
    padding: 0 0 0 27px !important;
}

.bootgrid-header .actions .btn-group .dropdown-menu .dropdown-item:hover {
    background-color: #fff !important;
}

@media (min-width: 768px) {
    .bootgrid-header .actions .btn-group .dropdown-menu {
        left: 0;
        -webkit-transform-origin: top left;
        -moz-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        margin-top: 1px;
    }
}

.bootgrid-header .actions .btn-group .caret {
    display: none;
}

.bootgrid-header .actions .btn-group .zmdi {
    line-height: 100%;
    font-size: 18px;
    vertical-align: top;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.bootgrid-header .actions .btn-group.open .zmdi {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .bootgrid-header .actions {
        position: absolute;
        top: 0;
        right: 15px;
    }
}

.bootgrid-table th > .column-header-anchor > .icon {
    top: 0px;
    font-size: 20px;
    line-height: 100%;
}

.bootgrid-footer .col-sm-6 {
    padding: 10px 30px 20px;
}

@media (max-width: 768px) {
    .bootgrid-footer .col-sm-6 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .bootgrid-footer .infoBar {
        display: none;
    }
}

.bootgrid-footer .infoBar .infos {
    border: 1px solid #EEE;
    display: inline-block;
    float: right;
    padding: 7px 30px;
    font-size: 12px;
    margin-top: 5px;
}

.select-cell .checkbox {
    margin: 0;
}

.command-edit,
.command-delete {
    background: #fff;
}

.command-edit .zmdi,
.command-delete .zmdi {
    color: #6D6D6D;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.bootstrap-select > .btn-default {
    background: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.bootstrap-select > .btn-default:before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    height: calc(100% - 2px);
    width: 30px;
    background-color: #FFF;
    background-position: right calc(100% - 7px);
    background-repeat: no-repeat;
    background-image: url("/src/backend/images/material/select.png");
    pointer-events: none;
    z-index: 5;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .bootstrap-select > .btn-default:before {
        background-image: url("/src/backend/images/material/select@2x.png");
        background-size: 12px 12px;
    }
}

.bootstrap-select .bs-searchbox {
    padding: 5px 5px 5px 40px;
    position: relative;
    background: #f7f7f7;
    margin-top: -10px;
}

.bootstrap-select .bs-searchbox:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    content: "\f1c3";
    font-family: 'Material-Design-Iconic-Font';
    font-size: 25px;
    padding: 4px 0 0 15px;
}

.bootstrap-select .bs-searchbox input {
    border: 0;
    background: transparent;
}

.bootstrap-select.btn-group .dropdown-menu li a.opt {
    padding-left: 17px;
}

.bootstrap-select .check-mark {
    margin-top: -5px !important;
    font-size: 19px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    display: block !important;
    position: absolute;
    top: 11px;
    right: 15px;
}

.bootstrap-select .check-mark:before {
    content: "\f26b";
    font-family: 'Material-Design-Iconic-Font';
}

.bootstrap-select .selected .check-mark {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.bootstrap-select .notify {
    bottom: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    border: 0 !important;
    background: #f44336 !important;
    color: #fff !important;
    text-align: center;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

.chosen-container .chosen-drop {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-top: 1px;
    border: 0;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    top: 0;
}

.chosen-container .chosen-results {
    margin: 0;
    padding: 0;
    max-height: 300px;
}

.chosen-container .chosen-results li {
    padding: 10px 17px;
    width: 100%;
}

.chosen-container .chosen-results li.highlighted {
    background: rgba(0, 0, 0, 0.075);
    color: #333333;
}

.chosen-container .chosen-results li.result-selected {
    background: transparent;
    color: #5e5e5e;
    position: relative;
}

.chosen-container .chosen-results li.result-selected:before {
    content: "\f26b";
    font-family: 'Material-Design-Iconic-Font';
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 19px;
}

.chosen-container .chosen-results li.group-result {
    color: #B2B2B2;
    font-weight: normal;
    padding: 16px 15px 6px;
    margin-top: 9px;
}

.chosen-container .chosen-results li.group-result:not(:first-child) {
    border-top: 1px solid #eee;
}

.chosen-container-single .chosen-single {
    border-radius: 0;
    overflow: visible;
    height: 34px;
    padding: 6px 0 6px;
    text-transform: uppercase;
    border: 0;
    border-bottom: 1px solid #e0e0e0;
    background: none;
    box-shadow: none;
}

.chosen-container-single .chosen-single:before {
    background-image: url("/src/backend/images/material/select.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .chosen-container-single .chosen-single:before {
        background-image: url("/src/backend/images/material/select@2x.png");
        background-size: 12px 12px;
    }
}

.chosen-container-single .chosen-single div b {
    display: none;
}

.chosen-container-single .chosen-search {
    padding: 5px 5px 5px 40px;
    background: #f7f7f7;
}

.chosen-container-single .chosen-search:before {
    content: "\f1c3";
    font-family: 'Material-Design-Iconic-Font';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    font-size: 25px;
    padding: 5px 0 0 15px;
}

.chosen-container-single .chosen-search input[type=text] {
    border: 0;
    height: 35px;
    line-height: 1.42857143;
    background-image: none !important;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 0;
    background: none;
}

.chosen-container-multi .chosen-choices {
    padding: 0;
    border: 0;
    border-bottom: 1px solid #e0e0e0;
    background: none;
    box-shadow: none;
}

.chosen-container-multi .chosen-choices li.search-choice {
    border-radius: 2px;
    margin: 4px 4px 0 0;
    background: #eaeaea;
    padding: 5px 23px 5px 8px;
    border: 0;
    box-shadow: none;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding: 0;
    height: 31px;
}

.search-choice-close {
    cursor: pointer;
}

.search-choice-close:before {
    display: inline-block;
    font-family: 'Material-Design-Iconic-Font';
    content: "\f135";
    position: relative;
    top: 1px;
    color: #9C9C9C;
    z-index: 2;
    background: #fff;
    font-size: 12px;
}

select.chosen {
    display: none;
}

.noUi-target {
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

.noUi-background {
    background: #d4d4d4;
    box-shadow: none;
}

.noUi-horizontal {
    height: 3px;
}

.noUi-horizontal .noUi-handle {
    top: -8px;
}

.noUi-vertical {
    width: 3px;
}

.noUi-horizontal .noUi-handle,
.noUi-vertical .noUi-handle {
    width: 19px;
    height: 19px;
    border: 0;
    border-radius: 100%;
    box-shadow: none;
    -webkit-transition: box-shadow;
    -o-transition: box-shadow;
    transition: box-shadow;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    cursor: pointer;
    position: relative;
}

.noUi-horizontal .noUi-handle:before,
.noUi-vertical .noUi-handle:before,
.noUi-horizontal .noUi-handle:after,
.noUi-vertical .noUi-handle:after {
    display: none;
}

.noUi-horizontal .noUi-handle:active,
.noUi-vertical .noUi-handle:active {
    background: #ccc !important;
}

.noUi-horizontal .noUi-handle .is-tooltip,
.noUi-vertical .noUi-handle .is-tooltip {
    position: absolute;
    bottom: 32px;
    height: 35px;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    line-height: 33px;
    width: 50px;
    left: 50%;
    margin-left: -25px;
    padding: 0 10px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.noUi-horizontal .noUi-handle .is-tooltip:after,
.noUi-vertical .noUi-handle .is-tooltip:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    margin-left: -9px;
    content: "";
}

.noUi-horizontal .noUi-active,
.noUi-vertical .noUi-active {
    box-shadow: 0 0 0 13px rgba(0, 0, 0, 0.1);
}

.noUi-horizontal .noUi-active .is-tooltip,
.noUi-vertical .noUi-active .is-tooltip {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    bottom: 40px;
    opacity: 1;
    filter: alpha(opacity=100);
}

.input-slider:not([data-is-color]) .noUi-handle,
.input-slider-range:not([data-is-color]) .noUi-handle,
.input-slider-values:not([data-is-color]) .noUi-handle,
.input-slider:not([data-is-color]) .noUi-connect,
.input-slider-range:not([data-is-color]) .noUi-connect,
.input-slider-values:not([data-is-color]) .noUi-connect {
    background: #009688 !important;
}

.input-slider:not([data-is-color]) .is-tooltip,
.input-slider-range:not([data-is-color]) .is-tooltip,
.input-slider-values:not([data-is-color]) .is-tooltip {
    background: #009688;
}

.input-slider:not([data-is-color]) .is-tooltip:after,
.input-slider-range:not([data-is-color]) .is-tooltip:after,
.input-slider-values:not([data-is-color]) .is-tooltip:after {
    border-color: #009688 transparent transparent transparent;
}

.input-slider[data-is-color=red] .noUi-handle,
.input-slider-range[data-is-color=red] .noUi-handle,
.input-slider-values[data-is-color=red] .noUi-handle,
.input-slider[data-is-color=red] .noUi-connect,
.input-slider-range[data-is-color=red] .noUi-connect,
.input-slider-values[data-is-color=red] .noUi-connect {
    background: #f44336 !important;
}

.input-slider[data-is-color=blue] .noUi-handle,
.input-slider-range[data-is-color=blue] .noUi-handle,
.input-slider-values[data-is-color=blue] .noUi-handle,
.input-slider[data-is-color=blue] .noUi-connect,
.input-slider-range[data-is-color=blue] .noUi-connect,
.input-slider-values[data-is-color=blue] .noUi-connect {
    background: #2196f3 !important;
}

.input-slider[data-is-color=cyan] .noUi-handle,
.input-slider-range[data-is-color=cyan] .noUi-handle,
.input-slider-values[data-is-color=cyan] .noUi-handle,
.input-slider[data-is-color=cyan] .noUi-connect,
.input-slider-range[data-is-color=cyan] .noUi-connect,
.input-slider-values[data-is-color=cyan] .noUi-connect {
    background: #00bcd4 !important;
}

.input-slider[data-is-color=amber] .noUi-handle,
.input-slider-range[data-is-color=amber] .noUi-handle,
.input-slider-values[data-is-color=amber] .noUi-handle,
.input-slider[data-is-color=amber] .noUi-connect,
.input-slider-range[data-is-color=amber] .noUi-connect,
.input-slider-values[data-is-color=amber] .noUi-connect {
    background: #ffc107 !important;
}

.input-slider[data-is-color=green] .noUi-handle,
.input-slider-range[data-is-color=green] .noUi-handle,
.input-slider-values[data-is-color=green] .noUi-handle,
.input-slider[data-is-color=green] .noUi-connect,
.input-slider-range[data-is-color=green] .noUi-connect,
.input-slider-values[data-is-color=green] .noUi-connect {
    background: #4caf50 !important;
}

.input-slider .noUi-origin {
    background: #d4d4d4;
}

.input-slider:not([data-is-color]) .noUi-base {
    background: #009688 !important;
}

.input-slider[data-is-color=red] .noUi-base {
    background: #f44336 !important;
}

.input-slider[data-is-color=blue] .noUi-base {
    background: #2196f3 !important;
}

.input-slider[data-is-color=cyan] .noUi-base {
    background: #00bcd4 !important;
}

.input-slider[data-is-color=amber] .noUi-base {
    background: #ffc107 !important;
}

.input-slider[data-is-color=green] .noUi-base {
    background: #4caf50 !important;
}

.cp-container {
    position: relative;
}

.cp-container > .input-group input.cp-value {
    color: #000 !important;
    background: transparent !important;
}

.cp-container > .input-group .dropdown-menu {
    padding: 20px;
    margin-left: -1px;
}

.cp-container i.cp-value {
    width: 25px;
    height: 25px;
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 15px;
}

.note-editor .note-toolbar,
.note-popover .note-toolbar,
.note-editor .popover-content,
.note-popover .popover-content {
    background: #fff;
    border-color: #e4e4e4;
    margin: 0;
    /*padding: 10px 0 15px;*/
    text-align: center;
}

.note-editor .note-toolbar > .btn-group,
.note-popover .note-toolbar > .btn-group,
.note-editor .popover-content > .btn-group,
.note-popover .popover-content > .btn-group {
    display: inline-block;
    float: none;
    box-shadow: none;
}

.note-editor .note-toolbar > .btn-group .btn,
.note-popover .note-toolbar > .btn-group .btn,
.note-editor .popover-content > .btn-group .btn,
.note-popover .popover-content > .btn-group .btn {
    margin: 0 1px;
}

.note-editor .note-toolbar > .btn-group > .active,
.note-popover .note-toolbar > .btn-group > .active,
.note-editor .popover-content > .btn-group > .active,
.note-popover .popover-content > .btn-group > .active {
    background: #00bcd4;
    color: #fff;
}

.note-editor .note-toolbar .btn,
.note-popover .note-toolbar .btn,
.note-editor .popover-content .btn,
.note-popover .popover-content .btn {
    height: 30px;
    border-radius: 2px !important;
    box-shadow: none !important;
}

.note-editor .note-toolbar .btn:active,
.note-popover .note-toolbar .btn:active,
.note-editor .popover-content .btn:active,
.note-popover .popover-content .btn:active {
    box-shadow: none;
}

.note-editor .note-toolbar .note-palette-title,
.note-popover .note-toolbar .note-palette-title,
.note-editor .popover-content .note-palette-title,
.note-popover .popover-content .note-palette-title {
    margin: 0 !important;
    padding: 10px 0 !important;
    font-size: 13px !important;
    text-align: center !important;
    border: 0 !important;
}

.note-editor .note-toolbar .note-color-reset,
.note-popover .note-toolbar .note-color-reset,
.note-editor .popover-content .note-color-reset,
.note-popover .popover-content .note-color-reset {
    padding: 0 0 10px !important;
    margin: 0 !important;
    background: none;
    text-align: center;
}

.note-editor .note-toolbar .note-color .dropdown-menu,
.note-popover .note-toolbar .note-color .dropdown-menu,
.note-editor .popover-content .note-color .dropdown-menu,
.note-popover .popover-content .note-color .dropdown-menu {
    min-width: 335px;
}

.note-editor .note-statusbar .note-resizebar,
.note-popover .note-statusbar .note-resizebar {
    border-color: #E8E8E8;
}

.note-editor .note-statusbar .note-resizebar .note-icon-bar,
.note-popover .note-statusbar .note-resizebar .note-icon-bar {
    border-color: #BCBCBC;
}

.note-editor .fa,
.note-popover .fa {
    font-style: normal;
    font-size: 20px;
    vertical-align: middle;
}

.note-editor .fa:before,
.note-popover .fa:before {
    font-family: 'Material-Design-Iconic-Font';
}

.note-editor .fa.fa-magic:before,
.note-popover .fa.fa-magic:before {
    content: "\f16a";
}

.note-editor .fa.fa-bold:before,
.note-popover .fa.fa-bold:before {
    content: "\f23d";
}

.note-editor .fa.fa-italic:before,
.note-popover .fa.fa-italic:before {
    content: "\f245";
}

.note-editor .fa.fa-underline:before,
.note-popover .fa.fa-underline:before {
    content: "\f24f";
}

.note-editor .fa.fa-font:before,
.note-popover .fa.fa-font:before {
    content: "\f242";
}

.note-editor .fa.fa-list-ul:before,
.note-popover .fa.fa-list-ul:before {
    content: "\f247";
}

.note-editor .fa.fa-list-ol:before,
.note-popover .fa.fa-list-ol:before {
    content: "\f248";
}

.note-editor .fa.fa-align-left:before,
.note-popover .fa.fa-align-left:before {
    content: "\f23b";
}

.note-editor .fa.fa-align-right:before,
.note-popover .fa.fa-align-right:before {
    content: "\f23c";
}

.note-editor .fa.fa-align-center:before,
.note-popover .fa.fa-align-center:before {
    content: "\f239";
}

.note-editor .fa.fa-align-justify:before,
.note-popover .fa.fa-align-justify:before {
    content: "\f23a";
}

.note-editor .fa.fa-indent:before,
.note-popover .fa.fa-indent:before {
    content: "\f244";
}

.note-editor .fa.fa-outdent:before,
.note-popover .fa.fa-outdent:before {
    content: "\f243";
}

.note-editor .fa.fa-text-height:before,
.note-popover .fa.fa-text-height:before {
    content: "\f246";
}

.note-editor .fa.fa-table:before,
.note-popover .fa.fa-table:before {
    content: "\f320";
}

.note-editor .fa.fa-link:before,
.note-popover .fa.fa-link:before {
    content: "\f18e";
}

.note-editor .fa.fa-picture-o:before,
.note-popover .fa.fa-picture-o:before {
    content: "\f17f";
}

.note-editor .fa.fa-minus:before,
.note-popover .fa.fa-minus:before {
    content: "\f22f";
}

.note-editor .fa.fa-arrows-alt:before,
.note-popover .fa.fa-arrows-alt:before {
    content: "\f16d";
}

.note-editor .fa.fa-code:before,
.note-popover .fa.fa-code:before {
    content: "\f13a";
}

.note-editor .fa.fa-question:before,
.note-popover .fa.fa-question:before {
    content: "\f1f5";
}

.note-editor .fa.fa-eraser:before,
.note-popover .fa.fa-eraser:before {
    content: "\f23f";
}

.note-editor .fa.fa-square:before,
.note-popover .fa.fa-square:before {
    content: "\f279";
}

.note-editor .fa.fa-circle-o:before,
.note-popover .fa.fa-circle-o:before {
    content: "\f26c";
}

.note-editor .fa.fa-times:before,
.note-popover .fa.fa-times:before {
    content: "\f136";
}

.note-editor .note-air-popover .arrow,
.note-popover .note-air-popover .arrow {
    left: 20px;
}

.note-editor {
    overflow: visible;
    border: 1px solid #e4e4e4;
}

.note-editor .note-editable {
    padding: 20px 23px;
}

.bootstrap-datetimepicker-widget {
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
}

.bootstrap-datetimepicker-widget:after,
.bootstrap-datetimepicker-widget:before {
    display: none !important;
}

.bootstrap-datetimepicker-widget table td {
    text-shadow: none;
}

.bootstrap-datetimepicker-widget table td span {
    margin: 0;
}

.bootstrap-datetimepicker-widget table td span:hover {
    background: transparent;
}

.bootstrap-datetimepicker-widget .glyphicon {
    font-family: 'Material-Design-Iconic-Font';
    font-size: 18px;
}

.bootstrap-datetimepicker-widget .glyphicon-chevron-left:before {
    content: "\f2ff";
}

.bootstrap-datetimepicker-widget .glyphicon-chevron-right:before {
    content: "\f301";
}

.bootstrap-datetimepicker-widget .glyphicon-time:before {
    content: "\f337";
}

.bootstrap-datetimepicker-widget .glyphicon-calendar:before {
    content: "\f32e";
}

.bootstrap-datetimepicker-widget .glyphicon-chevron-up:before {
    content: "\f1e5";
}

.bootstrap-datetimepicker-widget .glyphicon-chevron-down:before {
    content: "\f1e4";
}

.bootstrap-datetimepicker-widget [data-action="togglePicker"] span {
    font-size: 25px;
    color: #ccc;
}

.bootstrap-datetimepicker-widget [data-action="togglePicker"] span:hover {
    color: #333;
}

.bootstrap-datetimepicker-widget a[data-action] {
    color: #009688;
}

.timepicker-picker .btn {
    box-shadow: none !important;
}

.timepicker-picker table tbody tr + tr:not(:last-child) {
    background: #009688;
    color: #fff;
}

.timepicker-picker table tbody tr + tr:not(:last-child) td {
    border-radius: 0;
}

.timepicker-picker .btn,
.timepicker-picker .btn:hover {
    background: #fff;
    color: #333;
}

.datepicker.top {
    -webkit-transform-origin: 0 100% !important;
    -moz-transform-origin: 0 100% !important;
    -ms-transform-origin: 0 100% !important;
    transform-origin: 0 100% !important;
}

.datepicker table thead tr th {
    border-radius: 0;
    color: #fff;
}

.datepicker table thead tr th .glyphicon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 29px;
}

.datepicker table thead tr th:hover .glyphicon {
    background: rgba(0, 0, 0, 0.2);
}

.datepicker table thead tr:first-child th {
    background: #009688;
    padding: 20px 0;
}

.datepicker table thead tr:first-child th:hover {
    background: #009688;
}

.datepicker table thead tr:first-child th.picker-switch {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.datepicker table thead tr:last-child th {
    text-transform: uppercase;
    font-weight: normal;
    font-size: 11px;
}

.datepicker table thead tr:last-child th:first-child {
    padding-left: 20px;
}

.datepicker table thead tr:last-child th:last-child {
    padding-right: 20px;
}

.datepicker table thead tr:last-child:not(:only-child) {
    background: #00877a;
}

.datepicker table tbody tr:last-child td {
    padding-bottom: 25px;
}

.datepicker table tbody tr td:first-child {
    padding-left: 13px;
}

.datepicker table tbody tr td:last-child {
    padding-right: 13px;
}

.datepicker table td.day {
    width: 35px;
    height: 35px;
    line-height: 20px;
    color: #333;
    position: relative;
    padding: 0;
    background: transparent;
}

.datepicker table td.day:hover {
    background: none;
}

.datepicker table td.day:before {
    content: "";
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-bottom: -33px;
    display: inline-block;
    background: transparent;
    position: static;
    text-shadow: none;
}

.datepicker table td.day.old,
.datepicker table td.day.new {
    color: #CDCDCD;
}

.datepicker table td:not(.today):not(.active):hover:before {
    background: #F0F0F0;
}

.datepicker table td.today {
    color: #333;
}

.datepicker table td.today:before {
    background-color: #E2E2E2;
}

.datepicker table td.active {
    color: #fff;
}

.datepicker table td.active:before {
    background-color: #009688;
}

.datepicker-months .month,
.datepicker-years .year,
.timepicker-minutes .minute,
.timepicker-hours .hour {
    border-radius: 50%;
}

.datepicker-months .month:not(.active):hover,
.datepicker-years .year:not(.active):hover,
.timepicker-minutes .minute:not(.active):hover,
.timepicker-hours .hour:not(.active):hover {
    background: #F0F0F0;
}

.datepicker-months .month.active,
.datepicker-years .year.active,
.timepicker-minutes .minute.active,
.timepicker-hours .hour.active {
    background: #009688;
}

.timepicker-minutes .minute,
.timepicker-hours .hour {
    padding: 0;
}

.fileinput {
    position: relative;
    padding-right: 35px;
}

.fileinput .close {
    position: absolute;
    top: 5px;
    font-size: 12px;
    float: none;
    opacity: 1;
    font-weight: 500;
    border: 1px solid #ccc;
    width: 19px;
    text-align: center;
    height: 19px;
    line-height: 15px;
    border-radius: 50%;
    right: 0;
}

.fileinput .close:hover {
    background: #eee;
}

.fileinput .input-group-addon {
    padding: 0 10px;
    vertical-align: middle;
}

.fileinput .fileinput-preview {
    width: 200px;
    height: 150px;
    position: relative;
}

.fileinput .fileinput-preview img {
    display: inline-block;
    vertical-align: middle;
    margin-top: -13px;
}

.fileinput .fileinput-preview:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
}

.lg-outer .lg-thumb-outer {
    background-color: #1D1D1D;
}

.lg-outer .lg-thumb-item {
    border-radius: 50%;
    width: 60px !important;
    display: inline-block;
    height: 60px;
    border: 0;
    float: none;
    margin: 0 5px;
}

.lg-outer .lg-thumb-item:hover {
    box-shadow: 0 0 0px 4px rgba(255, 255, 255, 0.1);
}

.lg-outer .lg-image {
    border-radius: 3px;
}

.lg-outer .lg-toogle-thumb {
    border-radius: 50%;
    color: #333;
    height: 51px;
    width: 51px;
    line-height: 41px;
    background-color: #fff;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
}

.lg-outer .lg-toogle-thumb:hover {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    color: #000;
}

.lg-outer:not(.lg-thumb-open) .lg-toogle-thumb {
    top: -70px;
}

.lg-outer.lg-thumb-open .lg-toogle-thumb {
    top: -26px;
}

.lg-thumb.group {
    padding: 20px 0;
}

.lg-slide em {
    font-style: normal;
}

.lg-slide em h3 {
    color: #fff;
    margin-bottom: 5px;
}

.lg-slide .video-cont {
    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}

.lg-outer .lg-item {
    background-image: none !important;
}

.lg-outer .lg-item:before {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-right-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-animation-name: loader;
    animation-name: loader;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loading > i {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: loader 1.1s infinite linear;
    animation: loader 1.1s infinite linear;
    border-left-color: #fff;
    border-style: solid;
}

.sweet-alert {
    border-radius: 2px;
    padding: 10px 30px;
}

.sweet-alert h2 {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.sweet-alert .lead {
    font-size: 13px;
}

.sweet-alert .btn {
    padding: 6px 12px;
    font-size: 13px;
    margin: 20px 2px 0;
    box-shadow: none !important;
}

.twitter-typeahead {
    width: 100%;
}

.twitter-typeahead .tt-menu {
    min-width: 200px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.twitter-typeahead .tt-menu.tt-open:not(.tt-empty) {
    display: block;
}

.twitter-typeahead .tt-suggestion {
    padding: 8px 17px;
    color: #333;
    cursor: pointer;
}

.twitter-typeahead .tt-suggestion:hover,
.twitter-typeahead .tt-cursor {
    background-color: rgba(0, 0, 0, 0.075);
}

.twitter-typeahead .tt-hint {
    color: #818181 !important;
}

.mCSB_scrollTools {
    width: 5px;
}

.mCSB_scrollTools .mCSB_dragger_bar {
    border-radius: 0 !important;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCSB_scrollTools.mCSB_scrollTools_vertical {
    margin: 0 !important;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    height: 10px;
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: rgba(0, 0, 0, 0.4);
}

.mCS-minimal-dark.mCSB_scrollTools_onDrag .mCSB_dragger .mCSB_dragger_bar {
    background: rgba(0, 0, 0, 0.5) !important;
}

.mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.presto-datatables-container {
    min-height: 250px;
}

/**
 *
 */
#main.sidebar-collapsed {
    padding-left: 30px;
}
#main.sidebar-collapsed  #s-main-menu {
    padding-top: 80px;
    opacity: 0;
    -webkit-transform: translate3d(-320px, 0, 0);
    transform: translate3d(-320px, 0, 0);
    position: fixed;
    top: 0;
    height: 100%;
    width: 300px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.toggle-sidebar    {
    box-shadow: rgba(9, 30, 66, 0.08) 0px 0px 0px 1px, rgba(9, 30, 66, 0.08) 0px 2px 4px 1px;
    color: rgb(107, 119, 140);
    cursor: pointer;
    height: 24px;
    z-index: 100;
    position: absolute;
    top: 97px;
    left: 255px;
    transform: translate(-50%);
    width: 24px;
    background: 0px center white;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    border-radius: 50%;
    outline: 0px;
    padding: 0px;
    transition: background-color 100ms linear 0s, color 100ms linear 0s, opacity 300ms cubic-bezier(0.2, 0, 0, 1) 0s, transform 300ms cubic-bezier(0.2, 0, 0, 1) 0s;
}

/**
 * Presto material theme specific styles
 *
 * Changelog 003 :
 *  - Adding some presto/pods styling like sections header widgets etc...
 *  - Reduce backend blue header height.
 */

body {
    color: #4c4c4c;
}

/**
margin,padding... helpers
------------------------------
*/
.margin-top5 {
    margin-top: 5px;
}

.margin-top10 {
    margin-top: 10px;
}

.margin-top20 {
    margin-top: 20px;
}

.margin-top30 {
    margin-top: 30px;
}

.margin-bottom5 {
    margin-bottom: 5px;
}

.margin-bottom10 {
    margin-bottom: 10px;
}

.margin-bottom20 {
    margin-bottom: 20px;
}

.margin-bottom30 {
    margin-bottom: 30px;
}

/* Remove borders */
.no-border {
    border: 0 !important;
}

/* Remove padding */
.no-padding {
    padding: 0 !important;
}

/* Remove margins */
.no-margin {
    margin: 0 !important;
}

/* Remove box shadow */
.no-shadow {
    box-shadow: none !important;
}

/**
Modal
------------------------------
*/

.h-logo .app-logo {
    position: absolute;
    left: 30px;
    max-height: 72px;
    width: auto;
}

.h-logo a {
    margin-left: 150px;
    float: left !important;
}

@media (min-width: 1280px) {
    .h-logo a {
        margin-left: 265px;
    }

    .h-menu {
        padding-top: 10px;
    }

    .h-logo {
        width: 400px;
    }
}

.modal .modal-body {
    padding: 26px 26px 10px;
}

/**
input
------------------------------
*/

.checkbox input:checked + .input-helper:before {
    background-color: #2196f3;
}

.checkbox input:checked + .input-helper:before, .radio input:checked + .input-helper:before {
    border-color: #2196f3;
}

.has-error .input-group-addon {
    border: none;
    background-color: transparent;
}

.colorpicker-element .input-group-addon i {
    border: 3px solid #edecec;
    width: 25px;
    height: 25px;
}

/**
Btns
------------------------------
*/
.btn.btn-app {
    position: relative;
    padding: 15px 5px;
    margin: 0 0 10px 10px;
    min-width: 80px;
    height: 60px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: center;
    color: #4c4c4c;
    border: 1px solid #ddd;
    background-color: #fafafa;
    font-size: 12px;
}

.btn.btn-app > .fa, .btn.btn-app > .glyphicon, .btn.btn-app > .ion {
    font-size: 20px;
    display: block;
}

/**
Header
------------------------------
*/
@media screen and (min-width: 768px) {
    #header {
        padding: 10px 40px;
    }

    header {
        position: relative;
        height: 95px;
    }

    header::before {
        position: absolute;
        content: "";
        background-color: white;
        top: 0;
        left: 0;
        right: 0;
        height: 95px;
        width: 100vw;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.12);
        z-index: 0;
    }
}

.thumbnail {
    border: none;
    /*background-color: none;*/
}

.h-logo img {
    max-width: 230px;
    padding: 0;
    margin-bottom: 0;
}

.h-logo a {
    position: absolute;
    color: #000;
    font-weight: 700;
    font-size: 23px;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
}

.h-logo a small {
    position: relative;
    display: inline;
    font-weight: 400;
    font-size: 23px;
    color: #000;
    padding-left: 30px;
}

.h-logo a small:before {
    position: absolute;
    content: "";
    left: 13px;
    top: 5px;
    width: 1px;
    height: 22px;
    background: black;
}

.hm-profile > a img {
    border: 2px solid #BBDEFB;
}

.smm-alerts {
    padding-left: 32px;
}

/**
Main menu
------------------------------
*/
#main {
    margin-top: 20px;
}

.main-menu .fa {
    width: 20px;
}

@media screen and (min-width: 768px) {
    #main {
        margin-top: 30px;
    }
}

/*
    Action Header
------------------------------
*/
.action-header {
    padding: 25px 16px;
    line-height: 100%;
    font-weight: 500;
    color: #4C4C4C;
    margin-bottom: 10px;
    font-size: 15px;
    position: relative;
    z-index: 550;
    background-color: #f7f7f7;
    min-height: 65px;
}

/**
Bootstrap tagsinput
------------------------------
*/
div.bootstrap-tagsinput {
    border: none;
    border-bottom: 1px solid #9e9e9e;
    background-color: #fff;
    box-shadow: none;
    display: inline-block;
    padding: 4px 6px;
    color: #555;
    vertical-align: middle;
    border-radius: 0;
    max-width: 100%;
    line-height: 22px;
    cursor: text;
    width: 100%;
}

div.bootstrap-tagsinput input {
    height: 3rem;
    line-height: 3rem;
    margin: 0;
    padding: 0 0 0 3px;
    border: none;
}

.pika-button, .pika-table th {
    line-height: 30px
}

div.bootstrap-tagsinput span.tag {
    margin-top: 4px;
    margin-bottom: 0;
    border: none;
    color: #fff;
    padding: 2px 4px;
    background-color: #42A5F5;
    font-size: 13px;
    font-weight: normal;
}

div.bootstrap-tagsinput span.tag .sp-cancel, div.bootstrap-tagsinput span.tag a {
    color: #fff
}

div.bootstrap-tagsinput .not_valid {
    background: 0 0 !important;
    color: #F44336 !important
}

.dropzone {
    border: 2px dashed #42A5F5;
    border-radius: 5px;
    background: #fff;
    padding: 2rem 0 0 2rem;
    text-align: center
}

.dropzone .dz-message {
    font-weight: 400;
    padding-right: 2rem
}

.dropzone .dz-message .note {
    font-size: .8em;
    font-weight: 200;
    display: block;
    margin-top: 1.4rem
}

.bootstrap-dialog.type-primary .modal-header {
    background-color: transparent;
}

.bootstrap-dialog .bootstrap-dialog-title {
    color: #000;
    font-size: 16px;
}

/**
Web artisan
------------------------------
*/
.artisan-console {
    font-family: consolas, menlo, monaco, monospace;
    font-size: 13px;
    color: #fff;
    width: 100%;
    background-color: #073642;
    height: 100%;
    border: 1px solid #072531;
    padding: 20px;
}

.navbar-nav > .user-menu > .dropdown-menu > li.user-header.no-shadow > p {
    color: #fff;
    text-shadow: none;
}

/**
Bootstrap colors
------------------------------
*/
.tooltip.top > .tooltip-inner {
    background-color: #555555;
}

.tooltip.top > .tooltip-arrow {
    border-top-color: #555555;
}

.tooltip.bottom > .tooltip-inner {
    background-color: #555555;
}

.tooltip.bottom > .tooltip-arrow {
    border-bottom-color: #555555;
}

.tooltip.right > .tooltip-inner {
    background-color: #555555;
}

.tooltip.right > .tooltip-arrow {
    border-right-color: #555555;
}

/**
Switch
------------------------------
*/

.toggle-switch .ts-helper {
    margin-top: 10px;
}

.toggle-switch .ts-label {
    margin-right: 0;
}

/**
Datatable actions
------------------------------
*/
.label-date {
    display: inline-block;
    border: 1px solid #D6D6D6;
    margin: 2px 2px 2px 0;
    padding: 2px 5px;
    font-size: 12px;
    color: #AEAEAE;
    background: #fff;
}

.action {
    background: #fff;
}

/**
Datatable icons
------------------------------
*/
.fa-pencil {
    font-size: 16px;
}

.fa-trash {
    font-size: 16px;
}

/**
Datatable pagination & table icons
------------------------------
*/
.pagination {
    margin-right: 25px;
}

.dt-search-input-container {
    margin-right: 18px;
}

.fa-eye::before {
    font-family: 'Material-Design-Iconic-Font';
    content: '\f15c';
    font-size: 15px;
}

.c-header h1 {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
}







/*# sourceMappingURL=all.css.map */
