@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*!
 *  Font Awesome 4.3.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('../fonts/fontawesome-webfont.eot?v=4.3.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.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;
  transform: translate(0, 0);
}
/* 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;
}
.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 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  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 {
  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-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: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-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.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-genderless:before,
.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-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-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";
}

/*! 
 * angular-loading-bar v0.9.0
 * https://chieffancypants.github.io/angular-loading-bar
 * Copyright (c) 2016 Wes Cruver
 * License: MIT
 */

/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 350ms linear all;
  -moz-transition: 350ms linear all;
  -o-transition: 350ms linear all;
  transition: 350ms linear all;
}

#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}

#loading-bar .bar {
  -webkit-transition: width 350ms;
  -moz-transition: width 350ms;
  -o-transition: width 350ms;
  transition: width 350ms;

  background: #29d;
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}

/* Fancy blur effect */
#loading-bar .peg {
  position: absolute;
  width: 70px;
  right: 0;
  top: 0;
  height: 2px;
  opacity: .45;
  -moz-box-shadow: #29d 1px 0 6px 1px;
  -ms-box-shadow: #29d 1px 0 6px 1px;
  -webkit-box-shadow: #29d 1px 0 6px 1px;
  box-shadow: #29d 1px 0 6px 1px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

#loading-bar-spinner {
  display: block;
  position: fixed;
  z-index: 10002;
  top: 10px;
  left: 10px;
}

#loading-bar-spinner .spinner-icon {
  width: 14px;
  height: 14px;

  border:  solid 2px transparent;
  border-top-color:  #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -moz-animation:    loading-bar-spinner 400ms linear infinite;
  -ms-animation:     loading-bar-spinner 400ms linear infinite;
  -o-animation:      loading-bar-spinner 400ms linear infinite;
  animation:         loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes loading-bar-spinner {
  0%   { -moz-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes loading-bar-spinner {
  0%   { -o-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes loading-bar-spinner {
  0%   { -ms-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@charset "UTF-8";
/*!
 * AngularJS Material Design
 * https://github.com/angular/material
 * @license MIT
 * v1.2.5
 */body,html{height:100%;position:relative}body{margin:0;padding:0}[tabindex="-1"]:focus{outline:none}.inset{padding:10px}a.md-no-style,button.md-no-style{background-color:inherit;border:none;font-weight:400;margin:0;padding:0;text-align:left}button,input,select,textarea{vertical-align:baseline}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default}textarea{overflow:auto;vertical-align:top}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box;-webkit-box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input:-webkit-autofill{text-shadow:none}.md-visually-hidden{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;text-transform:none;width:1px}.md-shadow{border-radius:inherit;bottom:0;left:0;pointer-events:none;position:absolute;right:0;top:0}.md-shadow-bottom-z-1{box-shadow:0 2px 5px 0 rgba(0,0,0,.26)}.md-shadow-bottom-z-2{box-shadow:0 4px 8px 0 rgba(0,0,0,.4)}.md-shadow-animated.md-shadow{transition:box-shadow .28s cubic-bezier(.4,0,.2,1)}.md-ripple-container{height:100%;left:0;overflow:hidden;pointer-events:none;position:absolute;top:0;transition:all .55s cubic-bezier(.25,.8,.25,1);width:100%}.md-ripple{border-radius:50%;opacity:0;position:absolute;transform:translate(-50%,-50%) scale(0);transform-origin:50% 50%}.md-ripple.md-ripple-placed{transition:margin .9s cubic-bezier(.25,.8,.25,1),border .9s cubic-bezier(.25,.8,.25,1),width .9s cubic-bezier(.25,.8,.25,1),height .9s cubic-bezier(.25,.8,.25,1),opacity .9s cubic-bezier(.25,.8,.25,1),transform .9s cubic-bezier(.25,.8,.25,1)}.md-ripple.md-ripple-scaled{transform:translate(-50%,-50%) scale(1)}.md-ripple.md-ripple-active,.md-ripple.md-ripple-full,.md-ripple.md-ripple-visible{opacity:.2}.md-ripple.md-ripple-remove{-webkit-animation:md-remove-ripple .9s cubic-bezier(.25,.8,.25,1);animation:md-remove-ripple .9s cubic-bezier(.25,.8,.25,1)}@-webkit-keyframes md-remove-ripple{0%{opacity:.15}to{opacity:0}}@keyframes md-remove-ripple{0%{opacity:.15}to{opacity:0}}.md-padding{padding:8px}.md-margin{margin:8px}.md-scroll-mask{background-color:transparent;bottom:0;left:0;position:absolute;right:0;top:0;z-index:50}.md-scroll-mask>.md-scroll-mask-bar{background-color:#fafafa;bottom:0;box-shadow:inset 0 0 1px rgba(0,0,0,.3);display:block;position:absolute;right:0;top:0;z-index:65}.md-no-momentum{-webkit-overflow-scrolling:auto}.md-no-flicker{-webkit-filter:blur(0)}@media (min-width:960px){.md-padding{padding:16px}}body[dir=ltr],body[dir=rtl],html[dir=ltr],html[dir=rtl]{unicode-bidi:embed}bdo[dir=rtl]{direction:rtl}bdo[dir=ltr],bdo[dir=rtl]{unicode-bidi:bidi-override}bdo[dir=ltr]{direction:ltr}@media (max-width:599px){.layout-row:not(.layout-xs-column)>.md-auto-horizontal-margin:not(:first-child),.layout-xs-row>.md-auto-horizontal-margin:not(:first-child){margin-left:16px}[dir=rtl] .layout-row:not(.layout-xs-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-xs-row>.md-auto-horizontal-margin:not(:first-child){margin-left:0;margin-right:16px}}@media (min-width:600px) and (max-width:959px){.layout-gt-xs-row:not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child),.layout-row:not(.layout-gt-xs-column):not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child),.layout-sm-row:not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child){margin-left:16px}[dir=rtl] .layout-gt-xs-row:not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-sm-row:not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child){margin-left:0;margin-right:16px}}@media (min-width:960px) and (max-width:1279px){.layout-gt-sm-row:not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),.layout-md-row:not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child){margin-left:16px}[dir=rtl] .layout-gt-sm-row:not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-md-row:not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child){margin-left:0;margin-right:16px}}@media (min-width:1280px) and (max-width:1919px){.layout-gt-md-row:not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),.layout-lg-row:not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child){margin-left:16px}[dir=rtl] .layout-gt-md-row:not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-lg-row:not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child){margin-left:0;margin-right:16px}}@media (min-width:1920px){.layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),.layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),.layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child){margin-left:16px}[dir=rtl] .layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),[dir=rtl] .layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child){margin-left:0;margin-right:16px}}body,html{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:default;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;min-height:100%}.md-display-4{font-size:112px;font-weight:300;letter-spacing:-.01em;line-height:112px}.md-display-3{font-size:56px;font-weight:400;letter-spacing:-.005em;line-height:56px}.md-display-2{font-size:45px;font-weight:400;line-height:64px}.md-display-1{font-size:34px;font-weight:400;line-height:40px}.md-headline{font-size:24px;font-weight:400;line-height:32px}.md-title{font-size:20px;font-weight:500;letter-spacing:.005em}.md-subhead{font-size:16px;line-height:24px}.md-body-1,.md-subhead{font-weight:400;letter-spacing:.01em}.md-body-1{font-size:14px;line-height:20px}.md-body-2{font-size:14px;font-weight:500;letter-spacing:.01em;line-height:24px}.md-caption{font-size:12px;letter-spacing:.02em}.md-button{letter-spacing:.01em}button,html,input,select,textarea{font-family:Roboto,Helvetica Neue,sans-serif}button,input,select,textarea{font-size:100%}.md-panel-outer-wrapper{height:100%;left:0;position:absolute;top:0;width:100%}.md-panel-inner-wrapper{position:fixed}._md-panel-offscreen{left:-9999px}._md-panel-hidden{display:none}._md-panel-shown .md-panel{opacity:1;transition:none}.md-panel{opacity:0;position:relative}.md-panel._md-panel-shown{opacity:1;transition:none}.md-panel._md-panel-animate-enter{opacity:1;transition:all .3s cubic-bezier(0,0,.2,1)}.md-panel._md-panel-animate-leave{opacity:1;transition:all .3s cubic-bezier(.4,0,1,1)}.md-panel._md-panel-animate-fade-out,.md-panel._md-panel-animate-scale-out{opacity:0}.md-panel._md-panel-backdrop{height:100%;position:fixed;width:100%}.md-panel._md-opaque-enter{opacity:.48;transition:opacity .3s cubic-bezier(0,0,.2,1)}.md-panel._md-opaque-leave{transition:opacity .3s cubic-bezier(.4,0,1,1)}._md-panel-fullscreen{border-radius:0;left:0;min-height:100%;min-width:100%;position:fixed;top:0}md-autocomplete{border-radius:2px;display:block;height:40px;min-width:190px;overflow:visible;position:relative}md-autocomplete[disabled] input{cursor:default}md-autocomplete[md-floating-label]{background:transparent;border-radius:0;height:auto}md-autocomplete[md-floating-label] md-input-container{padding-bottom:0}md-autocomplete[md-floating-label] md-autocomplete-wrap{height:auto}md-autocomplete[md-floating-label] .md-show-clear-button button{display:block;height:30px;position:absolute;right:0;top:20px;width:30px}md-autocomplete[md-floating-label] .md-show-clear-button input{padding-right:30px}[dir=rtl] md-autocomplete[md-floating-label] .md-show-clear-button input{padding-left:30px;padding-right:0}md-autocomplete md-autocomplete-wrap{box-sizing:border-box;display:flex;flex-direction:row;height:40px;overflow:visible;position:relative}md-autocomplete md-autocomplete-wrap.md-menu-showing{z-index:51}md-autocomplete md-autocomplete-wrap input,md-autocomplete md-autocomplete-wrap md-input-container{box-sizing:border-box;flex:1 1 0;min-width:0}md-autocomplete md-autocomplete-wrap md-progress-linear{bottom:-2px;left:0;position:absolute}md-autocomplete md-autocomplete-wrap md-progress-linear.md-inline{bottom:40px;left:2px;right:2px;width:auto}md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate{height:3px;left:0;position:absolute;top:0;transition:none;width:100%}md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate .md-container{height:3px;transition:none}md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-enter{transition:opacity .15s linear}md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-enter.ng-enter-active{opacity:1}md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-leave{transition:opacity .15s linear}md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-leave.ng-leave-active{opacity:0}md-autocomplete input:not(.md-input){background:transparent;border:none;box-shadow:none;box-sizing:border-box;font-size:14px;height:40px;line-height:40px;outline:none;padding:0 15px;width:100%}md-autocomplete input:not(.md-input)::-ms-clear{display:none}md-autocomplete .md-show-clear-button button{background:transparent;border:none;border-radius:50%;cursor:pointer;font-size:12px;height:30px;line-height:20px;margin:auto 5px;padding:0;position:relative;text-align:center;width:30px}md-autocomplete .md-show-clear-button button:after{border-radius:50%;bottom:-6px;content:"";left:-6px;opacity:0;position:absolute;right:-6px;top:-6px;transform:scale(0);transition:all .4s cubic-bezier(.25,.8,.25,1)}md-autocomplete .md-show-clear-button button:focus{outline:none}md-autocomplete .md-show-clear-button button:focus:after{opacity:1;transform:scale(1)}md-autocomplete .md-show-clear-button button md-icon{left:50%;position:absolute;top:50%;transform:translate3d(-50%,-50%,0) scale(.9)}md-autocomplete .md-show-clear-button button md-icon path{stroke-width:0}md-autocomplete .md-show-clear-button button.ng-enter{transform:scale(0);transition:transform .15s ease-out}md-autocomplete .md-show-clear-button button.ng-enter.ng-enter-active{transform:scale(1)}md-autocomplete .md-show-clear-button button.ng-leave{transition:transform .15s ease-out}md-autocomplete .md-show-clear-button button.ng-leave.ng-leave-active{transform:scale(0)}@media screen and (-ms-high-contrast:active){md-autocomplete input{border:1px solid #fff}md-autocomplete .md-autocomplete-suggestion:focus{color:#fff}}.md-standard-list-container.md-autocomplete-suggestions-container,.md-virtual-repeat-container.md-autocomplete-suggestions-container{box-shadow:0 2px 5px rgba(0,0,0,.25);height:100%;position:absolute;z-index:100}.md-standard-list-container.md-autocomplete-suggestions-container .highlight,.md-virtual-repeat-container.md-autocomplete-suggestions-container .highlight{font-weight:700}.md-standard-list-container{box-sizing:border-box;display:block;margin:0;overflow:hidden;overflow-y:auto;padding:0}.md-standard-list-container.md-not-found,.md-virtual-repeat-container.md-not-found{height:48px}.md-autocomplete-suggestions{list-style:none;margin:0;padding:0}.md-autocomplete-suggestions .md-autocomplete-suggestion{font-size:14px;height:48px;line-height:48px;margin:0;overflow:hidden;padding:0 15px;text-overflow:ellipsis;transition:background .15s linear;white-space:nowrap}.md-autocomplete-suggestions .md-autocomplete-suggestion:focus{outline:none}.md-autocomplete-suggestions .md-autocomplete-suggestion:not(.md-not-found-wrapper){cursor:pointer}@media screen and (-ms-high-contrast:active){.md-autocomplete-suggestions,md-autocomplete{border:1px solid #fff}}md-backdrop{bottom:0;left:0;position:absolute;right:0;top:0;transition:opacity .45s;z-index:50}md-backdrop.md-menu-backdrop{position:fixed!important;z-index:99}md-backdrop.md-select-backdrop{transition-duration:0;z-index:81}md-backdrop.md-dialog-backdrop{z-index:79}md-backdrop.md-bottom-sheet-backdrop{z-index:69}md-backdrop.md-sidenav-backdrop{z-index:59}md-backdrop.md-click-catcher{position:absolute}md-backdrop.md-opaque{opacity:.48}md-backdrop.md-opaque.ng-enter{opacity:0}md-backdrop.md-opaque.ng-enter.md-opaque.ng-enter-active{opacity:.48}md-backdrop.md-opaque.ng-leave{opacity:.48;transition:opacity .4s}md-backdrop.md-opaque.ng-leave.md-opaque.ng-leave-active{opacity:0}md-bottom-sheet{border-top-style:solid;border-top-width:1px;bottom:0;left:0;padding:8px 16px 88px;position:absolute;right:0;transform:translate3d(0,80px,0);transition:all .4s cubic-bezier(.25,.8,.25,1);transition-property:transform;z-index:70}md-bottom-sheet.md-has-header{padding-top:0}md-bottom-sheet.ng-enter{opacity:0;transform:translate3d(0,100%,0)}md-bottom-sheet.ng-enter-active{display:block;opacity:1;transform:translate3d(0,80px,0)!important}md-bottom-sheet.ng-leave-active{transform:translate3d(0,100%,0)!important;transition:all .3s cubic-bezier(.55,0,.55,.2)}md-bottom-sheet .md-subheader{background-color:transparent;font-family:Roboto,Helvetica Neue,sans-serif;line-height:56px;padding:0;white-space:nowrap}md-bottom-sheet md-inline-icon{fill:#444;display:inline-block;height:24px;width:24px}md-bottom-sheet md-list-item{display:flex;outline:none}md-bottom-sheet md-list-item:hover{cursor:pointer}md-bottom-sheet.md-list md-list-item{align-items:center;height:48px;padding:0}md-bottom-sheet.md-grid{padding-left:24px;padding-right:24px;padding-top:0}md-bottom-sheet.md-grid md-list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;transition:all .5s}md-bottom-sheet.md-grid md-list-item{align-items:center;flex-direction:column;height:96px;margin-bottom:8px;margin-top:8px;transition:all .5s}@media (max-width:960px){md-bottom-sheet.md-grid md-list-item{flex:1 1 33.3333333333%;max-width:33.3333333333%}md-bottom-sheet.md-grid md-list-item:nth-of-type(3n+1){align-items:flex-start}md-bottom-sheet.md-grid md-list-item:nth-of-type(3n){align-items:flex-end}}@media (min-width:960px) and (max-width:1279px){md-bottom-sheet.md-grid md-list-item{flex:1 1 25%;max-width:25%}}@media (min-width:1280px) and (max-width:1919px){md-bottom-sheet.md-grid md-list-item{flex:1 1 16.6666666667%;max-width:16.6666666667%}}@media (min-width:1920px){md-bottom-sheet.md-grid md-list-item{flex:1 1 14.2857142857%;max-width:14.2857142857%}}md-bottom-sheet.md-grid md-list-item:before{display:none}md-bottom-sheet.md-grid md-list-item .md-list-item-content{align-items:center;display:flex;flex-direction:column;padding-bottom:16px;width:48px}md-bottom-sheet.md-grid md-list-item .md-grid-item-content{align-items:center;border:1px solid transparent;display:flex;flex-direction:column;width:80px}md-bottom-sheet.md-grid md-list-item .md-grid-text{font-size:13px;font-weight:400;line-height:16px;margin:0;padding-top:8px;text-align:center;text-transform:none;white-space:nowrap;width:64px}@media screen and (-ms-high-contrast:active){md-bottom-sheet{border:1px solid #fff}}button.md-button::-moz-focus-inner{border:0}.md-button{align-items:center;background:transparent;border:0;border-radius:2px;box-sizing:border-box;color:currentColor;cursor:pointer;display:inline-block;font-family:inherit;font-size:14px;font-style:inherit;font-variant:inherit;font-weight:500;line-height:36px;margin:6px 8px;min-height:36px;min-width:88px;outline:none;overflow:hidden;padding:0 8px;position:relative;text-align:center;text-decoration:none;text-transform:uppercase;transition:box-shadow .4s cubic-bezier(.25,.8,.25,1),background-color .4s cubic-bezier(.25,.8,.25,1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.md-dense :not(.md-dense-disabled) .md-button:not(.md-dense-disabled),.md-dense>.md-button:not(.md-dense-disabled){font-size:13px;line-height:32px;min-height:32px}.md-button:focus{outline:none}.md-button:focus,.md-button:hover{text-decoration:none}.md-button.ng-hide,.md-button.ng-leave{transition:none}.md-button.md-cornered{border-radius:0}.md-button.md-icon{background:none;padding:0}.md-button.md-raised:not([disabled]){box-shadow:0 2px 5px 0 rgba(0,0,0,.26)}.md-button.md-icon-button{border-radius:50%;height:40px;line-height:24px;margin:0 6px;min-width:0;padding:8px;width:40px}.md-button.md-fab{background-clip:padding-box;border-radius:50%;box-shadow:0 2px 5px 0 rgba(0,0,0,.26);height:56px;line-height:56px;min-width:0;overflow:hidden;transition:all .3s cubic-bezier(.55,0,.55,.2);transition-property:background-color,box-shadow,transform;vertical-align:middle;width:56px;z-index:20}.md-button.md-fab.md-fab-bottom-right{bottom:20px;left:auto;position:absolute;right:20px;top:auto}.md-button.md-fab.md-fab-bottom-left{bottom:20px;left:20px;position:absolute;right:auto;top:auto}.md-button.md-fab.md-fab-top-right{bottom:auto;left:auto;position:absolute;right:20px;top:20px}.md-button.md-fab.md-fab-top-left{bottom:auto;left:20px;position:absolute;right:auto;top:20px}.md-button.md-fab.md-mini{height:40px;line-height:40px;width:40px}.md-button.md-fab.ng-hide,.md-button.md-fab.ng-leave{transition:none}.md-button.md-fab[disabled]{box-shadow:none}.md-button:not([disabled]).md-fab.md-focused,.md-button:not([disabled]).md-raised.md-focused{box-shadow:0 2px 5px 0 rgba(0,0,0,.26)}.md-button:not([disabled]).md-fab:active,.md-button:not([disabled]).md-raised:active{box-shadow:0 4px 8px 0 rgba(0,0,0,.4)}.md-button .md-ripple-container{background-clip:padding-box;border-radius:inherit;overflow:hidden;-webkit-transform:translateZ(0)}.md-button.md-icon-button md-icon,button.md-button.md-fab md-icon{display:block}.md-toast-open-top .md-button.md-fab-top-left,.md-toast-open-top .md-button.md-fab-top-right{transform:translate3d(0,42px,0);transition:all .4s cubic-bezier(.25,.8,.25,1)}.md-toast-open-top .md-button.md-fab-top-left:not([disabled]).md-focused,.md-toast-open-top .md-button.md-fab-top-left:not([disabled]):hover,.md-toast-open-top .md-button.md-fab-top-right:not([disabled]).md-focused,.md-toast-open-top .md-button.md-fab-top-right:not([disabled]):hover{transform:translate3d(0,41px,0)}.md-toast-open-bottom .md-button.md-fab-bottom-left,.md-toast-open-bottom .md-button.md-fab-bottom-right{transform:translate3d(0,-42px,0);transition:all .4s cubic-bezier(.25,.8,.25,1)}.md-toast-open-bottom .md-button.md-fab-bottom-left:not([disabled]).md-focused,.md-toast-open-bottom .md-button.md-fab-bottom-left:not([disabled]):hover,.md-toast-open-bottom .md-button.md-fab-bottom-right:not([disabled]).md-focused,.md-toast-open-bottom .md-button.md-fab-bottom-right:not([disabled]):hover{transform:translate3d(0,-43px,0)}.md-button-group{display:flex;flex:1;width:100%}.md-button-group>.md-button{border-radius:0;border-width:1px 0 1px 1px;display:block;flex:1;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap;width:0}.md-button-group>.md-button:first-child{border-radius:2px 0 0 2px}.md-button-group>.md-button:last-child{border-radius:0 2px 2px 0;border-right-width:1px}@media screen and (-ms-high-contrast:active){.md-button.md-fab,.md-button.md-raised{border:1px solid #fff}}md-card{box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);box-sizing:border-box;display:flex;flex-direction:column;margin:8px}md-card md-card-header{display:flex;flex-direction:row;padding:16px}md-card md-card-header:first-child md-card-avatar{margin-right:12px}[dir=rtl] md-card md-card-header:first-child md-card-avatar{margin-left:12px;margin-right:auto}md-card md-card-header:last-child md-card-avatar{margin-left:12px}[dir=rtl] md-card md-card-header:last-child md-card-avatar{margin-left:auto;margin-right:12px}md-card md-card-header md-card-avatar{height:40px;width:40px}md-card md-card-header md-card-avatar .md-user-avatar,md-card md-card-header md-card-avatar md-icon{border-radius:50%}md-card md-card-header md-card-avatar md-icon{padding:8px}md-card md-card-header md-card-avatar md-icon>svg{height:inherit;width:inherit}md-card md-card-header md-card-avatar+md-card-header-text{max-height:40px}md-card md-card-header md-card-avatar+md-card-header-text .md-title{font-size:14px}md-card md-card-header md-card-header-text{display:flex;flex:1;flex-direction:column}md-card md-card-header md-card-header-text .md-subhead{font-size:14px}md-card>img,md-card>md-card-header img,md-card md-card-title-media img{box-sizing:border-box;display:flex;flex:0 0 auto;height:auto;width:100%}md-card md-card-title{display:flex;flex:1 1 auto;flex-direction:row;padding:24px 16px 16px}md-card md-card-title+md-card-content{padding-top:0}md-card md-card-title md-card-title-text{display:flex;flex:1;flex-direction:column}md-card md-card-title md-card-title-text .md-subhead{font-size:14px;padding-top:0}md-card md-card-title md-card-title-text:only-child .md-subhead{padding-top:12px}md-card md-card-title md-card-title-media{margin-top:-8px}md-card md-card-title md-card-title-media .md-media-sm{height:80px;width:80px}md-card md-card-title md-card-title-media .md-media-md{height:112px;width:112px}md-card md-card-title md-card-title-media .md-media-lg{height:152px;width:152px}md-card md-card-content{display:block;padding:16px}md-card md-card-content>p:first-child{margin-top:0}md-card md-card-content>p:last-child{margin-bottom:0}md-card md-card-content .md-media-xl{height:240px;width:240px}md-card md-card-actions{margin:8px}md-card md-card-actions.layout-column .md-button:not(.md-icon-button){margin:2px 0}md-card md-card-actions.layout-column .md-button:not(.md-icon-button):first-of-type{margin-top:0}md-card md-card-actions.layout-column .md-button:not(.md-icon-button):last-of-type{margin-bottom:0}md-card md-card-actions.layout-column .md-button.md-icon-button{margin-bottom:6px;margin-top:6px}md-card md-card-actions md-card-icon-actions{display:flex;flex:1;flex-direction:row;justify-content:flex-start}md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button){margin:0 4px}md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):first-of-type{margin-left:0}[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):first-of-type{margin-left:auto;margin-right:0}md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):last-of-type{margin-right:0}[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):last-of-type{margin-left:0;margin-right:auto}md-card md-card-actions:not(.layout-column) .md-button.md-icon-button{margin-left:6px;margin-right:6px}md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:first-of-type{margin-left:12px}[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:first-of-type{margin-left:auto;margin-right:12px}md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:last-of-type{margin-right:12px}[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:last-of-type{margin-left:12px;margin-right:auto}md-card md-card-actions:not(.layout-column) .md-button+md-card-icon-actions{display:flex;flex:1;flex-direction:row;justify-content:flex-end}md-card md-card-footer{margin-top:auto;padding:16px}@media screen and (-ms-high-contrast:active){md-card{border:1px solid #fff}}.md-image-no-fill>img{height:auto;width:auto}.md-inline-form md-checkbox{margin-bottom:auto;margin-top:14px}md-checkbox{box-sizing:border-box;cursor:pointer;display:inline-block;min-height:48px;min-width:18px;outline:none;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.md-dense :not(.md-dense-disabled) md-checkbox:not(.md-dense-disabled),.md-dense>md-checkbox:not(.md-dense-disabled){min-height:36px}md-checkbox.md-focused:not([disabled]) .md-container:before{bottom:-8px;left:-8px;right:-8px;top:-8px}md-checkbox.md-focused:not([disabled]):not(.md-checked) .md-container:before{background-color:rgba(0,0,0,.12)}md-checkbox .md-container{box-sizing:border-box;display:inline-block;height:18px;left:0;position:absolute;top:50%;transform:translateY(-50%);width:18px}[dir=rtl] md-checkbox .md-container{left:auto;right:0}md-checkbox .md-container:before{background-color:transparent;border-radius:50%;bottom:0;box-sizing:border-box;content:"";display:block;height:auto;left:0;position:absolute;right:0;top:0;transition:all .5s;width:auto}md-checkbox .md-container:after{bottom:-10px;box-sizing:border-box;content:"";left:-10px;position:absolute;right:-10px;top:-10px}md-checkbox .md-container .md-ripple-container{bottom:-15px;display:block;height:auto;left:-15px;position:absolute;right:-15px;top:-15px;width:auto}md-checkbox .md-icon{border-radius:2px;border-style:solid;border-width:2px;box-sizing:border-box;height:18px;left:0;position:absolute;top:0;transition:.24s;width:18px}md-checkbox.md-checked .md-icon{border-color:transparent}md-checkbox.md-checked .md-icon:after{border-style:solid;border-width:2px;border-left:0;border-top:0;box-sizing:border-box;content:"";display:table;height:12px;left:4px;position:absolute;top:0;transform:rotate(45deg);width:6px}md-checkbox[disabled]{cursor:default}md-checkbox.md-indeterminate .md-icon:after{border-style:solid;border-width:2px;border-left:0;border-top:0;box-sizing:border-box;content:"";display:table;height:2px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:10.8px}md-checkbox .md-container{left:auto;margin:21px 3px 3px;right:auto;top:auto}md-checkbox .md-label{box-sizing:border-box;display:inline-block;margin-bottom:auto;margin-left:36px;margin-top:10px;position:relative;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:middle;white-space:normal}[dir=rtl] md-checkbox .md-label{margin-left:0;margin-right:36px}md-checkbox .md-label:empty{margin-left:24px;margin-right:0}[dir=rtl] md-checkbox .md-label:empty{margin-left:0;margin-right:24px}md-input-container .md-checkbox-link-label{box-sizing:border-box;cursor:pointer;display:inline-block;margin-left:18px;margin-right:0;position:relative;top:-21px;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:middle;white-space:normal}[dir=rtl] md-input-container .md-checkbox-link-label{margin-left:0;margin-right:18px}.md-contact-chips .md-chips md-chip{padding:0 25px 0 0}[dir=rtl] .md-contact-chips .md-chips md-chip{padding:0 0 0 25px}.md-contact-chips .md-chips md-chip .md-contact-avatar{float:left}[dir=rtl] .md-contact-chips .md-chips md-chip .md-contact-avatar{float:right}.md-contact-chips .md-chips md-chip .md-contact-avatar img{border-radius:16px;height:32px}.md-contact-chips .md-chips md-chip .md-contact-name{display:inline-block;height:32px;margin-left:8px}[dir=rtl] .md-contact-chips .md-chips md-chip .md-contact-name{margin-left:auto;margin-right:8px}.md-contact-suggestion{height:56px}.md-contact-suggestion img{border-radius:20px;height:40px;margin-top:8px}.md-contact-suggestion .md-contact-name{margin-left:8px;width:120px}[dir=rtl] .md-contact-suggestion .md-contact-name{margin-left:auto;margin-right:8px}.md-contact-suggestion .md-contact-email,.md-contact-suggestion .md-contact-name{display:inline-block;overflow:hidden;text-overflow:ellipsis}.md-contact-chips-suggestions li{height:100%}.md-chips,md-chips{display:flex}.md-chips{flex-grow:1;flex-wrap:wrap;font-family:Roboto,Helvetica Neue,sans-serif;font-size:13px;padding:0 0 8px 3px;vertical-align:middle}.md-chips:after{clear:both;content:"";display:table}[dir=rtl] .md-chips{padding:0 3px 8px 0}.md-chips.md-readonly .md-chip-input-container{min-height:32px}.md-chips:not(.md-readonly){cursor:text}.md-chips.md-removable md-chip{padding-right:28px}[dir=rtl] .md-chips.md-removable md-chip{padding-left:28px;padding-right:0}.md-chips.md-removable md-chip .md-chip-content{padding-right:4px}[dir=rtl] .md-chips.md-removable md-chip .md-chip-content{padding-left:4px;padding-right:0}.md-chips md-chip{border-radius:16px;box-sizing:border-box;cursor:default;display:block;float:left;height:32px;line-height:32px;margin:8px 8px 0 0;max-width:100%;padding:0 12px;position:relative}[dir=rtl] .md-chips md-chip{float:right;margin:8px 0 0 8px}.md-chips md-chip .md-chip-content{display:block;float:left;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}[dir=rtl] .md-chips md-chip .md-chip-content{float:right}.md-chips md-chip .md-chip-content:focus{outline:none}.md-chips md-chip._md-chip-content-edit-is-enabled{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.md-chips md-chip .md-chip-remove-container{line-height:22px;position:absolute;right:0}[dir=rtl] .md-chips md-chip .md-chip-remove-container{left:0;right:auto}.md-chips md-chip .md-chip-remove{background:transparent;border:none;box-shadow:none;height:32px;margin:0;min-width:0;padding:0;position:relative;text-align:center;width:32px}.md-chips md-chip .md-chip-remove md-icon{height:18px;left:50%;min-height:18px;min-width:18px;position:absolute;top:50%;transform:translate3d(-50%,-50%,0);width:18px}.md-chips .md-chip-input-container{display:block;flex-grow:1;float:left;line-height:32px;margin:8px 8px 0 0;padding:0}[dir=rtl] .md-chips .md-chip-input-container{float:right;margin:8px 0 0 8px}.md-chips .md-chip-input-container input{width:100%}.md-chips .md-chip-input-container input:not([type]),.md-chips .md-chip-input-container input[type=email],.md-chips .md-chip-input-container input[type=number],.md-chips .md-chip-input-container input[type=tel],.md-chips .md-chip-input-container input[type=text],.md-chips .md-chip-input-container input[type=url]{border:0;height:32px;line-height:32px;padding:0}.md-chips .md-chip-input-container input:not([type]):focus,.md-chips .md-chip-input-container input[type=email]:focus,.md-chips .md-chip-input-container input[type=number]:focus,.md-chips .md-chip-input-container input[type=tel]:focus,.md-chips .md-chip-input-container input[type=text]:focus,.md-chips .md-chip-input-container input[type=url]:focus{outline:none}.md-chips .md-chip-input-container md-autocomplete,.md-chips .md-chip-input-container md-autocomplete-wrap{background:transparent}.md-chips .md-chip-input-container md-autocomplete md-autocomplete-wrap{box-shadow:none}.md-chips .md-chip-input-container input{border:0;height:32px;line-height:32px;padding:0}.md-chips .md-chip-input-container input:focus{outline:none}.md-chips .md-chip-input-container md-autocomplete,.md-chips .md-chip-input-container md-autocomplete-wrap{height:32px}.md-chips .md-chip-input-container md-autocomplete{box-shadow:none}.md-chips .md-chip-input-container md-autocomplete input{position:relative}.md-chips .md-chip-input-container:not(:first-child){margin:8px 8px 0 0}[dir=rtl] .md-chips .md-chip-input-container:not(:first-child){margin:8px 0 0 8px}.md-chips .md-chip-input-container input{background:transparent;border-width:0}.md-chips md-autocomplete button{display:none}@media screen and (-ms-high-contrast:active){.md-chip-input-container,md-chip{border:1px solid #fff}.md-chip-input-container md-autocomplete{border:none}}md-content{-webkit-overflow-scrolling:touch;display:block;overflow:auto;position:relative}md-content[md-scroll-y]{overflow-x:hidden;overflow-y:auto}md-content[md-scroll-x]{overflow-x:auto;overflow-y:hidden}@media print{md-content{overflow:visible!important}}md-calendar{font-size:13px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.md-calendar-scroll-mask{display:inline-block;height:308px;overflow:hidden}.md-calendar-scroll-mask .md-virtual-repeat-scroller{-webkit-overflow-scrolling:touch;overflow-y:scroll}.md-calendar-scroll-mask .md-virtual-repeat-scroller::-webkit-scrollbar{display:none}.md-calendar-scroll-mask .md-virtual-repeat-offsetter{width:100%}.md-calendar-scroll-container{box-shadow:inset -3px 3px 6px rgba(0,0,0,.2);display:inline-block;height:308px;width:346px}.md-calendar-date{border:none;box-sizing:content-box;height:44px;padding:0;text-align:center;width:44px}.md-calendar-date:first-child{padding-left:16px}[dir=rtl] .md-calendar-date:first-child{padding-left:0;padding-right:16px}.md-calendar-date:last-child{padding-right:16px}[dir=rtl] .md-calendar-date:last-child{padding-left:16px;padding-right:0}.md-calendar-date.md-calendar-date-disabled{cursor:default}.md-calendar-date-selection-indicator{border-radius:50%;display:inline-block;height:40px;line-height:40px;transition:background-color,color .4s cubic-bezier(.25,.8,.25,1);width:40px}.md-calendar-date:not(.md-disabled) .md-calendar-date-selection-indicator{cursor:pointer}.md-calendar-month-label{font-size:14px;font-weight:500;height:44px;padding:0 0 0 24px}[dir=rtl] .md-calendar-month-label{padding:0 24px 0 0}.md-calendar-month-label.md-calendar-label-clickable{cursor:pointer}.md-calendar-month-label md-icon{transform:rotate(180deg)}[dir=rtl] .md-calendar-month-label md-icon{transform:none}.md-calendar-month-label span{vertical-align:middle}.md-calendar-day-header{border-collapse:collapse;border-spacing:0;table-layout:fixed}.md-calendar-day-header th{border:none;box-sizing:content-box;font-weight:400;height:40px;padding:0;text-align:center;width:44px}.md-calendar-day-header th:first-child{padding-left:16px}[dir=rtl] .md-calendar-day-header th:first-child{padding-left:0;padding-right:16px}.md-calendar-day-header th:last-child{padding-right:16px}[dir=rtl] .md-calendar-day-header th:last-child{padding-left:16px;padding-right:0}.md-calendar{border-collapse:collapse;border-spacing:0;table-layout:fixed}.md-calendar tr:last-child td{border-bottom-style:solid;border-bottom-width:1px}.md-calendar:first-child{border-top:1px solid transparent}.md-calendar tbody,.md-calendar td,.md-calendar tr{box-sizing:content-box;vertical-align:middle}md-datepicker{overflow:hidden;vertical-align:middle;white-space:nowrap}.md-inline-form md-datepicker{margin-top:12px}.md-datepicker-button{background:none;box-sizing:border-box;display:inline-block;position:relative;vertical-align:middle}.md-datepicker-button:before{speak:none;bottom:0;content:"";left:0;position:absolute;right:0;top:0}.md-datepicker-input{background:transparent;border:none;box-shadow:none;box-sizing:border-box;font-size:14px;max-width:328px;min-width:120px;outline:none;padding:0 0 5px}.md-datepicker-input::-ms-clear{display:none}._md-datepicker-floating-label>md-datepicker{overflow:visible}._md-datepicker-floating-label>md-datepicker .md-datepicker-input-container{border:none}._md-datepicker-floating-label>md-datepicker .md-datepicker-button{float:left;margin-top:-16px;top:13.5px}[dir=rtl] ._md-datepicker-floating-label>md-datepicker .md-datepicker-button{float:right}._md-datepicker-floating-label .md-input{float:none}._md-datepicker-floating-label._md-datepicker-has-calendar-icon>label:not(.md-no-float):not(.md-container-ignore){left:auto;right:18px;width:calc(100% - 84px)}[dir=rtl] ._md-datepicker-floating-label._md-datepicker-has-calendar-icon>label:not(.md-no-float):not(.md-container-ignore){left:18px;right:auto}._md-datepicker-floating-label._md-datepicker-has-calendar-icon .md-input-message-animation{margin-left:64px}[dir=rtl] ._md-datepicker-floating-label._md-datepicker-has-calendar-icon .md-input-message-animation{margin-left:auto;margin-right:64px}._md-datepicker-has-triangle-icon{margin-right:-18px;padding-right:18px}[dir=rtl] ._md-datepicker-has-triangle-icon{margin-left:-18px;margin-right:auto;padding-left:18px;padding-right:0}.md-datepicker-input-container{border-bottom-style:solid;border-bottom-width:1px;display:inline-block;position:relative;width:auto}.md-icon-button+.md-datepicker-input-container{margin-left:12px}[dir=rtl] .md-icon-button+.md-datepicker-input-container{margin-left:auto;margin-right:12px}.md-datepicker-input-container.md-datepicker-focused{border-bottom-width:2px}.md-datepicker-is-showing .md-scroll-mask{z-index:99}.md-datepicker-calendar-pane{background:transparent;border-style:solid;border-width:1px;left:-100%;position:absolute;top:0;transform:scale(0);transform-origin:0 0;transition:transform .2s cubic-bezier(.25,.8,.25,1);z-index:100}.md-datepicker-calendar-pane.md-pane-open{transform:scale(1)}.md-datepicker-input-mask{background:transparent;cursor:text;height:40px;overflow:hidden;pointer-events:none;position:relative;width:340px}.md-datepicker-calendar{opacity:0;transition:opacity .2s cubic-bezier(.5,0,.25,1)}.md-pane-open .md-datepicker-calendar{opacity:1}.md-datepicker-calendar md-calendar:focus{outline:none}.md-datepicker-expand-triangle{border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;height:0;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:0}.md-datepicker-triangle-button{bottom:-2.5px;position:absolute;right:0;transform:translateX(45%)}[dir=rtl] .md-datepicker-triangle-button{left:0;right:auto;transform:translateX(-45%)}.md-datepicker-triangle-button.md-button.md-icon-button{height:36px;padding:8px;position:absolute;width:36px}md-datepicker[disabled] .md-datepicker-input-container{border-bottom-color:transparent}md-datepicker[disabled] .md-datepicker-triangle-button{display:none}.md-datepicker-open{overflow:hidden}.md-datepicker-open .md-datepicker-input-container,.md-datepicker-open input.md-input{border-bottom-color:transparent}.md-datepicker-open .md-datepicker-triangle-button,.md-datepicker-open.md-input-has-placeholder>label,.md-datepicker-open.md-input-has-value>label,.md-datepicker-pos-adjusted .md-datepicker-input-mask{display:none}.md-datepicker-calendar-pane .md-calendar{transform:translateY(-85px);transition:transform .65s cubic-bezier(.25,.8,.25,1);transition-delay:.125s}.md-datepicker-calendar-pane.md-pane-open .md-calendar{transform:translateY(0)}.md-dialog-is-showing{max-height:100%}.md-dialog-container{align-items:center;display:flex;height:100%;justify-content:center;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:80}md-dialog{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);display:flex;flex-direction:column;max-height:80%;max-width:80%;min-width:240px;opacity:0;overflow:auto;position:relative}md-dialog.md-transition-in{opacity:1;transform:translate(0,0) scale(1);transition:all .4s cubic-bezier(.25,.8,.25,1)}md-dialog.md-transition-out{opacity:0;transform:translate(0,100%) scale(.2);transition:all .4s cubic-bezier(.25,.8,.25,1)}md-dialog>form{display:flex;flex-direction:column;overflow:auto}md-dialog .md-dialog-content{padding:24px}md-dialog md-dialog-content{-webkit-overflow-scrolling:touch;flex-direction:column;order:1;overflow:auto}md-dialog md-dialog-content:not([layout=row])>:first-child:not(.md-subheader){margin-top:0}md-dialog md-dialog-content:focus{outline:none}md-dialog md-dialog-content .md-subheader{margin:0}md-dialog md-dialog-content .md-dialog-content-body{width:100%}md-dialog md-dialog-content .md-prompt-input-container{box-sizing:border-box;width:100%}md-dialog md-dialog-actions{align-items:center;box-sizing:border-box;display:flex;justify-content:flex-end;margin-bottom:0;min-height:52px;order:2;overflow:hidden;padding-left:16px;padding-right:8px}[dir=rtl] md-dialog md-dialog-actions{padding-left:8px;padding-right:16px}md-dialog md-dialog-actions .md-button{margin:8px 0 8px 8px}[dir=rtl] md-dialog md-dialog-actions .md-button{margin-left:0;margin-right:8px}md-dialog.md-content-overflow md-dialog-actions{border-top-style:solid;border-top-width:1px}@media screen and (-ms-high-contrast:active){md-dialog{border:1px solid #fff}}@media (max-width:959px){md-dialog.md-dialog-fullscreen{border-radius:0;min-height:100%;min-width:100%}}md-divider{border-top-style:solid;border-top-width:1px;display:block;margin:0}md-divider[md-inset]{margin-left:80px}[dir=rtl] md-divider[md-inset]{margin-left:auto;margin-right:80px}@media (max-width:599px){.layout-row:not(.layout-xs-column)>md-divider,.layout-xs-row>md-divider{border-right-style:solid;border-right-width:1px;border-top-width:0}}@media (min-width:600px) and (max-width:959px){.layout-gt-xs-row:not(.layout-sm-column)>md-divider,.layout-row:not(.layout-gt-xs-column):not(.layout-sm-column)>md-divider,.layout-sm-row:not(.layout-sm-column)>md-divider{border-right-style:solid;border-right-width:1px;border-top-width:0}}@media (min-width:960px) and (max-width:1279px){.layout-gt-sm-row:not(.layout-md-column)>md-divider,.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column)>md-divider,.layout-md-row:not(.layout-md-column)>md-divider,.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column)>md-divider{border-right-style:solid;border-right-width:1px;border-top-width:0}}@media (min-width:1280px) and (max-width:1919px){.layout-gt-md-row:not(.layout-lg-column)>md-divider,.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column)>md-divider,.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>md-divider,.layout-lg-row:not(.layout-lg-column)>md-divider,.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>md-divider{border-right-style:solid;border-right-width:1px;border-top-width:0}}@media (min-width:1920px){.layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,.layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,.layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider{border-right-style:solid;border-right-width:1px;border-top-width:0}}md-fab-speed-dial{align-items:center;display:flex;position:relative;z-index:20}md-fab-speed-dial.md-fab-bottom-right{bottom:20px;left:auto;position:absolute;right:20px;top:auto}md-fab-speed-dial.md-fab-bottom-left{bottom:20px;left:20px;position:absolute;right:auto;top:auto}md-fab-speed-dial.md-fab-top-right{bottom:auto;left:auto;position:absolute;right:20px;top:20px}md-fab-speed-dial.md-fab-top-left{bottom:auto;left:20px;position:absolute;right:auto;top:20px}md-fab-speed-dial:not(.md-hover-full){pointer-events:none}md-fab-speed-dial:not(.md-hover-full) .md-fab-action-item,md-fab-speed-dial:not(.md-hover-full).md-is-open,md-fab-speed-dial:not(.md-hover-full) md-fab-trigger{pointer-events:auto}md-fab-speed-dial ._md-css-variables{z-index:20}md-fab-speed-dial.md-is-open .md-fab-action-item{align-items:center}md-fab-speed-dial md-fab-actions{display:flex;height:auto}md-fab-speed-dial md-fab-actions .md-fab-action-item{transition:all .3s cubic-bezier(.55,0,.55,.2)}md-fab-speed-dial.md-down{flex-direction:column}md-fab-speed-dial.md-down md-fab-trigger{order:1}md-fab-speed-dial.md-down md-fab-actions{flex-direction:column;order:2}md-fab-speed-dial.md-up{flex-direction:column}md-fab-speed-dial.md-up md-fab-trigger{order:2}md-fab-speed-dial.md-up md-fab-actions{flex-direction:column-reverse;order:1}md-fab-speed-dial.md-left{flex-direction:row}md-fab-speed-dial.md-left md-fab-trigger{order:2}md-fab-speed-dial.md-left md-fab-actions{flex-direction:row-reverse;order:1}md-fab-speed-dial.md-left md-fab-actions .md-fab-action-item{transition:all .3s cubic-bezier(.55,0,.55,.2)}md-fab-speed-dial.md-right{flex-direction:row}md-fab-speed-dial.md-right md-fab-trigger{order:1}md-fab-speed-dial.md-right md-fab-actions{flex-direction:row;order:2}md-fab-speed-dial.md-right md-fab-actions .md-fab-action-item{transition:all .3s cubic-bezier(.55,0,.55,.2)}md-fab-speed-dial.md-fling-remove .md-fab-action-item>*,md-fab-speed-dial.md-scale-remove .md-fab-action-item>*{visibility:hidden}md-fab-speed-dial.md-fling .md-fab-action-item{opacity:1}md-fab-speed-dial.md-fling.md-animations-waiting .md-fab-action-item{opacity:0;transition-duration:0s}md-fab-speed-dial.md-scale .md-fab-action-item{transform:scale(0);transition:all .3s cubic-bezier(.55,0,.55,.2);transition-duration:.1428571429s}md-fab-toolbar{display:block}md-fab-toolbar.md-fab-bottom-right{bottom:20px;left:auto;position:absolute;right:20px;top:auto}md-fab-toolbar.md-fab-bottom-left{bottom:20px;left:20px;position:absolute;right:auto;top:auto}md-fab-toolbar.md-fab-top-right{bottom:auto;left:auto;position:absolute;right:20px;top:20px}md-fab-toolbar.md-fab-top-left{bottom:auto;left:20px;position:absolute;right:auto;top:20px}md-fab-toolbar .md-fab-toolbar-wrapper{display:block;height:68px;overflow:hidden;position:relative}md-fab-toolbar md-fab-trigger{position:absolute;z-index:20}md-fab-toolbar md-fab-trigger button{overflow:visible!important}md-fab-toolbar md-fab-trigger .md-fab-toolbar-background{display:block;opacity:1;position:absolute;transition:all .3s cubic-bezier(.55,0,.55,.2);z-index:21}md-fab-toolbar md-fab-trigger md-icon{opacity:1;position:relative;transition:all .2s ease-in;z-index:22}md-fab-toolbar.md-left md-fab-trigger{right:0}[dir=rtl] md-fab-toolbar.md-left md-fab-trigger{left:0;right:auto}md-fab-toolbar.md-left .md-toolbar-tools{flex-direction:row-reverse}md-fab-toolbar.md-left .md-toolbar-tools>.md-button:first-child{margin-right:.6rem}[dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools>.md-button:first-child{margin-left:.6rem;margin-right:auto}md-fab-toolbar.md-left .md-toolbar-tools>.md-button:first-child{margin-left:-.8rem}[dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools>.md-button:first-child{margin-left:auto;margin-right:-.8rem}md-fab-toolbar.md-left .md-toolbar-tools>.md-button:last-child{margin-right:8px}[dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools>.md-button:last-child{margin-left:8px;margin-right:auto}md-fab-toolbar.md-right md-fab-trigger{left:0}[dir=rtl] md-fab-toolbar.md-right md-fab-trigger{left:auto;right:0}md-fab-toolbar.md-right .md-toolbar-tools{flex-direction:row}md-fab-toolbar md-toolbar{background-color:transparent!important;pointer-events:none;z-index:23}md-fab-toolbar md-toolbar .md-toolbar-tools{margin-top:3px;padding:0 20px}md-fab-toolbar md-toolbar .md-fab-action-item{opacity:0;transform:scale(0);transition:all .3s cubic-bezier(.55,0,.55,.2);transition-duration:.15s}md-fab-toolbar.md-is-open md-fab-trigger>button{box-shadow:none}md-fab-toolbar.md-is-open md-fab-trigger>button md-icon{opacity:0}md-fab-toolbar.md-is-open .md-fab-action-item{opacity:1;transform:scale(1)}md-grid-list{display:block;position:relative}md-grid-list,md-grid-list md-grid-tile,md-grid-list md-grid-tile-footer,md-grid-list md-grid-tile-header,md-grid-list md-grid-tile>figure{box-sizing:border-box}md-grid-list md-grid-tile{display:block;position:absolute}md-grid-list md-grid-tile figure{align-items:center;bottom:0;display:flex;height:100%;justify-content:center;left:0;margin:0;padding:0;position:absolute;right:0;top:0}md-grid-list md-grid-tile md-grid-tile-footer,md-grid-list md-grid-tile md-grid-tile-header{align-items:center;background:rgba(0,0,0,.18);color:#fff;display:flex;flex-direction:row;height:48px;left:0;overflow:hidden;position:absolute;right:0}md-grid-list md-grid-tile md-grid-tile-footer h3,md-grid-list md-grid-tile md-grid-tile-footer h4,md-grid-list md-grid-tile md-grid-tile-header h3,md-grid-list md-grid-tile md-grid-tile-header h4{font-weight:400;margin:0 0 0 16px}md-grid-list md-grid-tile md-grid-tile-footer h3,md-grid-list md-grid-tile md-grid-tile-header h3{font-size:14px}md-grid-list md-grid-tile md-grid-tile-footer h4,md-grid-list md-grid-tile md-grid-tile-header h4{font-size:12px}md-grid-list md-grid-tile md-grid-tile-header{top:0}md-grid-list md-grid-tile md-grid-tile-footer{bottom:0}@media screen and (-ms-high-contrast:active){md-grid-tile{border:1px solid #fff}md-grid-tile-footer{border-top:1px solid #fff}}md-icon{fill:currentColor;background-repeat:no-repeat;display:inline-block;height:24px;margin:auto;min-height:24px;min-width:24px;vertical-align:middle;width:24px}md-icon svg{display:block;pointer-events:none}md-icon[md-font-icon]{line-height:24px;width:auto}md-input-container{display:inline-block;margin:18px 0;padding:2px;position:relative;vertical-align:middle}md-input-container:after{clear:both;content:"";display:table}md-input-container.md-block{display:block}md-input-container .md-errors-spacer{float:right;min-height:24px;min-width:1px}[dir=rtl] md-input-container .md-errors-spacer{float:left}md-input-container>md-icon{left:2px;position:absolute;right:auto;top:8px}[dir=rtl] md-input-container>md-icon{left:auto;right:2px}md-input-container input[type=color],md-input-container input[type=date],md-input-container input[type=datetime-local],md-input-container input[type=datetime],md-input-container input[type=email],md-input-container input[type=month],md-input-container input[type=number],md-input-container input[type=password],md-input-container input[type=search],md-input-container input[type=tel],md-input-container input[type=text],md-input-container input[type=time],md-input-container input[type=url],md-input-container input[type=week],md-input-container textarea{-moz-appearance:none;-webkit-appearance:none}md-input-container input[type=date],md-input-container input[type=datetime-local],md-input-container input[type=month],md-input-container input[type=time],md-input-container input[type=week]{min-height:30px}md-input-container textarea{overflow:hidden;resize:none}md-input-container textarea.md-input{-ms-flex-preferred-size:auto;min-height:30px}md-input-container textarea[md-no-autogrow]{height:auto;overflow:auto}md-input-container label:not(.md-container-ignore){bottom:100%;left:0;position:absolute;right:auto}[dir=rtl] md-input-container label:not(.md-container-ignore){left:auto;right:0}md-input-container label:not(.md-container-ignore).md-required:after{content:" *";font-size:13px;vertical-align:top}md-input-container .md-placeholder,md-input-container label:not(.md-no-float):not(.md-container-ignore){-webkit-font-smoothing:antialiased;max-width:100%;order:1;overflow:hidden;padding-left:2px;padding-right:0;pointer-events:none;text-overflow:ellipsis;transform:translate3d(0,28px,0) scale(1);transform-origin:left top;transition:transform .4s cubic-bezier(.25,.8,.25,1);white-space:nowrap;width:100%;z-index:1}[dir=rtl] md-input-container .md-placeholder,[dir=rtl] md-input-container label:not(.md-no-float):not(.md-container-ignore){padding-left:0;padding-right:2px;transform-origin:right top}md-input-container.md-input-has-value .md-placeholder,md-input-container.md-input-has-value label:not(.md-no-float):not(.md-container-ignore){padding-left:3px;padding-right:0}[dir=rtl] md-input-container.md-input-has-value .md-placeholder,[dir=rtl] md-input-container.md-input-has-value label:not(.md-no-float):not(.md-container-ignore){padding-left:0;padding-right:3px}md-input-container .md-placeholder{opacity:0;position:absolute;top:0;transform:translate3d(0,30px,0);transition-property:opacity,transform}md-input-container.md-input-focused .md-placeholder{opacity:1;transform:translate3d(0,24px,0)}md-input-container.md-input-has-value .md-placeholder{opacity:0;transition:none}md-input-container:not(.md-input-has-value):not(.md-input-has-placeholder) input:not(:focus){color:transparent}md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-ampm-field,md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-day-field,md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-hour-field,md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-millisecond-field,md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-minute-field,md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-month-field,md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-second-field,md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-text,md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-week-field,md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-year-field{color:transparent}md-input-container .md-input{-ms-flex-preferred-size:26px;background:none;border-radius:0;border-style:solid;border-width:0 0 1px;box-sizing:border-box;display:block;float:left;height:30px;line-height:26px;margin-top:0;order:2;padding:2px 2px 1px 0;transition:border-color .4s cubic-bezier(.25,.8,.25,1);width:100%}[dir=rtl] md-input-container .md-input{float:right;padding-left:2px;padding-right:0}md-input-container .md-input:focus{outline:none}md-input-container .md-input:invalid{box-shadow:none;outline:none}md-input-container .md-input.md-no-flex{flex:none!important}md-input-container .md-char-counter{padding-left:0;padding-right:2px;text-align:right}[dir=rtl] md-input-container .md-char-counter{padding-left:2px;padding-right:0;text-align:left}md-input-container .md-input-messages-animation{clear:left;order:4;overflow:hidden;position:relative}[dir=rtl] md-input-container .md-input-messages-animation{clear:right}md-input-container .md-char-counter,md-input-container .md-input-message-animation{font-size:12px;line-height:14px;margin-top:0;opacity:1;overflow:hidden;padding-top:8px;transition:all .3s cubic-bezier(.55,0,.55,.2)}md-input-container .md-char-counter:not(.md-char-counter),md-input-container .md-input-message-animation:not(.md-char-counter){padding-left:0;padding-right:5px}[dir=rtl] md-input-container .md-char-counter:not(.md-char-counter),[dir=rtl] md-input-container .md-input-message-animation:not(.md-char-counter){padding-left:5px;padding-right:0}md-input-container .md-input-message-animation.ng-enter-prepare,md-input-container .md-input-message-animation.ng-enter:not(.ng-enter-active),md-input-container:not(.md-input-invalid) .md-auto-hide .md-input-message-animation{margin-top:-100px;opacity:0}md-input-container.md-input-focused label:not(.md-no-float),md-input-container.md-input-has-placeholder label:not(.md-no-float),md-input-container.md-input-has-value label:not(.md-no-float){transform:translate3d(0,6px,0) scale(.75);transition:transform .4s cubic-bezier(.25,.8,.25,1),width .4s cubic-bezier(.25,.8,.25,1)}md-input-container.md-input-has-value label{transition:none}md-input-container.md-input-focused .md-input,md-input-container.md-input-resized .md-input,md-input-container .md-input.ng-invalid.ng-dirty{border-width:0 0 2px;padding-bottom:0}[disabled] md-input-container .md-input,md-input-container .md-input[disabled]{background-position:bottom -1px left 0;background-repeat:repeat-x;background-size:4px 1px}md-input-container.md-icon-float{transition:margin-top .4s cubic-bezier(.25,.8,.25,1)}md-input-container.md-icon-float>label{pointer-events:none;position:absolute}md-input-container.md-icon-float>md-icon{left:2px;right:auto;top:8px}[dir=rtl] md-input-container.md-icon-float>md-icon{left:auto;right:2px}md-input-container.md-icon-left>label .md-placeholder,md-input-container.md-icon-left>label:not(.md-no-float):not(.md-container-ignore),md-input-container.md-icon-right>label .md-placeholder,md-input-container.md-icon-right>label:not(.md-no-float):not(.md-container-ignore){padding:0;width:calc(100% - 36px)}md-input-container.md-icon-left{padding-left:36px;padding-right:0}[dir=rtl] md-input-container.md-icon-left{padding-left:0;padding-right:36px}md-input-container.md-icon-left>label{left:36px;right:auto}[dir=rtl] md-input-container.md-icon-left>label{left:auto;right:36px}md-input-container.md-icon-right{padding-left:0;padding-right:36px}[dir=rtl] md-input-container.md-icon-right{padding-left:36px;padding-right:0}md-input-container.md-icon-right>md-icon:last-of-type{left:auto;margin:0;right:2px}[dir=rtl] md-input-container.md-icon-right>md-icon:last-of-type{left:2px;right:auto}md-input-container.md-icon-left.md-icon-right{padding-left:36px;padding-right:36px}md-input-container.md-icon-left.md-icon-right>label .md-placeholder,md-input-container.md-icon-left.md-icon-right>label:not(.md-no-float):not(.md-container-ignore){width:calc(100% - 72px)}.md-resize-wrapper{position:relative}.md-resize-wrapper:after{clear:both;content:"";display:table}.md-resize-handle{background:transparent;bottom:-5px;cursor:ns-resize;height:10px;left:0;position:absolute;width:100%}@media screen and (-ms-high-contrast:active){md-input-container.md-default-theme>md-icon{fill:#fff}}md-list{display:block;padding:8px 0}md-list .md-subheader{font-size:14px;font-weight:500;letter-spacing:.01em;line-height:1.2em}md-list.md-dense:not(.md-dense-disabled) md-list-item,md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner{min-height:40px}md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner:before,md-list.md-dense:not(.md-dense-disabled) md-list-item:before{content:"";display:inline-block;min-height:40px;visibility:hidden}md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner md-icon:first-child,md-list.md-dense:not(.md-dense-disabled) md-list-item md-icon:first-child{height:20px;width:20px}md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),md-list.md-dense:not(.md-dense-disabled) md-list-item>md-icon:first-child:not(.md-avatar-icon){margin-bottom:4px;margin-right:36px;margin-top:4px}[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item>md-icon:first-child:not(.md-avatar-icon){margin-left:36px;margin-right:auto}md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar,md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar-icon,md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar,md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar-icon{margin-bottom:6px;margin-right:20px;margin-top:6px}[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar,[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar-icon,[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar,[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar-icon{margin-left:20px;margin-right:auto}md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar,md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar{flex:none;height:36px;width:36px}md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-secondary-container .md-secondary.md-button,md-list.md-dense:not(.md-dense-disabled) md-list-item .md-secondary-container .md-secondary.md-button{margin-bottom:4px;margin-top:4px}md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-secondary-container md-checkbox:not(.md-dense-disabled),md-list.md-dense:not(.md-dense-disabled) md-list-item .md-secondary-container md-checkbox:not(.md-dense-disabled){min-height:40px}md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text.md-offset,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text.md-offset,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text.md-offset,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text.md-offset{margin-left:56px}[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text.md-offset,[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text.md-offset,[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text.md-offset,[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text.md-offset{margin-left:auto;margin-right:56px}md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text h3,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text h4,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text p,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text h3,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text h4,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text p,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text h3,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text h4,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text p,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text h3,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text h4,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text p{font-size:12px;line-height:1.05;padding-bottom:4px}md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text h3,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text h3,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text h3,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text h3{font-size:13px}md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style{min-height:60px}md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line:before,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style:before{content:"";display:inline-block;min-height:60px;visibility:hidden}md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-avatar-icon,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-avatar,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-avatar-icon,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style>.md-avatar{margin-top:12px}md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style{min-height:76px}md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line:before,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style:before{content:"";display:inline-block;min-height:76px;visibility:hidden}md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-avatar,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style>.md-avatar,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style>md-icon:first-child,md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>md-icon:first-child{margin-top:16px}md-list.md-dense:not(.md-dense-disabled) .md-subheader-inner{padding-bottom:12px;padding-top:12px}md-list-item{position:relative}md-list-item.md-proxy-focus.md-focused .md-no-style{transition:background-color .15s linear}md-list-item._md-button-wrap{position:relative}md-list-item._md-button-wrap>div.md-button:first-child{align-items:center;border:none;display:flex;font-weight:400;justify-content:flex-start;margin:0;padding:0 16px;text-align:left}[dir=rtl] md-list-item._md-button-wrap>div.md-button:first-child{text-align:right}md-list-item._md-button-wrap>div.md-button:first-child>.md-button:first-child{height:100%;left:0;margin:0;padding:0;position:absolute;top:0}md-list-item._md-button-wrap>div.md-button:first-child .md-list-item-inner{width:100%}md-list-item._md-button-wrap>div.md-button:first-child .md-list-item-inner:before{content:"";display:inline-block;min-height:inherit;visibility:hidden}md-list-item.md-no-proxy,md-list-item .md-no-style{flex:1 1 auto;padding:0 16px;position:relative}md-list-item.md-no-proxy.md-button,md-list-item .md-no-style.md-button{align-items:inherit;border-radius:0;flex-direction:inherit;font-size:inherit;height:inherit;margin:0;text-align:left;text-transform:none;white-space:normal;width:100%}[dir=rtl] md-list-item.md-no-proxy.md-button,[dir=rtl] md-list-item .md-no-style.md-button{text-align:right}md-list-item.md-no-proxy.md-button>.md-ripple-container,md-list-item .md-no-style.md-button>.md-ripple-container{border-radius:0}md-list-item.md-no-proxy:focus,md-list-item .md-no-style:focus{outline:none}md-list-item.md-clickable:hover{cursor:pointer}md-list-item md-divider{bottom:0;left:0;position:absolute;width:100%}[dir=rtl] md-list-item md-divider{left:auto;right:0}md-list-item md-divider[md-inset]{left:72px;margin:0!important;width:calc(100% - 72px)}[dir=rtl] md-list-item md-divider[md-inset]{left:auto;right:72px}md-list-item,md-list-item .md-list-item-inner{align-items:center;display:flex;height:auto;justify-content:flex-start;min-height:48px}md-list-item .md-list-item-inner:before,md-list-item:before{content:"";display:inline-block;min-height:48px;visibility:hidden}md-list-item .md-list-item-inner>div.md-primary>md-icon:not(.md-avatar-icon),md-list-item .md-list-item-inner>div.md-secondary>md-icon:not(.md-avatar-icon),md-list-item .md-list-item-inner>md-icon.md-secondary:not(.md-avatar-icon),md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),md-list-item>div.md-primary>md-icon:not(.md-avatar-icon),md-list-item>div.md-secondary>md-icon:not(.md-avatar-icon),md-list-item>md-icon.md-secondary:not(.md-avatar-icon),md-list-item>md-icon:first-child:not(.md-avatar-icon){box-sizing:content-box;margin-bottom:12px;margin-top:16px;width:24px}md-list-item .md-list-item-inner>div.md-primary>md-checkbox,md-list-item .md-list-item-inner>div.md-secondary>md-checkbox,md-list-item .md-list-item-inner>md-checkbox,md-list-item .md-list-item-inner md-checkbox.md-secondary,md-list-item>div.md-primary>md-checkbox,md-list-item>div.md-secondary>md-checkbox,md-list-item>md-checkbox,md-list-item md-checkbox.md-secondary{align-self:center}md-list-item .md-list-item-inner>div.md-primary>md-checkbox .md-label,md-list-item .md-list-item-inner>div.md-secondary>md-checkbox .md-label,md-list-item .md-list-item-inner>md-checkbox .md-label,md-list-item .md-list-item-inner md-checkbox.md-secondary .md-label,md-list-item>div.md-primary>md-checkbox .md-label,md-list-item>div.md-secondary>md-checkbox .md-label,md-list-item>md-checkbox .md-label,md-list-item md-checkbox.md-secondary .md-label{display:none}md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),md-list-item>md-icon:first-child:not(.md-avatar-icon){margin-right:32px}[dir=rtl] md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),[dir=rtl] md-list-item>md-icon:first-child:not(.md-avatar-icon){margin-left:32px;margin-right:auto}md-list-item .md-avatar,md-list-item .md-avatar-icon,md-list-item .md-list-item-inner .md-avatar,md-list-item .md-list-item-inner .md-avatar-icon{border-radius:50%;box-sizing:content-box;margin-bottom:8px;margin-right:16px;margin-top:8px}[dir=rtl] md-list-item .md-avatar,[dir=rtl] md-list-item .md-avatar-icon,[dir=rtl] md-list-item .md-list-item-inner .md-avatar,[dir=rtl] md-list-item .md-list-item-inner .md-avatar-icon{margin-left:16px;margin-right:auto}md-list-item .md-avatar,md-list-item .md-list-item-inner .md-avatar{flex:none;height:40px;width:40px}md-list-item .md-avatar-icon,md-list-item .md-list-item-inner .md-avatar-icon{padding:8px}md-list-item .md-avatar-icon svg,md-list-item .md-list-item-inner .md-avatar-icon svg{height:24px;width:24px}md-list-item .md-list-item-inner>md-checkbox,md-list-item>md-checkbox{margin-left:0;margin-right:29px;min-height:40px;width:24px}[dir=rtl] md-list-item .md-list-item-inner>md-checkbox,[dir=rtl] md-list-item>md-checkbox{margin-left:29px;margin-right:0}md-list-item .md-list-item-inner .md-secondary-container,md-list-item .md-secondary-container{align-items:center;display:flex;flex-shrink:0;margin:auto 0 auto auto;position:relative}[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container,[dir=rtl] md-list-item .md-secondary-container{margin-left:0;margin-right:auto}md-list-item .md-list-item-inner .md-secondary-container .md-button:last-of-type,md-list-item .md-list-item-inner .md-secondary-container .md-icon-button:last-of-type,md-list-item .md-secondary-container .md-button:last-of-type,md-list-item .md-secondary-container .md-icon-button:last-of-type{margin-right:0}[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container .md-button:last-of-type,[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container .md-icon-button:last-of-type,[dir=rtl] md-list-item .md-secondary-container .md-button:last-of-type,[dir=rtl] md-list-item .md-secondary-container .md-icon-button:last-of-type{margin-left:0;margin-right:auto}md-list-item .md-list-item-inner .md-secondary-container md-checkbox,md-list-item .md-secondary-container md-checkbox{margin:0 6px;min-height:40px;padding:0 8px}md-list-item .md-list-item-inner .md-secondary-container md-checkbox:last-child,md-list-item .md-secondary-container md-checkbox:last-child{margin-right:0;width:40px}[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container md-checkbox:last-child,[dir=rtl] md-list-item .md-secondary-container md-checkbox:last-child{margin-left:0;margin-right:auto}md-list-item .md-list-item-inner .md-secondary-container md-switch,md-list-item .md-secondary-container md-switch{margin-bottom:0;margin-right:-6px;margin-top:0}[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container md-switch,[dir=rtl] md-list-item .md-secondary-container md-switch{margin-left:-6px;margin-right:auto}md-list-item .md-list-item-inner>.md-list-item-inner>p,md-list-item .md-list-item-inner>p,md-list-item>.md-list-item-inner>p,md-list-item>p{flex:1 1 auto;margin:0}md-list-item.md-2-line,md-list-item.md-2-line>.md-no-style,md-list-item.md-3-line,md-list-item.md-3-line>.md-no-style{align-items:flex-start;justify-content:center}md-list-item.md-2-line.md-long-text,md-list-item.md-2-line>.md-no-style.md-long-text,md-list-item.md-3-line.md-long-text,md-list-item.md-3-line>.md-no-style.md-long-text{margin-bottom:8px;margin-top:8px}md-list-item.md-2-line .md-list-item-text,md-list-item.md-2-line>.md-no-style .md-list-item-text,md-list-item.md-3-line .md-list-item-text,md-list-item.md-3-line>.md-no-style .md-list-item-text{flex:1 1 auto;margin:auto;overflow:hidden;text-overflow:ellipsis}md-list-item.md-2-line .md-list-item-text.md-offset,md-list-item.md-2-line>.md-no-style .md-list-item-text.md-offset,md-list-item.md-3-line .md-list-item-text.md-offset,md-list-item.md-3-line>.md-no-style .md-list-item-text.md-offset{margin-left:56px}[dir=rtl] md-list-item.md-2-line .md-list-item-text.md-offset,[dir=rtl] md-list-item.md-2-line>.md-no-style .md-list-item-text.md-offset,[dir=rtl] md-list-item.md-3-line .md-list-item-text.md-offset,[dir=rtl] md-list-item.md-3-line>.md-no-style .md-list-item-text.md-offset{margin-left:auto;margin-right:56px}md-list-item.md-2-line .md-list-item-text h3,md-list-item.md-2-line>.md-no-style .md-list-item-text h3,md-list-item.md-3-line .md-list-item-text h3,md-list-item.md-3-line>.md-no-style .md-list-item-text h3{font-size:16px;font-weight:400;letter-spacing:.01em;line-height:1.2em;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}md-list-item.md-2-line .md-list-item-text h4,md-list-item.md-2-line>.md-no-style .md-list-item-text h4,md-list-item.md-3-line .md-list-item-text h4,md-list-item.md-3-line>.md-no-style .md-list-item-text h4{font-size:14px;font-weight:400;letter-spacing:.01em;line-height:1.2em;margin:3px 0 1px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}md-list-item.md-2-line .md-list-item-text p,md-list-item.md-2-line>.md-no-style .md-list-item-text p,md-list-item.md-3-line .md-list-item-text p,md-list-item.md-3-line>.md-no-style .md-list-item-text p{font-size:14px;font-weight:500;letter-spacing:.01em;line-height:1.6em;margin:0}md-list-item.md-2-line,md-list-item.md-2-line>.md-no-style{height:auto;min-height:72px}md-list-item.md-2-line:before,md-list-item.md-2-line>.md-no-style:before{content:"";display:inline-block;min-height:72px;visibility:hidden}md-list-item.md-2-line .md-avatar-icon,md-list-item.md-2-line>.md-avatar,md-list-item.md-2-line>.md-no-style .md-avatar-icon,md-list-item.md-2-line>.md-no-style>.md-avatar{margin-top:12px}md-list-item.md-2-line>.md-no-style>md-icon:first-child,md-list-item.md-2-line>md-icon:first-child{align-self:flex-start}md-list-item.md-2-line .md-list-item-text,md-list-item.md-2-line>.md-no-style .md-list-item-text{flex:1 1 auto}md-list-item.md-3-line,md-list-item.md-3-line>.md-no-style{height:auto;min-height:88px}md-list-item.md-3-line:before,md-list-item.md-3-line>.md-no-style:before{content:"";display:inline-block;min-height:88px;visibility:hidden}md-list-item.md-3-line>.md-avatar,md-list-item.md-3-line>.md-no-style>.md-avatar,md-list-item.md-3-line>.md-no-style>md-icon:first-child,md-list-item.md-3-line>md-icon:first-child{margin-top:16px}.md-open-menu-container{border-radius:2px;left:0;max-height:calc(100vh - 10px);opacity:0;overflow:auto;position:fixed;top:0;z-index:100}.md-open-menu-container md-menu-divider{height:1px;margin-bottom:4px;margin-top:4px;max-height:1px;min-height:1px;width:100%}.md-open-menu-container md-menu-content>*{opacity:0}.md-open-menu-container:not(.md-clickable){pointer-events:none}.md-open-menu-container.md-active{opacity:1;transition:all .4s cubic-bezier(.25,.8,.25,1);transition-duration:.2s}.md-open-menu-container.md-active>md-menu-content>*{opacity:1;transition:all .3s cubic-bezier(.55,0,.55,.2);transition-delay:.1s;transition-duration:.2s}.md-open-menu-container.md-leave{opacity:0;transition:all .3s cubic-bezier(.55,0,.55,.2);transition-duration:.25s}md-menu-content{display:flex;flex-direction:column;max-height:304px;overflow-y:auto;padding:8px 0}md-menu-content.md-dense{max-height:208px}md-menu-content.md-dense md-menu-item{height:32px;min-height:32px}md-menu-item{align-content:center;display:flex;flex-direction:row;height:48px;justify-content:flex-start;min-height:48px}md-menu-item>*{margin:auto 0;padding-left:16px;padding-right:16px;width:100%}md-menu-item>a.md-button{padding-top:5px}md-menu-item>.md-button{border-radius:0;display:inline-block;font-size:15px;font-weight:400;height:100%;margin:auto 0;padding-left:16px;padding-right:16px;text-align:left;text-transform:none;width:100%}md-menu-item>.md-button::-moz-focus-inner{border:0;padding:0}[dir=rtl] md-menu-item>.md-button{text-align:right}md-menu-item>.md-button md-icon{margin:auto 16px auto 0}[dir=rtl] md-menu-item>.md-button md-icon{margin:auto 0 auto 16px}md-menu-item>.md-button p{display:inline-block;margin:auto}md-menu-item>.md-button span{margin-bottom:auto;margin-top:auto}md-menu-item>.md-button .md-ripple-container{border-radius:inherit}md-toolbar .md-menu{height:auto;margin:auto;padding:0}@media (max-width:959px){md-menu-content{min-width:112px}md-menu-content[width="3"]{min-width:168px}md-menu-content[width="4"]{min-width:224px}md-menu-content[width="5"]{min-width:280px}md-menu-content[width="6"]{min-width:336px}md-menu-content[width="7"]{min-width:392px}}@media (min-width:960px){md-menu-content{min-width:96px}md-menu-content[width="3"]{min-width:192px}md-menu-content[width="4"]{min-width:256px}md-menu-content[width="5"]{min-width:320px}md-menu-content[width="6"]{min-width:384px}md-menu-content[width="7"]{min-width:448px}}md-toolbar.md-menu-toolbar h2.md-toolbar-tools{height:auto;line-height:1rem;padding:28px 28px 12px}md-toolbar.md-has-open-menu{position:relative;z-index:100}md-menu-bar{display:block;padding:0 20px;position:relative;z-index:2}md-menu-bar .md-menu{display:inline-block;padding:0;position:relative}md-menu-bar button{background-color:transparent;border:0;font-size:14px;height:40px;margin:0;padding:0 10px}md-menu-bar md-backdrop.md-menu-backdrop{z-index:-2}md-menu-content.md-menu-bar-menu.md-dense{max-height:none;padding:16px 0}md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent{position:relative}md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent>md-icon{left:24px;padding:0;position:absolute;top:6px;width:24px}[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent>md-icon{left:auto;right:24px}md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent .md-menu>.md-button,md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent>.md-button{padding:0 32px 0 64px}[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent .md-menu>.md-button,[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent>.md-button{padding:0 64px 0 32px}md-menu-content.md-menu-bar-menu.md-dense .md-button{height:32px;min-height:0}md-menu-content.md-menu-bar-menu.md-dense .md-button span{float:left}[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-button span{float:right}md-menu-content.md-menu-bar-menu.md-dense .md-button span.md-alt-text{float:right;margin:0 8px}[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-button span.md-alt-text{float:left}md-menu-content.md-menu-bar-menu.md-dense md-menu-divider{margin:8px 0}md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button,md-menu-content.md-menu-bar-menu.md-dense md-menu-item>.md-button{text-align:left}[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button,[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item>.md-button{text-align:right}md-menu-content.md-menu-bar-menu.md-dense .md-menu{padding:0}md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button{border-radius:0;font-weight:400;margin:0;padding-left:16px;position:relative;text-transform:none;width:100%}[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button{padding-left:0;padding-right:16px}md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button:after{speak:none;content:"▼";display:block;position:absolute;right:28px;top:0;transform:rotate(270deg) scaleY(.45) scaleX(.9)}[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button:after{left:28px;right:auto;transform:rotate(90deg) scaleY(.45) scaleX(.9)}.md-nav-bar{border-style:solid;border-width:0 0 1px;height:48px;position:relative}._md-nav-bar-list{box-sizing:border-box;display:flex;flex-direction:row;list-style:none;margin:0;outline:none;padding:0}.md-nav-item:first-of-type{margin-left:8px}.md-button._md-nav-button{line-height:24px;margin:0 4px;padding:12px 16px;transition:background-color .35s cubic-bezier(.35,0,.25,1)}.md-button._md-nav-button:focus{outline:none}md-nav-ink-bar{background-color:#000;bottom:0;height:2px;left:0;position:absolute;transform-origin:left top;transition:transform .125s cubic-bezier(.35,0,.25,1);width:100%;will-change:transform}md-nav-ink-bar.ng-animate{transition:none}md-nav-extra-content{min-height:48px;padding-right:12px}@-webkit-keyframes indeterminate-rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes indeterminate-rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}md-progress-circular{display:block;position:relative;transform:scale(1,1)}[dir=rtl] md-progress-circular{transform:scale(-1,1)}md-progress-circular._md-progress-circular-disabled{visibility:hidden}md-progress-circular.md-mode-indeterminate svg{-webkit-animation:indeterminate-rotate 1568.63ms linear infinite;animation:indeterminate-rotate 1568.63ms linear infinite}md-progress-circular svg{left:0;overflow:visible;position:absolute;top:0}md-progress-linear{display:block;height:5px;margin-bottom:0!important;padding-top:0!important;position:relative;transform:scale(1,1);width:100%}[dir=rtl] md-progress-linear{transform:scale(-1,1)}md-progress-linear._md-progress-linear-disabled{visibility:hidden}md-progress-linear .md-container{display:block;height:5px;overflow:hidden;position:relative;transform:translate(0,0) scale(1,1);width:100%}md-progress-linear .md-container .md-bar{bottom:0;height:5px;left:0;position:absolute;top:0;width:100%}md-progress-linear .md-container .md-dashed:before{background-color:transparent;background-position:0 -23px;background-size:10px 10px!important;content:"";display:none;height:5px;margin-top:0;position:absolute;width:100%}md-progress-linear .md-container .md-bar1,md-progress-linear .md-container .md-bar2{transition:transform .2s linear}md-progress-linear .md-container.md-mode-query .md-bar1{display:none}md-progress-linear .md-container.md-mode-query .md-bar2{-webkit-animation:query .8s cubic-bezier(.39,.575,.565,1) infinite;animation:query .8s cubic-bezier(.39,.575,.565,1) infinite;transition:all .2s linear}md-progress-linear .md-container.md-mode-determinate .md-bar1{display:none}md-progress-linear .md-container.md-mode-indeterminate .md-bar1{-webkit-animation:md-progress-linear-indeterminate-scale-1 4s infinite,md-progress-linear-indeterminate-1 4s infinite;animation:md-progress-linear-indeterminate-scale-1 4s infinite,md-progress-linear-indeterminate-1 4s infinite}md-progress-linear .md-container.md-mode-indeterminate .md-bar2{-webkit-animation:md-progress-linear-indeterminate-scale-2 4s infinite,md-progress-linear-indeterminate-2 4s infinite;animation:md-progress-linear-indeterminate-scale-2 4s infinite,md-progress-linear-indeterminate-2 4s infinite}md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container{-webkit-animation:none;animation:none}md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar1,md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar2{-webkit-animation-name:none;animation-name:none}md-progress-linear .md-container.md-mode-buffer{background-color:transparent!important;transition:all .2s linear}md-progress-linear .md-container.md-mode-buffer .md-dashed:before{-webkit-animation:buffer 3s linear infinite;animation:buffer 3s linear infinite;display:block}@-webkit-keyframes query{0%{opacity:1;transform:translateX(35%) scale(.3,1)}to{opacity:0;transform:translateX(-50%) scale(0,1)}}@keyframes query{0%{opacity:1;transform:translateX(35%) scale(.3,1)}to{opacity:0;transform:translateX(-50%) scale(0,1)}}@-webkit-keyframes buffer{0%{background-position:0 -23px;opacity:1}50%{opacity:0}to{background-position:-200px -23px;opacity:1}}@keyframes buffer{0%{background-position:0 -23px;opacity:1}50%{opacity:0}to{background-position:-200px -23px;opacity:1}}@-webkit-keyframes md-progress-linear-indeterminate-scale-1{0%{-webkit-animation-timing-function:linear;animation-timing-function:linear;transform:scaleX(.1)}36.6%{-webkit-animation-timing-function:cubic-bezier(.334731432,.124819821,.785843996,1);animation-timing-function:cubic-bezier(.334731432,.124819821,.785843996,1);transform:scaleX(.1)}69.15%{-webkit-animation-timing-function:cubic-bezier(.225732004,0,.233648906,1.3709798);animation-timing-function:cubic-bezier(.225732004,0,.233648906,1.3709798);transform:scaleX(.83)}to{transform:scaleX(.1)}}@keyframes md-progress-linear-indeterminate-scale-1{0%{-webkit-animation-timing-function:linear;animation-timing-function:linear;transform:scaleX(.1)}36.6%{-webkit-animation-timing-function:cubic-bezier(.334731432,.124819821,.785843996,1);animation-timing-function:cubic-bezier(.334731432,.124819821,.785843996,1);transform:scaleX(.1)}69.15%{-webkit-animation-timing-function:cubic-bezier(.225732004,0,.233648906,1.3709798);animation-timing-function:cubic-bezier(.225732004,0,.233648906,1.3709798);transform:scaleX(.83)}to{transform:scaleX(.1)}}@-webkit-keyframes md-progress-linear-indeterminate-1{0%{-webkit-animation-timing-function:linear;animation-timing-function:linear;left:-105.1666666667%}20%{-webkit-animation-timing-function:cubic-bezier(.5,0,.701732,.495818703);animation-timing-function:cubic-bezier(.5,0,.701732,.495818703);left:-105.1666666667%}69.15%{-webkit-animation-timing-function:cubic-bezier(.302435,.38135197,.55,.956352125);animation-timing-function:cubic-bezier(.302435,.38135197,.55,.956352125);left:21.5%}to{left:95.4444444444%}}@keyframes md-progress-linear-indeterminate-1{0%{-webkit-animation-timing-function:linear;animation-timing-function:linear;left:-105.1666666667%}20%{-webkit-animation-timing-function:cubic-bezier(.5,0,.701732,.495818703);animation-timing-function:cubic-bezier(.5,0,.701732,.495818703);left:-105.1666666667%}69.15%{-webkit-animation-timing-function:cubic-bezier(.302435,.38135197,.55,.956352125);animation-timing-function:cubic-bezier(.302435,.38135197,.55,.956352125);left:21.5%}to{left:95.4444444444%}}@-webkit-keyframes md-progress-linear-indeterminate-scale-2{0%{-webkit-animation-timing-function:cubic-bezier(.205028172,.057050836,.57660995,.453970841);animation-timing-function:cubic-bezier(.205028172,.057050836,.57660995,.453970841);transform:scaleX(.1)}19.15%{-webkit-animation-timing-function:cubic-bezier(.152312994,.196431957,.648373778,1.00431535);animation-timing-function:cubic-bezier(.152312994,.196431957,.648373778,1.00431535);transform:scaleX(.57)}44.15%{-webkit-animation-timing-function:cubic-bezier(.25775882,-.003163357,.211761916,1.38178961);animation-timing-function:cubic-bezier(.25775882,-.003163357,.211761916,1.38178961);transform:scaleX(.91)}to{transform:scaleX(.1)}}@keyframes md-progress-linear-indeterminate-scale-2{0%{-webkit-animation-timing-function:cubic-bezier(.205028172,.057050836,.57660995,.453970841);animation-timing-function:cubic-bezier(.205028172,.057050836,.57660995,.453970841);transform:scaleX(.1)}19.15%{-webkit-animation-timing-function:cubic-bezier(.152312994,.196431957,.648373778,1.00431535);animation-timing-function:cubic-bezier(.152312994,.196431957,.648373778,1.00431535);transform:scaleX(.57)}44.15%{-webkit-animation-timing-function:cubic-bezier(.25775882,-.003163357,.211761916,1.38178961);animation-timing-function:cubic-bezier(.25775882,-.003163357,.211761916,1.38178961);transform:scaleX(.91)}to{transform:scaleX(.1)}}@-webkit-keyframes md-progress-linear-indeterminate-2{0%{-webkit-animation-timing-function:cubic-bezier(.15,0,.5150584,.409684966);animation-timing-function:cubic-bezier(.15,0,.5150584,.409684966);left:-54.8888888889%}25%{-webkit-animation-timing-function:cubic-bezier(.3103299,.284057684,.8,.733718979);animation-timing-function:cubic-bezier(.3103299,.284057684,.8,.733718979);left:-17.25%}48.35%{-webkit-animation-timing-function:cubic-bezier(.4,.627034903,.6,.902025796);animation-timing-function:cubic-bezier(.4,.627034903,.6,.902025796);left:29.5%}to{left:117.3888888889%}}@keyframes md-progress-linear-indeterminate-2{0%{-webkit-animation-timing-function:cubic-bezier(.15,0,.5150584,.409684966);animation-timing-function:cubic-bezier(.15,0,.5150584,.409684966);left:-54.8888888889%}25%{-webkit-animation-timing-function:cubic-bezier(.3103299,.284057684,.8,.733718979);animation-timing-function:cubic-bezier(.3103299,.284057684,.8,.733718979);left:-17.25%}48.35%{-webkit-animation-timing-function:cubic-bezier(.4,.627034903,.6,.902025796);animation-timing-function:cubic-bezier(.4,.627034903,.6,.902025796);left:29.5%}to{left:117.3888888889%}}md-radio-button{box-sizing:border-box;cursor:pointer;display:block;margin-bottom:16px;position:relative;white-space:nowrap}md-radio-button[disabled],md-radio-button[disabled] .md-container{cursor:default}md-radio-button .md-container{box-sizing:border-box;cursor:pointer;display:inline-block;height:20px;left:0;position:absolute;right:auto;top:50%;transform:translateY(-50%);width:20px}[dir=rtl] md-radio-button .md-container{left:auto;right:0}md-radio-button .md-container .md-ripple-container{bottom:-15px;display:block;height:auto;left:-15px;position:absolute;right:-15px;top:-15px;width:auto}md-radio-button .md-container:before{background-color:transparent;border-radius:50%;bottom:0;box-sizing:border-box;content:"";display:block;height:auto;left:0;position:absolute;right:0;top:0;transition:all .5s;width:auto}md-radio-button.md-align-top-left>div.md-container{top:12px}md-radio-button .md-off{border-style:solid;border-width:2px;transition:border-color .28s ease}md-radio-button .md-off,md-radio-button .md-on{border-radius:50%;box-sizing:border-box;height:20px;left:0;position:absolute;top:0;width:20px}md-radio-button .md-on{transform:scale(0);transition:transform .28s ease}md-radio-button.md-checked .md-on{transform:scale(.5)}md-radio-button .md-label{box-sizing:border-box;display:inline-block;margin-left:30px;margin-right:0;pointer-events:none;position:relative;vertical-align:middle;white-space:normal;width:auto}[dir=rtl] md-radio-button .md-label{margin-left:0;margin-right:30px}md-radio-group:focus{outline:none}md-radio-group.md-focused.ng-empty>md-radio-button:first-child .md-container:before,md-radio-group.md-focused.ng-not-empty .md-checked .md-container:before{bottom:-8px;left:-8px;right:-8px;top:-8px}md-radio-group[disabled] md-radio-button,md-radio-group[disabled] md-radio-button .md-container{cursor:default}@media (max-width:599px){.layout-row:not(.layout-xs-column)>md-radio-button,.layout-xs-row>md-radio-button{margin-bottom:0}}@media (min-width:600px) and (max-width:959px){.layout-gt-xs-row:not(.layout-sm-column)>md-radio-button,.layout-row:not(.layout-gt-xs-column):not(.layout-sm-column)>md-radio-button,.layout-sm-row:not(.layout-sm-column)>md-radio-button{margin-bottom:0}}@media (min-width:960px) and (max-width:1279px){.layout-gt-sm-row:not(.layout-md-column)>md-radio-button,.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column)>md-radio-button,.layout-md-row:not(.layout-md-column)>md-radio-button,.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column)>md-radio-button{margin-bottom:0}}@media (min-width:1280px) and (max-width:1919px){.layout-gt-md-row:not(.layout-lg-column)>md-radio-button,.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column)>md-radio-button,.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>md-radio-button,.layout-lg-row:not(.layout-lg-column)>md-radio-button,.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>md-radio-button{margin-bottom:0}}@media (min-width:1920px){.layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,.layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,.layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button{margin-bottom:0}}.md-inline-form md-radio-group{margin:18px 0 19px}.md-inline-form md-radio-group md-radio-button{box-sizing:border-box;display:inline-block;height:30px;margin-bottom:0;margin-top:0;padding:2px 10px 2px 6px}.md-inline-form md-radio-group md-radio-button .md-label{top:4px}.md-inline-form md-radio-group md-radio-button .md-container{margin-top:2px}@media screen and (-ms-high-contrast:active){md-radio-button.md-default-theme .md-on{background-color:#fff}}md-input-container:not([md-no-float]) .md-select-placeholder span:first-child{transform-origin:left top;transition:transform .4s cubic-bezier(.25,.8,.25,1)}[dir=rtl] md-input-container:not([md-no-float]) .md-select-placeholder span:first-child{transform-origin:right top}md-input-container.md-input-focused:not([md-no-float]) md-select:not([placeholder]) .md-select-placeholder span:first-child{transform:translate(-2px,-22px) scale(.75)}.md-select-menu-container{display:none;left:0;opacity:0;position:fixed;top:0;transform:translateY(-1px);z-index:90}.md-select-menu-container:not(.md-clickable){pointer-events:none}.md-select-menu-container md-progress-circular{display:table;margin:24px auto!important}.md-select-menu-container.md-active{display:block;opacity:1}.md-select-menu-container.md-active md-select-menu{transition:all .4s cubic-bezier(.25,.8,.25,1);transition-duration:.15s}.md-select-menu-container.md-active md-select-menu>*{opacity:1;transition:all .3s cubic-bezier(.55,0,.55,.2);transition-delay:.1s;transition-duration:.15s}.md-select-menu-container.md-leave{opacity:0;transition:all .3s cubic-bezier(.55,0,.55,.2);transition-duration:.25s}.md-inline-form md-select{margin-top:20px}.md-inline-form md-input-container>md-select,md-input-container>md-select{margin-top:0}md-input-container>md-select{order:2}md-input-container:not(.md-input-has-value) md-select.ng-required:not(.md-no-asterisk) .md-select-value span:first-child:after,md-input-container:not(.md-input-has-value) md-select[required]:not(.md-no-asterisk) .md-select-value span:first-child:after{content:" *";font-size:13px;vertical-align:top}md-input-container.md-input-invalid md-select .md-select-value{border-bottom-style:solid;padding-bottom:1px}md-select{display:flex}md-select.ng-required.ng-empty.ng-invalid:not(.md-no-asterisk) .md-select-value span:first-child:after,md-select[required].ng-empty.ng-invalid:not(.md-no-asterisk) .md-select-value span:first-child:after{content:" *";font-size:13px;vertical-align:top}md-select[disabled] .md-select-value{background-position:bottom -1px left 0;background-repeat:repeat-x;background-size:4px 1px;padding-bottom:2px;padding-top:1px;transform:translateY(1px)}md-select:focus{outline:none}md-select[disabled]:hover{cursor:default}md-select:not([disabled]):hover{cursor:pointer}md-select:not([disabled]):focus .md-select-value{border-bottom-style:solid;border-bottom-width:2px;padding-bottom:0}md-input-container md-select:not([disabled]):focus .md-select-value{border-bottom-width:2px}md-input-container md-select[disabled] .md-select-value{background-position:bottom -1px left 0}md-input-container md-select .md-select-value{border-bottom-width:1px;min-height:26px;padding-bottom:1px}md-input-container md-select .md-select-value.md-select-placeholder{padding-left:0;padding-right:2px}[dir=rtl] md-input-container md-select .md-select-value.md-select-placeholder{padding-left:2px;padding-right:0}.md-select-value{-ms-flex-item-align:start;align-items:center;background-color:transparent;border-bottom-style:solid;border-bottom-width:1px;box-sizing:content-box;display:flex;flex-grow:1;margin-bottom:auto;min-height:26px;min-width:88px;padding:2px 2px 1px 0;position:relative}[dir=rtl] .md-select-value{padding-left:2px;padding-right:0}.md-select-value>span:not(.md-select-icon){flex:1 1 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.md-select-value>span:not(.md-select-icon) .md-text{display:inline}.md-select-value .md-select-icon{align-items:flex-end;display:block;font-size:1.2rem;text-align:right;transform:translateY(-2px);width:24px}[dir=rtl] .md-select-value .md-select-icon{align-items:flex-start;text-align:left}.md-select-value .md-select-icon:after{speak:none;content:"▼";display:block;font-size:13px;left:auto;position:relative;right:-4px;top:2px;transform:scaleY(.5)}[dir=rtl] .md-select-value .md-select-icon:after{left:-4px;right:auto}.md-select-value.md-select-placeholder{-webkit-font-smoothing:antialiased;display:flex;order:1;pointer-events:none;z-index:1}md-select-menu{box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);display:flex;flex-direction:column;max-height:256px;min-height:48px;overflow-y:hidden;transform:scale(1);transform-origin:left top}md-select-menu.md-reverse{flex-direction:column-reverse}md-select-menu:not(.md-overflow) md-content{padding-bottom:8px;padding-top:8px}[dir=rtl] md-select-menu{transform-origin:right top}md-select-menu md-content{max-height:256px;min-height:48px;min-width:136px;overflow-y:auto}md-select-menu>*{opacity:0}md-option{align-items:center;cursor:pointer;display:flex;height:48px;padding:0 16px;position:relative;transition:background .15s linear;width:auto}md-option[disabled]{cursor:default}md-option:focus{outline:none}md-option .md-text{-webkit-touch-callout:none;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}md-optgroup{display:block}md-optgroup label{display:block;font-size:14px;font-weight:500;padding:16px;text-transform:uppercase}md-optgroup md-option{padding-left:32px;padding-right:32px}@media screen and (-ms-high-contrast:active){.md-select-backdrop{background-color:transparent}md-select-menu{border:1px solid #fff}}md-select-menu[multiple] md-option.md-checkbox-enabled{padding-left:40px;padding-right:16px}[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled{padding-left:16px;padding-right:40px}md-select-menu[multiple] md-option.md-checkbox-enabled .md-container{box-sizing:border-box;display:inline-block;height:18px;left:0;position:absolute;right:auto;top:50%;transform:translateY(-50%);width:18px}[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container{left:auto;right:0}md-select-menu[multiple] md-option.md-checkbox-enabled .md-container:before{background-color:transparent;border-radius:50%;bottom:0;box-sizing:border-box;content:"";display:block;height:auto;left:0;position:absolute;right:0;top:0;transition:all .5s;width:auto}md-select-menu[multiple] md-option.md-checkbox-enabled .md-container:after{bottom:-10px;box-sizing:border-box;content:"";left:-10px;position:absolute;right:-10px;top:-10px}md-select-menu[multiple] md-option.md-checkbox-enabled .md-container .md-ripple-container{bottom:-15px;display:block;height:auto;left:-15px;position:absolute;right:-15px;top:-15px;width:auto}md-select-menu[multiple] md-option.md-checkbox-enabled .md-icon{border-radius:2px;border-style:solid;border-width:2px;box-sizing:border-box;height:18px;left:0;position:absolute;top:0;transition:.24s;width:18px}md-select-menu[multiple] md-option.md-checkbox-enabled[selected] .md-icon{border-color:transparent}md-select-menu[multiple] md-option.md-checkbox-enabled[selected] .md-icon:after{border-style:solid;border-width:2px;border-left:0;border-top:0;box-sizing:border-box;content:"";display:table;height:12px;left:4px;position:absolute;top:0;transform:rotate(45deg);width:6px}md-select-menu[multiple] md-option.md-checkbox-enabled[disabled]{cursor:default}md-select-menu[multiple] md-option.md-checkbox-enabled.md-indeterminate .md-icon:after{border-style:solid;border-width:2px;border-left:0;border-top:0;box-sizing:border-box;content:"";display:table;height:2px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:10.8px}md-select-menu[multiple] md-option.md-checkbox-enabled .md-container{margin-left:10.6666666667px;margin-right:auto}[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container{margin-left:auto;margin-right:10.6666666667px}md-sidenav{-webkit-overflow-scrolling:touch;bottom:0;box-sizing:border-box;flex-direction:column;max-width:320px;overflow:auto;position:absolute;width:320px;z-index:60}md-sidenav ul{list-style:none}md-sidenav.md-closed{display:none}md-sidenav.md-closed-add,md-sidenav.md-closed-remove{display:flex;transition:all .2s ease-in}md-sidenav.md-closed-add.md-closed-add-active,md-sidenav.md-closed-remove.md-closed-remove-active{transition:all .4s cubic-bezier(.25,.8,.25,1)}md-sidenav.md-closed.md-locked-open-add,md-sidenav.md-locked-open,md-sidenav.md-locked-open-add,md-sidenav.md-locked-open-remove,md-sidenav.md-locked-open-remove.md-closed,md-sidenav.md-locked-open.md-closed,md-sidenav.md-locked-open.md-closed.md-sidenav-left,md-sidenav.md-locked-open.md-closed.md-sidenav-right{display:flex;position:static;transform:translate3d(0,0,0)}md-sidenav.md-closed.md-locked-open-add:not(.md-locked-open-add-active){min-width:0!important;width:0!important}md-sidenav.md-closed.md-locked-open-add-active,md-sidenav.md-closed.md-locked-open-add:not(.md-locked-open-add-active),md-sidenav.md-locked-open-remove-active{transition:width .3s cubic-bezier(.55,0,.55,.2),min-width .3s cubic-bezier(.55,0,.55,.2)}md-sidenav.md-locked-open-remove-active{min-width:0!important;width:0!important}.md-sidenav-backdrop.md-locked-open{display:none}.md-sidenav-left,md-sidenav{left:0;top:0;transform:translate3d(0,0,0)}.md-sidenav-left.md-closed,md-sidenav.md-closed{transform:translate3d(-100%,0,0)}.md-sidenav-right{left:100%;top:0;transform:translate(-100%,0)}.md-sidenav-right.md-closed{transform:translate(0,0)}@media (min-width:600px){md-sidenav{max-width:400px}}@media (max-width:456px){md-sidenav{max-width:calc(100% - 56px);min-width:calc(100% - 56px);width:calc(100% - 56px)}}@media screen and (-ms-high-contrast:active){.md-sidenav-left,md-sidenav{border-right:1px solid #fff}.md-sidenav-right{border-left:1px solid #fff}}@-webkit-keyframes sliderFocusThumb{0%{transform:scale(.7)}30%{transform:scale(1)}to{transform:scale(.7)}}@keyframes sliderFocusThumb{0%{transform:scale(.7)}30%{transform:scale(1)}to{transform:scale(.7)}}@-webkit-keyframes sliderDiscreteFocusThumb{0%{transform:scale(.7)}50%{transform:scale(.8)}to{transform:scale(0)}}@keyframes sliderDiscreteFocusThumb{0%{transform:scale(.7)}50%{transform:scale(.8)}to{transform:scale(0)}}@-webkit-keyframes sliderDiscreteFocusRing{0%{opacity:0;transform:scale(.7)}50%{opacity:1;transform:scale(1)}to{transform:scale(0)}}@keyframes sliderDiscreteFocusRing{0%{opacity:0;transform:scale(.7)}50%{opacity:1;transform:scale(1)}to{transform:scale(0)}}md-slider{display:block;flex-direction:row;height:48px;margin-left:4px;margin-right:4px;min-width:128px;padding:0;position:relative}md-slider *,md-slider :after{box-sizing:border-box}md-slider .md-slider-wrapper{height:100%;outline:none;width:100%}md-slider .md-slider-content{position:relative}md-slider .md-track-container{height:2px;position:absolute;top:23px;width:100%}md-slider .md-track{height:100%;left:0;position:absolute;right:0}md-slider .md-track-fill{transition:all .4s cubic-bezier(.25,.8,.25,1);transition-property:width,height}md-slider .md-track-ticks{height:100%;left:0;position:absolute;right:0}md-slider .md-track-ticks canvas{height:100%;width:100%}md-slider .md-thumb-container{left:0;position:absolute;top:50%;transform:translate3d(-50%,-50%,0);transition:all .4s cubic-bezier(.25,.8,.25,1);transition-property:left,right,bottom}[dir=rtl] md-slider .md-thumb-container{left:auto;right:0}md-slider .md-thumb{border-radius:20px;height:20px;left:-10px;position:absolute;top:14px;transform:scale(.7);transition:all .4s cubic-bezier(.25,.8,.25,1);width:20px;z-index:1}[dir=rtl] md-slider .md-thumb{left:auto;right:-10px}md-slider .md-thumb:after{border-radius:20px;border-style:solid;border-width:3px;content:"";height:20px;position:absolute;transition:inherit;width:20px}md-slider .md-sign{align-items:center;border-radius:28px;display:flex;height:28px;justify-content:center;left:-14px;position:absolute;top:-17px;transform:scale(.4) translate3d(0,67.5px,0);transition:all .3s cubic-bezier(.35,0,.25,1);width:28px}md-slider .md-sign:after{border-left:14px solid transparent;border-radius:16px;border-right:14px solid transparent;border-top-style:solid;border-top-width:16px;content:"";left:0;opacity:0;position:absolute;top:19px;transform:translate3d(0,-8px,0);transition:all .2s cubic-bezier(.35,0,.25,1)}[dir=rtl] md-slider .md-sign:after{left:auto;right:0}md-slider .md-sign .md-thumb-text{font-size:12px;font-weight:700;z-index:1}md-slider .md-focus-ring{border-radius:34px;height:34px;left:-17px;opacity:0;position:absolute;top:7px;transform:scale(.7);transition:all .35s cubic-bezier(.35,0,.25,1);width:34px}[dir=rtl] md-slider .md-focus-ring{left:auto;right:-17px}md-slider .md-disabled-thumb{border-radius:28px;border-style:solid;border-width:4px;display:none;height:28px;left:-14px;position:absolute;top:10px;transform:scale(.5);width:28px}[dir=rtl] md-slider .md-disabled-thumb{left:auto;right:-14px}md-slider.md-min .md-sign{opacity:0}md-slider:focus{outline:none}md-slider.md-dragging .md-thumb-container,md-slider.md-dragging .md-track-fill{transition:none}md-slider:not([md-discrete]) .md-sign,md-slider:not([md-discrete]) .md-track-ticks{display:none}md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper .md-thumb:hover{transform:scale(.8)}md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper.md-focused .md-focus-ring{opacity:1;transform:scale(1)}md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper.md-focused .md-thumb{-webkit-animation:sliderFocusThumb .7s cubic-bezier(.35,0,.25,1);animation:sliderFocusThumb .7s cubic-bezier(.35,0,.25,1)}md-slider:not([md-discrete]):not([disabled]).md-active .md-slider-wrapper .md-thumb{transform:scale(1)}md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-focus-ring{-webkit-animation:sliderDiscreteFocusRing .5s cubic-bezier(.35,0,.25,1);animation:sliderDiscreteFocusRing .5s cubic-bezier(.35,0,.25,1);transform:scale(0)}md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-thumb{-webkit-animation:sliderDiscreteFocusThumb .5s cubic-bezier(.35,0,.25,1);animation:sliderDiscreteFocusThumb .5s cubic-bezier(.35,0,.25,1)}md-slider[md-discrete]:not([disabled]).md-active .md-thumb,md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-thumb{transform:scale(0)}md-slider[md-discrete]:not([disabled]).md-active .md-sign,md-slider[md-discrete]:not([disabled]).md-active .md-sign:after,md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-sign,md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-sign:after{opacity:1;transform:translate3d(0,0,0) scale(1)}md-slider[md-discrete][disabled][readonly] .md-thumb{transform:scale(0)}md-slider[md-discrete][disabled][readonly] .md-sign,md-slider[md-discrete][disabled][readonly] .md-sign:after{opacity:1;transform:translate3d(0,0,0) scale(1)}md-slider[disabled] .md-track-fill{display:none}md-slider[disabled] .md-track-ticks,md-slider[disabled]:not([readonly]) .md-sign{opacity:0}md-slider[disabled] .md-thumb{transform:scale(.5)}md-slider[disabled] .md-disabled-thumb{display:block}md-slider[md-vertical]{flex-direction:column;min-height:128px;min-width:0}md-slider[md-vertical] .md-slider-wrapper{align-self:center;display:flex;flex:1;justify-content:center;padding-bottom:12px;padding-top:12px;width:48px}md-slider[md-vertical] .md-track-container{height:100%;left:calc(50% - 1px);top:0;width:2px}md-slider[md-vertical] .md-thumb-container{bottom:0;left:calc(50% - 1px);margin-bottom:23px;top:auto}md-slider[md-vertical] .md-thumb-container .md-thumb:after{left:1px}md-slider[md-vertical] .md-thumb-container .md-focus-ring{left:-16px}md-slider[md-vertical] .md-track-fill{bottom:0}md-slider[md-vertical][md-discrete] .md-sign{left:-40px;top:9.5px;transform:scale(.4) translate3d(67.5px,0,0)}md-slider[md-vertical][md-discrete] .md-sign:after{border-bottom:14px solid transparent;border-left-style:solid;border-left-width:16px;border-right:0;border-top:14px solid transparent;left:19px;opacity:0;top:9.5px;transform:translate3d(0,-8px,0);transition:all .2s ease-in-out}md-slider[md-vertical][md-discrete] .md-sign .md-thumb-text{font-size:12px;font-weight:700;z-index:1}md-slider[md-vertical][md-discrete].md-active .md-sign:after,md-slider[md-vertical][md-discrete] .md-focused .md-sign:after,md-slider[md-vertical][md-discrete][disabled][readonly] .md-sign:after{top:0}md-slider[md-vertical][disabled][readonly] .md-thumb{transform:scale(0)}md-slider[md-vertical][disabled][readonly] .md-sign,md-slider[md-vertical][disabled][readonly] .md-sign:after{opacity:1;transform:translate3d(0,0,0) scale(1)}md-slider[md-invert]:not([md-vertical]) .md-track-fill{left:auto;right:0}[dir=rtl] md-slider[md-invert]:not([md-vertical]) .md-track-fill{left:0;right:auto}md-slider[md-invert][md-vertical] .md-track-fill{bottom:auto;top:0}md-slider-container{align-items:center;display:flex;flex-direction:row}md-slider-container>:first-child:not(md-slider),md-slider-container>:last-child:not(md-slider){height:25px;max-width:42px;min-width:25px;transition:all .4s cubic-bezier(.25,.8,.25,1);transition-property:color,max-width}md-slider-container>:first-child:not(md-slider){margin-right:16px}[dir=rtl] md-slider-container>:first-child:not(md-slider){margin-left:16px;margin-right:auto}md-slider-container>:last-child:not(md-slider){margin-left:16px}[dir=rtl] md-slider-container>:last-child:not(md-slider){margin-left:auto;margin-right:16px}md-slider-container[md-vertical]{flex-direction:column}md-slider-container[md-vertical]>:first-child:not(md-slider),md-slider-container[md-vertical]>:last-child:not(md-slider){margin-left:0;margin-right:0;text-align:center}md-slider-container md-input-container input[type=number]{height:50px;margin-top:-25px;padding-left:15px;text-align:center}[dir=rtl] md-slider-container md-input-container input[type=number]{padding-left:0;padding-right:15px}@media screen and (-ms-high-contrast:active){md-slider.md-default-theme .md-track{border-bottom:1px solid #fff}}.md-sticky-clone{left:0;position:absolute!important;right:0;top:0;transform:translate3d(-9999px,-9999px,0);z-index:2}.md-sticky-clone[sticky-state=active]{transform:translate3d(0,0,0)}.md-sticky-clone[sticky-state=active]:not(.md-sticky-no-effect) .md-subheader-inner{-webkit-animation:subheaderStickyHoverIn .3s ease-out both;animation:subheaderStickyHoverIn .3s ease-out both}@-webkit-keyframes subheaderStickyHoverIn{0%{box-shadow:0 0 0 0 transparent}to{box-shadow:0 2px 4px 0 rgba(0,0,0,.16)}}@keyframes subheaderStickyHoverIn{0%{box-shadow:0 0 0 0 transparent}to{box-shadow:0 2px 4px 0 rgba(0,0,0,.16)}}@-webkit-keyframes subheaderStickyHoverOut{0%{box-shadow:0 2px 4px 0 rgba(0,0,0,.16)}to{box-shadow:0 0 0 0 transparent}}@keyframes subheaderStickyHoverOut{0%{box-shadow:0 2px 4px 0 rgba(0,0,0,.16)}to{box-shadow:0 0 0 0 transparent}}.md-subheader-wrapper:not(.md-sticky-no-effect){transition:margin .2s ease-out}.md-subheader-wrapper:not(.md-sticky-no-effect) .md-subheader{margin:0}.md-subheader-wrapper:not(.md-sticky-no-effect).md-sticky-clone{z-index:2}.md-subheader-wrapper:not(.md-sticky-no-effect)[sticky-state=active]{margin-top:-2px}.md-subheader-wrapper:not(.md-sticky-no-effect):not(.md-sticky-clone)[sticky-prev-state=active] .md-subheader-inner:after{-webkit-animation:subheaderStickyHoverOut .3s ease-out both;animation:subheaderStickyHoverOut .3s ease-out both}.md-subheader{display:block;font-size:14px;font-weight:500;line-height:1em;margin:0;position:relative}.md-subheader .md-subheader-inner{display:block;padding:16px}.md-subheader .md-subheader-content{display:block;position:relative;z-index:1}[md-swipe-left],[md-swipe-right]{touch-action:pan-y}[md-swipe-down],[md-swipe-up]{touch-action:pan-x}.md-inline-form md-switch{margin-bottom:19px;margin-top:18px}md-switch{align-items:center;cursor:pointer;display:flex;height:30px;line-height:28px;margin:16px 0;margin-left:inherit;margin-right:16px;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}[dir=rtl] md-switch{margin-left:16px;margin-right:inherit}md-switch:last-of-type{margin-left:inherit;margin-right:0}[dir=rtl] md-switch:last-of-type{margin-left:0;margin-right:inherit}md-switch[disabled],md-switch[disabled] .md-container{cursor:default}md-switch .md-container{cursor:-webkit-grab;cursor:grab;float:left;height:24px;margin-right:8px;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:36px}[dir=rtl] md-switch .md-container,md-switch.md-inverted .md-container{margin-left:8px;margin-right:0}[dir=rtl] md-switch.md-inverted .md-container{margin-left:0;margin-right:8px}md-switch:not([disabled]) .md-dragging,md-switch:not([disabled]).md-dragging .md-container{cursor:-webkit-grabbing;cursor:grabbing}md-switch.md-focused .md-thumb:before{bottom:-8px;left:-8px;right:-8px;top:-8px}md-switch .md-label{border-color:transparent;border-width:0;float:left}md-switch .md-bar{border-radius:8px;height:14px;left:1px;position:absolute;top:5px;width:34px}md-switch .md-thumb-container{left:0;position:absolute;top:2px;transform:translate3d(0,0,0);width:16px;z-index:1}md-switch.md-checked .md-thumb-container{transform:translate3d(100%,0,0)}md-switch .md-thumb{box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);height:20px;margin:0;outline:none;width:20px}md-switch .md-thumb,md-switch .md-thumb:before{border-radius:50%;left:0;position:absolute;top:0}md-switch .md-thumb:before{background-color:transparent;bottom:0;content:"";display:block;height:auto;right:0;transition:all .5s;width:auto}md-switch .md-thumb .md-ripple-container{bottom:-20px;display:block;height:auto;left:-20px;position:absolute;right:-20px;top:-20px;width:auto}md-switch:not(.md-dragging) .md-bar,md-switch:not(.md-dragging) .md-thumb,md-switch:not(.md-dragging) .md-thumb-container{transition:all .08s linear;transition-property:transform,background-color}md-switch:not(.md-dragging) .md-bar,md-switch:not(.md-dragging) .md-thumb{transition-delay:.05s}@media screen and (-ms-high-contrast:active){md-switch.md-default-theme .md-bar{background-color:#666}md-switch.md-default-theme.md-checked .md-bar{background-color:#9e9e9e}md-switch.md-default-theme .md-thumb{background-color:#fff}}@-webkit-keyframes md-tab-content-hide{0%{opacity:1}50%{opacity:1}to{opacity:0}}@keyframes md-tab-content-hide{0%{opacity:1}50%{opacity:1}to{opacity:0}}md-tab-data{bottom:0;left:0;opacity:0;position:absolute;right:0;top:0;z-index:-1}md-tabs{border-radius:2px;display:block;flex-shrink:0;margin:0;overflow:hidden;position:relative}md-tabs:not(.md-no-tab-content):not(.md-dynamic-height){min-height:248px}md-tabs[md-align-tabs=bottom]{padding-bottom:48px}md-tabs[md-align-tabs=bottom]>md-tabs-wrapper{bottom:0;height:48px;left:0;position:absolute;right:0;z-index:2}md-tabs[md-align-tabs=bottom]>md-tabs-content-wrapper{bottom:48px;top:0}md-tabs.md-dynamic-height md-tabs-content-wrapper{bottom:auto;left:auto;min-height:0;overflow:visible;position:relative;right:auto;top:auto}md-tabs.md-dynamic-height md-tab-content.md-active{position:relative}md-tabs[md-border-bottom] md-tabs-wrapper{border-style:solid;border-width:0 0 1px}md-tabs[md-border-bottom]:not(.md-dynamic-height) md-tabs-content-wrapper{top:49px}md-tabs-wrapper{display:block;position:relative;transform:translate(0,0)}md-tabs-wrapper md-next-button,md-tabs-wrapper md-prev-button{background:transparent no-repeat 50%;cursor:pointer;font-size:16px;height:100%;line-height:1em;position:absolute;top:50%;transform:translateY(-50%);transition:all .5s cubic-bezier(.35,0,.25,1);width:32px;z-index:2}md-tabs-wrapper md-next-button:focus,md-tabs-wrapper md-prev-button:focus{outline:none}md-tabs-wrapper md-next-button.md-disabled,md-tabs-wrapper md-prev-button.md-disabled{cursor:default;opacity:.25}md-tabs-wrapper md-next-button.ng-leave,md-tabs-wrapper md-prev-button.ng-leave{transition:none}md-tabs-wrapper md-next-button md-icon,md-tabs-wrapper md-prev-button md-icon{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}[dir=rtl] md-tabs-wrapper md-next-button,[dir=rtl] md-tabs-wrapper md-prev-button{transform:rotateY(180deg) translateY(-50%)}md-tabs-wrapper md-prev-button{background-image:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMjA4IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTUuNCw3LjQgMTQsNiA4LDEyIDE0LDE4IDE1LjQsMTYuNiAxMC44LDEyIAkJIiBzdHlsZT0iZmlsbDp3aGl0ZTsiLz4gPHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+IDwvZz4gPC9nPiA8ZyBpZD0iR3JpZCIgZGlzcGxheT0ibm9uZSI+IDxnIGRpc3BsYXk9ImlubGluZSI+IDwvZz4gPC9nPiA8L3N2Zz4NCg==");left:0}[dir=rtl] md-tabs-wrapper md-prev-button{left:auto;right:0}md-tabs-wrapper md-next-button{background-image:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMzM2IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTAsNiA4LjYsNy40IDEzLjIsMTIgOC42LDE2LjYgMTAsMTggMTYsMTIgCQkiIHN0eWxlPSJmaWxsOndoaXRlOyIvPiA8cmVjdCBmaWxsPSJub25lIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz4gPC9nPiA8L2c+IDxnIGlkPSJHcmlkIiBkaXNwbGF5PSJub25lIj4gPGcgZGlzcGxheT0iaW5saW5lIj4gPC9nPiA8L2c+IDwvc3ZnPg0K");right:0}[dir=rtl] md-tabs-wrapper md-next-button{left:0;right:auto}md-tabs-wrapper md-next-button md-icon{transform:translate(-50%,-50%) rotate(180deg)}md-tabs-wrapper.md-stretch-tabs md-pagination-wrapper{flex-direction:row;width:100%}md-tabs-wrapper.md-stretch-tabs md-pagination-wrapper md-tab-item{flex-grow:1}md-tabs-canvas{display:block;height:48px;overflow:hidden;position:relative}md-tabs-canvas:after{clear:both;content:"";display:table}md-tabs-canvas .md-dummy-wrapper{left:0;position:absolute;top:0}[dir=rtl] md-tabs-canvas .md-dummy-wrapper{left:auto;right:0}md-tabs-canvas.md-paginated{margin:0 32px}md-tabs-canvas.md-center-tabs{display:flex;flex-direction:column;text-align:center}md-tabs-canvas.md-center-tabs .md-tab{display:inline-block;float:none}md-pagination-wrapper{display:flex;height:48px;left:0;position:absolute;transform:translate(0,0);transition:transform .5s cubic-bezier(.35,0,.25,1)}md-pagination-wrapper:after{clear:both;content:"";display:table}[dir=rtl] md-pagination-wrapper{left:auto;right:0}md-pagination-wrapper.md-center-tabs{justify-content:center;position:relative}md-pagination-wrapper md-tab-item{min-width:72px}@media (min-width:600px){md-pagination-wrapper md-tab-item{min-width:160px}}md-tabs-content-wrapper{display:block;overflow:hidden;top:48px}md-tab-content,md-tabs-content-wrapper{bottom:0;left:0;position:absolute;right:0}md-tab-content{display:flex;overflow:auto;top:0;transform:translate(0,0);transition:transform .5s cubic-bezier(.35,0,.25,1)}md-tab-content.md-no-scroll{bottom:auto;overflow:hidden}md-tab-content.md-no-transition,md-tab-content.ng-leave{transition:none}md-tab-content.md-left:not(.md-active){-webkit-animation:md-tab-content-hide 1s;animation:md-tab-content-hide 1s;transform:translateX(-100%);visibility:hidden}[dir=rtl] md-tab-content.md-left:not(.md-active){transform:translateX(100%)}md-tab-content.md-left:not(.md-active) *{transition:visibility 0s linear;transition-delay:.5s;visibility:hidden}md-tab-content.md-right:not(.md-active){-webkit-animation:md-tab-content-hide 1s;animation:md-tab-content-hide 1s;transform:translateX(100%);visibility:hidden}[dir=rtl] md-tab-content.md-right:not(.md-active){transform:translateX(-100%)}md-tab-content.md-right:not(.md-active) *{transition:visibility 0s linear;transition-delay:.5s;visibility:hidden}md-tab-content>div{flex:1 0 100%;min-width:0}md-tab-content>div.ng-leave{-webkit-animation:md-tab-content-hide 1s;animation:md-tab-content-hide 1s}md-ink-bar{bottom:0;height:2px;left:auto;position:absolute;right:auto}md-ink-bar.md-left{transition:left .125s cubic-bezier(.35,0,.25,1),right .25s cubic-bezier(.35,0,.25,1)}md-ink-bar.md-right{transition:left .25s cubic-bezier(.35,0,.25,1),right .125s cubic-bezier(.35,0,.25,1)}md-tab{left:-9999px;position:absolute;z-index:-1}.md-tab{box-sizing:border-box;cursor:pointer;float:left;font-size:14px;font-weight:500;line-height:24px;overflow:hidden;padding:12px;position:relative;text-align:center;text-overflow:ellipsis;text-transform:uppercase;transition:background-color .35s cubic-bezier(.35,0,.25,1);white-space:nowrap}[dir=rtl] .md-tab{float:right}.md-tab.md-focused,.md-tab:focus{box-shadow:none;outline:none}.md-tab.md-active{cursor:default}.md-tab.md-disabled{-webkit-user-drag:none;cursor:default;opacity:.5;pointer-events:none;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.md-tab.ng-leave{transition:none}md-toolbar+md-dialog-content md-tabs,md-toolbar+md-tabs{border-top-left-radius:0;border-top-right-radius:0}.md-toast-text{padding:0 8px}md-toast{box-sizing:border-box;cursor:default;opacity:1;padding:8px;position:absolute;z-index:105}md-toast,md-toast .md-toast-content{overflow:hidden;transition:all .4s cubic-bezier(.25,.8,.25,1)}md-toast .md-toast-content{align-items:center;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.26);display:flex;flex-direction:row;font-size:14px;justify-content:flex-start;max-height:168px;max-width:100%;min-height:48px;padding:0 16px;transform:translate3d(0,0,0) rotateZ(0deg)}md-toast .md-toast-content:before{content:"";display:inline-block;min-height:48px;visibility:hidden}[dir=rtl] md-toast .md-toast-content{justify-content:flex-end}md-toast .md-toast-content span{box-sizing:border-box;flex:1 1 0%;min-width:0}md-toast.md-capsule,md-toast.md-capsule .md-toast-content{border-radius:24px}md-toast.ng-leave-active .md-toast-content{transition:all .3s cubic-bezier(.55,0,.55,.2)}md-toast.md-swipedown .md-toast-content,md-toast.md-swipeleft .md-toast-content,md-toast.md-swiperight .md-toast-content,md-toast.md-swipeup .md-toast-content{transition:all .4s cubic-bezier(.25,.8,.25,1)}md-toast.ng-enter{opacity:0}md-toast.ng-enter .md-toast-content{transform:translate3d(0,100%,0)}md-toast.ng-enter.md-top .md-toast-content{transform:translate3d(0,-100%,0)}md-toast.ng-enter.ng-enter-active{opacity:1}md-toast.ng-enter.ng-enter-active .md-toast-content{transform:translate3d(0,0,0)}md-toast.ng-leave.ng-leave-active .md-toast-content{opacity:0;transform:translate3d(0,100%,0)}md-toast.ng-leave.ng-leave-active.md-swipeup .md-toast-content{transform:translate3d(0,-50%,0)}md-toast.ng-leave.ng-leave-active.md-swipedown .md-toast-content{transform:translate3d(0,50%,0)}md-toast.ng-leave.ng-leave-active.md-top .md-toast-content{transform:translate3d(0,-100%,0)}md-toast .md-action{cursor:pointer;float:right;line-height:19px;margin-left:24px;margin-right:0;text-transform:uppercase}md-toast .md-button{margin-left:8px;margin-right:0;min-width:0}[dir=rtl] md-toast .md-button{margin-left:0;margin-right:8px}@media (max-width:959px){md-toast{border-radius:0;bottom:0;left:0;max-width:100%;min-width:0;padding:0;right:0;width:100%}md-toast.ng-leave.ng-leave-active.md-swipeup .md-toast-content{transform:translate3d(0,-50%,0)}md-toast.ng-leave.ng-leave-active.md-swipedown .md-toast-content{transform:translate3d(0,50%,0)}}@media (min-width:960px){md-toast{min-width:304px}md-toast.md-bottom{bottom:0}md-toast.md-left{left:0}md-toast.md-right{right:0}md-toast.md-top{top:0}md-toast._md-start{left:0}[dir=rtl] md-toast._md-start{left:auto;right:0}md-toast._md-end{right:0}[dir=rtl] md-toast._md-end{left:0;right:auto}md-toast.ng-leave.ng-leave-active.md-swipeleft .md-toast-content{transform:translate3d(-50%,0,0)}md-toast.ng-leave.ng-leave-active.md-swiperight .md-toast-content{transform:translate3d(50%,0,0)}}@media (min-width:1920px){md-toast .md-toast-content{max-width:568px}}@media screen and (-ms-high-contrast:active){md-toast{border:1px solid #fff}}.md-toast-animating{overflow:hidden!important}md-toolbar{box-sizing:border-box;display:flex;flex-direction:column;font-size:20px;min-height:64px;position:relative;width:100%;z-index:2}md-toolbar._md-toolbar-transitions{transition-duration:.5s;transition-property:background-color,fill,color;transition-timing-function:cubic-bezier(.35,0,.25,1)}md-toolbar.md-whiteframe-z1-add,md-toolbar.md-whiteframe-z1-remove{transition:box-shadow .5s linear}md-toolbar md-toolbar-filler{width:72px}md-toolbar *,md-toolbar :after,md-toolbar :before{box-sizing:border-box}md-toolbar.ng-animate{transition:none}md-toolbar.md-tall{height:128px;max-height:128px;min-height:128px}md-toolbar.md-medium-tall{height:88px;max-height:88px;min-height:88px}md-toolbar.md-medium-tall .md-toolbar-tools{height:48px;max-height:48px;min-height:48px}md-toolbar>.md-indent{margin-left:64px}[dir=rtl] md-toolbar>.md-indent{margin-left:auto;margin-right:64px}md-toolbar~md-content>md-list{padding:0}md-toolbar~md-content>md-list md-list-item:last-child md-divider{display:none}.md-toolbar-tools{align-items:center;box-sizing:border-box;display:flex;flex-direction:row;font-size:20px;font-weight:400;height:64px;letter-spacing:.005em;margin:0;max-height:64px;padding:0 16px;width:100%}.md-toolbar-tools h1,.md-toolbar-tools h2,.md-toolbar-tools h3{font-size:inherit;font-weight:inherit;margin:inherit}.md-toolbar-tools a{color:inherit;text-decoration:none}.md-toolbar-tools .fill-height{align-items:center;display:flex}.md-toolbar-tools md-checkbox{margin:inherit}.md-toolbar-tools .md-button{margin-bottom:0;margin-top:0}.md-toolbar-tools .md-button,.md-toolbar-tools .md-button.md-icon-button md-icon{transition-duration:.5s;transition-property:background-color,fill,color;transition-timing-function:cubic-bezier(.35,0,.25,1)}.md-toolbar-tools .md-button.md-icon-button md-icon.ng-animate,.md-toolbar-tools .md-button.ng-animate{transition:none}.md-toolbar-tools>.md-button:first-child{margin-left:-8px}[dir=rtl] .md-toolbar-tools>.md-button:first-child{margin-left:auto;margin-right:-8px}.md-toolbar-tools>.md-button:last-child{margin-right:-8px}[dir=rtl] .md-toolbar-tools>.md-button:last-child{margin-left:-8px;margin-right:auto}.md-toolbar-tools>md-menu:last-child{margin-right:-8px}[dir=rtl] .md-toolbar-tools>md-menu:last-child{margin-left:-8px;margin-right:auto}.md-toolbar-tools>md-menu:last-child>.md-button{margin-right:0}[dir=rtl] .md-toolbar-tools>md-menu:last-child>.md-button{margin-left:0;margin-right:auto}@media screen and (-ms-high-contrast:active){.md-toolbar-tools{border-bottom:1px solid #fff}}@media (min-width:0) and (max-width:959px) and (orientation:portrait){md-toolbar{min-height:56px}.md-toolbar-tools{height:56px;max-height:56px}}@media (min-width:0) and (max-width:959px) and (orientation:landscape){md-toolbar{min-height:48px}.md-toolbar-tools{height:48px;max-height:48px}}.md-tooltip{border-radius:4px;display:inline-block;font-size:14px;font-weight:500;height:32px;line-height:32px;opacity:0;overflow:hidden;padding-left:16px;padding-right:16px;pointer-events:none;text-overflow:ellipsis;white-space:nowrap}.md-tooltip.md-origin-top{margin-top:-24px;transform-origin:center bottom}.md-tooltip.md-origin-right{margin-left:24px;transform-origin:left center}.md-tooltip.md-origin-bottom{margin-top:24px;transform-origin:center top}.md-tooltip.md-origin-left{margin-left:-24px;transform-origin:right center}@media (min-width:960px){.md-tooltip{font-size:10px;height:22px;line-height:22px;padding-left:8px;padding-right:8px}.md-tooltip.md-origin-top{margin-top:-14px}.md-tooltip.md-origin-right{margin-left:14px}.md-tooltip.md-origin-bottom{margin-top:14px}.md-tooltip.md-origin-left{margin-left:-14px}}.md-tooltip.md-show-add{transform:scale(0)}.md-tooltip.md-show{opacity:.9;transform:scale(1);transition:all .4s cubic-bezier(.25,.8,.25,1);transition-duration:.15s}.md-tooltip.md-hide{opacity:0;transform:scale(0);transition:all .3s cubic-bezier(.55,0,.55,.2);transition-duration:.15s}.md-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.md-truncate.md-clip{text-overflow:clip}.md-truncate.flex{width:0}.md-virtual-repeat-container{box-sizing:border-box;display:block;margin:0;overflow:hidden;padding:0;position:relative}.md-virtual-repeat-container .md-virtual-repeat-scroller{-webkit-overflow-scrolling:touch;bottom:0;box-sizing:border-box;left:0;margin:0;overflow-x:hidden;padding:0;position:absolute;right:0;top:0}.md-virtual-repeat-container .md-virtual-repeat-sizer{box-sizing:border-box;display:block;height:1px;margin:0;padding:0;width:1px}.md-virtual-repeat-container .md-virtual-repeat-offsetter{box-sizing:border-box;left:0;margin:0;padding:0;position:absolute;right:0;top:0}.md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-scroller{overflow-x:auto;overflow-y:hidden}.md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-offsetter{bottom:16px;right:auto;white-space:nowrap}[dir=rtl] .md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-offsetter{left:auto;right:auto}.md-whiteframe-1dp,.md-whiteframe-z1{box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12)}.md-whiteframe-2dp{box-shadow:0 1px 5px 0 rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12)}.md-whiteframe-3dp{box-shadow:0 1px 8px 0 rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 3px 3px -2px rgba(0,0,0,.12)}.md-whiteframe-4dp,.md-whiteframe-z2{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.md-whiteframe-5dp{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)}.md-whiteframe-6dp{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.md-whiteframe-7dp,.md-whiteframe-z3{box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)}.md-whiteframe-8dp{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.md-whiteframe-9dp{box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)}.md-whiteframe-10dp,.md-whiteframe-z4{box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)}.md-whiteframe-11dp{box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)}.md-whiteframe-12dp{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.md-whiteframe-13dp,.md-whiteframe-z5{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)}.md-whiteframe-14dp{box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)}.md-whiteframe-15dp{box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)}.md-whiteframe-16dp{box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.md-whiteframe-17dp{box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)}.md-whiteframe-18dp{box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)}.md-whiteframe-19dp{box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)}.md-whiteframe-20dp{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)}.md-whiteframe-21dp{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)}.md-whiteframe-22dp{box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)}.md-whiteframe-23dp{box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)}.md-whiteframe-24dp{box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)}@media screen and (-ms-high-contrast:active){md-whiteframe{border:1px solid #fff}}@media print{[md-whiteframe],md-whiteframe{background-color:#fff}}.ng-cloak,.x-ng-cloak,[data-ng-cloak],[ng-cloak],[ng\:cloak],[x-ng-cloak]{display:none!important}@-moz-document url-prefix(){.layout-fill{height:100%;margin:0;min-height:100%;width:100%}}.flex-order{order:0}.flex-order--20{order:-20}.flex-order--19{order:-19}.flex-order--18{order:-18}.flex-order--17{order:-17}.flex-order--16{order:-16}.flex-order--15{order:-15}.flex-order--14{order:-14}.flex-order--13{order:-13}.flex-order--12{order:-12}.flex-order--11{order:-11}.flex-order--10{order:-10}.flex-order--9{order:-9}.flex-order--8{order:-8}.flex-order--7{order:-7}.flex-order--6{order:-6}.flex-order--5{order:-5}.flex-order--4{order:-4}.flex-order--3{order:-3}.flex-order--2{order:-2}.flex-order--1{order:-1}.flex-order-0{order:0}.flex-order-1{order:1}.flex-order-2{order:2}.flex-order-3{order:3}.flex-order-4{order:4}.flex-order-5{order:5}.flex-order-6{order:6}.flex-order-7{order:7}.flex-order-8{order:8}.flex-order-9{order:9}.flex-order-10{order:10}.flex-order-11{order:11}.flex-order-12{order:12}.flex-order-13{order:13}.flex-order-14{order:14}.flex-order-15{order:15}.flex-order-16{order:16}.flex-order-17{order:17}.flex-order-18{order:18}.flex-order-19{order:19}.flex-order-20{order:20}.flex-offset-0,.layout-margin .flex-offset-0,.layout-margin .offset-0,.offset-0{margin-left:0}[dir=rtl] .flex-offset-0,[dir=rtl] .layout-margin .flex-offset-0,[dir=rtl] .layout-margin .offset-0,[dir=rtl] .offset-0{margin-left:auto;margin-right:0}.flex-offset-5,.layout-margin .flex-offset-5,.layout-margin .offset-5,.offset-5{margin-left:5%}[dir=rtl] .flex-offset-5,[dir=rtl] .layout-margin .flex-offset-5,[dir=rtl] .layout-margin .offset-5,[dir=rtl] .offset-5{margin-left:auto;margin-right:5%}.flex-offset-10,.layout-margin .flex-offset-10,.layout-margin .offset-10,.offset-10{margin-left:10%}[dir=rtl] .flex-offset-10,[dir=rtl] .layout-margin .flex-offset-10,[dir=rtl] .layout-margin .offset-10,[dir=rtl] .offset-10{margin-left:auto;margin-right:10%}.flex-offset-15,.layout-margin .flex-offset-15,.layout-margin .offset-15,.offset-15{margin-left:15%}[dir=rtl] .flex-offset-15,[dir=rtl] .layout-margin .flex-offset-15,[dir=rtl] .layout-margin .offset-15,[dir=rtl] .offset-15{margin-left:auto;margin-right:15%}.flex-offset-20,.layout-margin .flex-offset-20,.layout-margin .offset-20,.offset-20{margin-left:20%}[dir=rtl] .flex-offset-20,[dir=rtl] .layout-margin .flex-offset-20,[dir=rtl] .layout-margin .offset-20,[dir=rtl] .offset-20{margin-left:auto;margin-right:20%}.flex-offset-25,.layout-margin .flex-offset-25,.layout-margin .offset-25,.offset-25{margin-left:25%}[dir=rtl] .flex-offset-25,[dir=rtl] .layout-margin .flex-offset-25,[dir=rtl] .layout-margin .offset-25,[dir=rtl] .offset-25{margin-left:auto;margin-right:25%}.flex-offset-30,.layout-margin .flex-offset-30,.layout-margin .offset-30,.offset-30{margin-left:30%}[dir=rtl] .flex-offset-30,[dir=rtl] .layout-margin .flex-offset-30,[dir=rtl] .layout-margin .offset-30,[dir=rtl] .offset-30{margin-left:auto;margin-right:30%}.flex-offset-35,.layout-margin .flex-offset-35,.layout-margin .offset-35,.offset-35{margin-left:35%}[dir=rtl] .flex-offset-35,[dir=rtl] .layout-margin .flex-offset-35,[dir=rtl] .layout-margin .offset-35,[dir=rtl] .offset-35{margin-left:auto;margin-right:35%}.flex-offset-40,.layout-margin .flex-offset-40,.layout-margin .offset-40,.offset-40{margin-left:40%}[dir=rtl] .flex-offset-40,[dir=rtl] .layout-margin .flex-offset-40,[dir=rtl] .layout-margin .offset-40,[dir=rtl] .offset-40{margin-left:auto;margin-right:40%}.flex-offset-45,.layout-margin .flex-offset-45,.layout-margin .offset-45,.offset-45{margin-left:45%}[dir=rtl] .flex-offset-45,[dir=rtl] .layout-margin .flex-offset-45,[dir=rtl] .layout-margin .offset-45,[dir=rtl] .offset-45{margin-left:auto;margin-right:45%}.flex-offset-50,.layout-margin .flex-offset-50,.layout-margin .offset-50,.offset-50{margin-left:50%}[dir=rtl] .flex-offset-50,[dir=rtl] .layout-margin .flex-offset-50,[dir=rtl] .layout-margin .offset-50,[dir=rtl] .offset-50{margin-left:auto;margin-right:50%}.flex-offset-55,.layout-margin .flex-offset-55,.layout-margin .offset-55,.offset-55{margin-left:55%}[dir=rtl] .flex-offset-55,[dir=rtl] .layout-margin .flex-offset-55,[dir=rtl] .layout-margin .offset-55,[dir=rtl] .offset-55{margin-left:auto;margin-right:55%}.flex-offset-60,.layout-margin .flex-offset-60,.layout-margin .offset-60,.offset-60{margin-left:60%}[dir=rtl] .flex-offset-60,[dir=rtl] .layout-margin .flex-offset-60,[dir=rtl] .layout-margin .offset-60,[dir=rtl] .offset-60{margin-left:auto;margin-right:60%}.flex-offset-65,.layout-margin .flex-offset-65,.layout-margin .offset-65,.offset-65{margin-left:65%}[dir=rtl] .flex-offset-65,[dir=rtl] .layout-margin .flex-offset-65,[dir=rtl] .layout-margin .offset-65,[dir=rtl] .offset-65{margin-left:auto;margin-right:65%}.flex-offset-70,.layout-margin .flex-offset-70,.layout-margin .offset-70,.offset-70{margin-left:70%}[dir=rtl] .flex-offset-70,[dir=rtl] .layout-margin .flex-offset-70,[dir=rtl] .layout-margin .offset-70,[dir=rtl] .offset-70{margin-left:auto;margin-right:70%}.flex-offset-75,.layout-margin .flex-offset-75,.layout-margin .offset-75,.offset-75{margin-left:75%}[dir=rtl] .flex-offset-75,[dir=rtl] .layout-margin .flex-offset-75,[dir=rtl] .layout-margin .offset-75,[dir=rtl] .offset-75{margin-left:auto;margin-right:75%}.flex-offset-80,.layout-margin .flex-offset-80,.layout-margin .offset-80,.offset-80{margin-left:80%}[dir=rtl] .flex-offset-80,[dir=rtl] .layout-margin .flex-offset-80,[dir=rtl] .layout-margin .offset-80,[dir=rtl] .offset-80{margin-left:auto;margin-right:80%}.flex-offset-85,.layout-margin .flex-offset-85,.layout-margin .offset-85,.offset-85{margin-left:85%}[dir=rtl] .flex-offset-85,[dir=rtl] .layout-margin .flex-offset-85,[dir=rtl] .layout-margin .offset-85,[dir=rtl] .offset-85{margin-left:auto;margin-right:85%}.flex-offset-90,.layout-margin .flex-offset-90,.layout-margin .offset-90,.offset-90{margin-left:90%}[dir=rtl] .flex-offset-90,[dir=rtl] .layout-margin .flex-offset-90,[dir=rtl] .layout-margin .offset-90,[dir=rtl] .offset-90{margin-left:auto;margin-right:90%}.flex-offset-95,.layout-margin .flex-offset-95,.layout-margin .offset-95,.offset-95{margin-left:95%}[dir=rtl] .flex-offset-95,[dir=rtl] .layout-margin .flex-offset-95,[dir=rtl] .layout-margin .offset-95,[dir=rtl] .offset-95{margin-left:auto;margin-right:95%}.flex-offset-33,.layout-margin .flex-offset-33,.layout-margin .offset-33,.offset-33{margin-left:33.3333333333%}.flex-offset-66,.layout-margin .flex-offset-66,.layout-margin .offset-66,.offset-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-66,[dir=rtl] .layout-margin .flex-offset-66,[dir=rtl] .layout-margin .offset-66,[dir=rtl] .offset-66{margin-left:auto;margin-right:66.6666666667%}.layout-align,.layout-align-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-start,.layout-align-start-center,.layout-align-start-end,.layout-align-start-start,.layout-align-start-stretch{justify-content:flex-start}.layout-align-center,.layout-align-center-center,.layout-align-center-end,.layout-align-center-start,.layout-align-center-stretch{justify-content:center}.layout-align-end,.layout-align-end-center,.layout-align-end-end,.layout-align-end-start,.layout-align-end-stretch{justify-content:flex-end}.layout-align-space-around,.layout-align-space-around-center,.layout-align-space-around-end,.layout-align-space-around-start,.layout-align-space-around-stretch{justify-content:space-around}.layout-align-space-between,.layout-align-space-between-center,.layout-align-space-between-end,.layout-align-space-between-start,.layout-align-space-between-stretch{justify-content:space-between}.layout-align-center-start,.layout-align-end-start,.layout-align-space-around-start,.layout-align-space-between-start,.layout-align-start-start{align-content:flex-start;align-items:flex-start}.layout-align-center-center,.layout-align-end-center,.layout-align-space-around-center,.layout-align-space-between-center,.layout-align-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-center-center>*,.layout-align-end-center>*,.layout-align-space-around-center>*,.layout-align-space-between-center>*,.layout-align-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-center-end,.layout-align-end-end,.layout-align-space-around-end,.layout-align-space-between-end,.layout-align-start-end{align-content:flex-end;align-items:flex-end}.layout-align-center-stretch,.layout-align-end-stretch,.layout-align-space-around-stretch,.layout-align-space-between-stretch,.layout-align-start-stretch{align-content:stretch;align-items:stretch}.flex{flex:1}.flex,.flex-grow{box-sizing:border-box}.flex-grow{flex:1 1 100%}.flex-initial{box-sizing:border-box;flex:0 1 auto}.flex-auto{box-sizing:border-box;flex:1 1 auto}.flex-none{box-sizing:border-box;flex:0 0 auto}.flex-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-0,.layout-row>.flex-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-0{min-width:0}.layout-column>.flex-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.flex-5,.layout-row>.flex-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-10,.layout-row>.flex-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-15,.layout-row>.flex-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-20,.layout-row>.flex-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-25,.layout-row>.flex-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-30,.layout-row>.flex-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-35,.layout-row>.flex-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-40,.layout-row>.flex-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-45,.layout-row>.flex-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-50,.layout-row>.flex-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-55,.layout-row>.flex-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-60,.layout-row>.flex-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-65,.layout-row>.flex-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-70,.layout-row>.flex-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-75,.layout-row>.flex-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-80,.layout-row>.flex-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-85,.layout-row>.flex-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-90,.layout-row>.flex-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-95,.layout-row>.flex-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-95{max-height:95%}.flex-100,.layout-column>.flex-95{box-sizing:border-box;flex:1 1 100%;max-width:100%}.flex-100{max-height:100%}.layout-column>.flex-100,.layout-row>.flex-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.flex-33{max-width:33.33%}.flex-33,.flex-66{box-sizing:border-box;flex:1 1 100%;max-height:100%}.flex-66{max-width:66.66%}.layout-row>.flex-33{flex:1 1 33.33%}.layout-row>.flex-66{flex:1 1 66.66%}.layout-column>.flex-33{flex:1 1 33.33%}.layout-column>.flex-66{flex:1 1 66.66%}.layout-row>.flex-33{max-width:33.33%}.layout-row>.flex-33,.layout-row>.flex-66{box-sizing:border-box;flex:1 1 100%;max-height:100%}.layout-row>.flex-66{max-width:66.66%}.layout-row>.flex{min-width:0}.layout-column>.flex-33{max-height:33.33%}.layout-column>.flex-33,.layout-column>.flex-66{box-sizing:border-box;flex:1 1 100%;max-width:100%}.layout-column>.flex-66{max-height:66.66%}.layout-column>.flex{min-height:0}.layout,.layout-column,.layout-row{box-sizing:border-box;display:flex}.layout-column{flex-direction:column}.layout-row{flex-direction:row}.layout-padding-sm>*,.layout-padding>.flex-sm{padding:4px}.layout-padding,.layout-padding-gt-sm,.layout-padding-gt-sm>*,.layout-padding-md,.layout-padding-md>*,.layout-padding>*,.layout-padding>.flex,.layout-padding>.flex-gt-sm,.layout-padding>.flex-md{padding:8px}.layout-padding-gt-lg>*,.layout-padding-gt-md>*,.layout-padding-lg>*,.layout-padding>.flex-gt-lg,.layout-padding>.flex-gt-md,.layout-padding>.flex-lg{padding:16px}.layout-margin-sm>*,.layout-margin>.flex-sm{margin:4px}.layout-margin,.layout-margin-gt-sm,.layout-margin-gt-sm>*,.layout-margin-md,.layout-margin-md>*,.layout-margin>*,.layout-margin>.flex,.layout-margin>.flex-gt-sm,.layout-margin>.flex-md{margin:8px}.layout-margin-gt-lg>*,.layout-margin-gt-md>*,.layout-margin-lg>*,.layout-margin>.flex-gt-lg,.layout-margin>.flex-gt-md,.layout-margin>.flex-lg{margin:16px}.layout-wrap{flex-wrap:wrap}.layout-nowrap{flex-wrap:nowrap}.layout-fill{height:100%;margin:0;min-height:100%;width:100%}@media (max-width:599px){.hide-xs:not(.show-xs):not(.show),.hide:not(.show-xs):not(.show){display:none}.flex-order-xs--20{order:-20}.flex-order-xs--19{order:-19}.flex-order-xs--18{order:-18}.flex-order-xs--17{order:-17}.flex-order-xs--16{order:-16}.flex-order-xs--15{order:-15}.flex-order-xs--14{order:-14}.flex-order-xs--13{order:-13}.flex-order-xs--12{order:-12}.flex-order-xs--11{order:-11}.flex-order-xs--10{order:-10}.flex-order-xs--9{order:-9}.flex-order-xs--8{order:-8}.flex-order-xs--7{order:-7}.flex-order-xs--6{order:-6}.flex-order-xs--5{order:-5}.flex-order-xs--4{order:-4}.flex-order-xs--3{order:-3}.flex-order-xs--2{order:-2}.flex-order-xs--1{order:-1}.flex-order-xs-0{order:0}.flex-order-xs-1{order:1}.flex-order-xs-2{order:2}.flex-order-xs-3{order:3}.flex-order-xs-4{order:4}.flex-order-xs-5{order:5}.flex-order-xs-6{order:6}.flex-order-xs-7{order:7}.flex-order-xs-8{order:8}.flex-order-xs-9{order:9}.flex-order-xs-10{order:10}.flex-order-xs-11{order:11}.flex-order-xs-12{order:12}.flex-order-xs-13{order:13}.flex-order-xs-14{order:14}.flex-order-xs-15{order:15}.flex-order-xs-16{order:16}.flex-order-xs-17{order:17}.flex-order-xs-18{order:18}.flex-order-xs-19{order:19}.flex-order-xs-20{order:20}.flex-offset-xs-0,.layout-margin .flex-offset-xs-0,.layout-margin .offset-xs-0,.offset-xs-0{margin-left:0}[dir=rtl] .flex-offset-xs-0,[dir=rtl] .layout-margin .flex-offset-xs-0,[dir=rtl] .layout-margin .offset-xs-0,[dir=rtl] .offset-xs-0{margin-left:auto;margin-right:0}.flex-offset-xs-5,.layout-margin .flex-offset-xs-5,.layout-margin .offset-xs-5,.offset-xs-5{margin-left:5%}[dir=rtl] .flex-offset-xs-5,[dir=rtl] .layout-margin .flex-offset-xs-5,[dir=rtl] .layout-margin .offset-xs-5,[dir=rtl] .offset-xs-5{margin-left:auto;margin-right:5%}.flex-offset-xs-10,.layout-margin .flex-offset-xs-10,.layout-margin .offset-xs-10,.offset-xs-10{margin-left:10%}[dir=rtl] .flex-offset-xs-10,[dir=rtl] .layout-margin .flex-offset-xs-10,[dir=rtl] .layout-margin .offset-xs-10,[dir=rtl] .offset-xs-10{margin-left:auto;margin-right:10%}.flex-offset-xs-15,.layout-margin .flex-offset-xs-15,.layout-margin .offset-xs-15,.offset-xs-15{margin-left:15%}[dir=rtl] .flex-offset-xs-15,[dir=rtl] .layout-margin .flex-offset-xs-15,[dir=rtl] .layout-margin .offset-xs-15,[dir=rtl] .offset-xs-15{margin-left:auto;margin-right:15%}.flex-offset-xs-20,.layout-margin .flex-offset-xs-20,.layout-margin .offset-xs-20,.offset-xs-20{margin-left:20%}[dir=rtl] .flex-offset-xs-20,[dir=rtl] .layout-margin .flex-offset-xs-20,[dir=rtl] .layout-margin .offset-xs-20,[dir=rtl] .offset-xs-20{margin-left:auto;margin-right:20%}.flex-offset-xs-25,.layout-margin .flex-offset-xs-25,.layout-margin .offset-xs-25,.offset-xs-25{margin-left:25%}[dir=rtl] .flex-offset-xs-25,[dir=rtl] .layout-margin .flex-offset-xs-25,[dir=rtl] .layout-margin .offset-xs-25,[dir=rtl] .offset-xs-25{margin-left:auto;margin-right:25%}.flex-offset-xs-30,.layout-margin .flex-offset-xs-30,.layout-margin .offset-xs-30,.offset-xs-30{margin-left:30%}[dir=rtl] .flex-offset-xs-30,[dir=rtl] .layout-margin .flex-offset-xs-30,[dir=rtl] .layout-margin .offset-xs-30,[dir=rtl] .offset-xs-30{margin-left:auto;margin-right:30%}.flex-offset-xs-35,.layout-margin .flex-offset-xs-35,.layout-margin .offset-xs-35,.offset-xs-35{margin-left:35%}[dir=rtl] .flex-offset-xs-35,[dir=rtl] .layout-margin .flex-offset-xs-35,[dir=rtl] .layout-margin .offset-xs-35,[dir=rtl] .offset-xs-35{margin-left:auto;margin-right:35%}.flex-offset-xs-40,.layout-margin .flex-offset-xs-40,.layout-margin .offset-xs-40,.offset-xs-40{margin-left:40%}[dir=rtl] .flex-offset-xs-40,[dir=rtl] .layout-margin .flex-offset-xs-40,[dir=rtl] .layout-margin .offset-xs-40,[dir=rtl] .offset-xs-40{margin-left:auto;margin-right:40%}.flex-offset-xs-45,.layout-margin .flex-offset-xs-45,.layout-margin .offset-xs-45,.offset-xs-45{margin-left:45%}[dir=rtl] .flex-offset-xs-45,[dir=rtl] .layout-margin .flex-offset-xs-45,[dir=rtl] .layout-margin .offset-xs-45,[dir=rtl] .offset-xs-45{margin-left:auto;margin-right:45%}.flex-offset-xs-50,.layout-margin .flex-offset-xs-50,.layout-margin .offset-xs-50,.offset-xs-50{margin-left:50%}[dir=rtl] .flex-offset-xs-50,[dir=rtl] .layout-margin .flex-offset-xs-50,[dir=rtl] .layout-margin .offset-xs-50,[dir=rtl] .offset-xs-50{margin-left:auto;margin-right:50%}.flex-offset-xs-55,.layout-margin .flex-offset-xs-55,.layout-margin .offset-xs-55,.offset-xs-55{margin-left:55%}[dir=rtl] .flex-offset-xs-55,[dir=rtl] .layout-margin .flex-offset-xs-55,[dir=rtl] .layout-margin .offset-xs-55,[dir=rtl] .offset-xs-55{margin-left:auto;margin-right:55%}.flex-offset-xs-60,.layout-margin .flex-offset-xs-60,.layout-margin .offset-xs-60,.offset-xs-60{margin-left:60%}[dir=rtl] .flex-offset-xs-60,[dir=rtl] .layout-margin .flex-offset-xs-60,[dir=rtl] .layout-margin .offset-xs-60,[dir=rtl] .offset-xs-60{margin-left:auto;margin-right:60%}.flex-offset-xs-65,.layout-margin .flex-offset-xs-65,.layout-margin .offset-xs-65,.offset-xs-65{margin-left:65%}[dir=rtl] .flex-offset-xs-65,[dir=rtl] .layout-margin .flex-offset-xs-65,[dir=rtl] .layout-margin .offset-xs-65,[dir=rtl] .offset-xs-65{margin-left:auto;margin-right:65%}.flex-offset-xs-70,.layout-margin .flex-offset-xs-70,.layout-margin .offset-xs-70,.offset-xs-70{margin-left:70%}[dir=rtl] .flex-offset-xs-70,[dir=rtl] .layout-margin .flex-offset-xs-70,[dir=rtl] .layout-margin .offset-xs-70,[dir=rtl] .offset-xs-70{margin-left:auto;margin-right:70%}.flex-offset-xs-75,.layout-margin .flex-offset-xs-75,.layout-margin .offset-xs-75,.offset-xs-75{margin-left:75%}[dir=rtl] .flex-offset-xs-75,[dir=rtl] .layout-margin .flex-offset-xs-75,[dir=rtl] .layout-margin .offset-xs-75,[dir=rtl] .offset-xs-75{margin-left:auto;margin-right:75%}.flex-offset-xs-80,.layout-margin .flex-offset-xs-80,.layout-margin .offset-xs-80,.offset-xs-80{margin-left:80%}[dir=rtl] .flex-offset-xs-80,[dir=rtl] .layout-margin .flex-offset-xs-80,[dir=rtl] .layout-margin .offset-xs-80,[dir=rtl] .offset-xs-80{margin-left:auto;margin-right:80%}.flex-offset-xs-85,.layout-margin .flex-offset-xs-85,.layout-margin .offset-xs-85,.offset-xs-85{margin-left:85%}[dir=rtl] .flex-offset-xs-85,[dir=rtl] .layout-margin .flex-offset-xs-85,[dir=rtl] .layout-margin .offset-xs-85,[dir=rtl] .offset-xs-85{margin-left:auto;margin-right:85%}.flex-offset-xs-90,.layout-margin .flex-offset-xs-90,.layout-margin .offset-xs-90,.offset-xs-90{margin-left:90%}[dir=rtl] .flex-offset-xs-90,[dir=rtl] .layout-margin .flex-offset-xs-90,[dir=rtl] .layout-margin .offset-xs-90,[dir=rtl] .offset-xs-90{margin-left:auto;margin-right:90%}.flex-offset-xs-95,.layout-margin .flex-offset-xs-95,.layout-margin .offset-xs-95,.offset-xs-95{margin-left:95%}[dir=rtl] .flex-offset-xs-95,[dir=rtl] .layout-margin .flex-offset-xs-95,[dir=rtl] .layout-margin .offset-xs-95,[dir=rtl] .offset-xs-95{margin-left:auto;margin-right:95%}.flex-offset-xs-33,.layout-margin .flex-offset-xs-33,.layout-margin .offset-xs-33,.offset-xs-33{margin-left:33.3333333333%}.flex-offset-xs-66,.layout-margin .flex-offset-xs-66,.layout-margin .offset-xs-66,.offset-xs-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-xs-66,[dir=rtl] .layout-margin .flex-offset-xs-66,[dir=rtl] .layout-margin .offset-xs-66,[dir=rtl] .offset-xs-66{margin-left:auto;margin-right:66.6666666667%}.layout-align-xs,.layout-align-xs-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-xs-start,.layout-align-xs-start-center,.layout-align-xs-start-end,.layout-align-xs-start-start,.layout-align-xs-start-stretch{justify-content:flex-start}.layout-align-xs-center,.layout-align-xs-center-center,.layout-align-xs-center-end,.layout-align-xs-center-start,.layout-align-xs-center-stretch{justify-content:center}.layout-align-xs-end,.layout-align-xs-end-center,.layout-align-xs-end-end,.layout-align-xs-end-start,.layout-align-xs-end-stretch{justify-content:flex-end}.layout-align-xs-space-around,.layout-align-xs-space-around-center,.layout-align-xs-space-around-end,.layout-align-xs-space-around-start,.layout-align-xs-space-around-stretch{justify-content:space-around}.layout-align-xs-space-between,.layout-align-xs-space-between-center,.layout-align-xs-space-between-end,.layout-align-xs-space-between-start,.layout-align-xs-space-between-stretch{justify-content:space-between}.layout-align-xs-center-start,.layout-align-xs-end-start,.layout-align-xs-space-around-start,.layout-align-xs-space-between-start,.layout-align-xs-start-start{align-content:flex-start;align-items:flex-start}.layout-align-xs-center-center,.layout-align-xs-end-center,.layout-align-xs-space-around-center,.layout-align-xs-space-between-center,.layout-align-xs-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-xs-center-center>*,.layout-align-xs-end-center>*,.layout-align-xs-space-around-center>*,.layout-align-xs-space-between-center>*,.layout-align-xs-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-xs-center-end,.layout-align-xs-end-end,.layout-align-xs-space-around-end,.layout-align-xs-space-between-end,.layout-align-xs-start-end{align-content:flex-end;align-items:flex-end}.layout-align-xs-center-stretch,.layout-align-xs-end-stretch,.layout-align-xs-space-around-stretch,.layout-align-xs-space-between-stretch,.layout-align-xs-start-stretch{align-content:stretch;align-items:stretch}.flex-xs{box-sizing:border-box;flex:1}.flex-xs-grow{box-sizing:border-box;flex:1 1 100%}.flex-xs-initial{box-sizing:border-box;flex:0 1 auto}.flex-xs-auto{box-sizing:border-box;flex:1 1 auto}.flex-xs-none{box-sizing:border-box;flex:0 0 auto}.flex-xs-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-xs-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-xs-0,.layout-row>.flex-xs-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-xs-0{min-width:0}.layout-column>.flex-xs-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.layout-xs-row>.flex-xs-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0;min-width:0}.layout-xs-column>.flex-xs-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%;min-height:0}.flex-xs-5,.layout-row>.flex-xs-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-xs-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.layout-xs-row>.flex-xs-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-xs-column>.flex-xs-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-xs-10,.layout-row>.flex-xs-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-xs-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.layout-xs-row>.flex-xs-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-xs-column>.flex-xs-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-xs-15,.layout-row>.flex-xs-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-xs-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.layout-xs-row>.flex-xs-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-xs-column>.flex-xs-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-xs-20,.layout-row>.flex-xs-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-xs-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.layout-xs-row>.flex-xs-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-xs-column>.flex-xs-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-xs-25,.layout-row>.flex-xs-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-xs-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.layout-xs-row>.flex-xs-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-xs-column>.flex-xs-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-xs-30,.layout-row>.flex-xs-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-xs-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.layout-xs-row>.flex-xs-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-xs-column>.flex-xs-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-xs-35,.layout-row>.flex-xs-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-xs-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.layout-xs-row>.flex-xs-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-xs-column>.flex-xs-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-xs-40,.layout-row>.flex-xs-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-xs-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.layout-xs-row>.flex-xs-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-xs-column>.flex-xs-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-xs-45,.layout-row>.flex-xs-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-xs-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.layout-xs-row>.flex-xs-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-xs-column>.flex-xs-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-xs-50,.layout-row>.flex-xs-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-xs-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.layout-xs-row>.flex-xs-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-xs-column>.flex-xs-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-xs-55,.layout-row>.flex-xs-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-xs-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.layout-xs-row>.flex-xs-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-xs-column>.flex-xs-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-xs-60,.layout-row>.flex-xs-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-xs-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.layout-xs-row>.flex-xs-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-xs-column>.flex-xs-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-xs-65,.layout-row>.flex-xs-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-xs-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.layout-xs-row>.flex-xs-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-xs-column>.flex-xs-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-xs-70,.layout-row>.flex-xs-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-xs-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.layout-xs-row>.flex-xs-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-xs-column>.flex-xs-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-xs-75,.layout-row>.flex-xs-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-xs-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.layout-xs-row>.flex-xs-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-xs-column>.flex-xs-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-xs-80,.layout-row>.flex-xs-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-xs-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.layout-xs-row>.flex-xs-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-xs-column>.flex-xs-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-xs-85,.layout-row>.flex-xs-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-xs-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.layout-xs-row>.flex-xs-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-xs-column>.flex-xs-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-xs-90,.layout-row>.flex-xs-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-xs-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.layout-xs-row>.flex-xs-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-xs-column>.flex-xs-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-xs-95,.layout-row>.flex-xs-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-xs-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.layout-xs-row>.flex-xs-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-xs-column>.flex-xs-95{max-height:95%}.flex-xs-100,.layout-xs-column>.flex-xs-95{box-sizing:border-box;flex:1 1 100%;max-width:100%}.flex-xs-100{max-height:100%}.layout-column>.flex-xs-100,.layout-row>.flex-xs-100,.layout-xs-column>.flex-xs-100,.layout-xs-row>.flex-xs-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.layout-row>.flex-xs-33{box-sizing:border-box;flex:1 1 33.33%;max-height:100%;max-width:33.33%}.layout-row>.flex-xs-66{box-sizing:border-box;flex:1 1 66.66%;max-height:100%;max-width:66.66%}.layout-column>.flex-xs-33{box-sizing:border-box;flex:1 1 33.33%;max-height:33.33%;max-width:100%}.layout-column>.flex-xs-66{box-sizing:border-box;flex:1 1 66.66%;max-height:66.66%;max-width:100%}.layout-xs-row>.flex-xs-33{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:33.33%}.layout-xs-row>.flex-xs-66{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:66.66%}.layout-xs-row>.flex{min-width:0}.layout-xs-column>.flex-xs-33{box-sizing:border-box;flex:1 1 100%;max-height:33.33%;max-width:100%}.layout-xs-column>.flex-xs-66{box-sizing:border-box;flex:1 1 100%;max-height:66.66%;max-width:100%}.layout-xs-column>.flex{min-height:0}.layout-xs,.layout-xs-column,.layout-xs-row{box-sizing:border-box;display:flex}.layout-xs-column{flex-direction:column}.layout-xs-row{flex-direction:row}}@media (min-width:600px){.flex-order-gt-xs--20{order:-20}.flex-order-gt-xs--19{order:-19}.flex-order-gt-xs--18{order:-18}.flex-order-gt-xs--17{order:-17}.flex-order-gt-xs--16{order:-16}.flex-order-gt-xs--15{order:-15}.flex-order-gt-xs--14{order:-14}.flex-order-gt-xs--13{order:-13}.flex-order-gt-xs--12{order:-12}.flex-order-gt-xs--11{order:-11}.flex-order-gt-xs--10{order:-10}.flex-order-gt-xs--9{order:-9}.flex-order-gt-xs--8{order:-8}.flex-order-gt-xs--7{order:-7}.flex-order-gt-xs--6{order:-6}.flex-order-gt-xs--5{order:-5}.flex-order-gt-xs--4{order:-4}.flex-order-gt-xs--3{order:-3}.flex-order-gt-xs--2{order:-2}.flex-order-gt-xs--1{order:-1}.flex-order-gt-xs-0{order:0}.flex-order-gt-xs-1{order:1}.flex-order-gt-xs-2{order:2}.flex-order-gt-xs-3{order:3}.flex-order-gt-xs-4{order:4}.flex-order-gt-xs-5{order:5}.flex-order-gt-xs-6{order:6}.flex-order-gt-xs-7{order:7}.flex-order-gt-xs-8{order:8}.flex-order-gt-xs-9{order:9}.flex-order-gt-xs-10{order:10}.flex-order-gt-xs-11{order:11}.flex-order-gt-xs-12{order:12}.flex-order-gt-xs-13{order:13}.flex-order-gt-xs-14{order:14}.flex-order-gt-xs-15{order:15}.flex-order-gt-xs-16{order:16}.flex-order-gt-xs-17{order:17}.flex-order-gt-xs-18{order:18}.flex-order-gt-xs-19{order:19}.flex-order-gt-xs-20{order:20}.flex-offset-gt-xs-0,.layout-margin .flex-offset-gt-xs-0,.layout-margin .offset-gt-xs-0,.offset-gt-xs-0{margin-left:0}[dir=rtl] .flex-offset-gt-xs-0,[dir=rtl] .layout-margin .flex-offset-gt-xs-0,[dir=rtl] .layout-margin .offset-gt-xs-0,[dir=rtl] .offset-gt-xs-0{margin-left:auto;margin-right:0}.flex-offset-gt-xs-5,.layout-margin .flex-offset-gt-xs-5,.layout-margin .offset-gt-xs-5,.offset-gt-xs-5{margin-left:5%}[dir=rtl] .flex-offset-gt-xs-5,[dir=rtl] .layout-margin .flex-offset-gt-xs-5,[dir=rtl] .layout-margin .offset-gt-xs-5,[dir=rtl] .offset-gt-xs-5{margin-left:auto;margin-right:5%}.flex-offset-gt-xs-10,.layout-margin .flex-offset-gt-xs-10,.layout-margin .offset-gt-xs-10,.offset-gt-xs-10{margin-left:10%}[dir=rtl] .flex-offset-gt-xs-10,[dir=rtl] .layout-margin .flex-offset-gt-xs-10,[dir=rtl] .layout-margin .offset-gt-xs-10,[dir=rtl] .offset-gt-xs-10{margin-left:auto;margin-right:10%}.flex-offset-gt-xs-15,.layout-margin .flex-offset-gt-xs-15,.layout-margin .offset-gt-xs-15,.offset-gt-xs-15{margin-left:15%}[dir=rtl] .flex-offset-gt-xs-15,[dir=rtl] .layout-margin .flex-offset-gt-xs-15,[dir=rtl] .layout-margin .offset-gt-xs-15,[dir=rtl] .offset-gt-xs-15{margin-left:auto;margin-right:15%}.flex-offset-gt-xs-20,.layout-margin .flex-offset-gt-xs-20,.layout-margin .offset-gt-xs-20,.offset-gt-xs-20{margin-left:20%}[dir=rtl] .flex-offset-gt-xs-20,[dir=rtl] .layout-margin .flex-offset-gt-xs-20,[dir=rtl] .layout-margin .offset-gt-xs-20,[dir=rtl] .offset-gt-xs-20{margin-left:auto;margin-right:20%}.flex-offset-gt-xs-25,.layout-margin .flex-offset-gt-xs-25,.layout-margin .offset-gt-xs-25,.offset-gt-xs-25{margin-left:25%}[dir=rtl] .flex-offset-gt-xs-25,[dir=rtl] .layout-margin .flex-offset-gt-xs-25,[dir=rtl] .layout-margin .offset-gt-xs-25,[dir=rtl] .offset-gt-xs-25{margin-left:auto;margin-right:25%}.flex-offset-gt-xs-30,.layout-margin .flex-offset-gt-xs-30,.layout-margin .offset-gt-xs-30,.offset-gt-xs-30{margin-left:30%}[dir=rtl] .flex-offset-gt-xs-30,[dir=rtl] .layout-margin .flex-offset-gt-xs-30,[dir=rtl] .layout-margin .offset-gt-xs-30,[dir=rtl] .offset-gt-xs-30{margin-left:auto;margin-right:30%}.flex-offset-gt-xs-35,.layout-margin .flex-offset-gt-xs-35,.layout-margin .offset-gt-xs-35,.offset-gt-xs-35{margin-left:35%}[dir=rtl] .flex-offset-gt-xs-35,[dir=rtl] .layout-margin .flex-offset-gt-xs-35,[dir=rtl] .layout-margin .offset-gt-xs-35,[dir=rtl] .offset-gt-xs-35{margin-left:auto;margin-right:35%}.flex-offset-gt-xs-40,.layout-margin .flex-offset-gt-xs-40,.layout-margin .offset-gt-xs-40,.offset-gt-xs-40{margin-left:40%}[dir=rtl] .flex-offset-gt-xs-40,[dir=rtl] .layout-margin .flex-offset-gt-xs-40,[dir=rtl] .layout-margin .offset-gt-xs-40,[dir=rtl] .offset-gt-xs-40{margin-left:auto;margin-right:40%}.flex-offset-gt-xs-45,.layout-margin .flex-offset-gt-xs-45,.layout-margin .offset-gt-xs-45,.offset-gt-xs-45{margin-left:45%}[dir=rtl] .flex-offset-gt-xs-45,[dir=rtl] .layout-margin .flex-offset-gt-xs-45,[dir=rtl] .layout-margin .offset-gt-xs-45,[dir=rtl] .offset-gt-xs-45{margin-left:auto;margin-right:45%}.flex-offset-gt-xs-50,.layout-margin .flex-offset-gt-xs-50,.layout-margin .offset-gt-xs-50,.offset-gt-xs-50{margin-left:50%}[dir=rtl] .flex-offset-gt-xs-50,[dir=rtl] .layout-margin .flex-offset-gt-xs-50,[dir=rtl] .layout-margin .offset-gt-xs-50,[dir=rtl] .offset-gt-xs-50{margin-left:auto;margin-right:50%}.flex-offset-gt-xs-55,.layout-margin .flex-offset-gt-xs-55,.layout-margin .offset-gt-xs-55,.offset-gt-xs-55{margin-left:55%}[dir=rtl] .flex-offset-gt-xs-55,[dir=rtl] .layout-margin .flex-offset-gt-xs-55,[dir=rtl] .layout-margin .offset-gt-xs-55,[dir=rtl] .offset-gt-xs-55{margin-left:auto;margin-right:55%}.flex-offset-gt-xs-60,.layout-margin .flex-offset-gt-xs-60,.layout-margin .offset-gt-xs-60,.offset-gt-xs-60{margin-left:60%}[dir=rtl] .flex-offset-gt-xs-60,[dir=rtl] .layout-margin .flex-offset-gt-xs-60,[dir=rtl] .layout-margin .offset-gt-xs-60,[dir=rtl] .offset-gt-xs-60{margin-left:auto;margin-right:60%}.flex-offset-gt-xs-65,.layout-margin .flex-offset-gt-xs-65,.layout-margin .offset-gt-xs-65,.offset-gt-xs-65{margin-left:65%}[dir=rtl] .flex-offset-gt-xs-65,[dir=rtl] .layout-margin .flex-offset-gt-xs-65,[dir=rtl] .layout-margin .offset-gt-xs-65,[dir=rtl] .offset-gt-xs-65{margin-left:auto;margin-right:65%}.flex-offset-gt-xs-70,.layout-margin .flex-offset-gt-xs-70,.layout-margin .offset-gt-xs-70,.offset-gt-xs-70{margin-left:70%}[dir=rtl] .flex-offset-gt-xs-70,[dir=rtl] .layout-margin .flex-offset-gt-xs-70,[dir=rtl] .layout-margin .offset-gt-xs-70,[dir=rtl] .offset-gt-xs-70{margin-left:auto;margin-right:70%}.flex-offset-gt-xs-75,.layout-margin .flex-offset-gt-xs-75,.layout-margin .offset-gt-xs-75,.offset-gt-xs-75{margin-left:75%}[dir=rtl] .flex-offset-gt-xs-75,[dir=rtl] .layout-margin .flex-offset-gt-xs-75,[dir=rtl] .layout-margin .offset-gt-xs-75,[dir=rtl] .offset-gt-xs-75{margin-left:auto;margin-right:75%}.flex-offset-gt-xs-80,.layout-margin .flex-offset-gt-xs-80,.layout-margin .offset-gt-xs-80,.offset-gt-xs-80{margin-left:80%}[dir=rtl] .flex-offset-gt-xs-80,[dir=rtl] .layout-margin .flex-offset-gt-xs-80,[dir=rtl] .layout-margin .offset-gt-xs-80,[dir=rtl] .offset-gt-xs-80{margin-left:auto;margin-right:80%}.flex-offset-gt-xs-85,.layout-margin .flex-offset-gt-xs-85,.layout-margin .offset-gt-xs-85,.offset-gt-xs-85{margin-left:85%}[dir=rtl] .flex-offset-gt-xs-85,[dir=rtl] .layout-margin .flex-offset-gt-xs-85,[dir=rtl] .layout-margin .offset-gt-xs-85,[dir=rtl] .offset-gt-xs-85{margin-left:auto;margin-right:85%}.flex-offset-gt-xs-90,.layout-margin .flex-offset-gt-xs-90,.layout-margin .offset-gt-xs-90,.offset-gt-xs-90{margin-left:90%}[dir=rtl] .flex-offset-gt-xs-90,[dir=rtl] .layout-margin .flex-offset-gt-xs-90,[dir=rtl] .layout-margin .offset-gt-xs-90,[dir=rtl] .offset-gt-xs-90{margin-left:auto;margin-right:90%}.flex-offset-gt-xs-95,.layout-margin .flex-offset-gt-xs-95,.layout-margin .offset-gt-xs-95,.offset-gt-xs-95{margin-left:95%}[dir=rtl] .flex-offset-gt-xs-95,[dir=rtl] .layout-margin .flex-offset-gt-xs-95,[dir=rtl] .layout-margin .offset-gt-xs-95,[dir=rtl] .offset-gt-xs-95{margin-left:auto;margin-right:95%}.flex-offset-gt-xs-33,.layout-margin .flex-offset-gt-xs-33,.layout-margin .offset-gt-xs-33,.offset-gt-xs-33{margin-left:33.3333333333%}.flex-offset-gt-xs-66,.layout-margin .flex-offset-gt-xs-66,.layout-margin .offset-gt-xs-66,.offset-gt-xs-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-gt-xs-66,[dir=rtl] .layout-margin .flex-offset-gt-xs-66,[dir=rtl] .layout-margin .offset-gt-xs-66,[dir=rtl] .offset-gt-xs-66{margin-left:auto;margin-right:66.6666666667%}.layout-align-gt-xs,.layout-align-gt-xs-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-gt-xs-start,.layout-align-gt-xs-start-center,.layout-align-gt-xs-start-end,.layout-align-gt-xs-start-start,.layout-align-gt-xs-start-stretch{justify-content:flex-start}.layout-align-gt-xs-center,.layout-align-gt-xs-center-center,.layout-align-gt-xs-center-end,.layout-align-gt-xs-center-start,.layout-align-gt-xs-center-stretch{justify-content:center}.layout-align-gt-xs-end,.layout-align-gt-xs-end-center,.layout-align-gt-xs-end-end,.layout-align-gt-xs-end-start,.layout-align-gt-xs-end-stretch{justify-content:flex-end}.layout-align-gt-xs-space-around,.layout-align-gt-xs-space-around-center,.layout-align-gt-xs-space-around-end,.layout-align-gt-xs-space-around-start,.layout-align-gt-xs-space-around-stretch{justify-content:space-around}.layout-align-gt-xs-space-between,.layout-align-gt-xs-space-between-center,.layout-align-gt-xs-space-between-end,.layout-align-gt-xs-space-between-start,.layout-align-gt-xs-space-between-stretch{justify-content:space-between}.layout-align-gt-xs-center-start,.layout-align-gt-xs-end-start,.layout-align-gt-xs-space-around-start,.layout-align-gt-xs-space-between-start,.layout-align-gt-xs-start-start{align-content:flex-start;align-items:flex-start}.layout-align-gt-xs-center-center,.layout-align-gt-xs-end-center,.layout-align-gt-xs-space-around-center,.layout-align-gt-xs-space-between-center,.layout-align-gt-xs-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-gt-xs-center-center>*,.layout-align-gt-xs-end-center>*,.layout-align-gt-xs-space-around-center>*,.layout-align-gt-xs-space-between-center>*,.layout-align-gt-xs-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-gt-xs-center-end,.layout-align-gt-xs-end-end,.layout-align-gt-xs-space-around-end,.layout-align-gt-xs-space-between-end,.layout-align-gt-xs-start-end{align-content:flex-end;align-items:flex-end}.layout-align-gt-xs-center-stretch,.layout-align-gt-xs-end-stretch,.layout-align-gt-xs-space-around-stretch,.layout-align-gt-xs-space-between-stretch,.layout-align-gt-xs-start-stretch{align-content:stretch;align-items:stretch}.flex-gt-xs{box-sizing:border-box;flex:1}.flex-gt-xs-grow{box-sizing:border-box;flex:1 1 100%}.flex-gt-xs-initial{box-sizing:border-box;flex:0 1 auto}.flex-gt-xs-auto{box-sizing:border-box;flex:1 1 auto}.flex-gt-xs-none{box-sizing:border-box;flex:0 0 auto}.flex-gt-xs-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-gt-xs-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-gt-xs-0,.layout-row>.flex-gt-xs-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-gt-xs-0{min-width:0}.layout-column>.flex-gt-xs-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0;min-width:0}.layout-gt-xs-column>.flex-gt-xs-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%;min-height:0}.flex-gt-xs-5,.layout-row>.flex-gt-xs-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-gt-xs-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-gt-xs-column>.flex-gt-xs-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-gt-xs-10,.layout-row>.flex-gt-xs-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-gt-xs-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-gt-xs-column>.flex-gt-xs-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-gt-xs-15,.layout-row>.flex-gt-xs-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-gt-xs-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-gt-xs-column>.flex-gt-xs-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-gt-xs-20,.layout-row>.flex-gt-xs-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-gt-xs-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-gt-xs-column>.flex-gt-xs-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-gt-xs-25,.layout-row>.flex-gt-xs-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-gt-xs-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-gt-xs-column>.flex-gt-xs-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-gt-xs-30,.layout-row>.flex-gt-xs-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-gt-xs-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-gt-xs-column>.flex-gt-xs-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-gt-xs-35,.layout-row>.flex-gt-xs-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-gt-xs-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-gt-xs-column>.flex-gt-xs-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-gt-xs-40,.layout-row>.flex-gt-xs-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-gt-xs-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-gt-xs-column>.flex-gt-xs-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-gt-xs-45,.layout-row>.flex-gt-xs-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-gt-xs-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-gt-xs-column>.flex-gt-xs-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-gt-xs-50,.layout-row>.flex-gt-xs-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-gt-xs-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-gt-xs-column>.flex-gt-xs-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-gt-xs-55,.layout-row>.flex-gt-xs-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-gt-xs-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-gt-xs-column>.flex-gt-xs-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-gt-xs-60,.layout-row>.flex-gt-xs-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-gt-xs-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-gt-xs-column>.flex-gt-xs-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-gt-xs-65,.layout-row>.flex-gt-xs-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-gt-xs-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-gt-xs-column>.flex-gt-xs-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-gt-xs-70,.layout-row>.flex-gt-xs-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-gt-xs-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-gt-xs-column>.flex-gt-xs-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-gt-xs-75,.layout-row>.flex-gt-xs-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-gt-xs-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-gt-xs-column>.flex-gt-xs-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-gt-xs-80,.layout-row>.flex-gt-xs-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-gt-xs-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-gt-xs-column>.flex-gt-xs-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-gt-xs-85,.layout-row>.flex-gt-xs-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-gt-xs-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-gt-xs-column>.flex-gt-xs-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-gt-xs-90,.layout-row>.flex-gt-xs-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-gt-xs-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-gt-xs-column>.flex-gt-xs-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-gt-xs-95,.layout-row>.flex-gt-xs-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-gt-xs-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-gt-xs-column>.flex-gt-xs-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.flex-gt-xs-100,.layout-column>.flex-gt-xs-100,.layout-gt-xs-column>.flex-gt-xs-100,.layout-gt-xs-row>.flex-gt-xs-100,.layout-row>.flex-gt-xs-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.layout-row>.flex-gt-xs-33{box-sizing:border-box;flex:1 1 33.33%;max-height:100%;max-width:33.33%}.layout-row>.flex-gt-xs-66{box-sizing:border-box;flex:1 1 66.66%;max-height:100%;max-width:66.66%}.layout-column>.flex-gt-xs-33{box-sizing:border-box;flex:1 1 33.33%;max-height:33.33%;max-width:100%}.layout-column>.flex-gt-xs-66{box-sizing:border-box;flex:1 1 66.66%;max-height:66.66%;max-width:100%}.layout-gt-xs-row>.flex-gt-xs-33{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:33.33%}.layout-gt-xs-row>.flex-gt-xs-66{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:66.66%}.layout-gt-xs-row>.flex{min-width:0}.layout-gt-xs-column>.flex-gt-xs-33{box-sizing:border-box;flex:1 1 100%;max-height:33.33%;max-width:100%}.layout-gt-xs-column>.flex-gt-xs-66{box-sizing:border-box;flex:1 1 100%;max-height:66.66%;max-width:100%}.layout-gt-xs-column>.flex{min-height:0}.layout-gt-xs,.layout-gt-xs-column,.layout-gt-xs-row{box-sizing:border-box;display:flex}.layout-gt-xs-column{flex-direction:column}.layout-gt-xs-row{flex-direction:row}}@media (min-width:600px) and (max-width:959px){.hide-gt-xs:not(.show-gt-xs):not(.show-sm):not(.show),.hide-sm:not(.show-gt-xs):not(.show-sm):not(.show),.hide:not(.show-gt-xs):not(.show-sm):not(.show){display:none}.flex-order-sm--20{order:-20}.flex-order-sm--19{order:-19}.flex-order-sm--18{order:-18}.flex-order-sm--17{order:-17}.flex-order-sm--16{order:-16}.flex-order-sm--15{order:-15}.flex-order-sm--14{order:-14}.flex-order-sm--13{order:-13}.flex-order-sm--12{order:-12}.flex-order-sm--11{order:-11}.flex-order-sm--10{order:-10}.flex-order-sm--9{order:-9}.flex-order-sm--8{order:-8}.flex-order-sm--7{order:-7}.flex-order-sm--6{order:-6}.flex-order-sm--5{order:-5}.flex-order-sm--4{order:-4}.flex-order-sm--3{order:-3}.flex-order-sm--2{order:-2}.flex-order-sm--1{order:-1}.flex-order-sm-0{order:0}.flex-order-sm-1{order:1}.flex-order-sm-2{order:2}.flex-order-sm-3{order:3}.flex-order-sm-4{order:4}.flex-order-sm-5{order:5}.flex-order-sm-6{order:6}.flex-order-sm-7{order:7}.flex-order-sm-8{order:8}.flex-order-sm-9{order:9}.flex-order-sm-10{order:10}.flex-order-sm-11{order:11}.flex-order-sm-12{order:12}.flex-order-sm-13{order:13}.flex-order-sm-14{order:14}.flex-order-sm-15{order:15}.flex-order-sm-16{order:16}.flex-order-sm-17{order:17}.flex-order-sm-18{order:18}.flex-order-sm-19{order:19}.flex-order-sm-20{order:20}.flex-offset-sm-0,.layout-margin .flex-offset-sm-0,.layout-margin .offset-sm-0,.offset-sm-0{margin-left:0}[dir=rtl] .flex-offset-sm-0,[dir=rtl] .layout-margin .flex-offset-sm-0,[dir=rtl] .layout-margin .offset-sm-0,[dir=rtl] .offset-sm-0{margin-left:auto;margin-right:0}.flex-offset-sm-5,.layout-margin .flex-offset-sm-5,.layout-margin .offset-sm-5,.offset-sm-5{margin-left:5%}[dir=rtl] .flex-offset-sm-5,[dir=rtl] .layout-margin .flex-offset-sm-5,[dir=rtl] .layout-margin .offset-sm-5,[dir=rtl] .offset-sm-5{margin-left:auto;margin-right:5%}.flex-offset-sm-10,.layout-margin .flex-offset-sm-10,.layout-margin .offset-sm-10,.offset-sm-10{margin-left:10%}[dir=rtl] .flex-offset-sm-10,[dir=rtl] .layout-margin .flex-offset-sm-10,[dir=rtl] .layout-margin .offset-sm-10,[dir=rtl] .offset-sm-10{margin-left:auto;margin-right:10%}.flex-offset-sm-15,.layout-margin .flex-offset-sm-15,.layout-margin .offset-sm-15,.offset-sm-15{margin-left:15%}[dir=rtl] .flex-offset-sm-15,[dir=rtl] .layout-margin .flex-offset-sm-15,[dir=rtl] .layout-margin .offset-sm-15,[dir=rtl] .offset-sm-15{margin-left:auto;margin-right:15%}.flex-offset-sm-20,.layout-margin .flex-offset-sm-20,.layout-margin .offset-sm-20,.offset-sm-20{margin-left:20%}[dir=rtl] .flex-offset-sm-20,[dir=rtl] .layout-margin .flex-offset-sm-20,[dir=rtl] .layout-margin .offset-sm-20,[dir=rtl] .offset-sm-20{margin-left:auto;margin-right:20%}.flex-offset-sm-25,.layout-margin .flex-offset-sm-25,.layout-margin .offset-sm-25,.offset-sm-25{margin-left:25%}[dir=rtl] .flex-offset-sm-25,[dir=rtl] .layout-margin .flex-offset-sm-25,[dir=rtl] .layout-margin .offset-sm-25,[dir=rtl] .offset-sm-25{margin-left:auto;margin-right:25%}.flex-offset-sm-30,.layout-margin .flex-offset-sm-30,.layout-margin .offset-sm-30,.offset-sm-30{margin-left:30%}[dir=rtl] .flex-offset-sm-30,[dir=rtl] .layout-margin .flex-offset-sm-30,[dir=rtl] .layout-margin .offset-sm-30,[dir=rtl] .offset-sm-30{margin-left:auto;margin-right:30%}.flex-offset-sm-35,.layout-margin .flex-offset-sm-35,.layout-margin .offset-sm-35,.offset-sm-35{margin-left:35%}[dir=rtl] .flex-offset-sm-35,[dir=rtl] .layout-margin .flex-offset-sm-35,[dir=rtl] .layout-margin .offset-sm-35,[dir=rtl] .offset-sm-35{margin-left:auto;margin-right:35%}.flex-offset-sm-40,.layout-margin .flex-offset-sm-40,.layout-margin .offset-sm-40,.offset-sm-40{margin-left:40%}[dir=rtl] .flex-offset-sm-40,[dir=rtl] .layout-margin .flex-offset-sm-40,[dir=rtl] .layout-margin .offset-sm-40,[dir=rtl] .offset-sm-40{margin-left:auto;margin-right:40%}.flex-offset-sm-45,.layout-margin .flex-offset-sm-45,.layout-margin .offset-sm-45,.offset-sm-45{margin-left:45%}[dir=rtl] .flex-offset-sm-45,[dir=rtl] .layout-margin .flex-offset-sm-45,[dir=rtl] .layout-margin .offset-sm-45,[dir=rtl] .offset-sm-45{margin-left:auto;margin-right:45%}.flex-offset-sm-50,.layout-margin .flex-offset-sm-50,.layout-margin .offset-sm-50,.offset-sm-50{margin-left:50%}[dir=rtl] .flex-offset-sm-50,[dir=rtl] .layout-margin .flex-offset-sm-50,[dir=rtl] .layout-margin .offset-sm-50,[dir=rtl] .offset-sm-50{margin-left:auto;margin-right:50%}.flex-offset-sm-55,.layout-margin .flex-offset-sm-55,.layout-margin .offset-sm-55,.offset-sm-55{margin-left:55%}[dir=rtl] .flex-offset-sm-55,[dir=rtl] .layout-margin .flex-offset-sm-55,[dir=rtl] .layout-margin .offset-sm-55,[dir=rtl] .offset-sm-55{margin-left:auto;margin-right:55%}.flex-offset-sm-60,.layout-margin .flex-offset-sm-60,.layout-margin .offset-sm-60,.offset-sm-60{margin-left:60%}[dir=rtl] .flex-offset-sm-60,[dir=rtl] .layout-margin .flex-offset-sm-60,[dir=rtl] .layout-margin .offset-sm-60,[dir=rtl] .offset-sm-60{margin-left:auto;margin-right:60%}.flex-offset-sm-65,.layout-margin .flex-offset-sm-65,.layout-margin .offset-sm-65,.offset-sm-65{margin-left:65%}[dir=rtl] .flex-offset-sm-65,[dir=rtl] .layout-margin .flex-offset-sm-65,[dir=rtl] .layout-margin .offset-sm-65,[dir=rtl] .offset-sm-65{margin-left:auto;margin-right:65%}.flex-offset-sm-70,.layout-margin .flex-offset-sm-70,.layout-margin .offset-sm-70,.offset-sm-70{margin-left:70%}[dir=rtl] .flex-offset-sm-70,[dir=rtl] .layout-margin .flex-offset-sm-70,[dir=rtl] .layout-margin .offset-sm-70,[dir=rtl] .offset-sm-70{margin-left:auto;margin-right:70%}.flex-offset-sm-75,.layout-margin .flex-offset-sm-75,.layout-margin .offset-sm-75,.offset-sm-75{margin-left:75%}[dir=rtl] .flex-offset-sm-75,[dir=rtl] .layout-margin .flex-offset-sm-75,[dir=rtl] .layout-margin .offset-sm-75,[dir=rtl] .offset-sm-75{margin-left:auto;margin-right:75%}.flex-offset-sm-80,.layout-margin .flex-offset-sm-80,.layout-margin .offset-sm-80,.offset-sm-80{margin-left:80%}[dir=rtl] .flex-offset-sm-80,[dir=rtl] .layout-margin .flex-offset-sm-80,[dir=rtl] .layout-margin .offset-sm-80,[dir=rtl] .offset-sm-80{margin-left:auto;margin-right:80%}.flex-offset-sm-85,.layout-margin .flex-offset-sm-85,.layout-margin .offset-sm-85,.offset-sm-85{margin-left:85%}[dir=rtl] .flex-offset-sm-85,[dir=rtl] .layout-margin .flex-offset-sm-85,[dir=rtl] .layout-margin .offset-sm-85,[dir=rtl] .offset-sm-85{margin-left:auto;margin-right:85%}.flex-offset-sm-90,.layout-margin .flex-offset-sm-90,.layout-margin .offset-sm-90,.offset-sm-90{margin-left:90%}[dir=rtl] .flex-offset-sm-90,[dir=rtl] .layout-margin .flex-offset-sm-90,[dir=rtl] .layout-margin .offset-sm-90,[dir=rtl] .offset-sm-90{margin-left:auto;margin-right:90%}.flex-offset-sm-95,.layout-margin .flex-offset-sm-95,.layout-margin .offset-sm-95,.offset-sm-95{margin-left:95%}[dir=rtl] .flex-offset-sm-95,[dir=rtl] .layout-margin .flex-offset-sm-95,[dir=rtl] .layout-margin .offset-sm-95,[dir=rtl] .offset-sm-95{margin-left:auto;margin-right:95%}.flex-offset-sm-33,.layout-margin .flex-offset-sm-33,.layout-margin .offset-sm-33,.offset-sm-33{margin-left:33.3333333333%}.flex-offset-sm-66,.layout-margin .flex-offset-sm-66,.layout-margin .offset-sm-66,.offset-sm-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-sm-66,[dir=rtl] .layout-margin .flex-offset-sm-66,[dir=rtl] .layout-margin .offset-sm-66,[dir=rtl] .offset-sm-66{margin-left:auto;margin-right:66.6666666667%}.layout-align-sm,.layout-align-sm-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-sm-start,.layout-align-sm-start-center,.layout-align-sm-start-end,.layout-align-sm-start-start,.layout-align-sm-start-stretch{justify-content:flex-start}.layout-align-sm-center,.layout-align-sm-center-center,.layout-align-sm-center-end,.layout-align-sm-center-start,.layout-align-sm-center-stretch{justify-content:center}.layout-align-sm-end,.layout-align-sm-end-center,.layout-align-sm-end-end,.layout-align-sm-end-start,.layout-align-sm-end-stretch{justify-content:flex-end}.layout-align-sm-space-around,.layout-align-sm-space-around-center,.layout-align-sm-space-around-end,.layout-align-sm-space-around-start,.layout-align-sm-space-around-stretch{justify-content:space-around}.layout-align-sm-space-between,.layout-align-sm-space-between-center,.layout-align-sm-space-between-end,.layout-align-sm-space-between-start,.layout-align-sm-space-between-stretch{justify-content:space-between}.layout-align-sm-center-start,.layout-align-sm-end-start,.layout-align-sm-space-around-start,.layout-align-sm-space-between-start,.layout-align-sm-start-start{align-content:flex-start;align-items:flex-start}.layout-align-sm-center-center,.layout-align-sm-end-center,.layout-align-sm-space-around-center,.layout-align-sm-space-between-center,.layout-align-sm-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-sm-center-center>*,.layout-align-sm-end-center>*,.layout-align-sm-space-around-center>*,.layout-align-sm-space-between-center>*,.layout-align-sm-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-sm-center-end,.layout-align-sm-end-end,.layout-align-sm-space-around-end,.layout-align-sm-space-between-end,.layout-align-sm-start-end{align-content:flex-end;align-items:flex-end}.layout-align-sm-center-stretch,.layout-align-sm-end-stretch,.layout-align-sm-space-around-stretch,.layout-align-sm-space-between-stretch,.layout-align-sm-start-stretch{align-content:stretch;align-items:stretch}.flex-sm{box-sizing:border-box;flex:1}.flex-sm-grow{box-sizing:border-box;flex:1 1 100%}.flex-sm-initial{box-sizing:border-box;flex:0 1 auto}.flex-sm-auto{box-sizing:border-box;flex:1 1 auto}.flex-sm-none{box-sizing:border-box;flex:0 0 auto}.flex-sm-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-sm-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-sm-0,.layout-row>.flex-sm-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-sm-0{min-width:0}.layout-column>.flex-sm-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.layout-sm-row>.flex-sm-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0;min-width:0}.layout-sm-column>.flex-sm-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%;min-height:0}.flex-sm-5,.layout-row>.flex-sm-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-sm-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.layout-sm-row>.flex-sm-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-sm-column>.flex-sm-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-sm-10,.layout-row>.flex-sm-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-sm-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.layout-sm-row>.flex-sm-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-sm-column>.flex-sm-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-sm-15,.layout-row>.flex-sm-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-sm-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.layout-sm-row>.flex-sm-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-sm-column>.flex-sm-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-sm-20,.layout-row>.flex-sm-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-sm-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.layout-sm-row>.flex-sm-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-sm-column>.flex-sm-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-sm-25,.layout-row>.flex-sm-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-sm-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.layout-sm-row>.flex-sm-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-sm-column>.flex-sm-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-sm-30,.layout-row>.flex-sm-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-sm-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.layout-sm-row>.flex-sm-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-sm-column>.flex-sm-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-sm-35,.layout-row>.flex-sm-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-sm-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.layout-sm-row>.flex-sm-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-sm-column>.flex-sm-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-sm-40,.layout-row>.flex-sm-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-sm-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.layout-sm-row>.flex-sm-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-sm-column>.flex-sm-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-sm-45,.layout-row>.flex-sm-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-sm-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.layout-sm-row>.flex-sm-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-sm-column>.flex-sm-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-sm-50,.layout-row>.flex-sm-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-sm-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.layout-sm-row>.flex-sm-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-sm-column>.flex-sm-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-sm-55,.layout-row>.flex-sm-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-sm-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.layout-sm-row>.flex-sm-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-sm-column>.flex-sm-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-sm-60,.layout-row>.flex-sm-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-sm-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.layout-sm-row>.flex-sm-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-sm-column>.flex-sm-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-sm-65,.layout-row>.flex-sm-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-sm-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.layout-sm-row>.flex-sm-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-sm-column>.flex-sm-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-sm-70,.layout-row>.flex-sm-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-sm-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.layout-sm-row>.flex-sm-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-sm-column>.flex-sm-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-sm-75,.layout-row>.flex-sm-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-sm-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.layout-sm-row>.flex-sm-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-sm-column>.flex-sm-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-sm-80,.layout-row>.flex-sm-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-sm-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.layout-sm-row>.flex-sm-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-sm-column>.flex-sm-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-sm-85,.layout-row>.flex-sm-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-sm-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.layout-sm-row>.flex-sm-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-sm-column>.flex-sm-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-sm-90,.layout-row>.flex-sm-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-sm-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.layout-sm-row>.flex-sm-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-sm-column>.flex-sm-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-sm-95,.layout-row>.flex-sm-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-sm-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.layout-sm-row>.flex-sm-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-sm-column>.flex-sm-95{max-height:95%}.flex-sm-100,.layout-sm-column>.flex-sm-95{box-sizing:border-box;flex:1 1 100%;max-width:100%}.flex-sm-100{max-height:100%}.layout-column>.flex-sm-100,.layout-row>.flex-sm-100,.layout-sm-column>.flex-sm-100,.layout-sm-row>.flex-sm-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.layout-row>.flex-sm-33{box-sizing:border-box;flex:1 1 33.33%;max-height:100%;max-width:33.33%}.layout-row>.flex-sm-66{box-sizing:border-box;flex:1 1 66.66%;max-height:100%;max-width:66.66%}.layout-column>.flex-sm-33{box-sizing:border-box;flex:1 1 33.33%;max-height:33.33%;max-width:100%}.layout-column>.flex-sm-66{box-sizing:border-box;flex:1 1 66.66%;max-height:66.66%;max-width:100%}.layout-sm-row>.flex-sm-33{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:33.33%}.layout-sm-row>.flex-sm-66{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:66.66%}.layout-sm-row>.flex{min-width:0}.layout-sm-column>.flex-sm-33{box-sizing:border-box;flex:1 1 100%;max-height:33.33%;max-width:100%}.layout-sm-column>.flex-sm-66{box-sizing:border-box;flex:1 1 100%;max-height:66.66%;max-width:100%}.layout-sm-column>.flex{min-height:0}.layout-sm,.layout-sm-column,.layout-sm-row{box-sizing:border-box;display:flex}.layout-sm-column{flex-direction:column}.layout-sm-row{flex-direction:row}}@media (min-width:960px){.flex-order-gt-sm--20{order:-20}.flex-order-gt-sm--19{order:-19}.flex-order-gt-sm--18{order:-18}.flex-order-gt-sm--17{order:-17}.flex-order-gt-sm--16{order:-16}.flex-order-gt-sm--15{order:-15}.flex-order-gt-sm--14{order:-14}.flex-order-gt-sm--13{order:-13}.flex-order-gt-sm--12{order:-12}.flex-order-gt-sm--11{order:-11}.flex-order-gt-sm--10{order:-10}.flex-order-gt-sm--9{order:-9}.flex-order-gt-sm--8{order:-8}.flex-order-gt-sm--7{order:-7}.flex-order-gt-sm--6{order:-6}.flex-order-gt-sm--5{order:-5}.flex-order-gt-sm--4{order:-4}.flex-order-gt-sm--3{order:-3}.flex-order-gt-sm--2{order:-2}.flex-order-gt-sm--1{order:-1}.flex-order-gt-sm-0{order:0}.flex-order-gt-sm-1{order:1}.flex-order-gt-sm-2{order:2}.flex-order-gt-sm-3{order:3}.flex-order-gt-sm-4{order:4}.flex-order-gt-sm-5{order:5}.flex-order-gt-sm-6{order:6}.flex-order-gt-sm-7{order:7}.flex-order-gt-sm-8{order:8}.flex-order-gt-sm-9{order:9}.flex-order-gt-sm-10{order:10}.flex-order-gt-sm-11{order:11}.flex-order-gt-sm-12{order:12}.flex-order-gt-sm-13{order:13}.flex-order-gt-sm-14{order:14}.flex-order-gt-sm-15{order:15}.flex-order-gt-sm-16{order:16}.flex-order-gt-sm-17{order:17}.flex-order-gt-sm-18{order:18}.flex-order-gt-sm-19{order:19}.flex-order-gt-sm-20{order:20}.flex-offset-gt-sm-0,.layout-margin .flex-offset-gt-sm-0,.layout-margin .offset-gt-sm-0,.offset-gt-sm-0{margin-left:0}[dir=rtl] .flex-offset-gt-sm-0,[dir=rtl] .layout-margin .flex-offset-gt-sm-0,[dir=rtl] .layout-margin .offset-gt-sm-0,[dir=rtl] .offset-gt-sm-0{margin-left:auto;margin-right:0}.flex-offset-gt-sm-5,.layout-margin .flex-offset-gt-sm-5,.layout-margin .offset-gt-sm-5,.offset-gt-sm-5{margin-left:5%}[dir=rtl] .flex-offset-gt-sm-5,[dir=rtl] .layout-margin .flex-offset-gt-sm-5,[dir=rtl] .layout-margin .offset-gt-sm-5,[dir=rtl] .offset-gt-sm-5{margin-left:auto;margin-right:5%}.flex-offset-gt-sm-10,.layout-margin .flex-offset-gt-sm-10,.layout-margin .offset-gt-sm-10,.offset-gt-sm-10{margin-left:10%}[dir=rtl] .flex-offset-gt-sm-10,[dir=rtl] .layout-margin .flex-offset-gt-sm-10,[dir=rtl] .layout-margin .offset-gt-sm-10,[dir=rtl] .offset-gt-sm-10{margin-left:auto;margin-right:10%}.flex-offset-gt-sm-15,.layout-margin .flex-offset-gt-sm-15,.layout-margin .offset-gt-sm-15,.offset-gt-sm-15{margin-left:15%}[dir=rtl] .flex-offset-gt-sm-15,[dir=rtl] .layout-margin .flex-offset-gt-sm-15,[dir=rtl] .layout-margin .offset-gt-sm-15,[dir=rtl] .offset-gt-sm-15{margin-left:auto;margin-right:15%}.flex-offset-gt-sm-20,.layout-margin .flex-offset-gt-sm-20,.layout-margin .offset-gt-sm-20,.offset-gt-sm-20{margin-left:20%}[dir=rtl] .flex-offset-gt-sm-20,[dir=rtl] .layout-margin .flex-offset-gt-sm-20,[dir=rtl] .layout-margin .offset-gt-sm-20,[dir=rtl] .offset-gt-sm-20{margin-left:auto;margin-right:20%}.flex-offset-gt-sm-25,.layout-margin .flex-offset-gt-sm-25,.layout-margin .offset-gt-sm-25,.offset-gt-sm-25{margin-left:25%}[dir=rtl] .flex-offset-gt-sm-25,[dir=rtl] .layout-margin .flex-offset-gt-sm-25,[dir=rtl] .layout-margin .offset-gt-sm-25,[dir=rtl] .offset-gt-sm-25{margin-left:auto;margin-right:25%}.flex-offset-gt-sm-30,.layout-margin .flex-offset-gt-sm-30,.layout-margin .offset-gt-sm-30,.offset-gt-sm-30{margin-left:30%}[dir=rtl] .flex-offset-gt-sm-30,[dir=rtl] .layout-margin .flex-offset-gt-sm-30,[dir=rtl] .layout-margin .offset-gt-sm-30,[dir=rtl] .offset-gt-sm-30{margin-left:auto;margin-right:30%}.flex-offset-gt-sm-35,.layout-margin .flex-offset-gt-sm-35,.layout-margin .offset-gt-sm-35,.offset-gt-sm-35{margin-left:35%}[dir=rtl] .flex-offset-gt-sm-35,[dir=rtl] .layout-margin .flex-offset-gt-sm-35,[dir=rtl] .layout-margin .offset-gt-sm-35,[dir=rtl] .offset-gt-sm-35{margin-left:auto;margin-right:35%}.flex-offset-gt-sm-40,.layout-margin .flex-offset-gt-sm-40,.layout-margin .offset-gt-sm-40,.offset-gt-sm-40{margin-left:40%}[dir=rtl] .flex-offset-gt-sm-40,[dir=rtl] .layout-margin .flex-offset-gt-sm-40,[dir=rtl] .layout-margin .offset-gt-sm-40,[dir=rtl] .offset-gt-sm-40{margin-left:auto;margin-right:40%}.flex-offset-gt-sm-45,.layout-margin .flex-offset-gt-sm-45,.layout-margin .offset-gt-sm-45,.offset-gt-sm-45{margin-left:45%}[dir=rtl] .flex-offset-gt-sm-45,[dir=rtl] .layout-margin .flex-offset-gt-sm-45,[dir=rtl] .layout-margin .offset-gt-sm-45,[dir=rtl] .offset-gt-sm-45{margin-left:auto;margin-right:45%}.flex-offset-gt-sm-50,.layout-margin .flex-offset-gt-sm-50,.layout-margin .offset-gt-sm-50,.offset-gt-sm-50{margin-left:50%}[dir=rtl] .flex-offset-gt-sm-50,[dir=rtl] .layout-margin .flex-offset-gt-sm-50,[dir=rtl] .layout-margin .offset-gt-sm-50,[dir=rtl] .offset-gt-sm-50{margin-left:auto;margin-right:50%}.flex-offset-gt-sm-55,.layout-margin .flex-offset-gt-sm-55,.layout-margin .offset-gt-sm-55,.offset-gt-sm-55{margin-left:55%}[dir=rtl] .flex-offset-gt-sm-55,[dir=rtl] .layout-margin .flex-offset-gt-sm-55,[dir=rtl] .layout-margin .offset-gt-sm-55,[dir=rtl] .offset-gt-sm-55{margin-left:auto;margin-right:55%}.flex-offset-gt-sm-60,.layout-margin .flex-offset-gt-sm-60,.layout-margin .offset-gt-sm-60,.offset-gt-sm-60{margin-left:60%}[dir=rtl] .flex-offset-gt-sm-60,[dir=rtl] .layout-margin .flex-offset-gt-sm-60,[dir=rtl] .layout-margin .offset-gt-sm-60,[dir=rtl] .offset-gt-sm-60{margin-left:auto;margin-right:60%}.flex-offset-gt-sm-65,.layout-margin .flex-offset-gt-sm-65,.layout-margin .offset-gt-sm-65,.offset-gt-sm-65{margin-left:65%}[dir=rtl] .flex-offset-gt-sm-65,[dir=rtl] .layout-margin .flex-offset-gt-sm-65,[dir=rtl] .layout-margin .offset-gt-sm-65,[dir=rtl] .offset-gt-sm-65{margin-left:auto;margin-right:65%}.flex-offset-gt-sm-70,.layout-margin .flex-offset-gt-sm-70,.layout-margin .offset-gt-sm-70,.offset-gt-sm-70{margin-left:70%}[dir=rtl] .flex-offset-gt-sm-70,[dir=rtl] .layout-margin .flex-offset-gt-sm-70,[dir=rtl] .layout-margin .offset-gt-sm-70,[dir=rtl] .offset-gt-sm-70{margin-left:auto;margin-right:70%}.flex-offset-gt-sm-75,.layout-margin .flex-offset-gt-sm-75,.layout-margin .offset-gt-sm-75,.offset-gt-sm-75{margin-left:75%}[dir=rtl] .flex-offset-gt-sm-75,[dir=rtl] .layout-margin .flex-offset-gt-sm-75,[dir=rtl] .layout-margin .offset-gt-sm-75,[dir=rtl] .offset-gt-sm-75{margin-left:auto;margin-right:75%}.flex-offset-gt-sm-80,.layout-margin .flex-offset-gt-sm-80,.layout-margin .offset-gt-sm-80,.offset-gt-sm-80{margin-left:80%}[dir=rtl] .flex-offset-gt-sm-80,[dir=rtl] .layout-margin .flex-offset-gt-sm-80,[dir=rtl] .layout-margin .offset-gt-sm-80,[dir=rtl] .offset-gt-sm-80{margin-left:auto;margin-right:80%}.flex-offset-gt-sm-85,.layout-margin .flex-offset-gt-sm-85,.layout-margin .offset-gt-sm-85,.offset-gt-sm-85{margin-left:85%}[dir=rtl] .flex-offset-gt-sm-85,[dir=rtl] .layout-margin .flex-offset-gt-sm-85,[dir=rtl] .layout-margin .offset-gt-sm-85,[dir=rtl] .offset-gt-sm-85{margin-left:auto;margin-right:85%}.flex-offset-gt-sm-90,.layout-margin .flex-offset-gt-sm-90,.layout-margin .offset-gt-sm-90,.offset-gt-sm-90{margin-left:90%}[dir=rtl] .flex-offset-gt-sm-90,[dir=rtl] .layout-margin .flex-offset-gt-sm-90,[dir=rtl] .layout-margin .offset-gt-sm-90,[dir=rtl] .offset-gt-sm-90{margin-left:auto;margin-right:90%}.flex-offset-gt-sm-95,.layout-margin .flex-offset-gt-sm-95,.layout-margin .offset-gt-sm-95,.offset-gt-sm-95{margin-left:95%}[dir=rtl] .flex-offset-gt-sm-95,[dir=rtl] .layout-margin .flex-offset-gt-sm-95,[dir=rtl] .layout-margin .offset-gt-sm-95,[dir=rtl] .offset-gt-sm-95{margin-left:auto;margin-right:95%}.flex-offset-gt-sm-33,.layout-margin .flex-offset-gt-sm-33,.layout-margin .offset-gt-sm-33,.offset-gt-sm-33{margin-left:33.3333333333%}.flex-offset-gt-sm-66,.layout-margin .flex-offset-gt-sm-66,.layout-margin .offset-gt-sm-66,.offset-gt-sm-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-gt-sm-66,[dir=rtl] .layout-margin .flex-offset-gt-sm-66,[dir=rtl] .layout-margin .offset-gt-sm-66,[dir=rtl] .offset-gt-sm-66{margin-left:auto;margin-right:66.6666666667%}.layout-align-gt-sm,.layout-align-gt-sm-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-gt-sm-start,.layout-align-gt-sm-start-center,.layout-align-gt-sm-start-end,.layout-align-gt-sm-start-start,.layout-align-gt-sm-start-stretch{justify-content:flex-start}.layout-align-gt-sm-center,.layout-align-gt-sm-center-center,.layout-align-gt-sm-center-end,.layout-align-gt-sm-center-start,.layout-align-gt-sm-center-stretch{justify-content:center}.layout-align-gt-sm-end,.layout-align-gt-sm-end-center,.layout-align-gt-sm-end-end,.layout-align-gt-sm-end-start,.layout-align-gt-sm-end-stretch{justify-content:flex-end}.layout-align-gt-sm-space-around,.layout-align-gt-sm-space-around-center,.layout-align-gt-sm-space-around-end,.layout-align-gt-sm-space-around-start,.layout-align-gt-sm-space-around-stretch{justify-content:space-around}.layout-align-gt-sm-space-between,.layout-align-gt-sm-space-between-center,.layout-align-gt-sm-space-between-end,.layout-align-gt-sm-space-between-start,.layout-align-gt-sm-space-between-stretch{justify-content:space-between}.layout-align-gt-sm-center-start,.layout-align-gt-sm-end-start,.layout-align-gt-sm-space-around-start,.layout-align-gt-sm-space-between-start,.layout-align-gt-sm-start-start{align-content:flex-start;align-items:flex-start}.layout-align-gt-sm-center-center,.layout-align-gt-sm-end-center,.layout-align-gt-sm-space-around-center,.layout-align-gt-sm-space-between-center,.layout-align-gt-sm-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-gt-sm-center-center>*,.layout-align-gt-sm-end-center>*,.layout-align-gt-sm-space-around-center>*,.layout-align-gt-sm-space-between-center>*,.layout-align-gt-sm-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-gt-sm-center-end,.layout-align-gt-sm-end-end,.layout-align-gt-sm-space-around-end,.layout-align-gt-sm-space-between-end,.layout-align-gt-sm-start-end{align-content:flex-end;align-items:flex-end}.layout-align-gt-sm-center-stretch,.layout-align-gt-sm-end-stretch,.layout-align-gt-sm-space-around-stretch,.layout-align-gt-sm-space-between-stretch,.layout-align-gt-sm-start-stretch{align-content:stretch;align-items:stretch}.flex-gt-sm{box-sizing:border-box;flex:1}.flex-gt-sm-grow{box-sizing:border-box;flex:1 1 100%}.flex-gt-sm-initial{box-sizing:border-box;flex:0 1 auto}.flex-gt-sm-auto{box-sizing:border-box;flex:1 1 auto}.flex-gt-sm-none{box-sizing:border-box;flex:0 0 auto}.flex-gt-sm-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-gt-sm-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-gt-sm-0,.layout-row>.flex-gt-sm-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-gt-sm-0{min-width:0}.layout-column>.flex-gt-sm-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0;min-width:0}.layout-gt-sm-column>.flex-gt-sm-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%;min-height:0}.flex-gt-sm-5,.layout-row>.flex-gt-sm-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-gt-sm-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-gt-sm-column>.flex-gt-sm-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-gt-sm-10,.layout-row>.flex-gt-sm-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-gt-sm-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-gt-sm-column>.flex-gt-sm-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-gt-sm-15,.layout-row>.flex-gt-sm-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-gt-sm-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-gt-sm-column>.flex-gt-sm-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-gt-sm-20,.layout-row>.flex-gt-sm-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-gt-sm-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-gt-sm-column>.flex-gt-sm-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-gt-sm-25,.layout-row>.flex-gt-sm-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-gt-sm-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-gt-sm-column>.flex-gt-sm-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-gt-sm-30,.layout-row>.flex-gt-sm-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-gt-sm-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-gt-sm-column>.flex-gt-sm-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-gt-sm-35,.layout-row>.flex-gt-sm-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-gt-sm-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-gt-sm-column>.flex-gt-sm-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-gt-sm-40,.layout-row>.flex-gt-sm-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-gt-sm-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-gt-sm-column>.flex-gt-sm-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-gt-sm-45,.layout-row>.flex-gt-sm-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-gt-sm-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-gt-sm-column>.flex-gt-sm-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-gt-sm-50,.layout-row>.flex-gt-sm-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-gt-sm-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-gt-sm-column>.flex-gt-sm-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-gt-sm-55,.layout-row>.flex-gt-sm-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-gt-sm-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-gt-sm-column>.flex-gt-sm-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-gt-sm-60,.layout-row>.flex-gt-sm-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-gt-sm-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-gt-sm-column>.flex-gt-sm-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-gt-sm-65,.layout-row>.flex-gt-sm-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-gt-sm-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-gt-sm-column>.flex-gt-sm-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-gt-sm-70,.layout-row>.flex-gt-sm-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-gt-sm-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-gt-sm-column>.flex-gt-sm-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-gt-sm-75,.layout-row>.flex-gt-sm-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-gt-sm-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-gt-sm-column>.flex-gt-sm-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-gt-sm-80,.layout-row>.flex-gt-sm-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-gt-sm-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-gt-sm-column>.flex-gt-sm-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-gt-sm-85,.layout-row>.flex-gt-sm-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-gt-sm-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-gt-sm-column>.flex-gt-sm-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-gt-sm-90,.layout-row>.flex-gt-sm-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-gt-sm-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-gt-sm-column>.flex-gt-sm-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-gt-sm-95,.layout-row>.flex-gt-sm-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-gt-sm-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-gt-sm-column>.flex-gt-sm-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.flex-gt-sm-100,.layout-column>.flex-gt-sm-100,.layout-gt-sm-column>.flex-gt-sm-100,.layout-gt-sm-row>.flex-gt-sm-100,.layout-row>.flex-gt-sm-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.layout-row>.flex-gt-sm-33{box-sizing:border-box;flex:1 1 33.33%;max-height:100%;max-width:33.33%}.layout-row>.flex-gt-sm-66{box-sizing:border-box;flex:1 1 66.66%;max-height:100%;max-width:66.66%}.layout-column>.flex-gt-sm-33{box-sizing:border-box;flex:1 1 33.33%;max-height:33.33%;max-width:100%}.layout-column>.flex-gt-sm-66{box-sizing:border-box;flex:1 1 66.66%;max-height:66.66%;max-width:100%}.layout-gt-sm-row>.flex-gt-sm-33{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:33.33%}.layout-gt-sm-row>.flex-gt-sm-66{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:66.66%}.layout-gt-sm-row>.flex{min-width:0}.layout-gt-sm-column>.flex-gt-sm-33{box-sizing:border-box;flex:1 1 100%;max-height:33.33%;max-width:100%}.layout-gt-sm-column>.flex-gt-sm-66{box-sizing:border-box;flex:1 1 100%;max-height:66.66%;max-width:100%}.layout-gt-sm-column>.flex{min-height:0}.layout-gt-sm,.layout-gt-sm-column,.layout-gt-sm-row{box-sizing:border-box;display:flex}.layout-gt-sm-column{flex-direction:column}.layout-gt-sm-row{flex-direction:row}}@media (min-width:960px) and (max-width:1279px){.hide-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show),.hide-gt-xs:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show),.hide-md:not(.show-md):not(.show-gt-sm):not(.show-gt-xs):not(.show),.hide:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show){display:none}.flex-order-md--20{order:-20}.flex-order-md--19{order:-19}.flex-order-md--18{order:-18}.flex-order-md--17{order:-17}.flex-order-md--16{order:-16}.flex-order-md--15{order:-15}.flex-order-md--14{order:-14}.flex-order-md--13{order:-13}.flex-order-md--12{order:-12}.flex-order-md--11{order:-11}.flex-order-md--10{order:-10}.flex-order-md--9{order:-9}.flex-order-md--8{order:-8}.flex-order-md--7{order:-7}.flex-order-md--6{order:-6}.flex-order-md--5{order:-5}.flex-order-md--4{order:-4}.flex-order-md--3{order:-3}.flex-order-md--2{order:-2}.flex-order-md--1{order:-1}.flex-order-md-0{order:0}.flex-order-md-1{order:1}.flex-order-md-2{order:2}.flex-order-md-3{order:3}.flex-order-md-4{order:4}.flex-order-md-5{order:5}.flex-order-md-6{order:6}.flex-order-md-7{order:7}.flex-order-md-8{order:8}.flex-order-md-9{order:9}.flex-order-md-10{order:10}.flex-order-md-11{order:11}.flex-order-md-12{order:12}.flex-order-md-13{order:13}.flex-order-md-14{order:14}.flex-order-md-15{order:15}.flex-order-md-16{order:16}.flex-order-md-17{order:17}.flex-order-md-18{order:18}.flex-order-md-19{order:19}.flex-order-md-20{order:20}.flex-offset-md-0,.layout-margin .flex-offset-md-0,.layout-margin .offset-md-0,.offset-md-0{margin-left:0}[dir=rtl] .flex-offset-md-0,[dir=rtl] .layout-margin .flex-offset-md-0,[dir=rtl] .layout-margin .offset-md-0,[dir=rtl] .offset-md-0{margin-left:auto;margin-right:0}.flex-offset-md-5,.layout-margin .flex-offset-md-5,.layout-margin .offset-md-5,.offset-md-5{margin-left:5%}[dir=rtl] .flex-offset-md-5,[dir=rtl] .layout-margin .flex-offset-md-5,[dir=rtl] .layout-margin .offset-md-5,[dir=rtl] .offset-md-5{margin-left:auto;margin-right:5%}.flex-offset-md-10,.layout-margin .flex-offset-md-10,.layout-margin .offset-md-10,.offset-md-10{margin-left:10%}[dir=rtl] .flex-offset-md-10,[dir=rtl] .layout-margin .flex-offset-md-10,[dir=rtl] .layout-margin .offset-md-10,[dir=rtl] .offset-md-10{margin-left:auto;margin-right:10%}.flex-offset-md-15,.layout-margin .flex-offset-md-15,.layout-margin .offset-md-15,.offset-md-15{margin-left:15%}[dir=rtl] .flex-offset-md-15,[dir=rtl] .layout-margin .flex-offset-md-15,[dir=rtl] .layout-margin .offset-md-15,[dir=rtl] .offset-md-15{margin-left:auto;margin-right:15%}.flex-offset-md-20,.layout-margin .flex-offset-md-20,.layout-margin .offset-md-20,.offset-md-20{margin-left:20%}[dir=rtl] .flex-offset-md-20,[dir=rtl] .layout-margin .flex-offset-md-20,[dir=rtl] .layout-margin .offset-md-20,[dir=rtl] .offset-md-20{margin-left:auto;margin-right:20%}.flex-offset-md-25,.layout-margin .flex-offset-md-25,.layout-margin .offset-md-25,.offset-md-25{margin-left:25%}[dir=rtl] .flex-offset-md-25,[dir=rtl] .layout-margin .flex-offset-md-25,[dir=rtl] .layout-margin .offset-md-25,[dir=rtl] .offset-md-25{margin-left:auto;margin-right:25%}.flex-offset-md-30,.layout-margin .flex-offset-md-30,.layout-margin .offset-md-30,.offset-md-30{margin-left:30%}[dir=rtl] .flex-offset-md-30,[dir=rtl] .layout-margin .flex-offset-md-30,[dir=rtl] .layout-margin .offset-md-30,[dir=rtl] .offset-md-30{margin-left:auto;margin-right:30%}.flex-offset-md-35,.layout-margin .flex-offset-md-35,.layout-margin .offset-md-35,.offset-md-35{margin-left:35%}[dir=rtl] .flex-offset-md-35,[dir=rtl] .layout-margin .flex-offset-md-35,[dir=rtl] .layout-margin .offset-md-35,[dir=rtl] .offset-md-35{margin-left:auto;margin-right:35%}.flex-offset-md-40,.layout-margin .flex-offset-md-40,.layout-margin .offset-md-40,.offset-md-40{margin-left:40%}[dir=rtl] .flex-offset-md-40,[dir=rtl] .layout-margin .flex-offset-md-40,[dir=rtl] .layout-margin .offset-md-40,[dir=rtl] .offset-md-40{margin-left:auto;margin-right:40%}.flex-offset-md-45,.layout-margin .flex-offset-md-45,.layout-margin .offset-md-45,.offset-md-45{margin-left:45%}[dir=rtl] .flex-offset-md-45,[dir=rtl] .layout-margin .flex-offset-md-45,[dir=rtl] .layout-margin .offset-md-45,[dir=rtl] .offset-md-45{margin-left:auto;margin-right:45%}.flex-offset-md-50,.layout-margin .flex-offset-md-50,.layout-margin .offset-md-50,.offset-md-50{margin-left:50%}[dir=rtl] .flex-offset-md-50,[dir=rtl] .layout-margin .flex-offset-md-50,[dir=rtl] .layout-margin .offset-md-50,[dir=rtl] .offset-md-50{margin-left:auto;margin-right:50%}.flex-offset-md-55,.layout-margin .flex-offset-md-55,.layout-margin .offset-md-55,.offset-md-55{margin-left:55%}[dir=rtl] .flex-offset-md-55,[dir=rtl] .layout-margin .flex-offset-md-55,[dir=rtl] .layout-margin .offset-md-55,[dir=rtl] .offset-md-55{margin-left:auto;margin-right:55%}.flex-offset-md-60,.layout-margin .flex-offset-md-60,.layout-margin .offset-md-60,.offset-md-60{margin-left:60%}[dir=rtl] .flex-offset-md-60,[dir=rtl] .layout-margin .flex-offset-md-60,[dir=rtl] .layout-margin .offset-md-60,[dir=rtl] .offset-md-60{margin-left:auto;margin-right:60%}.flex-offset-md-65,.layout-margin .flex-offset-md-65,.layout-margin .offset-md-65,.offset-md-65{margin-left:65%}[dir=rtl] .flex-offset-md-65,[dir=rtl] .layout-margin .flex-offset-md-65,[dir=rtl] .layout-margin .offset-md-65,[dir=rtl] .offset-md-65{margin-left:auto;margin-right:65%}.flex-offset-md-70,.layout-margin .flex-offset-md-70,.layout-margin .offset-md-70,.offset-md-70{margin-left:70%}[dir=rtl] .flex-offset-md-70,[dir=rtl] .layout-margin .flex-offset-md-70,[dir=rtl] .layout-margin .offset-md-70,[dir=rtl] .offset-md-70{margin-left:auto;margin-right:70%}.flex-offset-md-75,.layout-margin .flex-offset-md-75,.layout-margin .offset-md-75,.offset-md-75{margin-left:75%}[dir=rtl] .flex-offset-md-75,[dir=rtl] .layout-margin .flex-offset-md-75,[dir=rtl] .layout-margin .offset-md-75,[dir=rtl] .offset-md-75{margin-left:auto;margin-right:75%}.flex-offset-md-80,.layout-margin .flex-offset-md-80,.layout-margin .offset-md-80,.offset-md-80{margin-left:80%}[dir=rtl] .flex-offset-md-80,[dir=rtl] .layout-margin .flex-offset-md-80,[dir=rtl] .layout-margin .offset-md-80,[dir=rtl] .offset-md-80{margin-left:auto;margin-right:80%}.flex-offset-md-85,.layout-margin .flex-offset-md-85,.layout-margin .offset-md-85,.offset-md-85{margin-left:85%}[dir=rtl] .flex-offset-md-85,[dir=rtl] .layout-margin .flex-offset-md-85,[dir=rtl] .layout-margin .offset-md-85,[dir=rtl] .offset-md-85{margin-left:auto;margin-right:85%}.flex-offset-md-90,.layout-margin .flex-offset-md-90,.layout-margin .offset-md-90,.offset-md-90{margin-left:90%}[dir=rtl] .flex-offset-md-90,[dir=rtl] .layout-margin .flex-offset-md-90,[dir=rtl] .layout-margin .offset-md-90,[dir=rtl] .offset-md-90{margin-left:auto;margin-right:90%}.flex-offset-md-95,.layout-margin .flex-offset-md-95,.layout-margin .offset-md-95,.offset-md-95{margin-left:95%}[dir=rtl] .flex-offset-md-95,[dir=rtl] .layout-margin .flex-offset-md-95,[dir=rtl] .layout-margin .offset-md-95,[dir=rtl] .offset-md-95{margin-left:auto;margin-right:95%}.flex-offset-md-33,.layout-margin .flex-offset-md-33,.layout-margin .offset-md-33,.offset-md-33{margin-left:33.3333333333%}.flex-offset-md-66,.layout-margin .flex-offset-md-66,.layout-margin .offset-md-66,.offset-md-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-md-66,[dir=rtl] .layout-margin .flex-offset-md-66,[dir=rtl] .layout-margin .offset-md-66,[dir=rtl] .offset-md-66{margin-left:auto;margin-right:66.6666666667%}.layout-align-md,.layout-align-md-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-md-start,.layout-align-md-start-center,.layout-align-md-start-end,.layout-align-md-start-start,.layout-align-md-start-stretch{justify-content:flex-start}.layout-align-md-center,.layout-align-md-center-center,.layout-align-md-center-end,.layout-align-md-center-start,.layout-align-md-center-stretch{justify-content:center}.layout-align-md-end,.layout-align-md-end-center,.layout-align-md-end-end,.layout-align-md-end-start,.layout-align-md-end-stretch{justify-content:flex-end}.layout-align-md-space-around,.layout-align-md-space-around-center,.layout-align-md-space-around-end,.layout-align-md-space-around-start,.layout-align-md-space-around-stretch{justify-content:space-around}.layout-align-md-space-between,.layout-align-md-space-between-center,.layout-align-md-space-between-end,.layout-align-md-space-between-start,.layout-align-md-space-between-stretch{justify-content:space-between}.layout-align-md-center-start,.layout-align-md-end-start,.layout-align-md-space-around-start,.layout-align-md-space-between-start,.layout-align-md-start-start{align-content:flex-start;align-items:flex-start}.layout-align-md-center-center,.layout-align-md-end-center,.layout-align-md-space-around-center,.layout-align-md-space-between-center,.layout-align-md-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-md-center-center>*,.layout-align-md-end-center>*,.layout-align-md-space-around-center>*,.layout-align-md-space-between-center>*,.layout-align-md-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-md-center-end,.layout-align-md-end-end,.layout-align-md-space-around-end,.layout-align-md-space-between-end,.layout-align-md-start-end{align-content:flex-end;align-items:flex-end}.layout-align-md-center-stretch,.layout-align-md-end-stretch,.layout-align-md-space-around-stretch,.layout-align-md-space-between-stretch,.layout-align-md-start-stretch{align-content:stretch;align-items:stretch}.flex-md{box-sizing:border-box;flex:1}.flex-md-grow{box-sizing:border-box;flex:1 1 100%}.flex-md-initial{box-sizing:border-box;flex:0 1 auto}.flex-md-auto{box-sizing:border-box;flex:1 1 auto}.flex-md-none{box-sizing:border-box;flex:0 0 auto}.flex-md-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-md-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-md-0,.layout-row>.flex-md-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-md-0{min-width:0}.layout-column>.flex-md-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.layout-md-row>.flex-md-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0;min-width:0}.layout-md-column>.flex-md-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%;min-height:0}.flex-md-5,.layout-row>.flex-md-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-md-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.layout-md-row>.flex-md-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-md-column>.flex-md-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-md-10,.layout-row>.flex-md-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-md-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.layout-md-row>.flex-md-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-md-column>.flex-md-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-md-15,.layout-row>.flex-md-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-md-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.layout-md-row>.flex-md-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-md-column>.flex-md-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-md-20,.layout-row>.flex-md-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-md-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.layout-md-row>.flex-md-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-md-column>.flex-md-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-md-25,.layout-row>.flex-md-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-md-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.layout-md-row>.flex-md-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-md-column>.flex-md-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-md-30,.layout-row>.flex-md-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-md-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.layout-md-row>.flex-md-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-md-column>.flex-md-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-md-35,.layout-row>.flex-md-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-md-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.layout-md-row>.flex-md-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-md-column>.flex-md-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-md-40,.layout-row>.flex-md-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-md-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.layout-md-row>.flex-md-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-md-column>.flex-md-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-md-45,.layout-row>.flex-md-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-md-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.layout-md-row>.flex-md-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-md-column>.flex-md-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-md-50,.layout-row>.flex-md-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-md-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.layout-md-row>.flex-md-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-md-column>.flex-md-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-md-55,.layout-row>.flex-md-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-md-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.layout-md-row>.flex-md-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-md-column>.flex-md-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-md-60,.layout-row>.flex-md-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-md-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.layout-md-row>.flex-md-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-md-column>.flex-md-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-md-65,.layout-row>.flex-md-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-md-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.layout-md-row>.flex-md-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-md-column>.flex-md-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-md-70,.layout-row>.flex-md-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-md-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.layout-md-row>.flex-md-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-md-column>.flex-md-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-md-75,.layout-row>.flex-md-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-md-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.layout-md-row>.flex-md-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-md-column>.flex-md-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-md-80,.layout-row>.flex-md-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-md-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.layout-md-row>.flex-md-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-md-column>.flex-md-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-md-85,.layout-row>.flex-md-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-md-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.layout-md-row>.flex-md-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-md-column>.flex-md-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-md-90,.layout-row>.flex-md-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-md-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.layout-md-row>.flex-md-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-md-column>.flex-md-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-md-95,.layout-row>.flex-md-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-md-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.layout-md-row>.flex-md-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-md-column>.flex-md-95{max-height:95%}.flex-md-100,.layout-md-column>.flex-md-95{box-sizing:border-box;flex:1 1 100%;max-width:100%}.flex-md-100{max-height:100%}.layout-column>.flex-md-100,.layout-md-column>.flex-md-100,.layout-md-row>.flex-md-100,.layout-row>.flex-md-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.layout-row>.flex-md-33{box-sizing:border-box;flex:1 1 33.33%;max-height:100%;max-width:33.33%}.layout-row>.flex-md-66{box-sizing:border-box;flex:1 1 66.66%;max-height:100%;max-width:66.66%}.layout-column>.flex-md-33{box-sizing:border-box;flex:1 1 33.33%;max-height:33.33%;max-width:100%}.layout-column>.flex-md-66{box-sizing:border-box;flex:1 1 66.66%;max-height:66.66%;max-width:100%}.layout-md-row>.flex-md-33{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:33.33%}.layout-md-row>.flex-md-66{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:66.66%}.layout-md-row>.flex{min-width:0}.layout-md-column>.flex-md-33{box-sizing:border-box;flex:1 1 100%;max-height:33.33%;max-width:100%}.layout-md-column>.flex-md-66{box-sizing:border-box;flex:1 1 100%;max-height:66.66%;max-width:100%}.layout-md-column>.flex{min-height:0}.layout-md,.layout-md-column,.layout-md-row{box-sizing:border-box;display:flex}.layout-md-column{flex-direction:column}.layout-md-row{flex-direction:row}}@media (min-width:1280px){.flex-order-gt-md--20{order:-20}.flex-order-gt-md--19{order:-19}.flex-order-gt-md--18{order:-18}.flex-order-gt-md--17{order:-17}.flex-order-gt-md--16{order:-16}.flex-order-gt-md--15{order:-15}.flex-order-gt-md--14{order:-14}.flex-order-gt-md--13{order:-13}.flex-order-gt-md--12{order:-12}.flex-order-gt-md--11{order:-11}.flex-order-gt-md--10{order:-10}.flex-order-gt-md--9{order:-9}.flex-order-gt-md--8{order:-8}.flex-order-gt-md--7{order:-7}.flex-order-gt-md--6{order:-6}.flex-order-gt-md--5{order:-5}.flex-order-gt-md--4{order:-4}.flex-order-gt-md--3{order:-3}.flex-order-gt-md--2{order:-2}.flex-order-gt-md--1{order:-1}.flex-order-gt-md-0{order:0}.flex-order-gt-md-1{order:1}.flex-order-gt-md-2{order:2}.flex-order-gt-md-3{order:3}.flex-order-gt-md-4{order:4}.flex-order-gt-md-5{order:5}.flex-order-gt-md-6{order:6}.flex-order-gt-md-7{order:7}.flex-order-gt-md-8{order:8}.flex-order-gt-md-9{order:9}.flex-order-gt-md-10{order:10}.flex-order-gt-md-11{order:11}.flex-order-gt-md-12{order:12}.flex-order-gt-md-13{order:13}.flex-order-gt-md-14{order:14}.flex-order-gt-md-15{order:15}.flex-order-gt-md-16{order:16}.flex-order-gt-md-17{order:17}.flex-order-gt-md-18{order:18}.flex-order-gt-md-19{order:19}.flex-order-gt-md-20{order:20}.flex-offset-gt-md-0,.layout-margin .flex-offset-gt-md-0,.layout-margin .offset-gt-md-0,.offset-gt-md-0{margin-left:0}[dir=rtl] .flex-offset-gt-md-0,[dir=rtl] .layout-margin .flex-offset-gt-md-0,[dir=rtl] .layout-margin .offset-gt-md-0,[dir=rtl] .offset-gt-md-0{margin-left:auto;margin-right:0}.flex-offset-gt-md-5,.layout-margin .flex-offset-gt-md-5,.layout-margin .offset-gt-md-5,.offset-gt-md-5{margin-left:5%}[dir=rtl] .flex-offset-gt-md-5,[dir=rtl] .layout-margin .flex-offset-gt-md-5,[dir=rtl] .layout-margin .offset-gt-md-5,[dir=rtl] .offset-gt-md-5{margin-left:auto;margin-right:5%}.flex-offset-gt-md-10,.layout-margin .flex-offset-gt-md-10,.layout-margin .offset-gt-md-10,.offset-gt-md-10{margin-left:10%}[dir=rtl] .flex-offset-gt-md-10,[dir=rtl] .layout-margin .flex-offset-gt-md-10,[dir=rtl] .layout-margin .offset-gt-md-10,[dir=rtl] .offset-gt-md-10{margin-left:auto;margin-right:10%}.flex-offset-gt-md-15,.layout-margin .flex-offset-gt-md-15,.layout-margin .offset-gt-md-15,.offset-gt-md-15{margin-left:15%}[dir=rtl] .flex-offset-gt-md-15,[dir=rtl] .layout-margin .flex-offset-gt-md-15,[dir=rtl] .layout-margin .offset-gt-md-15,[dir=rtl] .offset-gt-md-15{margin-left:auto;margin-right:15%}.flex-offset-gt-md-20,.layout-margin .flex-offset-gt-md-20,.layout-margin .offset-gt-md-20,.offset-gt-md-20{margin-left:20%}[dir=rtl] .flex-offset-gt-md-20,[dir=rtl] .layout-margin .flex-offset-gt-md-20,[dir=rtl] .layout-margin .offset-gt-md-20,[dir=rtl] .offset-gt-md-20{margin-left:auto;margin-right:20%}.flex-offset-gt-md-25,.layout-margin .flex-offset-gt-md-25,.layout-margin .offset-gt-md-25,.offset-gt-md-25{margin-left:25%}[dir=rtl] .flex-offset-gt-md-25,[dir=rtl] .layout-margin .flex-offset-gt-md-25,[dir=rtl] .layout-margin .offset-gt-md-25,[dir=rtl] .offset-gt-md-25{margin-left:auto;margin-right:25%}.flex-offset-gt-md-30,.layout-margin .flex-offset-gt-md-30,.layout-margin .offset-gt-md-30,.offset-gt-md-30{margin-left:30%}[dir=rtl] .flex-offset-gt-md-30,[dir=rtl] .layout-margin .flex-offset-gt-md-30,[dir=rtl] .layout-margin .offset-gt-md-30,[dir=rtl] .offset-gt-md-30{margin-left:auto;margin-right:30%}.flex-offset-gt-md-35,.layout-margin .flex-offset-gt-md-35,.layout-margin .offset-gt-md-35,.offset-gt-md-35{margin-left:35%}[dir=rtl] .flex-offset-gt-md-35,[dir=rtl] .layout-margin .flex-offset-gt-md-35,[dir=rtl] .layout-margin .offset-gt-md-35,[dir=rtl] .offset-gt-md-35{margin-left:auto;margin-right:35%}.flex-offset-gt-md-40,.layout-margin .flex-offset-gt-md-40,.layout-margin .offset-gt-md-40,.offset-gt-md-40{margin-left:40%}[dir=rtl] .flex-offset-gt-md-40,[dir=rtl] .layout-margin .flex-offset-gt-md-40,[dir=rtl] .layout-margin .offset-gt-md-40,[dir=rtl] .offset-gt-md-40{margin-left:auto;margin-right:40%}.flex-offset-gt-md-45,.layout-margin .flex-offset-gt-md-45,.layout-margin .offset-gt-md-45,.offset-gt-md-45{margin-left:45%}[dir=rtl] .flex-offset-gt-md-45,[dir=rtl] .layout-margin .flex-offset-gt-md-45,[dir=rtl] .layout-margin .offset-gt-md-45,[dir=rtl] .offset-gt-md-45{margin-left:auto;margin-right:45%}.flex-offset-gt-md-50,.layout-margin .flex-offset-gt-md-50,.layout-margin .offset-gt-md-50,.offset-gt-md-50{margin-left:50%}[dir=rtl] .flex-offset-gt-md-50,[dir=rtl] .layout-margin .flex-offset-gt-md-50,[dir=rtl] .layout-margin .offset-gt-md-50,[dir=rtl] .offset-gt-md-50{margin-left:auto;margin-right:50%}.flex-offset-gt-md-55,.layout-margin .flex-offset-gt-md-55,.layout-margin .offset-gt-md-55,.offset-gt-md-55{margin-left:55%}[dir=rtl] .flex-offset-gt-md-55,[dir=rtl] .layout-margin .flex-offset-gt-md-55,[dir=rtl] .layout-margin .offset-gt-md-55,[dir=rtl] .offset-gt-md-55{margin-left:auto;margin-right:55%}.flex-offset-gt-md-60,.layout-margin .flex-offset-gt-md-60,.layout-margin .offset-gt-md-60,.offset-gt-md-60{margin-left:60%}[dir=rtl] .flex-offset-gt-md-60,[dir=rtl] .layout-margin .flex-offset-gt-md-60,[dir=rtl] .layout-margin .offset-gt-md-60,[dir=rtl] .offset-gt-md-60{margin-left:auto;margin-right:60%}.flex-offset-gt-md-65,.layout-margin .flex-offset-gt-md-65,.layout-margin .offset-gt-md-65,.offset-gt-md-65{margin-left:65%}[dir=rtl] .flex-offset-gt-md-65,[dir=rtl] .layout-margin .flex-offset-gt-md-65,[dir=rtl] .layout-margin .offset-gt-md-65,[dir=rtl] .offset-gt-md-65{margin-left:auto;margin-right:65%}.flex-offset-gt-md-70,.layout-margin .flex-offset-gt-md-70,.layout-margin .offset-gt-md-70,.offset-gt-md-70{margin-left:70%}[dir=rtl] .flex-offset-gt-md-70,[dir=rtl] .layout-margin .flex-offset-gt-md-70,[dir=rtl] .layout-margin .offset-gt-md-70,[dir=rtl] .offset-gt-md-70{margin-left:auto;margin-right:70%}.flex-offset-gt-md-75,.layout-margin .flex-offset-gt-md-75,.layout-margin .offset-gt-md-75,.offset-gt-md-75{margin-left:75%}[dir=rtl] .flex-offset-gt-md-75,[dir=rtl] .layout-margin .flex-offset-gt-md-75,[dir=rtl] .layout-margin .offset-gt-md-75,[dir=rtl] .offset-gt-md-75{margin-left:auto;margin-right:75%}.flex-offset-gt-md-80,.layout-margin .flex-offset-gt-md-80,.layout-margin .offset-gt-md-80,.offset-gt-md-80{margin-left:80%}[dir=rtl] .flex-offset-gt-md-80,[dir=rtl] .layout-margin .flex-offset-gt-md-80,[dir=rtl] .layout-margin .offset-gt-md-80,[dir=rtl] .offset-gt-md-80{margin-left:auto;margin-right:80%}.flex-offset-gt-md-85,.layout-margin .flex-offset-gt-md-85,.layout-margin .offset-gt-md-85,.offset-gt-md-85{margin-left:85%}[dir=rtl] .flex-offset-gt-md-85,[dir=rtl] .layout-margin .flex-offset-gt-md-85,[dir=rtl] .layout-margin .offset-gt-md-85,[dir=rtl] .offset-gt-md-85{margin-left:auto;margin-right:85%}.flex-offset-gt-md-90,.layout-margin .flex-offset-gt-md-90,.layout-margin .offset-gt-md-90,.offset-gt-md-90{margin-left:90%}[dir=rtl] .flex-offset-gt-md-90,[dir=rtl] .layout-margin .flex-offset-gt-md-90,[dir=rtl] .layout-margin .offset-gt-md-90,[dir=rtl] .offset-gt-md-90{margin-left:auto;margin-right:90%}.flex-offset-gt-md-95,.layout-margin .flex-offset-gt-md-95,.layout-margin .offset-gt-md-95,.offset-gt-md-95{margin-left:95%}[dir=rtl] .flex-offset-gt-md-95,[dir=rtl] .layout-margin .flex-offset-gt-md-95,[dir=rtl] .layout-margin .offset-gt-md-95,[dir=rtl] .offset-gt-md-95{margin-left:auto;margin-right:95%}.flex-offset-gt-md-33,.layout-margin .flex-offset-gt-md-33,.layout-margin .offset-gt-md-33,.offset-gt-md-33{margin-left:33.3333333333%}.flex-offset-gt-md-66,.layout-margin .flex-offset-gt-md-66,.layout-margin .offset-gt-md-66,.offset-gt-md-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-gt-md-66,[dir=rtl] .layout-margin .flex-offset-gt-md-66,[dir=rtl] .layout-margin .offset-gt-md-66,[dir=rtl] .offset-gt-md-66{margin-left:auto;margin-right:66.6666666667%}.layout-align-gt-md,.layout-align-gt-md-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-gt-md-start,.layout-align-gt-md-start-center,.layout-align-gt-md-start-end,.layout-align-gt-md-start-start,.layout-align-gt-md-start-stretch{justify-content:flex-start}.layout-align-gt-md-center,.layout-align-gt-md-center-center,.layout-align-gt-md-center-end,.layout-align-gt-md-center-start,.layout-align-gt-md-center-stretch{justify-content:center}.layout-align-gt-md-end,.layout-align-gt-md-end-center,.layout-align-gt-md-end-end,.layout-align-gt-md-end-start,.layout-align-gt-md-end-stretch{justify-content:flex-end}.layout-align-gt-md-space-around,.layout-align-gt-md-space-around-center,.layout-align-gt-md-space-around-end,.layout-align-gt-md-space-around-start,.layout-align-gt-md-space-around-stretch{justify-content:space-around}.layout-align-gt-md-space-between,.layout-align-gt-md-space-between-center,.layout-align-gt-md-space-between-end,.layout-align-gt-md-space-between-start,.layout-align-gt-md-space-between-stretch{justify-content:space-between}.layout-align-gt-md-center-start,.layout-align-gt-md-end-start,.layout-align-gt-md-space-around-start,.layout-align-gt-md-space-between-start,.layout-align-gt-md-start-start{align-content:flex-start;align-items:flex-start}.layout-align-gt-md-center-center,.layout-align-gt-md-end-center,.layout-align-gt-md-space-around-center,.layout-align-gt-md-space-between-center,.layout-align-gt-md-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-gt-md-center-center>*,.layout-align-gt-md-end-center>*,.layout-align-gt-md-space-around-center>*,.layout-align-gt-md-space-between-center>*,.layout-align-gt-md-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-gt-md-center-end,.layout-align-gt-md-end-end,.layout-align-gt-md-space-around-end,.layout-align-gt-md-space-between-end,.layout-align-gt-md-start-end{align-content:flex-end;align-items:flex-end}.layout-align-gt-md-center-stretch,.layout-align-gt-md-end-stretch,.layout-align-gt-md-space-around-stretch,.layout-align-gt-md-space-between-stretch,.layout-align-gt-md-start-stretch{align-content:stretch;align-items:stretch}.flex-gt-md{box-sizing:border-box;flex:1}.flex-gt-md-grow{box-sizing:border-box;flex:1 1 100%}.flex-gt-md-initial{box-sizing:border-box;flex:0 1 auto}.flex-gt-md-auto{box-sizing:border-box;flex:1 1 auto}.flex-gt-md-none{box-sizing:border-box;flex:0 0 auto}.flex-gt-md-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-gt-md-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-gt-md-0,.layout-row>.flex-gt-md-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-gt-md-0{min-width:0}.layout-column>.flex-gt-md-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.layout-gt-md-row>.flex-gt-md-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0;min-width:0}.layout-gt-md-column>.flex-gt-md-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%;min-height:0}.flex-gt-md-5,.layout-row>.flex-gt-md-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-gt-md-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.layout-gt-md-row>.flex-gt-md-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-gt-md-column>.flex-gt-md-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-gt-md-10,.layout-row>.flex-gt-md-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-gt-md-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.layout-gt-md-row>.flex-gt-md-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-gt-md-column>.flex-gt-md-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-gt-md-15,.layout-row>.flex-gt-md-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-gt-md-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.layout-gt-md-row>.flex-gt-md-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-gt-md-column>.flex-gt-md-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-gt-md-20,.layout-row>.flex-gt-md-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-gt-md-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.layout-gt-md-row>.flex-gt-md-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-gt-md-column>.flex-gt-md-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-gt-md-25,.layout-row>.flex-gt-md-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-gt-md-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.layout-gt-md-row>.flex-gt-md-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-gt-md-column>.flex-gt-md-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-gt-md-30,.layout-row>.flex-gt-md-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-gt-md-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.layout-gt-md-row>.flex-gt-md-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-gt-md-column>.flex-gt-md-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-gt-md-35,.layout-row>.flex-gt-md-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-gt-md-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.layout-gt-md-row>.flex-gt-md-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-gt-md-column>.flex-gt-md-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-gt-md-40,.layout-row>.flex-gt-md-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-gt-md-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.layout-gt-md-row>.flex-gt-md-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-gt-md-column>.flex-gt-md-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-gt-md-45,.layout-row>.flex-gt-md-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-gt-md-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.layout-gt-md-row>.flex-gt-md-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-gt-md-column>.flex-gt-md-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-gt-md-50,.layout-row>.flex-gt-md-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-gt-md-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.layout-gt-md-row>.flex-gt-md-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-gt-md-column>.flex-gt-md-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-gt-md-55,.layout-row>.flex-gt-md-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-gt-md-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.layout-gt-md-row>.flex-gt-md-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-gt-md-column>.flex-gt-md-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-gt-md-60,.layout-row>.flex-gt-md-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-gt-md-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.layout-gt-md-row>.flex-gt-md-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-gt-md-column>.flex-gt-md-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-gt-md-65,.layout-row>.flex-gt-md-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-gt-md-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.layout-gt-md-row>.flex-gt-md-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-gt-md-column>.flex-gt-md-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-gt-md-70,.layout-row>.flex-gt-md-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-gt-md-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.layout-gt-md-row>.flex-gt-md-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-gt-md-column>.flex-gt-md-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-gt-md-75,.layout-row>.flex-gt-md-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-gt-md-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.layout-gt-md-row>.flex-gt-md-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-gt-md-column>.flex-gt-md-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-gt-md-80,.layout-row>.flex-gt-md-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-gt-md-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.layout-gt-md-row>.flex-gt-md-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-gt-md-column>.flex-gt-md-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-gt-md-85,.layout-row>.flex-gt-md-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-gt-md-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.layout-gt-md-row>.flex-gt-md-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-gt-md-column>.flex-gt-md-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-gt-md-90,.layout-row>.flex-gt-md-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-gt-md-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.layout-gt-md-row>.flex-gt-md-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-gt-md-column>.flex-gt-md-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-gt-md-95,.layout-row>.flex-gt-md-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-gt-md-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.layout-gt-md-row>.flex-gt-md-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-gt-md-column>.flex-gt-md-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.flex-gt-md-100,.layout-column>.flex-gt-md-100,.layout-gt-md-column>.flex-gt-md-100,.layout-gt-md-row>.flex-gt-md-100,.layout-row>.flex-gt-md-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.layout-row>.flex-gt-md-33{box-sizing:border-box;flex:1 1 33.33%;max-height:100%;max-width:33.33%}.layout-row>.flex-gt-md-66{box-sizing:border-box;flex:1 1 66.66%;max-height:100%;max-width:66.66%}.layout-column>.flex-gt-md-33{box-sizing:border-box;flex:1 1 33.33%;max-height:33.33%;max-width:100%}.layout-column>.flex-gt-md-66{box-sizing:border-box;flex:1 1 66.66%;max-height:66.66%;max-width:100%}.layout-gt-md-row>.flex-gt-md-33{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:33.33%}.layout-gt-md-row>.flex-gt-md-66{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:66.66%}.layout-gt-md-row>.flex{min-width:0}.layout-gt-md-column>.flex-gt-md-33{box-sizing:border-box;flex:1 1 100%;max-height:33.33%;max-width:100%}.layout-gt-md-column>.flex-gt-md-66{box-sizing:border-box;flex:1 1 100%;max-height:66.66%;max-width:100%}.layout-gt-md-column>.flex{min-height:0}.layout-gt-md,.layout-gt-md-column,.layout-gt-md-row{box-sizing:border-box;display:flex}.layout-gt-md-column{flex-direction:column}.layout-gt-md-row{flex-direction:row}}@media (min-width:1280px) and (max-width:1919px){.hide-gt-md:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show),.hide-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show),.hide-gt-xs:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show),.hide-lg:not(.show-lg):not(.show-gt-md):not(.show-gt-sm):not(.show-gt-xs):not(.show),.hide:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show){display:none}.flex-order-lg--20{order:-20}.flex-order-lg--19{order:-19}.flex-order-lg--18{order:-18}.flex-order-lg--17{order:-17}.flex-order-lg--16{order:-16}.flex-order-lg--15{order:-15}.flex-order-lg--14{order:-14}.flex-order-lg--13{order:-13}.flex-order-lg--12{order:-12}.flex-order-lg--11{order:-11}.flex-order-lg--10{order:-10}.flex-order-lg--9{order:-9}.flex-order-lg--8{order:-8}.flex-order-lg--7{order:-7}.flex-order-lg--6{order:-6}.flex-order-lg--5{order:-5}.flex-order-lg--4{order:-4}.flex-order-lg--3{order:-3}.flex-order-lg--2{order:-2}.flex-order-lg--1{order:-1}.flex-order-lg-0{order:0}.flex-order-lg-1{order:1}.flex-order-lg-2{order:2}.flex-order-lg-3{order:3}.flex-order-lg-4{order:4}.flex-order-lg-5{order:5}.flex-order-lg-6{order:6}.flex-order-lg-7{order:7}.flex-order-lg-8{order:8}.flex-order-lg-9{order:9}.flex-order-lg-10{order:10}.flex-order-lg-11{order:11}.flex-order-lg-12{order:12}.flex-order-lg-13{order:13}.flex-order-lg-14{order:14}.flex-order-lg-15{order:15}.flex-order-lg-16{order:16}.flex-order-lg-17{order:17}.flex-order-lg-18{order:18}.flex-order-lg-19{order:19}.flex-order-lg-20{order:20}.flex-offset-lg-0,.layout-margin .flex-offset-lg-0,.layout-margin .offset-lg-0,.offset-lg-0{margin-left:0}[dir=rtl] .flex-offset-lg-0,[dir=rtl] .layout-margin .flex-offset-lg-0,[dir=rtl] .layout-margin .offset-lg-0,[dir=rtl] .offset-lg-0{margin-left:auto;margin-right:0}.flex-offset-lg-5,.layout-margin .flex-offset-lg-5,.layout-margin .offset-lg-5,.offset-lg-5{margin-left:5%}[dir=rtl] .flex-offset-lg-5,[dir=rtl] .layout-margin .flex-offset-lg-5,[dir=rtl] .layout-margin .offset-lg-5,[dir=rtl] .offset-lg-5{margin-left:auto;margin-right:5%}.flex-offset-lg-10,.layout-margin .flex-offset-lg-10,.layout-margin .offset-lg-10,.offset-lg-10{margin-left:10%}[dir=rtl] .flex-offset-lg-10,[dir=rtl] .layout-margin .flex-offset-lg-10,[dir=rtl] .layout-margin .offset-lg-10,[dir=rtl] .offset-lg-10{margin-left:auto;margin-right:10%}.flex-offset-lg-15,.layout-margin .flex-offset-lg-15,.layout-margin .offset-lg-15,.offset-lg-15{margin-left:15%}[dir=rtl] .flex-offset-lg-15,[dir=rtl] .layout-margin .flex-offset-lg-15,[dir=rtl] .layout-margin .offset-lg-15,[dir=rtl] .offset-lg-15{margin-left:auto;margin-right:15%}.flex-offset-lg-20,.layout-margin .flex-offset-lg-20,.layout-margin .offset-lg-20,.offset-lg-20{margin-left:20%}[dir=rtl] .flex-offset-lg-20,[dir=rtl] .layout-margin .flex-offset-lg-20,[dir=rtl] .layout-margin .offset-lg-20,[dir=rtl] .offset-lg-20{margin-left:auto;margin-right:20%}.flex-offset-lg-25,.layout-margin .flex-offset-lg-25,.layout-margin .offset-lg-25,.offset-lg-25{margin-left:25%}[dir=rtl] .flex-offset-lg-25,[dir=rtl] .layout-margin .flex-offset-lg-25,[dir=rtl] .layout-margin .offset-lg-25,[dir=rtl] .offset-lg-25{margin-left:auto;margin-right:25%}.flex-offset-lg-30,.layout-margin .flex-offset-lg-30,.layout-margin .offset-lg-30,.offset-lg-30{margin-left:30%}[dir=rtl] .flex-offset-lg-30,[dir=rtl] .layout-margin .flex-offset-lg-30,[dir=rtl] .layout-margin .offset-lg-30,[dir=rtl] .offset-lg-30{margin-left:auto;margin-right:30%}.flex-offset-lg-35,.layout-margin .flex-offset-lg-35,.layout-margin .offset-lg-35,.offset-lg-35{margin-left:35%}[dir=rtl] .flex-offset-lg-35,[dir=rtl] .layout-margin .flex-offset-lg-35,[dir=rtl] .layout-margin .offset-lg-35,[dir=rtl] .offset-lg-35{margin-left:auto;margin-right:35%}.flex-offset-lg-40,.layout-margin .flex-offset-lg-40,.layout-margin .offset-lg-40,.offset-lg-40{margin-left:40%}[dir=rtl] .flex-offset-lg-40,[dir=rtl] .layout-margin .flex-offset-lg-40,[dir=rtl] .layout-margin .offset-lg-40,[dir=rtl] .offset-lg-40{margin-left:auto;margin-right:40%}.flex-offset-lg-45,.layout-margin .flex-offset-lg-45,.layout-margin .offset-lg-45,.offset-lg-45{margin-left:45%}[dir=rtl] .flex-offset-lg-45,[dir=rtl] .layout-margin .flex-offset-lg-45,[dir=rtl] .layout-margin .offset-lg-45,[dir=rtl] .offset-lg-45{margin-left:auto;margin-right:45%}.flex-offset-lg-50,.layout-margin .flex-offset-lg-50,.layout-margin .offset-lg-50,.offset-lg-50{margin-left:50%}[dir=rtl] .flex-offset-lg-50,[dir=rtl] .layout-margin .flex-offset-lg-50,[dir=rtl] .layout-margin .offset-lg-50,[dir=rtl] .offset-lg-50{margin-left:auto;margin-right:50%}.flex-offset-lg-55,.layout-margin .flex-offset-lg-55,.layout-margin .offset-lg-55,.offset-lg-55{margin-left:55%}[dir=rtl] .flex-offset-lg-55,[dir=rtl] .layout-margin .flex-offset-lg-55,[dir=rtl] .layout-margin .offset-lg-55,[dir=rtl] .offset-lg-55{margin-left:auto;margin-right:55%}.flex-offset-lg-60,.layout-margin .flex-offset-lg-60,.layout-margin .offset-lg-60,.offset-lg-60{margin-left:60%}[dir=rtl] .flex-offset-lg-60,[dir=rtl] .layout-margin .flex-offset-lg-60,[dir=rtl] .layout-margin .offset-lg-60,[dir=rtl] .offset-lg-60{margin-left:auto;margin-right:60%}.flex-offset-lg-65,.layout-margin .flex-offset-lg-65,.layout-margin .offset-lg-65,.offset-lg-65{margin-left:65%}[dir=rtl] .flex-offset-lg-65,[dir=rtl] .layout-margin .flex-offset-lg-65,[dir=rtl] .layout-margin .offset-lg-65,[dir=rtl] .offset-lg-65{margin-left:auto;margin-right:65%}.flex-offset-lg-70,.layout-margin .flex-offset-lg-70,.layout-margin .offset-lg-70,.offset-lg-70{margin-left:70%}[dir=rtl] .flex-offset-lg-70,[dir=rtl] .layout-margin .flex-offset-lg-70,[dir=rtl] .layout-margin .offset-lg-70,[dir=rtl] .offset-lg-70{margin-left:auto;margin-right:70%}.flex-offset-lg-75,.layout-margin .flex-offset-lg-75,.layout-margin .offset-lg-75,.offset-lg-75{margin-left:75%}[dir=rtl] .flex-offset-lg-75,[dir=rtl] .layout-margin .flex-offset-lg-75,[dir=rtl] .layout-margin .offset-lg-75,[dir=rtl] .offset-lg-75{margin-left:auto;margin-right:75%}.flex-offset-lg-80,.layout-margin .flex-offset-lg-80,.layout-margin .offset-lg-80,.offset-lg-80{margin-left:80%}[dir=rtl] .flex-offset-lg-80,[dir=rtl] .layout-margin .flex-offset-lg-80,[dir=rtl] .layout-margin .offset-lg-80,[dir=rtl] .offset-lg-80{margin-left:auto;margin-right:80%}.flex-offset-lg-85,.layout-margin .flex-offset-lg-85,.layout-margin .offset-lg-85,.offset-lg-85{margin-left:85%}[dir=rtl] .flex-offset-lg-85,[dir=rtl] .layout-margin .flex-offset-lg-85,[dir=rtl] .layout-margin .offset-lg-85,[dir=rtl] .offset-lg-85{margin-left:auto;margin-right:85%}.flex-offset-lg-90,.layout-margin .flex-offset-lg-90,.layout-margin .offset-lg-90,.offset-lg-90{margin-left:90%}[dir=rtl] .flex-offset-lg-90,[dir=rtl] .layout-margin .flex-offset-lg-90,[dir=rtl] .layout-margin .offset-lg-90,[dir=rtl] .offset-lg-90{margin-left:auto;margin-right:90%}.flex-offset-lg-95,.layout-margin .flex-offset-lg-95,.layout-margin .offset-lg-95,.offset-lg-95{margin-left:95%}[dir=rtl] .flex-offset-lg-95,[dir=rtl] .layout-margin .flex-offset-lg-95,[dir=rtl] .layout-margin .offset-lg-95,[dir=rtl] .offset-lg-95{margin-left:auto;margin-right:95%}.flex-offset-lg-33,.layout-margin .flex-offset-lg-33,.layout-margin .offset-lg-33,.offset-lg-33{margin-left:33.3333333333%}.flex-offset-lg-66,.layout-margin .flex-offset-lg-66,.layout-margin .offset-lg-66,.offset-lg-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-lg-66,[dir=rtl] .layout-margin .flex-offset-lg-66,[dir=rtl] .layout-margin .offset-lg-66,[dir=rtl] .offset-lg-66{margin-left:auto;margin-right:66.6666666667%}.layout-align-lg,.layout-align-lg-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-lg-start,.layout-align-lg-start-center,.layout-align-lg-start-end,.layout-align-lg-start-start,.layout-align-lg-start-stretch{justify-content:flex-start}.layout-align-lg-center,.layout-align-lg-center-center,.layout-align-lg-center-end,.layout-align-lg-center-start,.layout-align-lg-center-stretch{justify-content:center}.layout-align-lg-end,.layout-align-lg-end-center,.layout-align-lg-end-end,.layout-align-lg-end-start,.layout-align-lg-end-stretch{justify-content:flex-end}.layout-align-lg-space-around,.layout-align-lg-space-around-center,.layout-align-lg-space-around-end,.layout-align-lg-space-around-start,.layout-align-lg-space-around-stretch{justify-content:space-around}.layout-align-lg-space-between,.layout-align-lg-space-between-center,.layout-align-lg-space-between-end,.layout-align-lg-space-between-start,.layout-align-lg-space-between-stretch{justify-content:space-between}.layout-align-lg-center-start,.layout-align-lg-end-start,.layout-align-lg-space-around-start,.layout-align-lg-space-between-start,.layout-align-lg-start-start{align-content:flex-start;align-items:flex-start}.layout-align-lg-center-center,.layout-align-lg-end-center,.layout-align-lg-space-around-center,.layout-align-lg-space-between-center,.layout-align-lg-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-lg-center-center>*,.layout-align-lg-end-center>*,.layout-align-lg-space-around-center>*,.layout-align-lg-space-between-center>*,.layout-align-lg-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-lg-center-end,.layout-align-lg-end-end,.layout-align-lg-space-around-end,.layout-align-lg-space-between-end,.layout-align-lg-start-end{align-content:flex-end;align-items:flex-end}.layout-align-lg-center-stretch,.layout-align-lg-end-stretch,.layout-align-lg-space-around-stretch,.layout-align-lg-space-between-stretch,.layout-align-lg-start-stretch{align-content:stretch;align-items:stretch}.flex-lg{box-sizing:border-box;flex:1}.flex-lg-grow{box-sizing:border-box;flex:1 1 100%}.flex-lg-initial{box-sizing:border-box;flex:0 1 auto}.flex-lg-auto{box-sizing:border-box;flex:1 1 auto}.flex-lg-none{box-sizing:border-box;flex:0 0 auto}.flex-lg-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-lg-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-lg-0,.layout-row>.flex-lg-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-lg-0{min-width:0}.layout-column>.flex-lg-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.layout-lg-row>.flex-lg-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0;min-width:0}.layout-lg-column>.flex-lg-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%;min-height:0}.flex-lg-5,.layout-row>.flex-lg-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-lg-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.layout-lg-row>.flex-lg-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-lg-column>.flex-lg-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-lg-10,.layout-row>.flex-lg-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-lg-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.layout-lg-row>.flex-lg-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-lg-column>.flex-lg-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-lg-15,.layout-row>.flex-lg-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-lg-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.layout-lg-row>.flex-lg-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-lg-column>.flex-lg-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-lg-20,.layout-row>.flex-lg-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-lg-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.layout-lg-row>.flex-lg-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-lg-column>.flex-lg-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-lg-25,.layout-row>.flex-lg-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-lg-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.layout-lg-row>.flex-lg-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-lg-column>.flex-lg-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-lg-30,.layout-row>.flex-lg-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-lg-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.layout-lg-row>.flex-lg-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-lg-column>.flex-lg-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-lg-35,.layout-row>.flex-lg-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-lg-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.layout-lg-row>.flex-lg-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-lg-column>.flex-lg-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-lg-40,.layout-row>.flex-lg-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-lg-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.layout-lg-row>.flex-lg-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-lg-column>.flex-lg-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-lg-45,.layout-row>.flex-lg-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-lg-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.layout-lg-row>.flex-lg-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-lg-column>.flex-lg-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-lg-50,.layout-row>.flex-lg-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-lg-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.layout-lg-row>.flex-lg-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-lg-column>.flex-lg-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-lg-55,.layout-row>.flex-lg-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-lg-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.layout-lg-row>.flex-lg-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-lg-column>.flex-lg-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-lg-60,.layout-row>.flex-lg-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-lg-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.layout-lg-row>.flex-lg-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-lg-column>.flex-lg-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-lg-65,.layout-row>.flex-lg-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-lg-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.layout-lg-row>.flex-lg-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-lg-column>.flex-lg-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-lg-70,.layout-row>.flex-lg-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-lg-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.layout-lg-row>.flex-lg-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-lg-column>.flex-lg-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-lg-75,.layout-row>.flex-lg-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-lg-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.layout-lg-row>.flex-lg-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-lg-column>.flex-lg-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-lg-80,.layout-row>.flex-lg-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-lg-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.layout-lg-row>.flex-lg-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-lg-column>.flex-lg-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-lg-85,.layout-row>.flex-lg-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-lg-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.layout-lg-row>.flex-lg-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-lg-column>.flex-lg-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-lg-90,.layout-row>.flex-lg-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-lg-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.layout-lg-row>.flex-lg-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-lg-column>.flex-lg-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-lg-95,.layout-row>.flex-lg-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-lg-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.layout-lg-row>.flex-lg-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-lg-column>.flex-lg-95{max-height:95%}.flex-lg-100,.layout-lg-column>.flex-lg-95{box-sizing:border-box;flex:1 1 100%;max-width:100%}.flex-lg-100{max-height:100%}.layout-column>.flex-lg-100,.layout-lg-column>.flex-lg-100,.layout-lg-row>.flex-lg-100,.layout-row>.flex-lg-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.layout-row>.flex-lg-33{box-sizing:border-box;flex:1 1 33.33%;max-height:100%;max-width:33.33%}.layout-row>.flex-lg-66{box-sizing:border-box;flex:1 1 66.66%;max-height:100%;max-width:66.66%}.layout-column>.flex-lg-33{box-sizing:border-box;flex:1 1 33.33%;max-height:33.33%;max-width:100%}.layout-column>.flex-lg-66{box-sizing:border-box;flex:1 1 66.66%;max-height:66.66%;max-width:100%}.layout-lg-row>.flex-lg-33{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:33.33%}.layout-lg-row>.flex-lg-66{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:66.66%}.layout-lg-row>.flex{min-width:0}.layout-lg-column>.flex-lg-33{box-sizing:border-box;flex:1 1 100%;max-height:33.33%;max-width:100%}.layout-lg-column>.flex-lg-66{box-sizing:border-box;flex:1 1 100%;max-height:66.66%;max-width:100%}.layout-lg-column>.flex{min-height:0}.layout-lg,.layout-lg-column,.layout-lg-row{box-sizing:border-box;display:flex}.layout-lg-column{flex-direction:column}.layout-lg-row{flex-direction:row}}@media (min-width:1920px){.flex-order-gt-lg--20{order:-20}.flex-order-gt-lg--19{order:-19}.flex-order-gt-lg--18{order:-18}.flex-order-gt-lg--17{order:-17}.flex-order-gt-lg--16{order:-16}.flex-order-gt-lg--15{order:-15}.flex-order-gt-lg--14{order:-14}.flex-order-gt-lg--13{order:-13}.flex-order-gt-lg--12{order:-12}.flex-order-gt-lg--11{order:-11}.flex-order-gt-lg--10{order:-10}.flex-order-gt-lg--9{order:-9}.flex-order-gt-lg--8{order:-8}.flex-order-gt-lg--7{order:-7}.flex-order-gt-lg--6{order:-6}.flex-order-gt-lg--5{order:-5}.flex-order-gt-lg--4{order:-4}.flex-order-gt-lg--3{order:-3}.flex-order-gt-lg--2{order:-2}.flex-order-gt-lg--1{order:-1}.flex-order-gt-lg-0{order:0}.flex-order-gt-lg-1{order:1}.flex-order-gt-lg-2{order:2}.flex-order-gt-lg-3{order:3}.flex-order-gt-lg-4{order:4}.flex-order-gt-lg-5{order:5}.flex-order-gt-lg-6{order:6}.flex-order-gt-lg-7{order:7}.flex-order-gt-lg-8{order:8}.flex-order-gt-lg-9{order:9}.flex-order-gt-lg-10{order:10}.flex-order-gt-lg-11{order:11}.flex-order-gt-lg-12{order:12}.flex-order-gt-lg-13{order:13}.flex-order-gt-lg-14{order:14}.flex-order-gt-lg-15{order:15}.flex-order-gt-lg-16{order:16}.flex-order-gt-lg-17{order:17}.flex-order-gt-lg-18{order:18}.flex-order-gt-lg-19{order:19}.flex-order-gt-lg-20{order:20}.flex-offset-gt-lg-0,.layout-margin .flex-offset-gt-lg-0,.layout-margin .offset-gt-lg-0,.offset-gt-lg-0{margin-left:0}[dir=rtl] .flex-offset-gt-lg-0,[dir=rtl] .layout-margin .flex-offset-gt-lg-0,[dir=rtl] .layout-margin .offset-gt-lg-0,[dir=rtl] .offset-gt-lg-0{margin-left:auto;margin-right:0}.flex-offset-gt-lg-5,.layout-margin .flex-offset-gt-lg-5,.layout-margin .offset-gt-lg-5,.offset-gt-lg-5{margin-left:5%}[dir=rtl] .flex-offset-gt-lg-5,[dir=rtl] .layout-margin .flex-offset-gt-lg-5,[dir=rtl] .layout-margin .offset-gt-lg-5,[dir=rtl] .offset-gt-lg-5{margin-left:auto;margin-right:5%}.flex-offset-gt-lg-10,.layout-margin .flex-offset-gt-lg-10,.layout-margin .offset-gt-lg-10,.offset-gt-lg-10{margin-left:10%}[dir=rtl] .flex-offset-gt-lg-10,[dir=rtl] .layout-margin .flex-offset-gt-lg-10,[dir=rtl] .layout-margin .offset-gt-lg-10,[dir=rtl] .offset-gt-lg-10{margin-left:auto;margin-right:10%}.flex-offset-gt-lg-15,.layout-margin .flex-offset-gt-lg-15,.layout-margin .offset-gt-lg-15,.offset-gt-lg-15{margin-left:15%}[dir=rtl] .flex-offset-gt-lg-15,[dir=rtl] .layout-margin .flex-offset-gt-lg-15,[dir=rtl] .layout-margin .offset-gt-lg-15,[dir=rtl] .offset-gt-lg-15{margin-left:auto;margin-right:15%}.flex-offset-gt-lg-20,.layout-margin .flex-offset-gt-lg-20,.layout-margin .offset-gt-lg-20,.offset-gt-lg-20{margin-left:20%}[dir=rtl] .flex-offset-gt-lg-20,[dir=rtl] .layout-margin .flex-offset-gt-lg-20,[dir=rtl] .layout-margin .offset-gt-lg-20,[dir=rtl] .offset-gt-lg-20{margin-left:auto;margin-right:20%}.flex-offset-gt-lg-25,.layout-margin .flex-offset-gt-lg-25,.layout-margin .offset-gt-lg-25,.offset-gt-lg-25{margin-left:25%}[dir=rtl] .flex-offset-gt-lg-25,[dir=rtl] .layout-margin .flex-offset-gt-lg-25,[dir=rtl] .layout-margin .offset-gt-lg-25,[dir=rtl] .offset-gt-lg-25{margin-left:auto;margin-right:25%}.flex-offset-gt-lg-30,.layout-margin .flex-offset-gt-lg-30,.layout-margin .offset-gt-lg-30,.offset-gt-lg-30{margin-left:30%}[dir=rtl] .flex-offset-gt-lg-30,[dir=rtl] .layout-margin .flex-offset-gt-lg-30,[dir=rtl] .layout-margin .offset-gt-lg-30,[dir=rtl] .offset-gt-lg-30{margin-left:auto;margin-right:30%}.flex-offset-gt-lg-35,.layout-margin .flex-offset-gt-lg-35,.layout-margin .offset-gt-lg-35,.offset-gt-lg-35{margin-left:35%}[dir=rtl] .flex-offset-gt-lg-35,[dir=rtl] .layout-margin .flex-offset-gt-lg-35,[dir=rtl] .layout-margin .offset-gt-lg-35,[dir=rtl] .offset-gt-lg-35{margin-left:auto;margin-right:35%}.flex-offset-gt-lg-40,.layout-margin .flex-offset-gt-lg-40,.layout-margin .offset-gt-lg-40,.offset-gt-lg-40{margin-left:40%}[dir=rtl] .flex-offset-gt-lg-40,[dir=rtl] .layout-margin .flex-offset-gt-lg-40,[dir=rtl] .layout-margin .offset-gt-lg-40,[dir=rtl] .offset-gt-lg-40{margin-left:auto;margin-right:40%}.flex-offset-gt-lg-45,.layout-margin .flex-offset-gt-lg-45,.layout-margin .offset-gt-lg-45,.offset-gt-lg-45{margin-left:45%}[dir=rtl] .flex-offset-gt-lg-45,[dir=rtl] .layout-margin .flex-offset-gt-lg-45,[dir=rtl] .layout-margin .offset-gt-lg-45,[dir=rtl] .offset-gt-lg-45{margin-left:auto;margin-right:45%}.flex-offset-gt-lg-50,.layout-margin .flex-offset-gt-lg-50,.layout-margin .offset-gt-lg-50,.offset-gt-lg-50{margin-left:50%}[dir=rtl] .flex-offset-gt-lg-50,[dir=rtl] .layout-margin .flex-offset-gt-lg-50,[dir=rtl] .layout-margin .offset-gt-lg-50,[dir=rtl] .offset-gt-lg-50{margin-left:auto;margin-right:50%}.flex-offset-gt-lg-55,.layout-margin .flex-offset-gt-lg-55,.layout-margin .offset-gt-lg-55,.offset-gt-lg-55{margin-left:55%}[dir=rtl] .flex-offset-gt-lg-55,[dir=rtl] .layout-margin .flex-offset-gt-lg-55,[dir=rtl] .layout-margin .offset-gt-lg-55,[dir=rtl] .offset-gt-lg-55{margin-left:auto;margin-right:55%}.flex-offset-gt-lg-60,.layout-margin .flex-offset-gt-lg-60,.layout-margin .offset-gt-lg-60,.offset-gt-lg-60{margin-left:60%}[dir=rtl] .flex-offset-gt-lg-60,[dir=rtl] .layout-margin .flex-offset-gt-lg-60,[dir=rtl] .layout-margin .offset-gt-lg-60,[dir=rtl] .offset-gt-lg-60{margin-left:auto;margin-right:60%}.flex-offset-gt-lg-65,.layout-margin .flex-offset-gt-lg-65,.layout-margin .offset-gt-lg-65,.offset-gt-lg-65{margin-left:65%}[dir=rtl] .flex-offset-gt-lg-65,[dir=rtl] .layout-margin .flex-offset-gt-lg-65,[dir=rtl] .layout-margin .offset-gt-lg-65,[dir=rtl] .offset-gt-lg-65{margin-left:auto;margin-right:65%}.flex-offset-gt-lg-70,.layout-margin .flex-offset-gt-lg-70,.layout-margin .offset-gt-lg-70,.offset-gt-lg-70{margin-left:70%}[dir=rtl] .flex-offset-gt-lg-70,[dir=rtl] .layout-margin .flex-offset-gt-lg-70,[dir=rtl] .layout-margin .offset-gt-lg-70,[dir=rtl] .offset-gt-lg-70{margin-left:auto;margin-right:70%}.flex-offset-gt-lg-75,.layout-margin .flex-offset-gt-lg-75,.layout-margin .offset-gt-lg-75,.offset-gt-lg-75{margin-left:75%}[dir=rtl] .flex-offset-gt-lg-75,[dir=rtl] .layout-margin .flex-offset-gt-lg-75,[dir=rtl] .layout-margin .offset-gt-lg-75,[dir=rtl] .offset-gt-lg-75{margin-left:auto;margin-right:75%}.flex-offset-gt-lg-80,.layout-margin .flex-offset-gt-lg-80,.layout-margin .offset-gt-lg-80,.offset-gt-lg-80{margin-left:80%}[dir=rtl] .flex-offset-gt-lg-80,[dir=rtl] .layout-margin .flex-offset-gt-lg-80,[dir=rtl] .layout-margin .offset-gt-lg-80,[dir=rtl] .offset-gt-lg-80{margin-left:auto;margin-right:80%}.flex-offset-gt-lg-85,.layout-margin .flex-offset-gt-lg-85,.layout-margin .offset-gt-lg-85,.offset-gt-lg-85{margin-left:85%}[dir=rtl] .flex-offset-gt-lg-85,[dir=rtl] .layout-margin .flex-offset-gt-lg-85,[dir=rtl] .layout-margin .offset-gt-lg-85,[dir=rtl] .offset-gt-lg-85{margin-left:auto;margin-right:85%}.flex-offset-gt-lg-90,.layout-margin .flex-offset-gt-lg-90,.layout-margin .offset-gt-lg-90,.offset-gt-lg-90{margin-left:90%}[dir=rtl] .flex-offset-gt-lg-90,[dir=rtl] .layout-margin .flex-offset-gt-lg-90,[dir=rtl] .layout-margin .offset-gt-lg-90,[dir=rtl] .offset-gt-lg-90{margin-left:auto;margin-right:90%}.flex-offset-gt-lg-95,.layout-margin .flex-offset-gt-lg-95,.layout-margin .offset-gt-lg-95,.offset-gt-lg-95{margin-left:95%}[dir=rtl] .flex-offset-gt-lg-95,[dir=rtl] .layout-margin .flex-offset-gt-lg-95,[dir=rtl] .layout-margin .offset-gt-lg-95,[dir=rtl] .offset-gt-lg-95{margin-left:auto;margin-right:95%}.flex-offset-gt-lg-33,.layout-margin .flex-offset-gt-lg-33,.layout-margin .offset-gt-lg-33,.offset-gt-lg-33{margin-left:33.3333333333%}.flex-offset-gt-lg-66,.layout-margin .flex-offset-gt-lg-66,.layout-margin .offset-gt-lg-66,.offset-gt-lg-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-gt-lg-66,[dir=rtl] .layout-margin .flex-offset-gt-lg-66,[dir=rtl] .layout-margin .offset-gt-lg-66,[dir=rtl] .offset-gt-lg-66{margin-left:auto;margin-right:66.6666666667%}.layout-align-gt-lg,.layout-align-gt-lg-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-gt-lg-start,.layout-align-gt-lg-start-center,.layout-align-gt-lg-start-end,.layout-align-gt-lg-start-start,.layout-align-gt-lg-start-stretch{justify-content:flex-start}.layout-align-gt-lg-center,.layout-align-gt-lg-center-center,.layout-align-gt-lg-center-end,.layout-align-gt-lg-center-start,.layout-align-gt-lg-center-stretch{justify-content:center}.layout-align-gt-lg-end,.layout-align-gt-lg-end-center,.layout-align-gt-lg-end-end,.layout-align-gt-lg-end-start,.layout-align-gt-lg-end-stretch{justify-content:flex-end}.layout-align-gt-lg-space-around,.layout-align-gt-lg-space-around-center,.layout-align-gt-lg-space-around-end,.layout-align-gt-lg-space-around-start,.layout-align-gt-lg-space-around-stretch{justify-content:space-around}.layout-align-gt-lg-space-between,.layout-align-gt-lg-space-between-center,.layout-align-gt-lg-space-between-end,.layout-align-gt-lg-space-between-start,.layout-align-gt-lg-space-between-stretch{justify-content:space-between}.layout-align-gt-lg-center-start,.layout-align-gt-lg-end-start,.layout-align-gt-lg-space-around-start,.layout-align-gt-lg-space-between-start,.layout-align-gt-lg-start-start{align-content:flex-start;align-items:flex-start}.layout-align-gt-lg-center-center,.layout-align-gt-lg-end-center,.layout-align-gt-lg-space-around-center,.layout-align-gt-lg-space-between-center,.layout-align-gt-lg-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-gt-lg-center-center>*,.layout-align-gt-lg-end-center>*,.layout-align-gt-lg-space-around-center>*,.layout-align-gt-lg-space-between-center>*,.layout-align-gt-lg-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-gt-lg-center-end,.layout-align-gt-lg-end-end,.layout-align-gt-lg-space-around-end,.layout-align-gt-lg-space-between-end,.layout-align-gt-lg-start-end{align-content:flex-end;align-items:flex-end}.layout-align-gt-lg-center-stretch,.layout-align-gt-lg-end-stretch,.layout-align-gt-lg-space-around-stretch,.layout-align-gt-lg-space-between-stretch,.layout-align-gt-lg-start-stretch{align-content:stretch;align-items:stretch}.flex-gt-lg{box-sizing:border-box;flex:1}.flex-gt-lg-grow{box-sizing:border-box;flex:1 1 100%}.flex-gt-lg-initial{box-sizing:border-box;flex:0 1 auto}.flex-gt-lg-auto{box-sizing:border-box;flex:1 1 auto}.flex-gt-lg-none{box-sizing:border-box;flex:0 0 auto}.flex-gt-lg-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-gt-lg-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-gt-lg-0,.layout-row>.flex-gt-lg-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-gt-lg-0{min-width:0}.layout-column>.flex-gt-lg-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0;min-width:0}.layout-gt-lg-column>.flex-gt-lg-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%;min-height:0}.flex-gt-lg-5,.layout-row>.flex-gt-lg-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-gt-lg-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-gt-lg-column>.flex-gt-lg-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-gt-lg-10,.layout-row>.flex-gt-lg-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-gt-lg-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-gt-lg-column>.flex-gt-lg-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-gt-lg-15,.layout-row>.flex-gt-lg-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-gt-lg-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-gt-lg-column>.flex-gt-lg-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-gt-lg-20,.layout-row>.flex-gt-lg-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-gt-lg-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-gt-lg-column>.flex-gt-lg-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-gt-lg-25,.layout-row>.flex-gt-lg-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-gt-lg-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-gt-lg-column>.flex-gt-lg-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-gt-lg-30,.layout-row>.flex-gt-lg-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-gt-lg-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-gt-lg-column>.flex-gt-lg-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-gt-lg-35,.layout-row>.flex-gt-lg-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-gt-lg-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-gt-lg-column>.flex-gt-lg-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-gt-lg-40,.layout-row>.flex-gt-lg-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-gt-lg-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-gt-lg-column>.flex-gt-lg-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-gt-lg-45,.layout-row>.flex-gt-lg-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-gt-lg-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-gt-lg-column>.flex-gt-lg-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-gt-lg-50,.layout-row>.flex-gt-lg-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-gt-lg-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-gt-lg-column>.flex-gt-lg-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-gt-lg-55,.layout-row>.flex-gt-lg-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-gt-lg-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-gt-lg-column>.flex-gt-lg-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-gt-lg-60,.layout-row>.flex-gt-lg-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-gt-lg-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-gt-lg-column>.flex-gt-lg-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-gt-lg-65,.layout-row>.flex-gt-lg-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-gt-lg-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-gt-lg-column>.flex-gt-lg-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-gt-lg-70,.layout-row>.flex-gt-lg-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-gt-lg-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-gt-lg-column>.flex-gt-lg-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-gt-lg-75,.layout-row>.flex-gt-lg-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-gt-lg-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-gt-lg-column>.flex-gt-lg-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-gt-lg-80,.layout-row>.flex-gt-lg-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-gt-lg-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-gt-lg-column>.flex-gt-lg-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-gt-lg-85,.layout-row>.flex-gt-lg-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-gt-lg-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-gt-lg-column>.flex-gt-lg-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-gt-lg-90,.layout-row>.flex-gt-lg-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-gt-lg-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-gt-lg-column>.flex-gt-lg-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-gt-lg-95,.layout-row>.flex-gt-lg-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-gt-lg-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-gt-lg-column>.flex-gt-lg-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.flex-gt-lg-100,.layout-column>.flex-gt-lg-100,.layout-gt-lg-column>.flex-gt-lg-100,.layout-gt-lg-row>.flex-gt-lg-100,.layout-row>.flex-gt-lg-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.layout-row>.flex-gt-lg-33{box-sizing:border-box;flex:1 1 33.33%;max-height:100%;max-width:33.33%}.layout-row>.flex-gt-lg-66{box-sizing:border-box;flex:1 1 66.66%;max-height:100%;max-width:66.66%}.layout-column>.flex-gt-lg-33{box-sizing:border-box;flex:1 1 33.33%;max-height:33.33%;max-width:100%}.layout-column>.flex-gt-lg-66{box-sizing:border-box;flex:1 1 66.66%;max-height:66.66%;max-width:100%}.layout-gt-lg-row>.flex-gt-lg-33{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:33.33%}.layout-gt-lg-row>.flex-gt-lg-66{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:66.66%}.layout-gt-lg-row>.flex{min-width:0}.layout-gt-lg-column>.flex-gt-lg-33{box-sizing:border-box;flex:1 1 100%;max-height:33.33%;max-width:100%}.layout-gt-lg-column>.flex-gt-lg-66{box-sizing:border-box;flex:1 1 100%;max-height:66.66%;max-width:100%}.layout-gt-lg-column>.flex{min-height:0}.layout-gt-lg,.layout-gt-lg-column,.layout-gt-lg-row{box-sizing:border-box;display:flex}.layout-gt-lg-column{flex-direction:column}.layout-gt-lg-row{flex-direction:row}.flex-order-xl--20{order:-20}.flex-order-xl--19{order:-19}.flex-order-xl--18{order:-18}.flex-order-xl--17{order:-17}.flex-order-xl--16{order:-16}.flex-order-xl--15{order:-15}.flex-order-xl--14{order:-14}.flex-order-xl--13{order:-13}.flex-order-xl--12{order:-12}.flex-order-xl--11{order:-11}.flex-order-xl--10{order:-10}.flex-order-xl--9{order:-9}.flex-order-xl--8{order:-8}.flex-order-xl--7{order:-7}.flex-order-xl--6{order:-6}.flex-order-xl--5{order:-5}.flex-order-xl--4{order:-4}.flex-order-xl--3{order:-3}.flex-order-xl--2{order:-2}.flex-order-xl--1{order:-1}.flex-order-xl-0{order:0}.flex-order-xl-1{order:1}.flex-order-xl-2{order:2}.flex-order-xl-3{order:3}.flex-order-xl-4{order:4}.flex-order-xl-5{order:5}.flex-order-xl-6{order:6}.flex-order-xl-7{order:7}.flex-order-xl-8{order:8}.flex-order-xl-9{order:9}.flex-order-xl-10{order:10}.flex-order-xl-11{order:11}.flex-order-xl-12{order:12}.flex-order-xl-13{order:13}.flex-order-xl-14{order:14}.flex-order-xl-15{order:15}.flex-order-xl-16{order:16}.flex-order-xl-17{order:17}.flex-order-xl-18{order:18}.flex-order-xl-19{order:19}.flex-order-xl-20{order:20}.flex-offset-xl-0,.layout-margin .flex-offset-xl-0,.layout-margin .offset-xl-0,.offset-xl-0{margin-left:0}[dir=rtl] .flex-offset-xl-0,[dir=rtl] .layout-margin .flex-offset-xl-0,[dir=rtl] .layout-margin .offset-xl-0,[dir=rtl] .offset-xl-0{margin-left:auto;margin-right:0}.flex-offset-xl-5,.layout-margin .flex-offset-xl-5,.layout-margin .offset-xl-5,.offset-xl-5{margin-left:5%}[dir=rtl] .flex-offset-xl-5,[dir=rtl] .layout-margin .flex-offset-xl-5,[dir=rtl] .layout-margin .offset-xl-5,[dir=rtl] .offset-xl-5{margin-left:auto;margin-right:5%}.flex-offset-xl-10,.layout-margin .flex-offset-xl-10,.layout-margin .offset-xl-10,.offset-xl-10{margin-left:10%}[dir=rtl] .flex-offset-xl-10,[dir=rtl] .layout-margin .flex-offset-xl-10,[dir=rtl] .layout-margin .offset-xl-10,[dir=rtl] .offset-xl-10{margin-left:auto;margin-right:10%}.flex-offset-xl-15,.layout-margin .flex-offset-xl-15,.layout-margin .offset-xl-15,.offset-xl-15{margin-left:15%}[dir=rtl] .flex-offset-xl-15,[dir=rtl] .layout-margin .flex-offset-xl-15,[dir=rtl] .layout-margin .offset-xl-15,[dir=rtl] .offset-xl-15{margin-left:auto;margin-right:15%}.flex-offset-xl-20,.layout-margin .flex-offset-xl-20,.layout-margin .offset-xl-20,.offset-xl-20{margin-left:20%}[dir=rtl] .flex-offset-xl-20,[dir=rtl] .layout-margin .flex-offset-xl-20,[dir=rtl] .layout-margin .offset-xl-20,[dir=rtl] .offset-xl-20{margin-left:auto;margin-right:20%}.flex-offset-xl-25,.layout-margin .flex-offset-xl-25,.layout-margin .offset-xl-25,.offset-xl-25{margin-left:25%}[dir=rtl] .flex-offset-xl-25,[dir=rtl] .layout-margin .flex-offset-xl-25,[dir=rtl] .layout-margin .offset-xl-25,[dir=rtl] .offset-xl-25{margin-left:auto;margin-right:25%}.flex-offset-xl-30,.layout-margin .flex-offset-xl-30,.layout-margin .offset-xl-30,.offset-xl-30{margin-left:30%}[dir=rtl] .flex-offset-xl-30,[dir=rtl] .layout-margin .flex-offset-xl-30,[dir=rtl] .layout-margin .offset-xl-30,[dir=rtl] .offset-xl-30{margin-left:auto;margin-right:30%}.flex-offset-xl-35,.layout-margin .flex-offset-xl-35,.layout-margin .offset-xl-35,.offset-xl-35{margin-left:35%}[dir=rtl] .flex-offset-xl-35,[dir=rtl] .layout-margin .flex-offset-xl-35,[dir=rtl] .layout-margin .offset-xl-35,[dir=rtl] .offset-xl-35{margin-left:auto;margin-right:35%}.flex-offset-xl-40,.layout-margin .flex-offset-xl-40,.layout-margin .offset-xl-40,.offset-xl-40{margin-left:40%}[dir=rtl] .flex-offset-xl-40,[dir=rtl] .layout-margin .flex-offset-xl-40,[dir=rtl] .layout-margin .offset-xl-40,[dir=rtl] .offset-xl-40{margin-left:auto;margin-right:40%}.flex-offset-xl-45,.layout-margin .flex-offset-xl-45,.layout-margin .offset-xl-45,.offset-xl-45{margin-left:45%}[dir=rtl] .flex-offset-xl-45,[dir=rtl] .layout-margin .flex-offset-xl-45,[dir=rtl] .layout-margin .offset-xl-45,[dir=rtl] .offset-xl-45{margin-left:auto;margin-right:45%}.flex-offset-xl-50,.layout-margin .flex-offset-xl-50,.layout-margin .offset-xl-50,.offset-xl-50{margin-left:50%}[dir=rtl] .flex-offset-xl-50,[dir=rtl] .layout-margin .flex-offset-xl-50,[dir=rtl] .layout-margin .offset-xl-50,[dir=rtl] .offset-xl-50{margin-left:auto;margin-right:50%}.flex-offset-xl-55,.layout-margin .flex-offset-xl-55,.layout-margin .offset-xl-55,.offset-xl-55{margin-left:55%}[dir=rtl] .flex-offset-xl-55,[dir=rtl] .layout-margin .flex-offset-xl-55,[dir=rtl] .layout-margin .offset-xl-55,[dir=rtl] .offset-xl-55{margin-left:auto;margin-right:55%}.flex-offset-xl-60,.layout-margin .flex-offset-xl-60,.layout-margin .offset-xl-60,.offset-xl-60{margin-left:60%}[dir=rtl] .flex-offset-xl-60,[dir=rtl] .layout-margin .flex-offset-xl-60,[dir=rtl] .layout-margin .offset-xl-60,[dir=rtl] .offset-xl-60{margin-left:auto;margin-right:60%}.flex-offset-xl-65,.layout-margin .flex-offset-xl-65,.layout-margin .offset-xl-65,.offset-xl-65{margin-left:65%}[dir=rtl] .flex-offset-xl-65,[dir=rtl] .layout-margin .flex-offset-xl-65,[dir=rtl] .layout-margin .offset-xl-65,[dir=rtl] .offset-xl-65{margin-left:auto;margin-right:65%}.flex-offset-xl-70,.layout-margin .flex-offset-xl-70,.layout-margin .offset-xl-70,.offset-xl-70{margin-left:70%}[dir=rtl] .flex-offset-xl-70,[dir=rtl] .layout-margin .flex-offset-xl-70,[dir=rtl] .layout-margin .offset-xl-70,[dir=rtl] .offset-xl-70{margin-left:auto;margin-right:70%}.flex-offset-xl-75,.layout-margin .flex-offset-xl-75,.layout-margin .offset-xl-75,.offset-xl-75{margin-left:75%}[dir=rtl] .flex-offset-xl-75,[dir=rtl] .layout-margin .flex-offset-xl-75,[dir=rtl] .layout-margin .offset-xl-75,[dir=rtl] .offset-xl-75{margin-left:auto;margin-right:75%}.flex-offset-xl-80,.layout-margin .flex-offset-xl-80,.layout-margin .offset-xl-80,.offset-xl-80{margin-left:80%}[dir=rtl] .flex-offset-xl-80,[dir=rtl] .layout-margin .flex-offset-xl-80,[dir=rtl] .layout-margin .offset-xl-80,[dir=rtl] .offset-xl-80{margin-left:auto;margin-right:80%}.flex-offset-xl-85,.layout-margin .flex-offset-xl-85,.layout-margin .offset-xl-85,.offset-xl-85{margin-left:85%}[dir=rtl] .flex-offset-xl-85,[dir=rtl] .layout-margin .flex-offset-xl-85,[dir=rtl] .layout-margin .offset-xl-85,[dir=rtl] .offset-xl-85{margin-left:auto;margin-right:85%}.flex-offset-xl-90,.layout-margin .flex-offset-xl-90,.layout-margin .offset-xl-90,.offset-xl-90{margin-left:90%}[dir=rtl] .flex-offset-xl-90,[dir=rtl] .layout-margin .flex-offset-xl-90,[dir=rtl] .layout-margin .offset-xl-90,[dir=rtl] .offset-xl-90{margin-left:auto;margin-right:90%}.flex-offset-xl-95,.layout-margin .flex-offset-xl-95,.layout-margin .offset-xl-95,.offset-xl-95{margin-left:95%}[dir=rtl] .flex-offset-xl-95,[dir=rtl] .layout-margin .flex-offset-xl-95,[dir=rtl] .layout-margin .offset-xl-95,[dir=rtl] .offset-xl-95{margin-left:auto;margin-right:95%}.flex-offset-xl-33,.layout-margin .flex-offset-xl-33,.layout-margin .offset-xl-33,.offset-xl-33{margin-left:33.3333333333%}.flex-offset-xl-66,.layout-margin .flex-offset-xl-66,.layout-margin .offset-xl-66,.offset-xl-66{margin-left:66.6666666667%}[dir=rtl] .flex-offset-xl-66,[dir=rtl] .layout-margin .flex-offset-xl-66,[dir=rtl] .layout-margin .offset-xl-66,[dir=rtl] .offset-xl-66{margin-left:auto;margin-right:66.6666666667%}.layout-align-xl,.layout-align-xl-start-stretch{align-content:stretch;align-items:stretch;justify-content:flex-start}.layout-align-xl-start,.layout-align-xl-start-center,.layout-align-xl-start-end,.layout-align-xl-start-start,.layout-align-xl-start-stretch{justify-content:flex-start}.layout-align-xl-center,.layout-align-xl-center-center,.layout-align-xl-center-end,.layout-align-xl-center-start,.layout-align-xl-center-stretch{justify-content:center}.layout-align-xl-end,.layout-align-xl-end-center,.layout-align-xl-end-end,.layout-align-xl-end-start,.layout-align-xl-end-stretch{justify-content:flex-end}.layout-align-xl-space-around,.layout-align-xl-space-around-center,.layout-align-xl-space-around-end,.layout-align-xl-space-around-start,.layout-align-xl-space-around-stretch{justify-content:space-around}.layout-align-xl-space-between,.layout-align-xl-space-between-center,.layout-align-xl-space-between-end,.layout-align-xl-space-between-start,.layout-align-xl-space-between-stretch{justify-content:space-between}.layout-align-xl-center-start,.layout-align-xl-end-start,.layout-align-xl-space-around-start,.layout-align-xl-space-between-start,.layout-align-xl-start-start{align-content:flex-start;align-items:flex-start}.layout-align-xl-center-center,.layout-align-xl-end-center,.layout-align-xl-space-around-center,.layout-align-xl-space-between-center,.layout-align-xl-start-center{align-content:center;align-items:center;max-width:100%}.layout-align-xl-center-center>*,.layout-align-xl-end-center>*,.layout-align-xl-space-around-center>*,.layout-align-xl-space-between-center>*,.layout-align-xl-start-center>*{box-sizing:border-box;max-width:100%}.layout-align-xl-center-end,.layout-align-xl-end-end,.layout-align-xl-space-around-end,.layout-align-xl-space-between-end,.layout-align-xl-start-end{align-content:flex-end;align-items:flex-end}.layout-align-xl-center-stretch,.layout-align-xl-end-stretch,.layout-align-xl-space-around-stretch,.layout-align-xl-space-between-stretch,.layout-align-xl-start-stretch{align-content:stretch;align-items:stretch}.flex-xl{box-sizing:border-box;flex:1}.flex-xl-grow{box-sizing:border-box;flex:1 1 100%}.flex-xl-initial{box-sizing:border-box;flex:0 1 auto}.flex-xl-auto{box-sizing:border-box;flex:1 1 auto}.flex-xl-none{box-sizing:border-box;flex:0 0 auto}.flex-xl-noshrink{box-sizing:border-box;flex:1 0 auto}.flex-xl-nogrow{box-sizing:border-box;flex:0 1 auto}.flex-xl-0,.layout-row>.flex-xl-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0}.layout-row>.flex-xl-0{min-width:0}.layout-column>.flex-xl-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%}.layout-xl-row>.flex-xl-0{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:0;min-width:0}.layout-xl-column>.flex-xl-0{box-sizing:border-box;flex:1 1 100%;max-height:0%;max-width:100%;min-height:0}.flex-xl-5,.layout-row>.flex-xl-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-column>.flex-xl-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.layout-xl-row>.flex-xl-5{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:5%}.layout-xl-column>.flex-xl-5{box-sizing:border-box;flex:1 1 100%;max-height:5%;max-width:100%}.flex-xl-10,.layout-row>.flex-xl-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-column>.flex-xl-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.layout-xl-row>.flex-xl-10{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:10%}.layout-xl-column>.flex-xl-10{box-sizing:border-box;flex:1 1 100%;max-height:10%;max-width:100%}.flex-xl-15,.layout-row>.flex-xl-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-column>.flex-xl-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.layout-xl-row>.flex-xl-15{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:15%}.layout-xl-column>.flex-xl-15{box-sizing:border-box;flex:1 1 100%;max-height:15%;max-width:100%}.flex-xl-20,.layout-row>.flex-xl-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-column>.flex-xl-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.layout-xl-row>.flex-xl-20{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:20%}.layout-xl-column>.flex-xl-20{box-sizing:border-box;flex:1 1 100%;max-height:20%;max-width:100%}.flex-xl-25,.layout-row>.flex-xl-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-column>.flex-xl-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.layout-xl-row>.flex-xl-25{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:25%}.layout-xl-column>.flex-xl-25{box-sizing:border-box;flex:1 1 100%;max-height:25%;max-width:100%}.flex-xl-30,.layout-row>.flex-xl-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-column>.flex-xl-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.layout-xl-row>.flex-xl-30{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:30%}.layout-xl-column>.flex-xl-30{box-sizing:border-box;flex:1 1 100%;max-height:30%;max-width:100%}.flex-xl-35,.layout-row>.flex-xl-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-column>.flex-xl-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.layout-xl-row>.flex-xl-35{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:35%}.layout-xl-column>.flex-xl-35{box-sizing:border-box;flex:1 1 100%;max-height:35%;max-width:100%}.flex-xl-40,.layout-row>.flex-xl-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-column>.flex-xl-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.layout-xl-row>.flex-xl-40{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:40%}.layout-xl-column>.flex-xl-40{box-sizing:border-box;flex:1 1 100%;max-height:40%;max-width:100%}.flex-xl-45,.layout-row>.flex-xl-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-column>.flex-xl-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.layout-xl-row>.flex-xl-45{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:45%}.layout-xl-column>.flex-xl-45{box-sizing:border-box;flex:1 1 100%;max-height:45%;max-width:100%}.flex-xl-50,.layout-row>.flex-xl-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-column>.flex-xl-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.layout-xl-row>.flex-xl-50{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:50%}.layout-xl-column>.flex-xl-50{box-sizing:border-box;flex:1 1 100%;max-height:50%;max-width:100%}.flex-xl-55,.layout-row>.flex-xl-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-column>.flex-xl-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.layout-xl-row>.flex-xl-55{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:55%}.layout-xl-column>.flex-xl-55{box-sizing:border-box;flex:1 1 100%;max-height:55%;max-width:100%}.flex-xl-60,.layout-row>.flex-xl-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-column>.flex-xl-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.layout-xl-row>.flex-xl-60{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:60%}.layout-xl-column>.flex-xl-60{box-sizing:border-box;flex:1 1 100%;max-height:60%;max-width:100%}.flex-xl-65,.layout-row>.flex-xl-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-column>.flex-xl-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.layout-xl-row>.flex-xl-65{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:65%}.layout-xl-column>.flex-xl-65{box-sizing:border-box;flex:1 1 100%;max-height:65%;max-width:100%}.flex-xl-70,.layout-row>.flex-xl-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-column>.flex-xl-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.layout-xl-row>.flex-xl-70{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:70%}.layout-xl-column>.flex-xl-70{box-sizing:border-box;flex:1 1 100%;max-height:70%;max-width:100%}.flex-xl-75,.layout-row>.flex-xl-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-column>.flex-xl-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.layout-xl-row>.flex-xl-75{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:75%}.layout-xl-column>.flex-xl-75{box-sizing:border-box;flex:1 1 100%;max-height:75%;max-width:100%}.flex-xl-80,.layout-row>.flex-xl-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-column>.flex-xl-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.layout-xl-row>.flex-xl-80{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:80%}.layout-xl-column>.flex-xl-80{box-sizing:border-box;flex:1 1 100%;max-height:80%;max-width:100%}.flex-xl-85,.layout-row>.flex-xl-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-column>.flex-xl-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.layout-xl-row>.flex-xl-85{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:85%}.layout-xl-column>.flex-xl-85{box-sizing:border-box;flex:1 1 100%;max-height:85%;max-width:100%}.flex-xl-90,.layout-row>.flex-xl-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-column>.flex-xl-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.layout-xl-row>.flex-xl-90{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:90%}.layout-xl-column>.flex-xl-90{box-sizing:border-box;flex:1 1 100%;max-height:90%;max-width:100%}.flex-xl-95,.layout-row>.flex-xl-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-column>.flex-xl-95{box-sizing:border-box;flex:1 1 100%;max-height:95%;max-width:100%}.layout-xl-row>.flex-xl-95{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:95%}.layout-xl-column>.flex-xl-95{max-height:95%}.flex-xl-100,.layout-xl-column>.flex-xl-95{box-sizing:border-box;flex:1 1 100%;max-width:100%}.flex-xl-100{max-height:100%}.layout-column>.flex-xl-100,.layout-row>.flex-xl-100,.layout-xl-column>.flex-xl-100,.layout-xl-row>.flex-xl-100{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:100%}.layout-row>.flex-xl-33{box-sizing:border-box;flex:1 1 33.33%;max-height:100%;max-width:33.33%}.layout-row>.flex-xl-66{box-sizing:border-box;flex:1 1 66.66%;max-height:100%;max-width:66.66%}.layout-column>.flex-xl-33{box-sizing:border-box;flex:1 1 33.33%;max-height:33.33%;max-width:100%}.layout-column>.flex-xl-66{box-sizing:border-box;flex:1 1 66.66%;max-height:66.66%;max-width:100%}.layout-xl-row>.flex-xl-33{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:33.33%}.layout-xl-row>.flex-xl-66{box-sizing:border-box;flex:1 1 100%;max-height:100%;max-width:66.66%}.layout-xl-row>.flex{min-width:0}.layout-xl-column>.flex-xl-33{box-sizing:border-box;flex:1 1 100%;max-height:33.33%;max-width:100%}.layout-xl-column>.flex-xl-66{box-sizing:border-box;flex:1 1 100%;max-height:66.66%;max-width:100%}.layout-xl-column>.flex{min-height:0}.layout-xl,.layout-xl-column,.layout-xl-row{box-sizing:border-box;display:flex}.layout-xl-column{flex-direction:column}.layout-xl-row{flex-direction:row}.hide-gt-lg:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show),.hide-gt-md:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show),.hide-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show),.hide-gt-xs:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show),.hide-xl:not(.show-xl):not(.show-gt-lg):not(.show-gt-md):not(.show-gt-sm):not(.show-gt-xs):not(.show),.hide:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show){display:none}}@media print{.hide-print:not(.show-print):not(.show){display:none!important}}
/*!
angular-xeditable - 0.10.2
Edit-in-place for angular.js
Build date: 2019-11-01 
*/

.editable-wrap{display:inline-block;white-space:pre;margin:0}.editable-wrap .editable-controls,.editable-wrap .editable-error{margin-bottom:0}.editable-wrap .editable-controls>input,.editable-wrap .editable-controls>select,.editable-wrap .editable-controls>textarea{margin-bottom:0}.editable-wrap .editable-input{display:inline-block}.editable-buttons{display:inline-block;vertical-align:top}.editable-buttons button{margin-left:5px}.editable-input.editable-has-buttons{width:auto}.editable-text{white-space:nowrap}.editable-bsdate{white-space:nowrap}.editable-bstime{white-space:nowrap}.editable-bstime .editable-input input[type=text]{width:46px}.editable-bstime .well-small{margin-bottom:0;padding:10px}.editable-range output{display:inline-block;min-width:30px;vertical-align:top;text-align:center}.editable-color input[type=color]{width:50px}.editable-checkbox label span,.editable-checklist label span,.editable-radiolist label span{margin-left:7px;margin-right:10px}.editable-hide{display:none!important}.editable-click,a.editable-click{text-decoration:none;color:#428bca;border-bottom:dashed 1px #428bca}.editable-click:hover,a.editable-click:hover{text-decoration:none;color:#2a6496;border-bottom-color:#2a6496}.editable-empty,.editable-empty:hover,.editable-empty:focus,a.editable-empty,a.editable-empty:hover,a.editable-empty:focus{font-style:italic;color:#D14;text-decoration:none}.ui-popover-wrapper a{display:inline!important}.ui-popover-wrapper form{display:none!important}.popover-wrapper>a{display:inline!important}.popover-wrapper{display:inline;position:relative}.popover-wrapper form{position:absolute;top:-53px;background:#FFF;border:1px solid #AAA;border-radius:5px;padding:7px;width:auto;display:inline-block;left:50%;z-index:101}.popover-wrapper form:before{content:"";width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #AAA;position:absolute;bottom:-10px}.popover-wrapper form:after{content:"";width:0;height:0;border-left:9px solid transparent;border-right:9px solid transparent;border-top:9px solid #FFF;position:absolute;bottom:-9px}@media screen and (max-width:750px){.popover-wrapper form{margin-left:-60px}.popover-wrapper form:before{left:50px}.popover-wrapper form:after{left:51px}}@media screen and (min-width:750px){.popover-wrapper form{margin-left:-110px}.popover-wrapper form:before{left:100px}.popover-wrapper form:after{left:101px}}
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 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:none;text-decoration:underline;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.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:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;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]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;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;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}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{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-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:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{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 td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:"Glyphicons Halflings";src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"),url(../fonts/glyphicons-halflings-regular.woff) format("woff"),url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro: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}:after,:before{-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:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.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}[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:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.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,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.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:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.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:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{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-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}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[data-original-title],abbr[title]{cursor:help}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014 \00A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\00A0 \2014"}address{margin-bottom:20px;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:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}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{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.row-no-gutters{margin-right:0;margin-left:0}.row-no-gutters [class*=col-]{padding-right:0;padding-left:0}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{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-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{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-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{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-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{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:transparent}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(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;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;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,-webkit-box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@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 .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.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:18px}}@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;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;background-image:none;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;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:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .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;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-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}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{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-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-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-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(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-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.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-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;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=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{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-right:0;padding-left: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:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.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:3px}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}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn: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:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{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-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-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:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-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:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{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{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.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:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.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:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.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{margin-bottom:5px;text-align:center}.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:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;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-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{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}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{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-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{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;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.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:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@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 .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{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;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left: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:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@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:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.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-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.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:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.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{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-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{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-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:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.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-body,.media-left,.media-right{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{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}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:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.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:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}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:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}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:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.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-left-radius:3px;border-top-right-radius:3px}.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:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody: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:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.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 th:first-child,.panel>.table-responsive:first-child>.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 th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.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 th:last-child,.panel>.table-responsive:first-child>.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 th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.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 th:first-child,.panel>.table-responsive:last-child>.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 th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.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 th:last-child,.panel>.table-responsive:last-child>.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 th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.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:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height: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:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-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 .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .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:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.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,.5);box-shadow:0 5px 15px rgba(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:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(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>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-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;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;filter:alpha(opacity=90);opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.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%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(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-next,.carousel-control .icon-prev{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{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left: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-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-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}td.visible-xs,th.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}td.visible-sm,th.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}td.visible-md,th.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}td.visible-lg,th.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}td.visible-print,th.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}}
/*# sourceMappingURL=bootstrap.min.css.map */
/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.19.7 - 2017-04-15T14:28:36.790Z
 * License: MIT
 */.ui-select-highlight{font-weight:700}.ui-select-offscreen{clip:rect(0 0 0 0)!important;width:1px!important;height:1px!important;border:0!important;margin:0!important;padding:0!important;overflow:hidden!important;position:absolute!important;outline:0!important;left:0!important;top:0!important}.selectize-control.single>.selectize-input>input,.selectize-control>.selectize-dropdown{width:100%}.ui-select-choices-row:hover{background-color:#f5f5f5}.ng-dirty.ng-invalid>a.select2-choice{border-color:#D44950}.select2-result-single{padding-left:0}.select-locked>.ui-select-match-close,.select2-locked>.select2-search-choice-close{display:none}body>.select2-container.open{z-index:9999}.ui-select-container.select2.direction-up .ui-select-match,.ui-select-container[theme=select2].direction-up .ui-select-match{border-radius:0 0 4px 4px}.ui-select-container.select2.direction-up .ui-select-dropdown,.ui-select-container[theme=select2].direction-up .ui-select-dropdown{border-radius:4px 4px 0 0;border-top-width:1px;border-top-style:solid;box-shadow:0 -4px 8px rgba(0,0,0,.25);margin-top:-4px}.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search,.ui-select-container[theme=select2].direction-up .ui-select-dropdown .select2-search{margin-top:4px}.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match,.ui-select-container[theme=select2].direction-up.select2-dropdown-open .ui-select-match{border-bottom-color:#5897fb}.ui-select-container[theme=select2] .ui-select-dropdown .ui-select-search-hidden,.ui-select-container[theme=select2] .ui-select-dropdown .ui-select-search-hidden input{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0}.selectize-input.selectize-focus{border-color:#007FBB!important}.selectize-control.multi>.selectize-input>input{margin:0!important}.ng-dirty.ng-invalid>div.selectize-input{border-color:#D44950}.ui-select-container[theme=selectize].direction-up .ui-select-dropdown{box-shadow:0 -4px 8px rgba(0,0,0,.25);margin-top:-2px}.ui-select-container[theme=selectize] input.ui-select-search-hidden{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0;width:0}.btn-default-focus{color:#333;background-color:#EBEBEB;border-color:#ADADAD;text-decoration:none;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.ui-select-bootstrap .ui-select-toggle{position:relative}.ui-select-bootstrap .ui-select-toggle>.caret{position:absolute;height:10px;top:50%;right:10px;margin-top:-2px}.input-group>.ui-select-bootstrap.dropdown{position:static}.input-group>.ui-select-bootstrap>input.ui-select-search.form-control{border-radius:4px 0 0 4px}.input-group>.ui-select-bootstrap>input.ui-select-search.form-control.direction-up{border-radius:4px 0 0 4px!important}.ui-select-bootstrap .ui-select-search-hidden{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0}.ui-select-bootstrap>.ui-select-match>.btn{text-align:left!important}.ui-select-bootstrap>.ui-select-match>.caret{position:absolute;top:45%;right:15px}.ui-select-bootstrap>.ui-select-choices,.ui-select-bootstrap>.ui-select-no-choice{width:100%;height:auto;max-height:200px;overflow-x:hidden;margin-top:-1px}body>.ui-select-bootstrap.open{z-index:1000}.ui-select-multiple.ui-select-bootstrap{height:auto;padding:3px 3px 0}.ui-select-multiple.ui-select-bootstrap input.ui-select-search{background-color:transparent!important;border:none;outline:0;height:1.666666em;margin-bottom:3px}.ui-select-multiple.ui-select-bootstrap .ui-select-match .close{font-size:1.6em;line-height:.75}.ui-select-multiple.ui-select-bootstrap .ui-select-match-item{outline:0;margin:0 3px 3px 0}.ui-select-multiple .ui-select-match-item{position:relative}.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close{pointer-events:none}.ui-select-multiple:hover .ui-select-match-item.dropping-before:before{content:"";position:absolute;top:0;right:100%;height:100%;margin-right:2px;border-left:1px solid #428bca}.ui-select-multiple:hover .ui-select-match-item.dropping-after:after{content:"";position:absolute;top:0;left:100%;height:100%;margin-left:2px;border-right:1px solid #428bca}.ui-select-bootstrap .ui-select-choices-row>span{cursor:pointer;display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.ui-select-bootstrap .ui-select-choices-row>span:focus,.ui-select-bootstrap .ui-select-choices-row>span:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.ui-select-bootstrap .ui-select-choices-row.active>span{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.ui-select-bootstrap .ui-select-choices-row.active.disabled>span,.ui-select-bootstrap .ui-select-choices-row.disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.ui-select-match.ng-hide-add,.ui-select-search.ng-hide-add{display:none!important}.ui-select-bootstrap.ng-dirty.ng-invalid>button.btn.ui-select-match{border-color:#D44950}.ui-select-container[theme=bootstrap].direction-up .ui-select-dropdown{box-shadow:0 -4px 8px rgba(0,0,0,.25)}.ui-select-bootstrap .ui-select-match-text{width:100%;padding-right:1em}.ui-select-bootstrap .ui-select-match-text span{display:inline-block;width:100%;overflow:hidden}.ui-select-bootstrap .ui-select-toggle>a.btn{position:absolute;height:10px;right:10px;margin-top:-2px}.ui-select-refreshing.glyphicon{position:absolute;right:0;padding:8px 27px}@-webkit-keyframes ui-select-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes ui-select-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.ui-select-spin{-webkit-animation:ui-select-spin 2s infinite linear;animation:ui-select-spin 2s infinite linear}.ui-select-refreshing.ng-animate{-webkit-animation:none 0s}
/*# sourceMappingURL=select.min.css.map */

@font-face {
  font-family: "Material-Design-Icons";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Material-Design-Icons.eot?-g7cqhn");
  src: url("../fonts/Material-Design-Icons.eot?#iefix-g7cqhn") format("embedded-opentype"), url("../fonts/Material-Design-Icons.woff?-g7cqhn") format("woff"), url("../fonts/Material-Design-Icons.ttf?-g7cqhn") format("truetype"), url("../fonts/Material-Design-Icons.svg?-g7cqhn#Material-Design-Icons") format("svg");
}

[class^="mdi-"],
[class*=" mdi-"] {
  font-family: "Material-Design-Icons";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  font-variant: normal;
  -moz-osx-font-smoothing: grayscale;
}

.mdi-action-3d-rotation:before {
  content: "\e600";
}

.mdi-action-accessibility:before {
  content: "\e601";
}

.mdi-action-account-balance:before {
  content: "\e602";
}

.mdi-action-account-balance-wallet:before {
  content: "\e603";
}

.mdi-action-account-box:before {
  content: "\e604";
}

.mdi-action-account-child:before {
  content: "\e605";
}

.mdi-action-account-circle:before {
  content: "\e606";
}

.mdi-action-add-shopping-cart:before {
  content: "\e607";
}

.mdi-action-alarm:before {
  content: "\e608";
}

.mdi-action-alarm-add:before {
  content: "\e609";
}

.mdi-action-alarm-off:before {
  content: "\e60a";
}

.mdi-action-alarm-on:before {
  content: "\e60b";
}

.mdi-action-android:before {
  content: "\e60c";
}

.mdi-action-announcement:before {
  content: "\e60d";
}

.mdi-action-aspect-ratio:before {
  content: "\e60e";
}

.mdi-action-assessment:before {
  content: "\e60f";
}

.mdi-action-assignment:before {
  content: "\e610";
}

.mdi-action-assignment-ind:before {
  content: "\e611";
}

.mdi-action-assignment-late:before {
  content: "\e612";
}

.mdi-action-assignment-return:before {
  content: "\e613";
}

.mdi-action-assignment-returned:before {
  content: "\e614";
}

.mdi-action-assignment-turned-in:before {
  content: "\e615";
}

.mdi-action-autorenew:before {
  content: "\e616";
}

.mdi-action-backup:before {
  content: "\e617";
}

.mdi-action-book:before {
  content: "\e618";
}

.mdi-action-bookmark:before {
  content: "\e619";
}

.mdi-action-bookmark-outline:before {
  content: "\e61a";
}

.mdi-action-bug-report:before {
  content: "\e61b";
}

.mdi-action-cached:before {
  content: "\e61c";
}

.mdi-action-class:before {
  content: "\e61d";
}

.mdi-action-credit-card:before {
  content: "\e61e";
}

.mdi-action-dashboard:before {
  content: "\e61f";
}

.mdi-action-delete:before {
  content: "\e620";
}

.mdi-action-description:before {
  content: "\e621";
}

.mdi-action-dns:before {
  content: "\e622";
}

.mdi-action-done:before {
  content: "\e623";
}

.mdi-action-done-all:before {
  content: "\e624";
}

.mdi-action-event:before {
  content: "\e625";
}

.mdi-action-exit-to-app:before {
  content: "\e626";
}

.mdi-action-explore:before {
  content: "\e627";
}

.mdi-action-extension:before {
  content: "\e628";
}

.mdi-action-face-unlock:before {
  content: "\e629";
}

.mdi-action-favorite:before {
  content: "\e62a";
}

.mdi-action-favorite-outline:before {
  content: "\e62b";
}

.mdi-action-find-in-page:before {
  content: "\e62c";
}

.mdi-action-find-replace:before {
  content: "\e62d";
}

.mdi-action-flip-to-back:before {
  content: "\e62e";
}

.mdi-action-flip-to-front:before {
  content: "\e62f";
}

.mdi-action-get-app:before {
  content: "\e630";
}

.mdi-action-grade:before {
  content: "\e631";
}

.mdi-action-group-work:before {
  content: "\e632";
}

.mdi-action-help:before {
  content: "\e633";
}

.mdi-action-highlight-remove:before {
  content: "\e634";
}

.mdi-action-history:before {
  content: "\e635";
}

.mdi-action-home:before {
  content: "\e636";
}

.mdi-action-https:before {
  content: "\e637";
}

.mdi-action-info:before {
  content: "\e638";
}

.mdi-action-info-outline:before {
  content: "\e639";
}

.mdi-action-input:before {
  content: "\e63a";
}

.mdi-action-invert-colors:before {
  content: "\e63b";
}

.mdi-action-label:before {
  content: "\e63c";
}

.mdi-action-label-outline:before {
  content: "\e63d";
}

.mdi-action-language:before {
  content: "\e63e";
}

.mdi-action-launch:before {
  content: "\e63f";
}

.mdi-action-list:before {
  content: "\e640";
}

.mdi-action-lock:before {
  content: "\e641";
}

.mdi-action-lock-open:before {
  content: "\e642";
}

.mdi-action-lock-outline:before {
  content: "\e643";
}

.mdi-action-loyalty:before {
  content: "\e644";
}

.mdi-action-markunread-mailbox:before {
  content: "\e645";
}

.mdi-action-note-add:before {
  content: "\e646";
}

.mdi-action-open-in-browser:before {
  content: "\e647";
}

.mdi-action-open-in-new:before {
  content: "\e648";
}

.mdi-action-open-with:before {
  content: "\e649";
}

.mdi-action-pageview:before {
  content: "\e64a";
}

.mdi-action-payment:before {
  content: "\e64b";
}

.mdi-action-perm-camera-mic:before {
  content: "\e64c";
}

.mdi-action-perm-contact-cal:before {
  content: "\e64d";
}

.mdi-action-perm-data-setting:before {
  content: "\e64e";
}

.mdi-action-perm-device-info:before {
  content: "\e64f";
}

.mdi-action-perm-identity:before {
  content: "\e650";
}

.mdi-action-perm-media:before {
  content: "\e651";
}

.mdi-action-perm-phone-msg:before {
  content: "\e652";
}

.mdi-action-perm-scan-wifi:before {
  content: "\e653";
}

.mdi-action-picture-in-picture:before {
  content: "\e654";
}

.mdi-action-polymer:before {
  content: "\e655";
}

.mdi-action-print:before {
  content: "\e656";
}

.mdi-action-query-builder:before {
  content: "\e657";
}

.mdi-action-question-answer:before {
  content: "\e658";
}

.mdi-action-receipt:before {
  content: "\e659";
}

.mdi-action-redeem:before {
  content: "\e65a";
}

.mdi-action-report-problem:before {
  content: "\e65b";
}

.mdi-action-restore:before {
  content: "\e65c";
}

.mdi-action-room:before {
  content: "\e65d";
}

.mdi-action-schedule:before {
  content: "\e65e";
}

.mdi-action-search:before {
  content: "\e65f";
}

.mdi-action-settings:before {
  content: "\e660";
}

.mdi-action-settings-applications:before {
  content: "\e661";
}

.mdi-action-settings-backup-restore:before {
  content: "\e662";
}

.mdi-action-settings-bluetooth:before {
  content: "\e663";
}

.mdi-action-settings-cell:before {
  content: "\e664";
}

.mdi-action-settings-display:before {
  content: "\e665";
}

.mdi-action-settings-ethernet:before {
  content: "\e666";
}

.mdi-action-settings-input-antenna:before {
  content: "\e667";
}

.mdi-action-settings-input-component:before {
  content: "\e668";
}

.mdi-action-settings-input-composite:before {
  content: "\e669";
}

.mdi-action-settings-input-hdmi:before {
  content: "\e66a";
}

.mdi-action-settings-input-svideo:before {
  content: "\e66b";
}

.mdi-action-settings-overscan:before {
  content: "\e66c";
}

.mdi-action-settings-phone:before {
  content: "\e66d";
}

.mdi-action-settings-power:before {
  content: "\e66e";
}

.mdi-action-settings-remote:before {
  content: "\e66f";
}

.mdi-action-settings-voice:before {
  content: "\e670";
}

.mdi-action-shop:before {
  content: "\e671";
}

.mdi-action-shopping-basket:before {
  content: "\e672";
}

.mdi-action-shopping-cart:before {
  content: "\e673";
}

.mdi-action-shop-two:before {
  content: "\e674";
}

.mdi-action-speaker-notes:before {
  content: "\e675";
}

.mdi-action-spellcheck:before {
  content: "\e676";
}

.mdi-action-star-rate:before {
  content: "\e677";
}

.mdi-action-stars:before {
  content: "\e678";
}

.mdi-action-store:before {
  content: "\e679";
}

.mdi-action-subject:before {
  content: "\e67a";
}

.mdi-action-swap-horiz:before {
  content: "\e67b";
}

.mdi-action-swap-vert:before {
  content: "\e67c";
}

.mdi-action-swap-vert-circle:before {
  content: "\e67d";
}

.mdi-action-system-update-tv:before {
  content: "\e67e";
}

.mdi-action-tab:before {
  content: "\e67f";
}

.mdi-action-tab-unselected:before {
  content: "\e680";
}

.mdi-action-theaters:before {
  content: "\e681";
}

.mdi-action-thumb-down:before {
  content: "\e682";
}

.mdi-action-thumbs-up-down:before {
  content: "\e683";
}

.mdi-action-thumb-up:before {
  content: "\e684";
}

.mdi-action-toc:before {
  content: "\e685";
}

.mdi-action-today:before {
  content: "\e686";
}

.mdi-action-track-changes:before {
  content: "\e687";
}

.mdi-action-translate:before {
  content: "\e688";
}

.mdi-action-trending-down:before {
  content: "\e689";
}

.mdi-action-trending-neutral:before {
  content: "\e68a";
}

.mdi-action-trending-up:before {
  content: "\e68b";
}

.mdi-action-turned-in:before {
  content: "\e68c";
}

.mdi-action-turned-in-not:before {
  content: "\e68d";
}

.mdi-action-verified-user:before {
  content: "\e68e";
}

.mdi-action-view-agenda:before {
  content: "\e68f";
}

.mdi-action-view-array:before {
  content: "\e690";
}

.mdi-action-view-carousel:before {
  content: "\e691";
}

.mdi-action-view-column:before {
  content: "\e692";
}

.mdi-action-view-day:before {
  content: "\e693";
}

.mdi-action-view-headline:before {
  content: "\e694";
}

.mdi-action-view-list:before {
  content: "\e695";
}

.mdi-action-view-module:before {
  content: "\e696";
}

.mdi-action-view-quilt:before {
  content: "\e697";
}

.mdi-action-view-stream:before {
  content: "\e698";
}

.mdi-action-view-week:before {
  content: "\e699";
}

.mdi-action-visibility:before {
  content: "\e69a";
}

.mdi-action-visibility-off:before {
  content: "\e69b";
}

.mdi-action-wallet-giftcard:before {
  content: "\e69c";
}

.mdi-action-wallet-membership:before {
  content: "\e69d";
}

.mdi-action-wallet-travel:before {
  content: "\e69e";
}

.mdi-action-work:before {
  content: "\e69f";
}

.mdi-alert-error:before {
  content: "\e6a0";
}

.mdi-alert-warning:before {
  content: "\e6a1";
}

.mdi-av-album:before {
  content: "\e6a2";
}

.mdi-av-timer:before {
  content: "\e6a3";
}

.mdi-av-closed-caption:before {
  content: "\e6a4";
}

.mdi-av-equalizer:before {
  content: "\e6a5";
}

.mdi-av-explicit:before {
  content: "\e6a6";
}

.mdi-av-fast-forward:before {
  content: "\e6a7";
}

.mdi-av-fast-rewind:before {
  content: "\e6a8";
}

.mdi-av-games:before {
  content: "\e6a9";
}

.mdi-av-hearing:before {
  content: "\e6aa";
}

.mdi-av-high-quality:before {
  content: "\e6ab";
}

.mdi-av-loop:before {
  content: "\e6ac";
}

.mdi-av-mic:before {
  content: "\e6ad";
}

.mdi-av-mic-none:before {
  content: "\e6ae";
}

.mdi-av-mic-off:before {
  content: "\e6af";
}

.mdi-av-movie:before {
  content: "\e6b0";
}

.mdi-av-my-library-add:before {
  content: "\e6b1";
}

.mdi-av-my-library-books:before {
  content: "\e6b2";
}

.mdi-av-my-library-music:before {
  content: "\e6b3";
}

.mdi-av-new-releases:before {
  content: "\e6b4";
}

.mdi-av-not-interested:before {
  content: "\e6b5";
}

.mdi-av-pause:before {
  content: "\e6b6";
}

.mdi-av-pause-circle-fill:before {
  content: "\e6b7";
}

.mdi-av-pause-circle-outline:before {
  content: "\e6b8";
}

.mdi-av-play-arrow:before {
  content: "\e6b9";
}

.mdi-av-play-circle-fill:before {
  content: "\e6ba";
}

.mdi-av-play-circle-outline:before {
  content: "\e6bb";
}

.mdi-av-playlist-add:before {
  content: "\e6bc";
}

.mdi-av-play-shopping-bag:before {
  content: "\e6bd";
}

.mdi-av-queue:before {
  content: "\e6be";
}

.mdi-av-queue-music:before {
  content: "\e6bf";
}

.mdi-av-radio:before {
  content: "\e6c0";
}

.mdi-av-recent-actors:before {
  content: "\e6c1";
}

.mdi-av-repeat:before {
  content: "\e6c2";
}

.mdi-av-repeat-one:before {
  content: "\e6c3";
}

.mdi-av-replay:before {
  content: "\e6c4";
}

.mdi-av-shuffle:before {
  content: "\e6c5";
}

.mdi-av-skip-next:before {
  content: "\e6c6";
}

.mdi-av-skip-previous:before {
  content: "\e6c7";
}

.mdi-av-snooze:before {
  content: "\e6c8";
}

.mdi-av-stop:before {
  content: "\e6c9";
}

.mdi-av-subtitles:before {
  content: "\e6ca";
}

.mdi-av-surround-sound:before {
  content: "\e6cb";
}

.mdi-av-videocam:before {
  content: "\e6cc";
}

.mdi-av-videocam-off:before {
  content: "\e6cd";
}

.mdi-av-video-collection:before {
  content: "\e6ce";
}

.mdi-av-volume-down:before {
  content: "\e6cf";
}

.mdi-av-volume-mute:before {
  content: "\e6d0";
}

.mdi-av-volume-off:before {
  content: "\e6d1";
}

.mdi-av-volume-up:before {
  content: "\e6d2";
}

.mdi-av-web:before {
  content: "\e6d3";
}

.mdi-communication-business:before {
  content: "\e6d4";
}

.mdi-communication-call:before {
  content: "\e6d5";
}

.mdi-communication-call-end:before {
  content: "\e6d6";
}

.mdi-communication-call-made:before {
  content: "\e6d7";
}

.mdi-communication-call-merge:before {
  content: "\e6d8";
}

.mdi-communication-call-missed:before {
  content: "\e6d9";
}

.mdi-communication-call-received:before {
  content: "\e6da";
}

.mdi-communication-call-split:before {
  content: "\e6db";
}

.mdi-communication-chat:before {
  content: "\e6dc";
}

.mdi-communication-clear-all:before {
  content: "\e6dd";
}

.mdi-communication-comment:before {
  content: "\e6de";
}

.mdi-communication-contacts:before {
  content: "\e6df";
}

.mdi-communication-dialer-sip:before {
  content: "\e6e0";
}

.mdi-communication-dialpad:before {
  content: "\e6e1";
}

.mdi-communication-dnd-on:before {
  content: "\e6e2";
}

.mdi-communication-email:before {
  content: "\e6e3";
}

.mdi-communication-forum:before {
  content: "\e6e4";
}

.mdi-communication-import-export:before {
  content: "\e6e5";
}

.mdi-communication-invert-colors-off:before {
  content: "\e6e6";
}

.mdi-communication-invert-colors-on:before {
  content: "\e6e7";
}

.mdi-communication-live-help:before {
  content: "\e6e8";
}

.mdi-communication-location-off:before {
  content: "\e6e9";
}

.mdi-communication-location-on:before {
  content: "\e6ea";
}

.mdi-communication-message:before {
  content: "\e6eb";
}

.mdi-communication-messenger:before {
  content: "\e6ec";
}

.mdi-communication-no-sim:before {
  content: "\e6ed";
}

.mdi-communication-phone:before {
  content: "\e6ee";
}

.mdi-communication-portable-wifi-off:before {
  content: "\e6ef";
}

.mdi-communication-quick-contacts-dialer:before {
  content: "\e6f0";
}

.mdi-communication-quick-contacts-mail:before {
  content: "\e6f1";
}

.mdi-communication-ring-volume:before {
  content: "\e6f2";
}

.mdi-communication-stay-current-landscape:before {
  content: "\e6f3";
}

.mdi-communication-stay-current-portrait:before {
  content: "\e6f4";
}

.mdi-communication-stay-primary-landscape:before {
  content: "\e6f5";
}

.mdi-communication-stay-primary-portrait:before {
  content: "\e6f6";
}

.mdi-communication-swap-calls:before {
  content: "\e6f7";
}

.mdi-communication-textsms:before {
  content: "\e6f8";
}

.mdi-communication-voicemail:before {
  content: "\e6f9";
}

.mdi-communication-vpn-key:before {
  content: "\e6fa";
}

.mdi-content-add:before {
  content: "\e6fb";
}

.mdi-content-add-box:before {
  content: "\e6fc";
}

.mdi-content-add-circle:before {
  content: "\e6fd";
}

.mdi-content-add-circle-outline:before {
  content: "\e6fe";
}

.mdi-content-archive:before {
  content: "\e6ff";
}

.mdi-content-backspace:before {
  content: "\e700";
}

.mdi-content-block:before {
  content: "\e701";
}

.mdi-content-clear:before {
  content: "\e702";
}

.mdi-content-content-copy:before {
  content: "\e703";
}

.mdi-content-content-cut:before {
  content: "\e704";
}

.mdi-content-content-paste:before {
  content: "\e705";
}

.mdi-content-create:before {
  content: "\e706";
}

.mdi-content-drafts:before {
  content: "\e707";
}

.mdi-content-filter-list:before {
  content: "\e708";
}

.mdi-content-flag:before {
  content: "\e709";
}

.mdi-content-forward:before {
  content: "\e70a";
}

.mdi-content-gesture:before {
  content: "\e70b";
}

.mdi-content-inbox:before {
  content: "\e70c";
}

.mdi-content-link:before {
  content: "\e70d";
}

.mdi-content-mail:before {
  content: "\e70e";
}

.mdi-content-markunread:before {
  content: "\e70f";
}

.mdi-content-redo:before {
  content: "\e710";
}

.mdi-content-remove:before {
  content: "\e711";
}

.mdi-content-remove-circle:before {
  content: "\e712";
}

.mdi-content-remove-circle-outline:before {
  content: "\e713";
}

.mdi-content-reply:before {
  content: "\e714";
}

.mdi-content-reply-all:before {
  content: "\e715";
}

.mdi-content-report:before {
  content: "\e716";
}

.mdi-content-save:before {
  content: "\e717";
}

.mdi-content-select-all:before {
  content: "\e718";
}

.mdi-content-send:before {
  content: "\e719";
}

.mdi-content-sort:before {
  content: "\e71a";
}

.mdi-content-text-format:before {
  content: "\e71b";
}

.mdi-content-undo:before {
  content: "\e71c";
}

.mdi-device-access-alarm:before {
  content: "\e71d";
}

.mdi-device-access-alarms:before {
  content: "\e71e";
}

.mdi-device-access-time:before {
  content: "\e71f";
}

.mdi-device-add-alarm:before {
  content: "\e720";
}

.mdi-device-airplanemode-off:before {
  content: "\e721";
}

.mdi-device-airplanemode-on:before {
  content: "\e722";
}

.mdi-device-battery-20:before {
  content: "\e723";
}

.mdi-device-battery-30:before {
  content: "\e724";
}

.mdi-device-battery-50:before {
  content: "\e725";
}

.mdi-device-battery-60:before {
  content: "\e726";
}

.mdi-device-battery-80:before {
  content: "\e727";
}

.mdi-device-battery-90:before {
  content: "\e728";
}

.mdi-device-battery-alert:before {
  content: "\e729";
}

.mdi-device-battery-charging-20:before {
  content: "\e72a";
}

.mdi-device-battery-charging-30:before {
  content: "\e72b";
}

.mdi-device-battery-charging-50:before {
  content: "\e72c";
}

.mdi-device-battery-charging-60:before {
  content: "\e72d";
}

.mdi-device-battery-charging-80:before {
  content: "\e72e";
}

.mdi-device-battery-charging-90:before {
  content: "\e72f";
}

.mdi-device-battery-charging-full:before {
  content: "\e730";
}

.mdi-device-battery-full:before {
  content: "\e731";
}

.mdi-device-battery-std:before {
  content: "\e732";
}

.mdi-device-battery-unknown:before {
  content: "\e733";
}

.mdi-device-bluetooth:before {
  content: "\e734";
}

.mdi-device-bluetooth-connected:before {
  content: "\e735";
}

.mdi-device-bluetooth-disabled:before {
  content: "\e736";
}

.mdi-device-bluetooth-searching:before {
  content: "\e737";
}

.mdi-device-brightness-auto:before {
  content: "\e738";
}

.mdi-device-brightness-high:before {
  content: "\e739";
}

.mdi-device-brightness-low:before {
  content: "\e73a";
}

.mdi-device-brightness-medium:before {
  content: "\e73b";
}

.mdi-device-data-usage:before {
  content: "\e73c";
}

.mdi-device-developer-mode:before {
  content: "\e73d";
}

.mdi-device-devices:before {
  content: "\e73e";
}

.mdi-device-dvr:before {
  content: "\e73f";
}

.mdi-device-gps-fixed:before {
  content: "\e740";
}

.mdi-device-gps-not-fixed:before {
  content: "\e741";
}

.mdi-device-gps-off:before {
  content: "\e742";
}

.mdi-device-location-disabled:before {
  content: "\e743";
}

.mdi-device-location-searching:before {
  content: "\e744";
}

.mdi-device-multitrack-audio:before {
  content: "\e745";
}

.mdi-device-network-cell:before {
  content: "\e746";
}

.mdi-device-network-wifi:before {
  content: "\e747";
}

.mdi-device-nfc:before {
  content: "\e748";
}

.mdi-device-now-wallpaper:before {
  content: "\e749";
}

.mdi-device-now-widgets:before {
  content: "\e74a";
}

.mdi-device-screen-lock-landscape:before {
  content: "\e74b";
}

.mdi-device-screen-lock-portrait:before {
  content: "\e74c";
}

.mdi-device-screen-lock-rotation:before {
  content: "\e74d";
}

.mdi-device-screen-rotation:before {
  content: "\e74e";
}

.mdi-device-sd-storage:before {
  content: "\e74f";
}

.mdi-device-settings-system-daydream:before {
  content: "\e750";
}

.mdi-device-signal-cellular-0-bar:before {
  content: "\e751";
}

.mdi-device-signal-cellular-1-bar:before {
  content: "\e752";
}

.mdi-device-signal-cellular-2-bar:before {
  content: "\e753";
}

.mdi-device-signal-cellular-3-bar:before {
  content: "\e754";
}

.mdi-device-signal-cellular-4-bar:before {
  content: "\e755";
}

.mdi-device-signal-cellular-connected-no-internet-0-bar:before {
  content: "\e756";
}

.mdi-device-signal-cellular-connected-no-internet-1-bar:before {
  content: "\e757";
}

.mdi-device-signal-cellular-connected-no-internet-2-bar:before {
  content: "\e758";
}

.mdi-device-signal-cellular-connected-no-internet-3-bar:before {
  content: "\e759";
}

.mdi-device-signal-cellular-connected-no-internet-4-bar:before {
  content: "\e75a";
}

.mdi-device-signal-cellular-no-sim:before {
  content: "\e75b";
}

.mdi-device-signal-cellular-null:before {
  content: "\e75c";
}

.mdi-device-signal-cellular-off:before {
  content: "\e75d";
}

.mdi-device-signal-wifi-0-bar:before {
  content: "\e75e";
}

.mdi-device-signal-wifi-1-bar:before {
  content: "\e75f";
}

.mdi-device-signal-wifi-2-bar:before {
  content: "\e760";
}

.mdi-device-signal-wifi-3-bar:before {
  content: "\e761";
}

.mdi-device-signal-wifi-4-bar:before {
  content: "\e762";
}

.mdi-device-signal-wifi-off:before {
  content: "\e763";
}

.mdi-device-storage:before {
  content: "\e764";
}

.mdi-device-usb:before {
  content: "\e765";
}

.mdi-device-wifi-lock:before {
  content: "\e766";
}

.mdi-device-wifi-tethering:before {
  content: "\e767";
}

.mdi-editor-attach-file:before {
  content: "\e768";
}

.mdi-editor-attach-money:before {
  content: "\e769";
}

.mdi-editor-border-all:before {
  content: "\e76a";
}

.mdi-editor-border-bottom:before {
  content: "\e76b";
}

.mdi-editor-border-clear:before {
  content: "\e76c";
}

.mdi-editor-border-color:before {
  content: "\e76d";
}

.mdi-editor-border-horizontal:before {
  content: "\e76e";
}

.mdi-editor-border-inner:before {
  content: "\e76f";
}

.mdi-editor-border-left:before {
  content: "\e770";
}

.mdi-editor-border-outer:before {
  content: "\e771";
}

.mdi-editor-border-right:before {
  content: "\e772";
}

.mdi-editor-border-style:before {
  content: "\e773";
}

.mdi-editor-border-top:before {
  content: "\e774";
}

.mdi-editor-border-vertical:before {
  content: "\e775";
}

.mdi-editor-format-align-center:before {
  content: "\e776";
}

.mdi-editor-format-align-justify:before {
  content: "\e777";
}

.mdi-editor-format-align-left:before {
  content: "\e778";
}

.mdi-editor-format-align-right:before {
  content: "\e779";
}

.mdi-editor-format-bold:before {
  content: "\e77a";
}

.mdi-editor-format-clear:before {
  content: "\e77b";
}

.mdi-editor-format-color-fill:before {
  content: "\e77c";
}

.mdi-editor-format-color-reset:before {
  content: "\e77d";
}

.mdi-editor-format-color-text:before {
  content: "\e77e";
}

.mdi-editor-format-indent-decrease:before {
  content: "\e77f";
}

.mdi-editor-format-indent-increase:before {
  content: "\e780";
}

.mdi-editor-format-italic:before {
  content: "\e781";
}

.mdi-editor-format-line-spacing:before {
  content: "\e782";
}

.mdi-editor-format-list-bulleted:before {
  content: "\e783";
}

.mdi-editor-format-list-numbered:before {
  content: "\e784";
}

.mdi-editor-format-paint:before {
  content: "\e785";
}

.mdi-editor-format-quote:before {
  content: "\e786";
}

.mdi-editor-format-size:before {
  content: "\e787";
}

.mdi-editor-format-strikethrough:before {
  content: "\e788";
}

.mdi-editor-format-textdirection-l-to-r:before {
  content: "\e789";
}

.mdi-editor-format-textdirection-r-to-l:before {
  content: "\e78a";
}

.mdi-editor-format-underline:before {
  content: "\e78b";
}

.mdi-editor-functions:before {
  content: "\e78c";
}

.mdi-editor-insert-chart:before {
  content: "\e78d";
}

.mdi-editor-insert-comment:before {
  content: "\e78e";
}

.mdi-editor-insert-drive-file:before {
  content: "\e78f";
}

.mdi-editor-insert-emoticon:before {
  content: "\e790";
}

.mdi-editor-insert-invitation:before {
  content: "\e791";
}

.mdi-editor-insert-link:before {
  content: "\e792";
}

.mdi-editor-insert-photo:before {
  content: "\e793";
}

.mdi-editor-merge-type:before {
  content: "\e794";
}

.mdi-editor-mode-comment:before {
  content: "\e795";
}

.mdi-editor-mode-edit:before {
  content: "\e796";
}

.mdi-editor-publish:before {
  content: "\e797";
}

.mdi-editor-vertical-align-bottom:before {
  content: "\e798";
}

.mdi-editor-vertical-align-center:before {
  content: "\e799";
}

.mdi-editor-vertical-align-top:before {
  content: "\e79a";
}

.mdi-editor-wrap-text:before {
  content: "\e79b";
}

.mdi-file-attachment:before {
  content: "\e79c";
}

.mdi-file-cloud:before {
  content: "\e79d";
}

.mdi-file-cloud-circle:before {
  content: "\e79e";
}

.mdi-file-cloud-done:before {
  content: "\e79f";
}

.mdi-file-cloud-download:before {
  content: "\e7a0";
}

.mdi-file-cloud-off:before {
  content: "\e7a1";
}

.mdi-file-cloud-queue:before {
  content: "\e7a2";
}

.mdi-file-cloud-upload:before {
  content: "\e7a3";
}

.mdi-file-file-download:before {
  content: "\e7a4";
}

.mdi-file-file-upload:before {
  content: "\e7a5";
}

.mdi-file-folder:before {
  content: "\e7a6";
}

.mdi-file-folder-open:before {
  content: "\e7a7";
}

.mdi-file-folder-shared:before {
  content: "\e7a8";
}

.mdi-hardware-cast:before {
  content: "\e7a9";
}

.mdi-hardware-cast-connected:before {
  content: "\e7aa";
}

.mdi-hardware-computer:before {
  content: "\e7ab";
}

.mdi-hardware-desktop-mac:before {
  content: "\e7ac";
}

.mdi-hardware-desktop-windows:before {
  content: "\e7ad";
}

.mdi-hardware-dock:before {
  content: "\e7ae";
}

.mdi-hardware-gamepad:before {
  content: "\e7af";
}

.mdi-hardware-headset:before {
  content: "\e7b0";
}

.mdi-hardware-headset-mic:before {
  content: "\e7b1";
}

.mdi-hardware-keyboard:before {
  content: "\e7b2";
}

.mdi-hardware-keyboard-alt:before {
  content: "\e7b3";
}

.mdi-hardware-keyboard-arrow-down:before {
  content: "\e7b4";
}

.mdi-hardware-keyboard-arrow-left:before {
  content: "\e7b5";
}

.mdi-hardware-keyboard-arrow-right:before {
  content: "\e7b6";
}

.mdi-hardware-keyboard-arrow-up:before {
  content: "\e7b7";
}

.mdi-hardware-keyboard-backspace:before {
  content: "\e7b8";
}

.mdi-hardware-keyboard-capslock:before {
  content: "\e7b9";
}

.mdi-hardware-keyboard-control:before {
  content: "\e7ba";
}

.mdi-hardware-keyboard-hide:before {
  content: "\e7bb";
}

.mdi-hardware-keyboard-return:before {
  content: "\e7bc";
}

.mdi-hardware-keyboard-tab:before {
  content: "\e7bd";
}

.mdi-hardware-keyboard-voice:before {
  content: "\e7be";
}

.mdi-hardware-laptop:before {
  content: "\e7bf";
}

.mdi-hardware-laptop-chromebook:before {
  content: "\e7c0";
}

.mdi-hardware-laptop-mac:before {
  content: "\e7c1";
}

.mdi-hardware-laptop-windows:before {
  content: "\e7c2";
}

.mdi-hardware-memory:before {
  content: "\e7c3";
}

.mdi-hardware-mouse:before {
  content: "\e7c4";
}

.mdi-hardware-phone-android:before {
  content: "\e7c5";
}

.mdi-hardware-phone-iphone:before {
  content: "\e7c6";
}

.mdi-hardware-phonelink:before {
  content: "\e7c7";
}

.mdi-hardware-phonelink-off:before {
  content: "\e7c8";
}

.mdi-hardware-security:before {
  content: "\e7c9";
}

.mdi-hardware-sim-card:before {
  content: "\e7ca";
}

.mdi-hardware-smartphone:before {
  content: "\e7cb";
}

.mdi-hardware-speaker:before {
  content: "\e7cc";
}

.mdi-hardware-tablet:before {
  content: "\e7cd";
}

.mdi-hardware-tablet-android:before {
  content: "\e7ce";
}

.mdi-hardware-tablet-mac:before {
  content: "\e7cf";
}

.mdi-hardware-tv:before {
  content: "\e7d0";
}

.mdi-hardware-watch:before {
  content: "\e7d1";
}

.mdi-image-add-to-photos:before {
  content: "\e7d2";
}

.mdi-image-adjust:before {
  content: "\e7d3";
}

.mdi-image-assistant-photo:before {
  content: "\e7d4";
}

.mdi-image-audiotrack:before {
  content: "\e7d5";
}

.mdi-image-blur-circular:before {
  content: "\e7d6";
}

.mdi-image-blur-linear:before {
  content: "\e7d7";
}

.mdi-image-blur-off:before {
  content: "\e7d8";
}

.mdi-image-blur-on:before {
  content: "\e7d9";
}

.mdi-image-brightness-1:before {
  content: "\e7da";
}

.mdi-image-brightness-2:before {
  content: "\e7db";
}

.mdi-image-brightness-3:before {
  content: "\e7dc";
}

.mdi-image-brightness-4:before {
  content: "\e7dd";
}

.mdi-image-brightness-5:before {
  content: "\e7de";
}

.mdi-image-brightness-6:before {
  content: "\e7df";
}

.mdi-image-brightness-7:before {
  content: "\e7e0";
}

.mdi-image-brush:before {
  content: "\e7e1";
}

.mdi-image-camera:before {
  content: "\e7e2";
}

.mdi-image-camera-alt:before {
  content: "\e7e3";
}

.mdi-image-camera-front:before {
  content: "\e7e4";
}

.mdi-image-camera-rear:before {
  content: "\e7e5";
}

.mdi-image-camera-roll:before {
  content: "\e7e6";
}

.mdi-image-center-focus-strong:before {
  content: "\e7e7";
}

.mdi-image-center-focus-weak:before {
  content: "\e7e8";
}

.mdi-image-collections:before {
  content: "\e7e9";
}

.mdi-image-colorize:before {
  content: "\e7ea";
}

.mdi-image-color-lens:before {
  content: "\e7eb";
}

.mdi-image-compare:before {
  content: "\e7ec";
}

.mdi-image-control-point:before {
  content: "\e7ed";
}

.mdi-image-control-point-duplicate:before {
  content: "\e7ee";
}

.mdi-image-crop:before {
  content: "\e7ef";
}

.mdi-image-crop-3-2:before {
  content: "\e7f0";
}

.mdi-image-crop-5-4:before {
  content: "\e7f1";
}

.mdi-image-crop-7-5:before {
  content: "\e7f2";
}

.mdi-image-crop-16-9:before {
  content: "\e7f3";
}

.mdi-image-crop-din:before {
  content: "\e7f4";
}

.mdi-image-crop-free:before {
  content: "\e7f5";
}

.mdi-image-crop-landscape:before {
  content: "\e7f6";
}

.mdi-image-crop-original:before {
  content: "\e7f7";
}

.mdi-image-crop-portrait:before {
  content: "\e7f8";
}

.mdi-image-crop-square:before {
  content: "\e7f9";
}

.mdi-image-dehaze:before {
  content: "\e7fa";
}

.mdi-image-details:before {
  content: "\e7fb";
}

.mdi-image-edit:before {
  content: "\e7fc";
}

.mdi-image-exposure:before {
  content: "\e7fd";
}

.mdi-image-exposure-minus-1:before {
  content: "\e7fe";
}

.mdi-image-exposure-minus-2:before {
  content: "\e7ff";
}

.mdi-image-exposure-plus-1:before {
  content: "\e800";
}

.mdi-image-exposure-plus-2:before {
  content: "\e801";
}

.mdi-image-exposure-zero:before {
  content: "\e802";
}

.mdi-image-filter:before {
  content: "\e803";
}

.mdi-image-filter-1:before {
  content: "\e804";
}

.mdi-image-filter-2:before {
  content: "\e805";
}

.mdi-image-filter-3:before {
  content: "\e806";
}

.mdi-image-filter-4:before {
  content: "\e807";
}

.mdi-image-filter-5:before {
  content: "\e808";
}

.mdi-image-filter-6:before {
  content: "\e809";
}

.mdi-image-filter-7:before {
  content: "\e80a";
}

.mdi-image-filter-8:before {
  content: "\e80b";
}

.mdi-image-filter-9:before {
  content: "\e80c";
}

.mdi-image-filter-9-plus:before {
  content: "\e80d";
}

.mdi-image-filter-b-and-w:before {
  content: "\e80e";
}

.mdi-image-filter-center-focus:before {
  content: "\e80f";
}

.mdi-image-filter-drama:before {
  content: "\e810";
}

.mdi-image-filter-frames:before {
  content: "\e811";
}

.mdi-image-filter-hdr:before {
  content: "\e812";
}

.mdi-image-filter-none:before {
  content: "\e813";
}

.mdi-image-filter-tilt-shift:before {
  content: "\e814";
}

.mdi-image-filter-vintage:before {
  content: "\e815";
}

.mdi-image-flare:before {
  content: "\e816";
}

.mdi-image-flash-auto:before {
  content: "\e817";
}

.mdi-image-flash-off:before {
  content: "\e818";
}

.mdi-image-flash-on:before {
  content: "\e819";
}

.mdi-image-flip:before {
  content: "\e81a";
}

.mdi-image-gradient:before {
  content: "\e81b";
}

.mdi-image-grain:before {
  content: "\e81c";
}

.mdi-image-grid-off:before {
  content: "\e81d";
}

.mdi-image-grid-on:before {
  content: "\e81e";
}

.mdi-image-hdr-off:before {
  content: "\e81f";
}

.mdi-image-hdr-on:before {
  content: "\e820";
}

.mdi-image-hdr-strong:before {
  content: "\e821";
}

.mdi-image-hdr-weak:before {
  content: "\e822";
}

.mdi-image-healing:before {
  content: "\e823";
}

.mdi-image-image:before {
  content: "\e824";
}

.mdi-image-image-aspect-ratio:before {
  content: "\e825";
}

.mdi-image-iso:before {
  content: "\e826";
}

.mdi-image-landscape:before {
  content: "\e827";
}

.mdi-image-leak-add:before {
  content: "\e828";
}

.mdi-image-leak-remove:before {
  content: "\e829";
}

.mdi-image-lens:before {
  content: "\e82a";
}

.mdi-image-looks:before {
  content: "\e82b";
}

.mdi-image-looks-3:before {
  content: "\e82c";
}

.mdi-image-looks-4:before {
  content: "\e82d";
}

.mdi-image-looks-5:before {
  content: "\e82e";
}

.mdi-image-looks-6:before {
  content: "\e82f";
}

.mdi-image-looks-one:before {
  content: "\e830";
}

.mdi-image-looks-two:before {
  content: "\e831";
}

.mdi-image-loupe:before {
  content: "\e832";
}

.mdi-image-movie-creation:before {
  content: "\e833";
}

.mdi-image-nature:before {
  content: "\e834";
}

.mdi-image-nature-people:before {
  content: "\e835";
}

.mdi-image-navigate-before:before {
  content: "\e836";
}

.mdi-image-navigate-next:before {
  content: "\e837";
}

.mdi-image-palette:before {
  content: "\e838";
}

.mdi-image-panorama:before {
  content: "\e839";
}

.mdi-image-panorama-fisheye:before {
  content: "\e83a";
}

.mdi-image-panorama-horizontal:before {
  content: "\e83b";
}

.mdi-image-panorama-vertical:before {
  content: "\e83c";
}

.mdi-image-panorama-wide-angle:before {
  content: "\e83d";
}

.mdi-image-photo:before {
  content: "\e83e";
}

.mdi-image-photo-album:before {
  content: "\e83f";
}

.mdi-image-photo-camera:before {
  content: "\e840";
}

.mdi-image-photo-library:before {
  content: "\e841";
}

.mdi-image-portrait:before {
  content: "\e842";
}

.mdi-image-remove-red-eye:before {
  content: "\e843";
}

.mdi-image-rotate-left:before {
  content: "\e844";
}

.mdi-image-rotate-right:before {
  content: "\e845";
}

.mdi-image-slideshow:before {
  content: "\e846";
}

.mdi-image-straighten:before {
  content: "\e847";
}

.mdi-image-style:before {
  content: "\e848";
}

.mdi-image-switch-camera:before {
  content: "\e849";
}

.mdi-image-switch-video:before {
  content: "\e84a";
}

.mdi-image-tag-faces:before {
  content: "\e84b";
}

.mdi-image-texture:before {
  content: "\e84c";
}

.mdi-image-timelapse:before {
  content: "\e84d";
}

.mdi-image-timer:before {
  content: "\e84e";
}

.mdi-image-timer-3:before {
  content: "\e84f";
}

.mdi-image-timer-10:before {
  content: "\e850";
}

.mdi-image-timer-auto:before {
  content: "\e851";
}

.mdi-image-timer-off:before {
  content: "\e852";
}

.mdi-image-tonality:before {
  content: "\e853";
}

.mdi-image-transform:before {
  content: "\e854";
}

.mdi-image-tune:before {
  content: "\e855";
}

.mdi-image-wb-auto:before {
  content: "\e856";
}

.mdi-image-wb-cloudy:before {
  content: "\e857";
}

.mdi-image-wb-incandescent:before {
  content: "\e858";
}

.mdi-image-wb-irradescent:before {
  content: "\e859";
}

.mdi-image-wb-sunny:before {
  content: "\e85a";
}

.mdi-maps-beenhere:before {
  content: "\e85b";
}

.mdi-maps-directions:before {
  content: "\e85c";
}

.mdi-maps-directions-bike:before {
  content: "\e85d";
}

.mdi-maps-directions-bus:before {
  content: "\e85e";
}

.mdi-maps-directions-car:before {
  content: "\e85f";
}

.mdi-maps-directions-ferry:before {
  content: "\e860";
}

.mdi-maps-directions-subway:before {
  content: "\e861";
}

.mdi-maps-directions-train:before {
  content: "\e862";
}

.mdi-maps-directions-transit:before {
  content: "\e863";
}

.mdi-maps-directions-walk:before {
  content: "\e864";
}

.mdi-maps-flight:before {
  content: "\e865";
}

.mdi-maps-hotel:before {
  content: "\e866";
}

.mdi-maps-layers:before {
  content: "\e867";
}

.mdi-maps-layers-clear:before {
  content: "\e868";
}

.mdi-maps-local-airport:before {
  content: "\e869";
}

.mdi-maps-local-atm:before {
  content: "\e86a";
}

.mdi-maps-local-attraction:before {
  content: "\e86b";
}

.mdi-maps-local-bar:before {
  content: "\e86c";
}

.mdi-maps-local-cafe:before {
  content: "\e86d";
}

.mdi-maps-local-car-wash:before {
  content: "\e86e";
}

.mdi-maps-local-convenience-store:before {
  content: "\e86f";
}

.mdi-maps-local-drink:before {
  content: "\e870";
}

.mdi-maps-local-florist:before {
  content: "\e871";
}

.mdi-maps-local-gas-station:before {
  content: "\e872";
}

.mdi-maps-local-grocery-store:before {
  content: "\e873";
}

.mdi-maps-local-hospital:before {
  content: "\e874";
}

.mdi-maps-local-hotel:before {
  content: "\e875";
}

.mdi-maps-local-laundry-service:before {
  content: "\e876";
}

.mdi-maps-local-library:before {
  content: "\e877";
}

.mdi-maps-local-mall:before {
  content: "\e878";
}

.mdi-maps-local-movies:before {
  content: "\e879";
}

.mdi-maps-local-offer:before {
  content: "\e87a";
}

.mdi-maps-local-parking:before {
  content: "\e87b";
}

.mdi-maps-local-pharmacy:before {
  content: "\e87c";
}

.mdi-maps-local-phone:before {
  content: "\e87d";
}

.mdi-maps-local-pizza:before {
  content: "\e87e";
}

.mdi-maps-local-play:before {
  content: "\e87f";
}

.mdi-maps-local-post-office:before {
  content: "\e880";
}

.mdi-maps-local-print-shop:before {
  content: "\e881";
}

.mdi-maps-local-restaurant:before {
  content: "\e882";
}

.mdi-maps-local-see:before {
  content: "\e883";
}

.mdi-maps-local-shipping:before {
  content: "\e884";
}

.mdi-maps-local-taxi:before {
  content: "\e885";
}

.mdi-maps-location-history:before {
  content: "\e886";
}

.mdi-maps-map:before {
  content: "\e887";
}

.mdi-maps-my-location:before {
  content: "\e888";
}

.mdi-maps-navigation:before {
  content: "\e889";
}

.mdi-maps-pin-drop:before {
  content: "\e88a";
}

.mdi-maps-place:before {
  content: "\e88b";
}

.mdi-maps-rate-review:before {
  content: "\e88c";
}

.mdi-maps-restaurant-menu:before {
  content: "\e88d";
}

.mdi-maps-satellite:before {
  content: "\e88e";
}

.mdi-maps-store-mall-directory:before {
  content: "\e88f";
}

.mdi-maps-terrain:before {
  content: "\e890";
}

.mdi-maps-traffic:before {
  content: "\e891";
}

.mdi-navigation-apps:before {
  content: "\e892";
}

.mdi-navigation-arrow-back:before {
  content: "\e893";
}

.mdi-navigation-arrow-drop-down:before {
  content: "\e894";
}

.mdi-navigation-arrow-drop-down-circle:before {
  content: "\e895";
}

.mdi-navigation-arrow-drop-up:before {
  content: "\e896";
}

.mdi-navigation-arrow-forward:before {
  content: "\e897";
}

.mdi-navigation-cancel:before {
  content: "\e898";
}

.mdi-navigation-check:before {
  content: "\e899";
}

.mdi-navigation-chevron-left:before {
  content: "\e89a";
}

.mdi-navigation-chevron-right:before {
  content: "\e89b";
}

.mdi-navigation-close:before {
  content: "\e89c";
}

.mdi-navigation-expand-less:before {
  content: "\e89d";
}

.mdi-navigation-expand-more:before {
  content: "\e89e";
}

.mdi-navigation-fullscreen:before {
  content: "\e89f";
}

.mdi-navigation-fullscreen-exit:before {
  content: "\e8a0";
}

.mdi-navigation-menu:before {
  content: "\e8a1";
}

.mdi-navigation-more-horiz:before {
  content: "\e8a2";
}

.mdi-navigation-more-vert:before {
  content: "\e8a3";
}

.mdi-navigation-refresh:before {
  content: "\e8a4";
}

.mdi-navigation-unfold-less:before {
  content: "\e8a5";
}

.mdi-navigation-unfold-more:before {
  content: "\e8a6";
}

.mdi-notification-adb:before {
  content: "\e8a7";
}

.mdi-notification-bluetooth-audio:before {
  content: "\e8a8";
}

.mdi-notification-disc-full:before {
  content: "\e8a9";
}

.mdi-notification-dnd-forwardslash:before {
  content: "\e8aa";
}

.mdi-notification-do-not-disturb:before {
  content: "\e8ab";
}

.mdi-notification-drive-eta:before {
  content: "\e8ac";
}

.mdi-notification-event-available:before {
  content: "\e8ad";
}

.mdi-notification-event-busy:before {
  content: "\e8ae";
}

.mdi-notification-event-note:before {
  content: "\e8af";
}

.mdi-notification-folder-special:before {
  content: "\e8b0";
}

.mdi-notification-mms:before {
  content: "\e8b1";
}

.mdi-notification-more:before {
  content: "\e8b2";
}

.mdi-notification-network-locked:before {
  content: "\e8b3";
}

.mdi-notification-phone-bluetooth-speaker:before {
  content: "\e8b4";
}

.mdi-notification-phone-forwarded:before {
  content: "\e8b5";
}

.mdi-notification-phone-in-talk:before {
  content: "\e8b6";
}

.mdi-notification-phone-locked:before {
  content: "\e8b7";
}

.mdi-notification-phone-missed:before {
  content: "\e8b8";
}

.mdi-notification-phone-paused:before {
  content: "\e8b9";
}

.mdi-notification-play-download:before {
  content: "\e8ba";
}

.mdi-notification-play-install:before {
  content: "\e8bb";
}

.mdi-notification-sd-card:before {
  content: "\e8bc";
}

.mdi-notification-sim-card-alert:before {
  content: "\e8bd";
}

.mdi-notification-sms:before {
  content: "\e8be";
}

.mdi-notification-sms-failed:before {
  content: "\e8bf";
}

.mdi-notification-sync:before {
  content: "\e8c0";
}

.mdi-notification-sync-disabled:before {
  content: "\e8c1";
}

.mdi-notification-sync-problem:before {
  content: "\e8c2";
}

.mdi-notification-system-update:before {
  content: "\e8c3";
}

.mdi-notification-tap-and-play:before {
  content: "\e8c4";
}

.mdi-notification-time-to-leave:before {
  content: "\e8c5";
}

.mdi-notification-vibration:before {
  content: "\e8c6";
}

.mdi-notification-voice-chat:before {
  content: "\e8c7";
}

.mdi-notification-vpn-lock:before {
  content: "\e8c8";
}

.mdi-social-cake:before {
  content: "\e8c9";
}

.mdi-social-domain:before {
  content: "\e8ca";
}

.mdi-social-group:before {
  content: "\e8cb";
}

.mdi-social-group-add:before {
  content: "\e8cc";
}

.mdi-social-location-city:before {
  content: "\e8cd";
}

.mdi-social-mood:before {
  content: "\e8ce";
}

.mdi-social-notifications:before {
  content: "\e8cf";
}

.mdi-social-notifications-none:before {
  content: "\e8d0";
}

.mdi-social-notifications-off:before {
  content: "\e8d1";
}

.mdi-social-notifications-on:before {
  content: "\e8d2";
}

.mdi-social-notifications-paused:before {
  content: "\e8d3";
}

.mdi-social-pages:before {
  content: "\e8d4";
}

.mdi-social-party-mode:before {
  content: "\e8d5";
}

.mdi-social-people:before {
  content: "\e8d6";
}

.mdi-social-people-outline:before {
  content: "\e8d7";
}

.mdi-social-person:before {
  content: "\e8d8";
}

.mdi-social-person-add:before {
  content: "\e8d9";
}

.mdi-social-person-outline:before {
  content: "\e8da";
}

.mdi-social-plus-one:before {
  content: "\e8db";
}

.mdi-social-poll:before {
  content: "\e8dc";
}

.mdi-social-public:before {
  content: "\e8dd";
}

.mdi-social-school:before {
  content: "\e8de";
}

.mdi-social-share:before {
  content: "\e8df";
}

.mdi-social-whatshot:before {
  content: "\e8e0";
}

.mdi-toggle-check-box:before {
  content: "\e8e1";
}

.mdi-toggle-check-box-outline-blank:before {
  content: "\e8e2";
}

.mdi-toggle-radio-button-off:before {
  content: "\e8e3";
}

.mdi-toggle-radio-button-on:before {
  content: "\e8e4";
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Roboto-Light'), url(../fonts/roboto/roboto-light.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(../fonts/roboto/roboto.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../fonts/roboto/roboto-bold.woff) format('woff');
}

.intl-tel-input{position:relative;display:inline-block}.intl-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.intl-tel-input .hide{display:none}.intl-tel-input .v-hide{visibility:hidden}.intl-tel-input input,.intl-tel-input input[type=text],.intl-tel-input input[type=tel]{position:relative;z-index:0;margin-top:0 !important;margin-bottom:0 !important;padding-left:44px;margin-left:0;transition:background-color 100ms ease-out}.intl-tel-input input.iti-invalid-key{transition:background-color 0;background-color:#FFC7C7}.intl-tel-input .flag-dropdown{position:absolute;top:0;bottom:0;padding:1px}.intl-tel-input .flag-dropdown:hover{cursor:pointer}.intl-tel-input .flag-dropdown:hover .selected-flag{background-color:rgba(0,0,0,0.05)}.intl-tel-input input[disabled]+.flag-dropdown:hover,.intl-tel-input input[readonly]+.flag-dropdown:hover{cursor:default}.intl-tel-input input[disabled]+.flag-dropdown:hover .selected-flag,.intl-tel-input input[readonly]+.flag-dropdown:hover .selected-flag{background-color:transparent}.intl-tel-input .selected-flag{z-index:1;position:relative;width:42px;height:100%;padding:0 0 0 8px}.intl-tel-input .selected-flag .iti-flag{position:absolute;top:0;bottom:0;margin:auto}.intl-tel-input .selected-flag .arrow{position:absolute;top:50%;margin-top:-2px;right:4px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.intl-tel-input .selected-flag .arrow.up{border-top:none;border-bottom:4px solid #555}.intl-tel-input .country-list{list-style:none;position:absolute;z-index:100;padding:0;margin:0 0 0 -1px;box-shadow:1px 1px 4px rgba(0,0,0,0.2);background-color:white;border:1px solid #CCC;white-space:nowrap;max-height:200px;overflow-y:scroll}.intl-tel-input .country-list .flag{display:inline-block;width:20px}@media (max-width: 500px){.intl-tel-input .country-list{white-space:normal}}.intl-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #CCC}.intl-tel-input .country-list .country{padding:5px 10px}.intl-tel-input .country-list .country .dial-code{color:#999}.intl-tel-input .country-list .country.highlight{background-color:rgba(0,0,0,0.05)}.intl-tel-input .country-list .flag,.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .dial-code{vertical-align:middle}.intl-tel-input .country-list .flag,.intl-tel-input .country-list .country-name{margin-right:6px}.intl-tel-input select{position:absolute;top:0;left:0;z-index:1;width:42px;height:100%;opacity:0}.iti-flag{width:20px}.iti-flag.be{width:18px}.iti-flag.ch{width:15px}.iti-flag.mc{width:19px}.iti-flag.ne{width:18px}.iti-flag.np{width:13px}.iti-flag.va{width:15px}@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){.iti-flag{background-size:5630px 15px}}.iti-flag.ac{height:10px;background-position:0px 0px}.iti-flag.ad{height:14px;background-position:-22px 0px}.iti-flag.ae{height:10px;background-position:-44px 0px}.iti-flag.af{height:14px;background-position:-66px 0px}.iti-flag.ag{height:14px;background-position:-88px 0px}.iti-flag.ai{height:10px;background-position:-110px 0px}.iti-flag.al{height:15px;background-position:-132px 0px}.iti-flag.am{height:10px;background-position:-154px 0px}.iti-flag.ao{height:14px;background-position:-176px 0px}.iti-flag.aq{height:14px;background-position:-198px 0px}.iti-flag.ar{height:13px;background-position:-220px 0px}.iti-flag.as{height:10px;background-position:-242px 0px}.iti-flag.at{height:14px;background-position:-264px 0px}.iti-flag.au{height:10px;background-position:-286px 0px}.iti-flag.aw{height:14px;background-position:-308px 0px}.iti-flag.ax{height:13px;background-position:-330px 0px}.iti-flag.az{height:10px;background-position:-352px 0px}.iti-flag.ba{height:10px;background-position:-374px 0px}.iti-flag.bb{height:14px;background-position:-396px 0px}.iti-flag.bd{height:12px;background-position:-418px 0px}.iti-flag.be{height:15px;background-position:-440px 0px}.iti-flag.bf{height:14px;background-position:-460px 0px}.iti-flag.bg{height:12px;background-position:-482px 0px}.iti-flag.bh{height:12px;background-position:-504px 0px}.iti-flag.bi{height:12px;background-position:-526px 0px}.iti-flag.bj{height:14px;background-position:-548px 0px}.iti-flag.bl{height:14px;background-position:-570px 0px}.iti-flag.bm{height:10px;background-position:-592px 0px}.iti-flag.bn{height:10px;background-position:-614px 0px}.iti-flag.bo{height:14px;background-position:-636px 0px}.iti-flag.bq{height:14px;background-position:-658px 0px}.iti-flag.br{height:14px;background-position:-680px 0px}.iti-flag.bs{height:10px;background-position:-702px 0px}.iti-flag.bt{height:14px;background-position:-724px 0px}.iti-flag.bv{height:15px;background-position:-746px 0px}.iti-flag.bw{height:14px;background-position:-768px 0px}.iti-flag.by{height:10px;background-position:-790px 0px}.iti-flag.bz{height:14px;background-position:-812px 0px}.iti-flag.ca{height:10px;background-position:-834px 0px}.iti-flag.cc{height:10px;background-position:-856px 0px}.iti-flag.cd{height:15px;background-position:-878px 0px}.iti-flag.cf{height:14px;background-position:-900px 0px}.iti-flag.cg{height:14px;background-position:-922px 0px}.iti-flag.ch{height:15px;background-position:-944px 0px}.iti-flag.ci{height:14px;background-position:-961px 0px}.iti-flag.ck{height:10px;background-position:-983px 0px}.iti-flag.cl{height:14px;background-position:-1005px 0px}.iti-flag.cm{height:14px;background-position:-1027px 0px}.iti-flag.cn{height:14px;background-position:-1049px 0px}.iti-flag.co{height:14px;background-position:-1071px 0px}.iti-flag.cp{height:14px;background-position:-1093px 0px}.iti-flag.cr{height:12px;background-position:-1115px 0px}.iti-flag.cu{height:10px;background-position:-1137px 0px}.iti-flag.cv{height:12px;background-position:-1159px 0px}.iti-flag.cw{height:14px;background-position:-1181px 0px}.iti-flag.cx{height:10px;background-position:-1203px 0px}.iti-flag.cy{height:14px;background-position:-1225px 0px}.iti-flag.cz{height:14px;background-position:-1247px 0px}.iti-flag.de{height:12px;background-position:-1269px 0px}.iti-flag.dg{height:10px;background-position:-1291px 0px}.iti-flag.dj{height:14px;background-position:-1313px 0px}.iti-flag.dk{height:15px;background-position:-1335px 0px}.iti-flag.dm{height:10px;background-position:-1357px 0px}.iti-flag.do{height:13px;background-position:-1379px 0px}.iti-flag.dz{height:14px;background-position:-1401px 0px}.iti-flag.ea{height:14px;background-position:-1423px 0px}.iti-flag.ec{height:14px;background-position:-1445px 0px}.iti-flag.ee{height:13px;background-position:-1467px 0px}.iti-flag.eg{height:14px;background-position:-1489px 0px}.iti-flag.eh{height:10px;background-position:-1511px 0px}.iti-flag.er{height:10px;background-position:-1533px 0px}.iti-flag.es{height:14px;background-position:-1555px 0px}.iti-flag.et{height:10px;background-position:-1577px 0px}.iti-flag.eu{height:14px;background-position:-1599px 0px}.iti-flag.fi{height:12px;background-position:-1621px 0px}.iti-flag.fj{height:10px;background-position:-1643px 0px}.iti-flag.fk{height:10px;background-position:-1665px 0px}.iti-flag.fm{height:11px;background-position:-1687px 0px}.iti-flag.fo{height:15px;background-position:-1709px 0px}.iti-flag.fr{height:14px;background-position:-1731px 0px}.iti-flag.ga{height:15px;background-position:-1753px 0px}.iti-flag.gb{height:10px;background-position:-1775px 0px}.iti-flag.gd{height:12px;background-position:-1797px 0px}.iti-flag.ge{height:14px;background-position:-1819px 0px}.iti-flag.gf{height:14px;background-position:-1841px 0px}.iti-flag.gg{height:14px;background-position:-1863px 0px}.iti-flag.gh{height:14px;background-position:-1885px 0px}.iti-flag.gi{height:10px;background-position:-1907px 0px}.iti-flag.gl{height:14px;background-position:-1929px 0px}.iti-flag.gm{height:14px;background-position:-1951px 0px}.iti-flag.gn{height:14px;background-position:-1973px 0px}.iti-flag.gp{height:14px;background-position:-1995px 0px}.iti-flag.gq{height:14px;background-position:-2017px 0px}.iti-flag.gr{height:14px;background-position:-2039px 0px}.iti-flag.gs{height:10px;background-position:-2061px 0px}.iti-flag.gt{height:13px;background-position:-2083px 0px}.iti-flag.gu{height:11px;background-position:-2105px 0px}.iti-flag.gw{height:10px;background-position:-2127px 0px}.iti-flag.gy{height:12px;background-position:-2149px 0px}.iti-flag.hk{height:14px;background-position:-2171px 0px}.iti-flag.hm{height:10px;background-position:-2193px 0px}.iti-flag.hn{height:10px;background-position:-2215px 0px}.iti-flag.hr{height:10px;background-position:-2237px 0px}.iti-flag.ht{height:12px;background-position:-2259px 0px}.iti-flag.hu{height:10px;background-position:-2281px 0px}.iti-flag.ic{height:14px;background-position:-2303px 0px}.iti-flag.id{height:14px;background-position:-2325px 0px}.iti-flag.ie{height:10px;background-position:-2347px 0px}.iti-flag.il{height:15px;background-position:-2369px 0px}.iti-flag.im{height:10px;background-position:-2391px 0px}.iti-flag.in{height:14px;background-position:-2413px 0px}.iti-flag.io{height:10px;background-position:-2435px 0px}.iti-flag.iq{height:14px;background-position:-2457px 0px}.iti-flag.ir{height:12px;background-position:-2479px 0px}.iti-flag.is{height:15px;background-position:-2501px 0px}.iti-flag.it{height:14px;background-position:-2523px 0px}.iti-flag.je{height:12px;background-position:-2545px 0px}.iti-flag.jm{height:10px;background-position:-2567px 0px}.iti-flag.jo{height:10px;background-position:-2589px 0px}.iti-flag.jp{height:14px;background-position:-2611px 0px}.iti-flag.ke{height:14px;background-position:-2633px 0px}.iti-flag.kg{height:12px;background-position:-2655px 0px}.iti-flag.kh{height:13px;background-position:-2677px 0px}.iti-flag.ki{height:10px;background-position:-2699px 0px}.iti-flag.km{height:12px;background-position:-2721px 0px}.iti-flag.kn{height:14px;background-position:-2743px 0px}.iti-flag.kp{height:10px;background-position:-2765px 0px}.iti-flag.kr{height:14px;background-position:-2787px 0px}.iti-flag.kw{height:10px;background-position:-2809px 0px}.iti-flag.ky{height:10px;background-position:-2831px 0px}.iti-flag.kz{height:10px;background-position:-2853px 0px}.iti-flag.la{height:14px;background-position:-2875px 0px}.iti-flag.lb{height:14px;background-position:-2897px 0px}.iti-flag.lc{height:10px;background-position:-2919px 0px}.iti-flag.li{height:12px;background-position:-2941px 0px}.iti-flag.lk{height:10px;background-position:-2963px 0px}.iti-flag.lr{height:11px;background-position:-2985px 0px}.iti-flag.ls{height:14px;background-position:-3007px 0px}.iti-flag.lt{height:12px;background-position:-3029px 0px}.iti-flag.lu{height:12px;background-position:-3051px 0px}.iti-flag.lv{height:10px;background-position:-3073px 0px}.iti-flag.ly{height:10px;background-position:-3095px 0px}.iti-flag.ma{height:14px;background-position:-3117px 0px}.iti-flag.mc{height:15px;background-position:-3139px 0px}.iti-flag.md{height:10px;background-position:-3160px 0px}.iti-flag.me{height:10px;background-position:-3182px 0px}.iti-flag.mf{height:14px;background-position:-3204px 0px}.iti-flag.mg{height:14px;background-position:-3226px 0px}.iti-flag.mh{height:11px;background-position:-3248px 0px}.iti-flag.mk{height:10px;background-position:-3270px 0px}.iti-flag.ml{height:14px;background-position:-3292px 0px}.iti-flag.mm{height:14px;background-position:-3314px 0px}.iti-flag.mn{height:10px;background-position:-3336px 0px}.iti-flag.mo{height:14px;background-position:-3358px 0px}.iti-flag.mp{height:10px;background-position:-3380px 0px}.iti-flag.mq{height:14px;background-position:-3402px 0px}.iti-flag.mr{height:14px;background-position:-3424px 0px}.iti-flag.ms{height:10px;background-position:-3446px 0px}.iti-flag.mt{height:14px;background-position:-3468px 0px}.iti-flag.mu{height:14px;background-position:-3490px 0px}.iti-flag.mv{height:14px;background-position:-3512px 0px}.iti-flag.mw{height:14px;background-position:-3534px 0px}.iti-flag.mx{height:12px;background-position:-3556px 0px}.iti-flag.my{height:10px;background-position:-3578px 0px}.iti-flag.mz{height:14px;background-position:-3600px 0px}.iti-flag.na{height:14px;background-position:-3622px 0px}.iti-flag.nc{height:10px;background-position:-3644px 0px}.iti-flag.ne{height:15px;background-position:-3666px 0px}.iti-flag.nf{height:10px;background-position:-3686px 0px}.iti-flag.ng{height:10px;background-position:-3708px 0px}.iti-flag.ni{height:12px;background-position:-3730px 0px}.iti-flag.nl{height:14px;background-position:-3752px 0px}.iti-flag.no{height:15px;background-position:-3774px 0px}.iti-flag.np{height:15px;background-position:-3796px 0px}.iti-flag.nr{height:10px;background-position:-3811px 0px}.iti-flag.nu{height:10px;background-position:-3833px 0px}.iti-flag.nz{height:10px;background-position:-3855px 0px}.iti-flag.om{height:10px;background-position:-3877px 0px}.iti-flag.pa{height:14px;background-position:-3899px 0px}.iti-flag.pe{height:14px;background-position:-3921px 0px}.iti-flag.pf{height:14px;background-position:-3943px 0px}.iti-flag.pg{height:15px;background-position:-3965px 0px}.iti-flag.ph{height:10px;background-position:-3987px 0px}.iti-flag.pk{height:14px;background-position:-4009px 0px}.iti-flag.pl{height:13px;background-position:-4031px 0px}.iti-flag.pm{height:14px;background-position:-4053px 0px}.iti-flag.pn{height:10px;background-position:-4075px 0px}.iti-flag.pr{height:14px;background-position:-4097px 0px}.iti-flag.ps{height:10px;background-position:-4119px 0px}.iti-flag.pt{height:14px;background-position:-4141px 0px}.iti-flag.pw{height:13px;background-position:-4163px 0px}.iti-flag.py{height:11px;background-position:-4185px 0px}.iti-flag.qa{height:8px;background-position:-4207px 0px}.iti-flag.re{height:14px;background-position:-4229px 0px}.iti-flag.ro{height:14px;background-position:-4251px 0px}.iti-flag.rs{height:14px;background-position:-4273px 0px}.iti-flag.ru{height:14px;background-position:-4295px 0px}.iti-flag.rw{height:14px;background-position:-4317px 0px}.iti-flag.sa{height:14px;background-position:-4339px 0px}.iti-flag.sb{height:10px;background-position:-4361px 0px}.iti-flag.sc{height:10px;background-position:-4383px 0px}.iti-flag.sd{height:10px;background-position:-4405px 0px}.iti-flag.se{height:13px;background-position:-4427px 0px}.iti-flag.sg{height:14px;background-position:-4449px 0px}.iti-flag.sh{height:10px;background-position:-4471px 0px}.iti-flag.si{height:10px;background-position:-4493px 0px}.iti-flag.sj{height:15px;background-position:-4515px 0px}.iti-flag.sk{height:14px;background-position:-4537px 0px}.iti-flag.sl{height:14px;background-position:-4559px 0px}.iti-flag.sm{height:15px;background-position:-4581px 0px}.iti-flag.sn{height:14px;background-position:-4603px 0px}.iti-flag.so{height:14px;background-position:-4625px 0px}.iti-flag.sr{height:14px;background-position:-4647px 0px}.iti-flag.ss{height:10px;background-position:-4669px 0px}.iti-flag.st{height:10px;background-position:-4691px 0px}.iti-flag.sv{height:12px;background-position:-4713px 0px}.iti-flag.sx{height:14px;background-position:-4735px 0px}.iti-flag.sy{height:14px;background-position:-4757px 0px}.iti-flag.sz{height:14px;background-position:-4779px 0px}.iti-flag.ta{height:10px;background-position:-4801px 0px}.iti-flag.tc{height:10px;background-position:-4823px 0px}.iti-flag.td{height:14px;background-position:-4845px 0px}.iti-flag.tf{height:14px;background-position:-4867px 0px}.iti-flag.tg{height:13px;background-position:-4889px 0px}.iti-flag.th{height:14px;background-position:-4911px 0px}.iti-flag.tj{height:10px;background-position:-4933px 0px}.iti-flag.tk{height:10px;background-position:-4955px 0px}.iti-flag.tl{height:10px;background-position:-4977px 0px}.iti-flag.tm{height:14px;background-position:-4999px 0px}.iti-flag.tn{height:14px;background-position:-5021px 0px}.iti-flag.to{height:10px;background-position:-5043px 0px}.iti-flag.tr{height:14px;background-position:-5065px 0px}.iti-flag.tt{height:12px;background-position:-5087px 0px}.iti-flag.tv{height:10px;background-position:-5109px 0px}.iti-flag.tw{height:14px;background-position:-5131px 0px}.iti-flag.tz{height:14px;background-position:-5153px 0px}.iti-flag.ua{height:14px;background-position:-5175px 0px}.iti-flag.ug{height:14px;background-position:-5197px 0px}.iti-flag.um{height:11px;background-position:-5219px 0px}.iti-flag.us{height:11px;background-position:-5241px 0px}.iti-flag.uy{height:14px;background-position:-5263px 0px}.iti-flag.uz{height:10px;background-position:-5285px 0px}.iti-flag.va{height:15px;background-position:-5307px 0px}.iti-flag.vc{height:14px;background-position:-5324px 0px}.iti-flag.ve{height:14px;background-position:-5346px 0px}.iti-flag.vg{height:10px;background-position:-5368px 0px}.iti-flag.vi{height:14px;background-position:-5390px 0px}.iti-flag.vn{height:14px;background-position:-5412px 0px}.iti-flag.vu{height:12px;background-position:-5434px 0px}.iti-flag.wf{height:14px;background-position:-5456px 0px}.iti-flag.ws{height:10px;background-position:-5478px 0px}.iti-flag.xk{height:15px;background-position:-5500px 0px}.iti-flag.ye{height:14px;background-position:-5522px 0px}.iti-flag.yt{height:14px;background-position:-5544px 0px}.iti-flag.za{height:14px;background-position:-5566px 0px}.iti-flag.zm{height:14px;background-position:-5588px 0px}.iti-flag.zw{height:10px;background-position:-5610px 0px}.iti-flag{width:20px;height:15px;box-shadow:0px 0px 1px 0px #888;background-image:url("../img/flags.png");background-repeat:no-repeat;background-color:#DBDBDB;background-position:20px 0}@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){.iti-flag{background-image:url("../img/flags@2x.png")}}.iti-flag.np{background-color:transparent}

.cfp-hotkeys,.cfp-hotkeys-container{width:100%;height:100%}.cfp-hotkeys-container{display:table!important;position:fixed;top:0;left:0;color:#333;font-size:1em;background-color:rgba(255,255,255,.9)}.cfp-content,.cfp-hotkeys{display:table-cell;vertical-align:middle}.cfp-hotkeys-container.fade{z-index:-1024;visibility:hidden;opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.cfp-hotkeys-container.fade.in{z-index:10002;visibility:visible;opacity:1}.cfp-hotkeys-title{font-weight:700;text-align:center;font-size:1.2em}.cfp-hotkeys table{margin:auto;color:#333}.cfp-hotkeys-keys{padding:5px;text-align:right}.cfp-hotkeys-key{display:inline-block;color:#fff;background-color:#333;border:1px solid #333;border-radius:5px;text-align:center;margin-right:5px;box-shadow:inset 0 1px 0 #666,0 1px 0 #bbb;padding:5px 9px;font-size:1em}.cfp-hotkeys-text{padding-left:10px;font-size:1em}.cfp-hotkeys-close{position:fixed;top:20px;right:20px;font-size:25px;font-weight:700;padding:5px 10px;border:1px solid #ddd;border-radius:5px;min-height:45px;min-width:45px;text-align:center}.cfp-hotkeys-close:hover{background-color:#fff;cursor:pointer}@media all and (max-width:500px){.cfp-hotkeys{font-size:.8em}}@media all and (min-width:750px){.cfp-hotkeys{font-size:1.2em}}
@-webkit-keyframes md-step-content-hide{0%{opacity:1}50%{opacity:1}to{opacity:0}}@keyframes md-step-content-hide{0%{opacity:1}50%{opacity:1}to{opacity:0}}md-step-data{position:absolute;top:0;left:0;right:0;bottom:0;z-index:-1;opacity:0}md-steppers{display:block;margin:0;border-radius:2px;overflow:hidden;position:relative;-ms-flex-negative:0;flex-shrink:0}md-steppers:not(.md-no-step-content):not(.md-dynamic-height){min-height:272px}md-steppers[md-align-steppers=bottom]{padding-bottom:72px}md-steppers[md-align-steppers=bottom] md-steppers-wrapper{position:absolute;bottom:0;left:0;right:0;height:72px;z-index:2}md-steppers[md-align-steppers=bottom] md-steppers-content-wrapper{top:0;bottom:72px}md-steppers.md-dynamic-height md-steppers-content-wrapper{min-height:0;position:relative;top:auto;left:auto;right:auto;bottom:auto;overflow:visible}md-steppers.md-dynamic-height md-step-content.md-active{position:relative}md-steppers[md-border-bottom] md-steppers-wrapper{border-width:0 0 1px;border-style:solid;border-color:#ddd}md-steppers[md-border-bottom]:not(.md-dynamic-height) md-steppers-content-wrapper{top:73px}md-steppers-wrapper{display:block;position:relative}md-steppers-wrapper md-next-button,md-steppers-wrapper md-prev-button{height:100%;width:32px;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);line-height:1em;z-index:2;cursor:pointer;font-size:16px;background:transparent no-repeat 50%;-webkit-transition:all .5s cubic-bezier(.35,0,.25,1);transition:all .5s cubic-bezier(.35,0,.25,1)}md-steppers-wrapper md-next-button:focus,md-steppers-wrapper md-prev-button:focus{outline:none}md-steppers-wrapper md-next-button.md-disabled,md-steppers-wrapper md-prev-button.md-disabled{opacity:.25;cursor:default}md-steppers-wrapper md-next-button.ng-leave,md-steppers-wrapper md-prev-button.ng-leave{-webkit-transition:none;transition:none}md-steppers-wrapper md-next-button md-icon,md-steppers-wrapper md-prev-button md-icon{position:absolute;top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}md-steppers-wrapper md-prev-button{left:0;background-image:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMjA4IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTUuNCw3LjQgMTQsNiA4LDEyIDE0LDE4IDE1LjQsMTYuNiAxMC44LDEyIAkJIiBzdHlsZT0iZmlsbDp3aGl0ZTsiLz4gPHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+IDwvZz4gPC9nPiA8ZyBpZD0iR3JpZCIgZGlzcGxheT0ibm9uZSI+IDxnIGRpc3BsYXk9ImlubGluZSI+IDwvZz4gPC9nPiA8L3N2Zz4NCg==")}md-steppers-wrapper md-next-button{right:0;background-image:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMzM2IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTAsNiA4LjYsNy40IDEzLjIsMTIgOC42LDE2LjYgMTAsMTggMTYsMTIgCQkiIHN0eWxlPSJmaWxsOndoaXRlOyIvPiA8cmVjdCBmaWxsPSJub25lIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz4gPC9nPiA8L2c+IDxnIGlkPSJHcmlkIiBkaXNwbGF5PSJub25lIj4gPGcgZGlzcGxheT0iaW5saW5lIj4gPC9nPiA8L2c+IDwvc3ZnPg0K")}md-steppers-wrapper md-next-button md-icon{-webkit-transform:translate3d(-50%,-50%,0) rotate(180deg);transform:translate3d(-50%,-50%,0) rotate(180deg)}md-steppers-wrapper.md-stretch-steppers md-pagination-wrapper{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}md-steppers-wrapper.md-stretch-steppers md-pagination-wrapper md-step-item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}md-steppers-canvas{position:relative;overflow:hidden;display:block;height:72px}md-steppers-canvas:after{content:'';display:table;clear:both}md-steppers-canvas .md-dummy-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}md-steppers-canvas.md-paginated{margin:0 5px}@media (max-width:320px){md-steppers-canvas.md-paginated .md-step span{display:none}}md-steppers-canvas.md-center-steppers{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;text-align:center}md-steppers-canvas.md-center-steppers .md-step{float:none;display:inline-block}md-steppers md-steppers-wrapper md-pagination-wrapper{height:72px;display:block;-webkit-transition:opacity .125s cubic-bezier(.35,0,.25,1),-webkit-transform .5s cubic-bezier(.35,0,.25,1);transition:opacity .125s cubic-bezier(.35,0,.25,1),-webkit-transform .5s cubic-bezier(.35,0,.25,1);transition:transform .5s cubic-bezier(.35,0,.25,1),opacity .125s cubic-bezier(.35,0,.25,1);transition:transform .5s cubic-bezier(.35,0,.25,1),opacity .125s cubic-bezier(.35,0,.25,1),-webkit-transform .5s cubic-bezier(.35,0,.25,1);position:absolute;width:999999px;left:0;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1;z-index:1}md-steppers md-steppers-wrapper md-pagination-wrapper:after{content:'';display:table;clear:both}md-steppers md-steppers-wrapper md-pagination-wrapper.md-center-steppers{position:relative;width:auto;margin:0 auto}md-steppers md-steppers-wrapper md-busy{left:0;top:0;bottom:0;right:0;opacity:1;position:absolute;-webkit-transition:all .25s cubic-bezier(.35,0,.25,1),-webkit-transform .25s cubic-bezier(.35,0,.25,1);transition:all .25s cubic-bezier(.35,0,.25,1),-webkit-transform .25s cubic-bezier(.35,0,.25,1);transition:transform .25s cubic-bezier(.35,0,.25,1),all .25s cubic-bezier(.35,0,.25,1);transition:transform .25s cubic-bezier(.35,0,.25,1),all .25s cubic-bezier(.35,0,.25,1),-webkit-transform .25s cubic-bezier(.35,0,.25,1);line-height:24px;padding:24px 0 24px 24px;font-size:14px;font-weight:500;overflow:hidden;text-overflow:ellipsis;text-align:left;-webkit-transform:scaleY(1) translateY(0);transform:scaleY(1) translateY(0)}md-steppers md-steppers-wrapper md-busy.ng-hide{opacity:0;-webkit-transform:scaleY(.75) translateY(20px);transform:scaleY(.75) translateY(20px)}md-steppers md-steppers-wrapper md-busy.ng-hide~.md-dummy-wrapper,md-steppers md-steppers-wrapper md-busy.ng-hide~md-pagination-wrapper{opacity:1;pointer-events:auto}md-steppers md-steppers-wrapper md-busy~.md-dummy-wrapper,md-steppers md-steppers-wrapper md-busy~md-pagination-wrapper{opacity:0;pointer-events:none}md-steppers-content-wrapper{top:72px;overflow:hidden}md-step-content,md-steppers-content-wrapper{display:block;position:absolute;left:0;right:0;bottom:0}md-step-content{top:0;-webkit-transition:-webkit-transform .5s cubic-bezier(.35,0,.25,1);transition:-webkit-transform .5s cubic-bezier(.35,0,.25,1);transition:transform .5s cubic-bezier(.35,0,.25,1);transition:transform .5s cubic-bezier(.35,0,.25,1),-webkit-transform .5s cubic-bezier(.35,0,.25,1);overflow:auto}md-step-content.md-no-scroll{bottom:auto;overflow:hidden}md-step-content.md-no-transition,md-step-content.ng-leave{-webkit-transition:none;transition:none}md-step-content.md-left{-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-animation:1s md-step-content-hide;animation:1s md-step-content-hide;opacity:0}md-step-content.md-left *{-webkit-transition:visibility 0s linear;transition:visibility 0s linear;-webkit-transition-delay:.5s;transition-delay:.5s;visibility:hidden}md-step-content.md-right{-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-animation:1s md-step-content-hide;animation:1s md-step-content-hide;opacity:0}md-step-content.md-right *{-webkit-transition:visibility 0s linear;transition:visibility 0s linear;-webkit-transition-delay:.5s;transition-delay:.5s;visibility:hidden}md-step-content>div.ng-leave{-webkit-animation:1s md-step-content-hide;animation:1s md-step-content-hide}.md-step md-ink-bar{background:#12728e;opacity:.5;position:absolute;left:auto;right:auto;bottom:0;height:2px}.md-step md-ink-bar.md-left{-webkit-transition:left .125s cubic-bezier(.35,0,.25,1),right .25s cubic-bezier(.35,0,.25,1);transition:left .125s cubic-bezier(.35,0,.25,1),right .25s cubic-bezier(.35,0,.25,1)}.md-step md-ink-bar.md-right{-webkit-transition:left .25s cubic-bezier(.35,0,.25,1),right .125s cubic-bezier(.35,0,.25,1);transition:left .25s cubic-bezier(.35,0,.25,1),right .125s cubic-bezier(.35,0,.25,1)}md-step{position:absolute;z-index:-1;left:-9999px}.md-step{font-size:14px;text-align:center;line-height:24px;padding:24px 0;-webkit-transition:background-color .35s cubic-bezier(.35,0,.25,1);transition:background-color .35s cubic-bezier(.35,0,.25,1);cursor:pointer;white-space:nowrap;position:relative;float:left;font-weight:500;box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:1;-ms-flex:1;flex:1}.md-step:before{margin-right:8px;border-radius:0 1px 1px 0}.md-step:after,.md-step:before{background:rgba(0,0,0,.25);display:inline-block;width:16px;text-align:center;height:2px;line-height:1px;vertical-align:middle;content:'';opacity:.5;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-item-align:center;align-self:center}.md-step:after{box-shadow:1px 0 0 0 rgba(0,0,0,.25);border-radius:1px 0 0 1px}.md-step:first-child{padding-left:24px;text-align:left}.md-step:first-child:before{margin-right:0;display:none;width:0}.md-step:last-child{padding-right:24px;text-align:right}.md-step:last-child:before{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.md-step:last-child:after{margin-left:0;display:none;width:0}.md-step md-step-label-wrapper{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.md-step md-step-label-wrapper span{margin-right:8px}.md-step md-step-label-wrapper:before{background:rgba(0,0,0,.25);color:hsla(0,0%,100%,.87);display:inline-block;width:24px;min-width:24px;text-align:center;height:24px;line-height:24px;border-radius:12px;margin-right:8px;content:attr(stepindex);-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:center;align-self:center}.md-step.md-focused{box-shadow:none;outline:none}.md-step.md-active md-step-label-wrapper:before,.md-step.md-success md-step-label-wrapper:before{background:#12728e}.md-step.md-complete md-step-label-wrapper:before{content:'\7';background:#12728e url("data:image/svg+xml;charset=utf8,%3Csvg fill='rgba(255,255,255,0.87)' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat 50%}.md-step.md-complete.md-active md-step-label-wrapper:before{content:'\7';background:#12728e url("data:image/svg+xml;charset=utf8,%3Csvg fill='rgba(255,255,255,0.87)' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E") no-repeat 50%}.md-step.md-error{color:#ff5722;cursor:default}.md-step.md-disabled{pointer-events:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-drag:none;cursor:default}.md-step.md-disabled md-step-label-wrapper{opacity:.5}.md-step.md-disabled md-step-label-wrapper:before{background:rgba(0,0,0,.25)}.md-step.ng-leave{-webkit-transition:none;transition:none}.md-step-nopointer{cursor:auto}md-toolbar+md-steppers{border-top-left-radius:0;border-top-right-radius:0}
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);.win-notif{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:fixed;bottom:30px;right:0;width:300px;padding:10px;z-index:50;box-sizing:border-box;box-shadow:-1px 1px 10px 0 rgba(0,0,0,.5);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-family:'Open Sans',sans-serif;font-size:14px;color:#fff;opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}.win-notif>.win-notif-image{-webkit-box-flex:0;-ms-flex:none;flex:none;width:30px;margin-right:10px}.win-notif>.win-notif-image>img{width:30px;height:30px;vertical-align:top}.win-notif>.win-notif-area{-webkit-box-flex:1;-ms-flex:1;flex:1}.win-notif>.win-notif-area>.win-notif-title{line-height:.75;font-weight:600;margin-bottom:5px}.win-notif>.win-notif-area>.win-notif-msg{color:rgba(255,255,255,.75);font-weight:400;font-size:13px;line-height:16px;max-height:48px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.win-notif>.win-notif-buttons{-webkit-box-flex:0;-ms-flex:none;flex:none;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:15px}.win-notif>.win-notif-buttons>.win-notif-accept-button,.win-notif>.win-notif-buttons>.win-notif-decline-button{-webkit-box-flex:1;-ms-flex:auto;flex:auto;max-width:50%;max-width:calc(50% - 3px);text-align:center;background-color:rgba(255,255,255,.15);box-sizing:border-box;padding:5px;cursor:pointer;-webkit-transition:background-color .2s ease-in-out;transition:background-color .2s ease-in-out;outline:0}.win-notif>.win-notif-buttons>.win-notif-accept-button:hover,.win-notif>.win-notif-buttons>.win-notif-decline-button:hover{background-color:rgba(255,255,255,.25)}.win-notif>.win-notif-close{position:absolute;right:0;top:0;width:20px;height:20px;line-height:20px;text-align:center;outline:0;font-size:16px;cursor:pointer;color:rgba(255,255,255,.75);-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out;transition:background-color .2s ease-in-out,color .2s ease-in-out}.win-notif:hover>.win-notif-close{background-color:rgba(255,255,255,.15);color:#fff}@media screen and (max-width:400px){.win-notif{width:100%;bottom:0}.win-notif>.win-notif-close{width:24px;height:24px;line-height:24px;font-size:20px}}.win-notif.ng-enter{-webkit-animation:notifIn .3s ease-in-out;animation:notifIn .3s ease-in-out}.win-notif.ng-leave{-webkit-animation:notifOut .3s ease-in-out;animation:notifOut .3s ease-in-out}@-webkit-keyframes notifIn{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-filter:blur(1px);filter:blur(1px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0);-webkit-filter:blur(0);filter:blur(0)}}@keyframes notifIn{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-filter:blur(1px);filter:blur(1px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0);-webkit-filter:blur(0);filter:blur(0)}}@-webkit-keyframes notifOut{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}30%{-webkit-filter:blur(1px);filter:blur(1px)}100%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes notifOut{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}30%{-webkit-filter:blur(1px);filter:blur(1px)}100%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}}
/*# sourceMappingURL=win10-notif.min.css.map */

/*!
 * FullCalendar v2.7.3 Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2016 Adam Shaw
 */.fc-bgevent,.fc-highlight{opacity:.3;filter:alpha(opacity=30)}.fc-icon,body .fc{font-size:1em}.fc-button-group,.fc-icon{display:inline-block}.fc-bg,.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-icon,.fc-unselectable{-khtml-user-select:none;-webkit-touch-callout:none}.fc .fc-axis,.fc button,.fc-time-grid-event .fc-time,.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view .fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff}.fc-unthemed .fc-divider,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666}.fc-unthemed .fc-today{background:#fcf8e3}.fc-highlight{background:#bce8f1}.fc-bgevent{background:#8fdf82}.fc-nonbusiness{background:#d7d7d7}.fc-icon{height:1em;line-height:1em;overflow:hidden;font-family:"Courier New",Courier,monospace;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\02039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\0203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\000AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\000BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\000D7";font-size:200%;top:6%}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;font-size:1em;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close{cursor:pointer}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-unthemed .fc-popover{border-width:1px;border-style:solid}.fc-unthemed .fc-popover .fc-header .fc-close{font-size:.9em;margin-top:2px}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc table{width:100%;table-layout:fixed;border-collapse:collapse;border-spacing:0;font-size:1em}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent;border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad;background-color:#3a87ad;font-weight:400}.fc-event,.fc-event:hover,.ui-widget .fc-event{color:#fff;text-decoration:none}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25;filter:alpha(opacity=25)}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25;filter:alpha(opacity=25)}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-now-indicator{position:absolute;border:0 solid red}.fc-unselectable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.fc-toolbar{margin-bottom:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-top:1px;padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:0 2px}.fc-basic-view td.fc-day-number,.fc-basic-view td.fc-week-number span{padding-top:2px;padding-bottom:2px}.fc-basic-view .fc-week-number span{display:inline-block;min-width:1.25em}.fc-ltr .fc-basic-view .fc-day-number{text-align:right}.fc-rtl .fc-basic-view .fc-day-number{text-align:left}.fc-day-number.fc-other-month{opacity:.3;filter:alpha(opacity=30)}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-top:1px;padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.ui-widget td.fc-axis{font-weight:400}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\000A0-\000A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}
/*!
 *  Weather Icons 1.3
 *  Updated November 30th, 2014
 *  Weather themed icons for Bootstrap
 *  ------------------------------------------------------------------------------
* Maintained at http://erikflowers.github.io/weather-icons
 *  http://twitter.com/Erik_UX
 *
 *  License
 *  ------------------------------------------------------------------------------
 *  - Fpmt licensed under SIL OFL 1.1 -
 *    http://scripts.sil.org/OFL
 *  - CSS and LESS are licensed under MIT License -
 *    http://opensource.org/licenses/mit-license.html
 *  - Documentation licensed under CC BY 3.0 -
 *    http://creativecommons.org/licenses/by/3.0/
 *  - Inspired by and works great as a companion with Font Awesome
 *    "Font Awesome by Dave Gandy - http://fontawesome.io"
 *
 *  Weather Icons Bootstrap Package Author - Erik Flowers - erik@helloerik.com
 *  ------------------------------------------------------------------------------
 *  Email: erik@helloerik.com
 *  Twitter: http://twitter.com/Erik_UX
 */@font-face{font-family:weathericons;src:url(../font/weathericons-regular-webfont.eot);src:url(../font/weathericons-regular-webfont.eot?#iefix) format('embedded-opentype'),url(../font/weathericons-regular-webfont.woff) format('woff'),url(../font/weathericons-regular-webfont.ttf) format('truetype'),url(../font/weathericons-regular-webfont.svg#weathericons-regular-webfontRg) format('svg');font-weight:400;font-style:normal}.wi{display:inline-block;font-family:weathericons;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wi-day-cloudy-gusts:before{content:"\f000"}.wi-day-cloudy-windy:before{content:"\f001"}.wi-day-cloudy:before{content:"\f002"}.wi-day-fog:before{content:"\f003"}.wi-day-hail:before{content:"\f004"}.wi-day-lightning:before{content:"\f005"}.wi-day-rain-mix:before{content:"\f006"}.wi-day-rain-wind:before{content:"\f007"}.wi-day-rain:before{content:"\f008"}.wi-day-showers:before{content:"\f009"}.wi-day-snow:before{content:"\f00a"}.wi-day-sprinkle:before{content:"\f00b"}.wi-day-sunny-overcast:before{content:"\f00c"}.wi-day-sunny:before{content:"\f00d"}.wi-day-storm-showers:before{content:"\f00e"}.wi-day-thunderstorm:before{content:"\f010"}.wi-cloudy-gusts:before{content:"\f011"}.wi-cloudy-windy:before{content:"\f012"}.wi-cloudy:before{content:"\f013"}.wi-fog:before{content:"\f014"}.wi-hail:before{content:"\f015"}.wi-lightning:before{content:"\f016"}.wi-rain-mix:before{content:"\f017"}.wi-rain-wind:before{content:"\f018"}.wi-rain:before{content:"\f019"}.wi-showers:before{content:"\f01a"}.wi-snow:before{content:"\f01b"}.wi-sprinkle:before{content:"\f01c"}.wi-storm-showers:before{content:"\f01d"}.wi-thunderstorm:before{content:"\f01e"}.wi-windy:before{content:"\f021"}.wi-night-alt-cloudy-gusts:before{content:"\f022"}.wi-night-alt-cloudy-windy:before{content:"\f023"}.wi-night-alt-hail:before{content:"\f024"}.wi-night-alt-lightning:before{content:"\f025"}.wi-night-alt-rain-mix:before{content:"\f026"}.wi-night-alt-rain-wind:before{content:"\f027"}.wi-night-alt-rain:before{content:"\f028"}.wi-night-alt-showers:before{content:"\f029"}.wi-night-alt-snow:before{content:"\f02a"}.wi-night-alt-sprinkle:before{content:"\f02b"}.wi-night-alt-storm-showers:before{content:"\f02c"}.wi-night-alt-thunderstorm:before{content:"\f02d"}.wi-night-clear:before{content:"\f02e"}.wi-night-cloudy-gusts:before{content:"\f02f"}.wi-night-cloudy-windy:before{content:"\f030"}.wi-night-cloudy:before{content:"\f031"}.wi-night-hail:before{content:"\f032"}.wi-night-lightning:before{content:"\f033"}.wi-night-rain-mix:before{content:"\f034"}.wi-night-rain-wind:before{content:"\f035"}.wi-night-rain:before{content:"\f036"}.wi-night-showers:before{content:"\f037"}.wi-night-snow:before{content:"\f038"}.wi-night-sprinkle:before{content:"\f039"}.wi-night-storm-showers:before{content:"\f03a"}.wi-night-thunderstorm:before{content:"\f03b"}.wi-celsius:before{content:"\f03c"}.wi-cloud-down:before{content:"\f03d"}.wi-cloud-refresh:before{content:"\f03e"}.wi-cloud-up:before{content:"\f040"}.wi-cloud:before{content:"\f041"}.wi-degrees:before{content:"\f042"}.wi-down-left:before{content:"\f043"}.wi-down:before{content:"\f044"}.wi-fahrenheit:before{content:"\f045"}.wi-horizon-alt:before{content:"\f046"}.wi-horizon:before{content:"\f047"}.wi-left:before{content:"\f048"}.wi-lightning:before{content:"\f016"}.wi-night-fog:before{content:"\f04a"}.wi-refresh-alt:before{content:"\f04b"}.wi-refresh:before{content:"\f04c"}.wi-right:before{content:"\f04d"}.wi-sprinkles:before{content:"\f04e"}.wi-strong-wind:before{content:"\f050"}.wi-sunrise:before{content:"\f051"}.wi-sunset:before{content:"\f052"}.wi-thermometer-exterior:before{content:"\f053"}.wi-thermometer-internal:before{content:"\f054"}.wi-thermometer:before{content:"\f055"}.wi-tornado:before{content:"\f056"}.wi-up-right:before{content:"\f057"}.wi-up:before{content:"\f058"}.wi-wind-west:before{content:"\f059"}.wi-wind-south-west:before{content:"\f05a"}.wi-wind-south-east:before{content:"\f05b"}.wi-wind-south:before{content:"\f05c"}.wi-wind-north-west:before{content:"\f05d"}.wi-wind-north-east:before{content:"\f05e"}.wi-wind-north:before{content:"\f060"}.wi-wind-east:before{content:"\f061"}.wi-smoke:before{content:"\f062"}.wi-dust:before{content:"\f063"}.wi-snow-wind:before{content:"\f064"}.wi-day-snow-wind:before{content:"\f065"}.wi-night-snow-wind:before{content:"\f066"}.wi-night-alt-snow-wind:before{content:"\f067"}.wi-day-sleet-storm:before{content:"\f068"}.wi-night-sleet-storm:before{content:"\f069"}.wi-night-alt-sleet-storm:before{content:"\f06a"}.wi-day-snow-thunderstorm:before{content:"\f06b"}.wi-night-snow-thunderstorm:before{content:"\f06c"}.wi-night-alt-snow-thunderstorm:before{content:"\f06d"}.wi-solar-eclipse:before{content:"\f06e"}.wi-lunar-eclipse:before{content:"\f070"}.wi-meteor:before{content:"\f071"}.wi-hot:before{content:"\f072"}.wi-hurricane:before{content:"\f073"}.wi-smog:before{content:"\f074"}.wi-alien:before{content:"\f075"}.wi-snowflake-cold:before{content:"\f076"}.wi-stars:before{content:"\f077"}.wi-night-partly-cloudy:before{content:"\f083"}.wi-umbrella:before{content:"\f084"}.wi-day-windy:before{content:"\f085"}.wi-night-alt-cloudy:before{content:"\f086"}.wi-up-left:before{content:"\f087"}.wi-down-right:before{content:"\f088"}.wi-time-12:before{content:"\f089"}.wi-time-1:before{content:"\f08a"}.wi-time-2:before{content:"\f08b"}.wi-time-3:before{content:"\f08c"}.wi-time-4:before{content:"\f08d"}.wi-time-5:before{content:"\f08e"}.wi-time-6:before{content:"\f08f"}.wi-time-7:before{content:"\f090"}.wi-time-8:before{content:"\f091"}.wi-time-9:before{content:"\f092"}.wi-time-10:before{content:"\f093"}.wi-time-11:before{content:"\f094"}.wi-day-sleet:before{content:"\f0b2"}.wi-night-sleet:before{content:"\f0b3"}.wi-night-alt-sleet:before{content:"\f0b4"}.wi-sleet:before{content:"\f0b5"}.wi-day-haze:before{content:"\f0b6"}.wi-beafort-0:before{content:"\f0b7"}.wi-beafort-1:before{content:"\f0b8"}.wi-beafort-2:before{content:"\f0b9"}.wi-beafort-3:before{content:"\f0ba"}.wi-beafort-4:before{content:"\f0bb"}.wi-beafort-5:before{content:"\f0bc"}.wi-beafort-6:before{content:"\f0bd"}.wi-beafort-7:before{content:"\f0be"}.wi-beafort-8:before{content:"\f0bf"}.wi-beafort-9:before{content:"\f0c0"}.wi-beafort-10:before{content:"\f0c1"}.wi-beafort-11:before{content:"\f0c2"}.wi-beafort-12:before{content:"\f0c3"}.wi-wind-default:before{content:"\f0b1"}.wi-wind-default._0-deg{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}.wi-wind-default._15-deg{-webkit-transform:rotate(15deg);-moz-transform:rotate(15deg);-ms-transform:rotate(15deg);-o-transform:rotate(15deg);transform:rotate(15deg)}.wi-wind-default._30-deg{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg);-o-transform:rotate(30deg);transform:rotate(30deg)}.wi-wind-default._45-deg{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.wi-wind-default._60-deg{-webkit-transform:rotate(60deg);-moz-transform:rotate(60deg);-ms-transform:rotate(60deg);-o-transform:rotate(60deg);transform:rotate(60deg)}.wi-wind-default._75-deg{-webkit-transform:rotate(75deg);-moz-transform:rotate(75deg);-ms-transform:rotate(75deg);-o-transform:rotate(75deg);transform:rotate(75deg)}.wi-wind-default._90-deg{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.wi-wind-default._105-deg{-webkit-transform:rotate(105deg);-moz-transform:rotate(105deg);-ms-transform:rotate(105deg);-o-transform:rotate(105deg);transform:rotate(105deg)}.wi-wind-default._120-deg{-webkit-transform:rotate(120deg);-moz-transform:rotate(120deg);-ms-transform:rotate(120deg);-o-transform:rotate(120deg);transform:rotate(120deg)}.wi-wind-default._135-deg{-webkit-transform:rotate(135deg);-moz-transform:rotate(135deg);-ms-transform:rotate(135deg);-o-transform:rotate(135deg);transform:rotate(135deg)}.wi-wind-default._150-deg{-webkit-transform:rotate(150deg);-moz-transform:rotate(150deg);-ms-transform:rotate(150deg);-o-transform:rotate(150deg);transform:rotate(150deg)}.wi-wind-default._165-deg{-webkit-transform:rotate(165deg);-moz-transform:rotate(165deg);-ms-transform:rotate(165deg);-o-transform:rotate(165deg);transform:rotate(165deg)}.wi-wind-default._180-deg{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.wi-wind-default._195-deg{-webkit-transform:rotate(195deg);-moz-transform:rotate(195deg);-ms-transform:rotate(195deg);-o-transform:rotate(195deg);transform:rotate(195deg)}.wi-wind-default._210-deg{-webkit-transform:rotate(210deg);-moz-transform:rotate(210deg);-ms-transform:rotate(210deg);-o-transform:rotate(210deg);transform:rotate(210deg)}.wi-wind-default._225-deg{-webkit-transform:rotate(225deg);-moz-transform:rotate(225deg);-ms-transform:rotate(225deg);-o-transform:rotate(225deg);transform:rotate(225deg)}.wi-wind-default._240-deg{-webkit-transform:rotate(240deg);-moz-transform:rotate(240deg);-ms-transform:rotate(240deg);-o-transform:rotate(240deg);transform:rotate(240deg)}.wi-wind-default._255-deg{-webkit-transform:rotate(255deg);-moz-transform:rotate(255deg);-ms-transform:rotate(255deg);-o-transform:rotate(255deg);transform:rotate(255deg)}.wi-wind-default._270-deg{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.wi-wind-default._285-deg{-webkit-transform:rotate(295deg);-moz-transform:rotate(295deg);-ms-transform:rotate(295deg);-o-transform:rotate(295deg);transform:rotate(295deg)}.wi-wind-default._300-deg{-webkit-transform:rotate(300deg);-moz-transform:rotate(300deg);-ms-transform:rotate(300deg);-o-transform:rotate(300deg);transform:rotate(300deg)}.wi-wind-default._315-deg{-webkit-transform:rotate(315deg);-moz-transform:rotate(315deg);-ms-transform:rotate(315deg);-o-transform:rotate(315deg);transform:rotate(315deg)}.wi-wind-default._330-deg{-webkit-transform:rotate(330deg);-moz-transform:rotate(330deg);-ms-transform:rotate(330deg);-o-transform:rotate(330deg);transform:rotate(330deg)}.wi-wind-default._345-deg{-webkit-transform:rotate(345deg);-moz-transform:rotate(345deg);-ms-transform:rotate(345deg);-o-transform:rotate(345deg);transform:rotate(345deg)}.wi-moon-new:before{content:"\f095"}.wi-moon-waxing-cresent-1:before{content:"\f096"}.wi-moon-waxing-cresent-2:before{content:"\f097"}.wi-moon-waxing-cresent-3:before{content:"\f098"}.wi-moon-waxing-cresent-4:before{content:"\f099"}.wi-moon-waxing-cresent-5:before{content:"\f09a"}.wi-moon-waxing-cresent-6:before{content:"\f09b"}.wi-moon-first-quarter:before{content:"\f09c"}.wi-moon-waxing-gibbous-1:before{content:"\f09d"}.wi-moon-waxing-gibbous-2:before{content:"\f09e"}.wi-moon-waxing-gibbous-3:before{content:"\f09f"}.wi-moon-waxing-gibbous-4:before{content:"\f0a0"}.wi-moon-waxing-gibbous-5:before{content:"\f0a1"}.wi-moon-waxing-gibbous-6:before{content:"\f0a2"}.wi-moon-full:before{content:"\f0a3"}.wi-moon-waning-gibbous-1:before{content:"\f0a4"}.wi-moon-waning-gibbous-2:before{content:"\f0a5"}.wi-moon-waning-gibbous-3:before{content:"\f0a6"}.wi-moon-waning-gibbous-4:before{content:"\f0a7"}.wi-moon-waning-gibbous-5:before{content:"\f0a8"}.wi-moon-waning-gibbous-6:before{content:"\f0a9"}.wi-moon-3rd-quarter:before{content:"\f0aa"}.wi-moon-waning-crescent-1:before{content:"\f0ab"}.wi-moon-waning-crescent-2:before{content:"\f0ac"}.wi-moon-waning-crescent-3:before{content:"\f0ad"}.wi-moon-waning-crescent-4:before{content:"\f0ae"}.wi-moon-waning-crescent-5:before{content:"\f0af"}.wi-moon-waning-crescent-6:before{content:"\f0b0"}
/**
 The MIT License (MIT)

 Copyright (c) 2017 Ivan Vilanculo

 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:

 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.

 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 **/

@font-face {
    font-family: WeatherIcons;
    src: url("../fonts/WeatherIcons.eot");
    src: url("../fonts/WeatherIcons.eot?#iefix") format("embedded-opentype"), url("../fonts/WeatherIcons.woff2") format("woff2"), url("../fonts/WeatherIcons.woff") format("woff"), url("../fonts/WeatherIcons.ttf") format("truetype"), url("../fonts/WeatherIcons.svg#WeatherIcons") format("svg");
    font-style: normal;
    font-weight: 400;
}

.owi {
    display: inline-block;
    transform: translate(0, 0);
    text-rendering: auto;
    font: normal normal 400 14px/1 WeatherIcons;
    font-size: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

.owi-lg {
    vertical-align: -15%;
    line-height: 0.75em;
    font-size: 1.33333333em;
}

.owi-2x {
    font-size: 2em;
}

.owi-3x {
    font-size: 3em;
}

.owi-4x {
    font-size: 4em;
}

.owi-5x {
    font-size: 5em;
}

.owi-fw {
    width: 1.28571429em;
    text-align: center;
}

.owi-01d::before {
    content: "\ea01";
}

.owi-01n::before {
    content: "\ea02";
}

.owi-02d::before {
    content: "\ea03";
}

.owi-02n::before {
    content: "\ea04";
}

.owi-03d::before {
    content: "\ea05";
}

.owi-03n::before {
    content: "\ea06";
}

.owi-04d::before {
    content: "\ea08";
}

.owi-04n::before {
    content: "\ea07";
}

.owi-09d::before {
    content: "\ea09";
}

.owi-09n::before {
    content: "\ea0a";
}

.owi-10d::before {
    content: "\ea0c";
}

.owi-10n::before {
    content: "\ea0b";
}

.owi-11d::before {
    content: "\ea0d";
}

.owi-11n::before {
    content: "\ea0e";
}

.owi-13d::before {
    content: "\ea0f";
}

.owi-13n::before {
    content: "\ea10";
}

.owi-20d::before {
    content: "\ea11";
}

.owi-50d::before {
    content: "\ea12";
}
/*!
 * Toastr
 * Version 2.0.1
 * Copyright 2012 John Papa and Hans Fjallemark.
 * All Rights Reserved.
 * Use, reproduction, distribution, and modification of this code is subject to the terms and
 * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php
 *
 * Author: John Papa and Hans Fjallemark
 * Project: https://github.com/CodeSeven/toastr
 */
.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#fff}.toast-message a:hover{color:#ccc;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#fff;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-center{top:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-center{bottom:12px}.toast-bottom-left{bottom:12px;left:12px}.toast-center{top:45%}#toast-container{position:fixed;z-index:999999}#toast-container.toast-bottom-center,#toast-container.toast-center,#toast-container.toast-top-center{width:100%;pointer-events:none}#toast-container.toast-bottom-center>div,#toast-container.toast-center>div,#toast-container.toast-top-center>div{margin:auto;pointer-events:auto}#toast-container.toast-bottom-center>button,#toast-container.toast-center>button,#toast-container.toast-top-cente>button{pointer-events:auto}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-wait{background-image:url(data:image/gif;base64,R0lGODlhIAAgAIQAAAQCBISGhMzKzERCROTm5CQiJKyurHx+fPz+/ExOTOzu7Dw+PIyOjCwqLFRWVAwKDIyKjMzOzOzq7CQmJLy6vFRSVPTy9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJCQAXACwAAAAAIAAgAAAF3eAljmRpnmh6VRSVqLDpIDTixOdUlFSNUDhSQUAT7ES9GnD0SFQAKWItMqr4bqKHVPDI+WiTkaOFFVlrFe83rDrT0qeIjwrT0iLdU0GOiBxhAA4VeSk6QYeIOAsQEAuJKgw+EI8nA18IA48JBAQvFxCXDI8SNAQikV+iiaQIpheWX5mJmxKeF6g0qpQmA4yOu8C7EwYWCgZswRcTFj4KyMAGlwYxDwcHhCXMXxYxBzQHKNo+3DDeCOAn0V/TddbYJA0K48gAEAFQicMWFsfwNA3JSgAIAAFfwIMIL4QAACH5BAkJABoALAAAAAAgACAAhAQCBIyKjERCRMzOzCQiJPTy9DQyNGRmZMTCxOTm5CwqLHx+fBQWFJyenNTW1Pz6/Dw6PGxubAwKDIyOjNTS1CQmJCwuLPz+/Dw+PHRydAAAAAAAAAAAAAAAAAAAAAAAAAXboCaOZGmeaKoxWcSosMkk15W8cZ7VdZaXkcEgQtrxfD9RhHchima1GwlCGUBSFCaFxMrgRtnLFhWujWHhs2nJc8KoVlWGQnEn7/i8XgOwWAB7JwoONQ4KgSQAZRcOgHgSCwsSIhZMNRZ5CzULIgaWF5h4mhecfIQ8jXmQkiODhYeIiRYGjrG2PxgBARi3IhNMAbcCnwI5BAQpAZ8TIwK6vCQVDwUVKL+WzAANTA210g/VJ8OWxQefByQE4dZMzBoInwh4zrtgn2p725YNthUFTNRuGYB3AYGBHCEAACH5BAkJAB0ALAAAAAAgACAAhAQCBISChFRWVMzKzCQiJOTm5GxqbCwuLJSWlPz6/NTW1AwODJSSlGRmZCwqLOzu7HR2dDQ2NAQGBISGhFxaXNTS1CQmJOzq7GxubDQyNKSmpPz+/Nza3AAAAAAAAAAAAAXfYCeOZGmeaKqurHBdAiuP17Zdc0lMAVHWt9yI8LA9fCPB4xEjARoNSWpis01kBpshFahurqzsZosiGpErScMAUO0maKF8Tq/bTQCIQgFp30cQXhB1BHEcXhx0FgkJFiOHVYlzi42AgoRxeRx8fn+en3UABwedKgsBAwMBCygOCjYKDisLFV4VrCUAtVUKpSZdXl8mB8EbByQWcQPFAyYZxccdB7sV0cvBzbmvvG0LBV4FrFTBYCWuNhyyHRTFFB20trh4BxmdYl4YIqepq0IRxRE+IfDCAFQHARo0NGERAgAh+QQJCQAgACwAAAAAIAAgAIUEAgSEgoRMTkzMyswcHhzk5uR0cnQUFhRcXlwsKiz09vQMCgyMiozU1tQkJiR8fnxkZmT8/vwEBgSEhoRcWlzU0tQkIiT08vR0dnQcGhxkYmQ0MjT8+vwMDgyMjozc2twAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG+UCQcEgsGo/IpHLJXDweC6Z0+IhEHlOjRGIMWLHZoUZx0RQlAajxkFFKFFYFl5m5KNpIySU+X2bIBEoQZBBZGQdMElFhjI2Oj5AgHQEDAw8dQxYeDBaNHRVWVhWYCXsRFwmMXqFWEyAerB6MA6xWA6+xs7URt6VWqIwTu64gDh4eDp6goaORQ5OVAZjO1EgEGhB4RwAYDQ0YAEwIcBEKFEgYrBhLBORxgUYfrB9LELuF8fNDAAaVBuEg7NXCVyRdqHVCGLBiIIQAB1Yc4BXh9uEbwAXuyi2iQI7DuSwHdiFqCEGDtizLRFUDsaGAlQIbVoJYIEDAIiZBAAAh+QQJCQAbACwAAAAAIAAgAIQEAgSMioxcWlz08vQcHhysqqwMDgx8enwsKiykoqRkZmT8+vzEwsQMCgyUlpQkJiS0srQEBgSMjoxcXlz09vQkIiSsrqwUEhQ0MjRsamz8/vwAAAAAAAAAAAAAAAAAAAAF7+AmjmRpnmiqruz2PG0sIssCj4CQJAIgj4/abRNJaI6agu9kCAQaphdJgEQKUIFjgGWsahJYLdf7RTWfLKr3+jsBClVlG5Xb9eb4fImgUBBKDVB4ExRHFGwbGRQLGXMEhUgUfw2QC4IyCmSNDQtHlm2ZXgoiGQsUjW0EnUgLfyKBeYSeiHojfH61uS0GBisVEgEVLRcWRxAXKAgDRwMILMVIECgSVRIrBmS9JtRI1iMVBweuGxerSNolyszOIhjLGs0jEFXSKA8SEkMbcEgWIxfzNBxrw6AKgxIGkM05UOWALhERHJhysOThBgAVWYQAACH5BAkJABkALAAAAAAgACAAhAQGBIyKjERCRMzOzCwuLGRiZPz6/OTm5AwODLSytFRSVNTW1Dw6PHx6fAwKDJSSlERGRNTS1DQyNGxqbPz+/BQSFLy6vFRWVNza3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAXqYCaO5FgFwxBUZeu61ULNFMa+eBvQdJD/owFvFhkBBAwHsBQZUooZyWF2YOQkBNJu6ANMaQeli0AxSEwymi0DcUJeEgPlbEJFAghRe/h+Eeg/Dl9UYks5DF9VhksOAgKFi5GSSwh5kzgVCXIJNxknD5aSCTwJIw8zD5MITpanFKmSCHI8NxUPoJejNKWXLZkznL0vCJ3CxsckDpA/ChYJFzkTBgYTSxc80C4OswbLLhY8Fi/bMwYAJVgl4DTiL9LUJADrFuci1zTZLwD1IwU8BSQuWLCQb1EDHg2QiSDALYvCDAISJLDy8FIIACH5BAkJAB4ALAAAAAAgACAAhAQGBISGhFRSVNTW1CQiJKyqrGRmZOzu7CwuLIyOjGxubPz6/BQSFGRiZOTi5CwqLLy6vDQ2NIyKjFRWVCQmJKyurGxqbPT29DQyNJSSlHRydPz+/BQWFOzq7AAAAAAAAAXhoCeOJElYClGubOs117YtjWuvxCLLi3qbhc6h4FPsdorfiNI5dige43GT9AAkHUcCwCpMNxVP7tgTJY4J1uF7EBl0M8Ooueuo2SOCIkVa11kVX2E2EmgsFH4yBz4uAAkdHVstBAUHQ4xKmZqbnJ2bAhAQAiURGJ4eE0cTIxgzpp0QRxCsrp6xO7MjpaepO6unKxOhv8DFxsfIJBwaChw2DAkZDEocDjIOzi0ZMhlKUjIaLtsb3T8aR+EtDBkJ0yQUBQVQI9XX2ZsDMgMlyxr3mzE2XEgmotCGAARFIHiQ0FMIACH5BAkJABgALAAAAAAgACAAhAQCBISGhDw+POTi5CwuLLS2tPTy9BQSFJyenGRiZDQ2NIyOjLy+vPz6/BweHIyKjFRSVOzq7DQyNLy6vBQWFHRydDw6PPz+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXXICaOZHkcZaquIjVd10SxtFrAcFGrVhBYIwoON9uNAsOA6DCEFTEKBEKxEjQvAtELNxkpGrAGNfW4Plpb2QgxRKjKzfPoVGLj3CnLNUv7hscpSDhKOxJSgDwPP0ZGAACMjAQFDQYFBJA0BAZDBpeYGBQVFUU3TV2YFAMwAzNgTQ2PkBVDFRiuQ7CYszi1pUOnkKmrM5qcnqiiTwQTDQ2Wn9DR0tPUfRKQEBEREDQSFw3XRhEwEd3f4TvjF+XWKgJ8JNnb0QkwCdUlCzAL+CQODAwc9BtIMAQAOw==)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin:auto}.toast{background-color:#030303}.toast-success{background-color:#51a351}.toast-error{background-color:#bd362f}.toast-info,.toast-wait{background-color:#2f96b4}.toast-warning{background-color:#f89406}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container .toast-close-button{right:-.2em;top:-.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container .toast-close-button{right:-.2em;top:-.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}}:not(.no-enter)#toast-container>div.ng-enter,:not(.no-leave)#toast-container>div.ng-leave{-webkit-transition:1000ms cubic-bezier(.25,.25,.75,.75) all;-moz-transition:1000ms cubic-bezier(.25,.25,.75,.75) all;-ms-transition:1000ms cubic-bezier(.25,.25,.75,.75) all;-o-transition:1000ms cubic-bezier(.25,.25,.75,.75) all;transition:1000ms cubic-bezier(.25,.25,.75,.75) all}:not(.no-enter)#toast-container>div.ng-enter.ng-enter-active,:not(.no-leave)#toast-container>div.ng-leave{opacity:.8}:not(.no-enter)#toast-container>div.ng-enter,:not(.no-leave)#toast-container>div.ng-leave.ng-leave-active{opacity:0}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  width: 278px;
  padding: 4px;
  margin-top: 1px;
  top: 100px;
  left: 20px;
  /* Calendars */ }
  .daterangepicker:before, .daterangepicker:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: ''; }
  .daterangepicker:before {
    top: -7px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #ccc; }
  .daterangepicker:after {
    top: -6px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent; }
  .daterangepicker.opensleft:before {
    right: 9px; }
  .daterangepicker.opensleft:after {
    right: 10px; }
  .daterangepicker.openscenter:before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto; }
  .daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto; }
  .daterangepicker.opensright:before {
    left: 9px; }
  .daterangepicker.opensright:after {
    left: 10px; }
  .daterangepicker.dropup {
    margin-top: -5px; }
    .daterangepicker.dropup:before {
      top: initial;
      bottom: -7px;
      border-bottom: initial;
      border-top: 7px solid #ccc; }
    .daterangepicker.dropup:after {
      top: initial;
      bottom: -6px;
      border-bottom: initial;
      border-top: 6px solid #fff; }
  .daterangepicker.dropdown-menu {
    max-width: none;
    z-index: 3001; }
  .daterangepicker.single .ranges, .daterangepicker.single .calendar {
    float: none; }
  .daterangepicker.show-calendar .calendar {
    display: block; }
  .daterangepicker .calendar {
    display: none;
    max-width: 270px;
    margin: 4px; }
    .daterangepicker .calendar.single .calendar-table {
      border: none; }
    .daterangepicker .calendar th, .daterangepicker .calendar td {
      white-space: nowrap;
      text-align: center;
      min-width: 32px; }
  .daterangepicker .calendar-table {
    border: 1px solid #fff;
    padding: 4px;
    border-radius: 4px;
    background-color: #fff; }
  .daterangepicker table {
    width: 100%;
    margin: 0; }
  .daterangepicker td, .daterangepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer; }
    .daterangepicker td.available:hover, .daterangepicker th.available:hover {
      background-color: #eee;
      border-color: transparent;
      color: inherit; }
    .daterangepicker td.week, .daterangepicker th.week {
      font-size: 80%;
      color: #ccc; }
  .daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999; }
  .daterangepicker td.in-range {
    background-color: #ebf4f8;
    border-color: transparent;
    color: #000;
    border-radius: 0; }
  .daterangepicker td.start-date {
    border-radius: 4px 0 0 4px; }
  .daterangepicker td.end-date {
    border-radius: 0 4px 4px 0; }
  .daterangepicker td.start-date.end-date {
    border-radius: 4px; }
  .daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #357ebd;
    border-color: transparent;
    color: #fff; }
  .daterangepicker th.month {
    width: auto; }
  .daterangepicker td.disabled, .daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through; }
  .daterangepicker select.monthselect, .daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default; }
  .daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%; }
  .daterangepicker select.yearselect {
    width: 40%; }
  .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
    width: 50px;
    margin-bottom: 0; }
  .daterangepicker .input-mini {
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #555;
    height: 30px;
    line-height: 30px;
    display: block;
    vertical-align: middle;
    margin: 0 0 5px 0;
    padding: 0 6px 0 28px;
    width: 100%; }
    .daterangepicker .input-mini.active {
      border: 1px solid #08c;
      border-radius: 4px; }
  .daterangepicker .daterangepicker_input {
    position: relative; }
    .daterangepicker .daterangepicker_input i {
      position: absolute;
      left: 8px;
      top: 8px; }
  .daterangepicker.rtl .input-mini {
    padding-right: 28px;
    padding-left: 6px; }
  .daterangepicker.rtl .daterangepicker_input i {
    left: auto;
    right: 8px; }
  .daterangepicker .calendar-time {
    text-align: center;
    margin: 5px auto;
    line-height: 30px;
    position: relative;
    padding-left: 28px; }
    .daterangepicker .calendar-time select.disabled {
      color: #ccc;
      cursor: not-allowed; }

.ranges {
  font-size: 11px;
  float: none;
  margin: 4px;
  text-align: left; }
  .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%; }
  .ranges li {
    font-size: 13px;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    color: #08c;
    padding: 3px 12px;
    margin-bottom: 8px;
    cursor: pointer; }
    .ranges li:hover {
      background-color: #08c;
      border: 1px solid #08c;
      color: #fff; }
    .ranges li.active {
      background-color: #08c;
      border: 1px solid #08c;
      color: #fff; }

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }
    .daterangepicker .ranges ul {
      width: 160px; }
    .daterangepicker.single .ranges ul {
      width: 100%; }
    .daterangepicker.single .calendar.left {
      clear: none; }
    .daterangepicker.single.ltr .ranges, .daterangepicker.single.ltr .calendar {
      float: left; }
    .daterangepicker.single.rtl .ranges, .daterangepicker.single.rtl .calendar {
      float: right; }
    .daterangepicker.ltr {
      direction: ltr;
      text-align: left; }
      .daterangepicker.ltr .calendar.left {
        clear: left;
        margin-right: 0; }
        .daterangepicker.ltr .calendar.left .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.ltr .calendar.right {
        margin-left: 0; }
        .daterangepicker.ltr .calendar.right .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.ltr .left .daterangepicker_input {
        padding-right: 12px; }
      .daterangepicker.ltr .calendar.left .calendar-table {
        padding-right: 12px; }
      .daterangepicker.ltr .ranges, .daterangepicker.ltr .calendar {
        float: left; }
    .daterangepicker.rtl {
      direction: rtl;
      text-align: right; }
      .daterangepicker.rtl .calendar.left {
        clear: right;
        margin-left: 0; }
        .daterangepicker.rtl .calendar.left .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.rtl .calendar.right {
        margin-right: 0; }
        .daterangepicker.rtl .calendar.right .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.rtl .left .daterangepicker_input {
        padding-left: 12px; }
      .daterangepicker.rtl .calendar.left .calendar-table {
        padding-left: 12px; }
      .daterangepicker.rtl .ranges, .daterangepicker.rtl .calendar {
        text-align: right;
        float: right; } }
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto; }
  .daterangepicker.ltr .ranges {
    float: left; }
  .daterangepicker.rtl .ranges {
    float: right; }
  .daterangepicker .calendar.left {
    clear: none !important; } }

.angular-notify{color:#fff;font-family:Roboto,system,-apple-system,'.SFNSDisplay-Regular',HelveticaNeue,Arial,'Noto Sans','Noto Sans CJK SC','PingFang SC','Hiragino Sans GB','Microsoft Yahei',sans-serif;border-radius:2px;box-shadow:0 4px 4px rgba(0,0,0,.24),0 0 4px rgba(0,0,0,.12);width:480px;padding:16px 16px 16px 0;margin:16px;position:relative;z-index:999}.angular-notify .title{font-size:16px;font-weight:400;letter-spacing:.02em;line-height:22px;margin:1px 0 0 64px;padding:0 0 0 16px}.angular-notify .content{font-size:14px;font-weight:300;letter-spacing:.02em;line-height:20px;margin:5px 0 0 64px;padding:0 0 0 16px}.angular-notify .close{background:0 0;border:none;outline:0;width:24px;height:24px;margin:0;position:absolute;top:16px;right:16px}.angular-notify .close i{color:#fff}.angular-notify .close:hover{opacity:.6}.angular-notify:before{background-color:rgba(0,0,0,.14);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:64px;height:100%;position:absolute;left:0;top:0}.angular-notify-info{background-color:#03A9F4}.angular-notify-info:before{content:url('data:image/svg+xml,%3Csvg%20width%3D%2248px%22%20height%3D%2248px%22%20viewBox%3D%228%2014%2048%2048%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22path-1%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2216%22%3E%3C%2Fcircle%3E%0A%20%20%20%20%20%20%20%20%3Cfilter%20x%3D%22-50%25%22%20y%3D%22-50%25%22%20width%3D%22200%25%22%20height%3D%22200%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22filter-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeOffset%20dx%3D%220%22%20dy%3D%224%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter1%22%3E%3C%2FfeOffset%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeGaussianBlur%20stdDeviation%3D%222%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%3E%3C%2FfeGaussianBlur%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%220%200%200%200%200%20%20%200%200%200%200%200%20%20%200%200%200%200%200%20%200%200%200%200.24%200%22%20type%3D%22matrix%22%20in%3D%22shadowBlurOuter1%22%20result%3D%22shadowMatrixOuter1%22%3E%3C%2FfeColorMatrix%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeOffset%20dx%3D%220%22%20dy%3D%220%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter2%22%3E%3C%2FfeOffset%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeGaussianBlur%20stdDeviation%3D%222%22%20in%3D%22shadowOffsetOuter2%22%20result%3D%22shadowBlurOuter2%22%3E%3C%2FfeGaussianBlur%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%220%200%200%200%200%20%20%200%200%200%200%200%20%20%200%200%200%200%200%20%200%200%200%200.12%200%22%20type%3D%22matrix%22%20in%3D%22shadowBlurOuter2%22%20result%3D%22shadowMatrixOuter2%22%3E%3C%2FfeColorMatrix%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMerge%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMergeNode%20in%3D%22shadowMatrixOuter1%22%3E%3C%2FfeMergeNode%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMergeNode%20in%3D%22shadowMatrixOuter2%22%3E%3C%2FfeMergeNode%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2FfeMerge%3E%0A%20%20%20%20%20%20%20%20%3C%2Ffilter%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22info%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate(16.000000%2C%2024.000000)%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Oval-2-Copy-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22black%22%20fill-opacity%3D%221%22%20filter%3D%22url(%23filter-2)%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22%23FFFFFF%22%20fill-rule%3D%22evenodd%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M17%2C13%20L17%2C22%20L15%2C22%20L15%2C14%20L14%2C14%20L14%2C12%20L17%2C12%20L17%2C13%20L17%2C13%20Z%20M15%2C8%20L17%2C8%20L17%2C10%20L15%2C10%20L15%2C8%20L15%2C8%20Z%20M13%2C22%20L19%2C22%20L19%2C24%20L13%2C24%20L13%2C22%20L13%2C22%20Z%22%20id%3D%22Combined-Shape%22%20fill%3D%22%2303A9F4%22%3E%3C%2Fpath%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E')}.angular-notify-success{background-color:#8BC34A}.angular-notify-success:before{content:url('data:image/svg+xml,%3Csvg%20width%3D%2248px%22%20height%3D%2248px%22%20viewBox%3D%228%203%2048%2048%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22path-1%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2216%22%3E%3C%2Fcircle%3E%0A%20%20%20%20%20%20%20%20%3Cfilter%20x%3D%22-50%25%22%20y%3D%22-50%25%22%20width%3D%22200%25%22%20height%3D%22200%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22filter-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeOffset%20dx%3D%220%22%20dy%3D%224%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter1%22%3E%3C%2FfeOffset%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeGaussianBlur%20stdDeviation%3D%222%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%3E%3C%2FfeGaussianBlur%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%220%200%200%200%200%20%20%200%200%200%200%200%20%20%200%200%200%200%200%20%200%200%200%200.24%200%22%20type%3D%22matrix%22%20in%3D%22shadowBlurOuter1%22%20result%3D%22shadowMatrixOuter1%22%3E%3C%2FfeColorMatrix%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeOffset%20dx%3D%220%22%20dy%3D%220%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter2%22%3E%3C%2FfeOffset%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeGaussianBlur%20stdDeviation%3D%222%22%20in%3D%22shadowOffsetOuter2%22%20result%3D%22shadowBlurOuter2%22%3E%3C%2FfeGaussianBlur%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%220%200%200%200%200%20%20%200%200%200%200%200%20%20%200%200%200%200%200%20%200%200%200%200.12%200%22%20type%3D%22matrix%22%20in%3D%22shadowBlurOuter2%22%20result%3D%22shadowMatrixOuter2%22%3E%3C%2FfeColorMatrix%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMerge%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMergeNode%20in%3D%22shadowMatrixOuter1%22%3E%3C%2FfeMergeNode%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMergeNode%20in%3D%22shadowMatrixOuter2%22%3E%3C%2FfeMergeNode%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2FfeMerge%3E%0A%20%20%20%20%20%20%20%20%3C%2Ffilter%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22success%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate(16.000000%2C%2012.000000)%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Oval-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22black%22%20fill-opacity%3D%221%22%20filter%3D%22url(%23filter-2)%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22%23FFFFFF%22%20fill-rule%3D%22evenodd%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3Cpolygon%20id%3D%22Combined-Shape%22%20fill%3D%22%238BC34A%22%20points%3D%2212.7552038%2020.5428932%207.41421356%2015.201903%206%2016.6161165%2012.363961%2022.9800776%2012.3838835%2022.9601551%2012.7751263%2023.3513979%2025.7123106%2010.4142136%2024.298097%209%2012.7552038%2020.5428932%22%3E%3C%2Fpolygon%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E')}.angular-notify-warning{background-color:#FFC107}.angular-notify-warning:before{content:url('data:image/svg+xml,%3Csvg%20width%3D%2248px%22%20height%3D%2248px%22%20viewBox%3D%228%2014%2048%2048%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22path-1%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2216%22%3E%3C%2Fcircle%3E%0A%20%20%20%20%20%20%20%20%3Cfilter%20x%3D%22-50%25%22%20y%3D%22-50%25%22%20width%3D%22200%25%22%20height%3D%22200%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22filter-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeOffset%20dx%3D%220%22%20dy%3D%224%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter1%22%3E%3C%2FfeOffset%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeGaussianBlur%20stdDeviation%3D%222%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%3E%3C%2FfeGaussianBlur%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%220%200%200%200%200%20%20%200%200%200%200%200%20%20%200%200%200%200%200%20%200%200%200%200.24%200%22%20type%3D%22matrix%22%20in%3D%22shadowBlurOuter1%22%20result%3D%22shadowMatrixOuter1%22%3E%3C%2FfeColorMatrix%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeOffset%20dx%3D%220%22%20dy%3D%220%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter2%22%3E%3C%2FfeOffset%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeGaussianBlur%20stdDeviation%3D%222%22%20in%3D%22shadowOffsetOuter2%22%20result%3D%22shadowBlurOuter2%22%3E%3C%2FfeGaussianBlur%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%220%200%200%200%200%20%20%200%200%200%200%200%20%20%200%200%200%200%200%20%200%200%200%200.12%200%22%20type%3D%22matrix%22%20in%3D%22shadowBlurOuter2%22%20result%3D%22shadowMatrixOuter2%22%3E%3C%2FfeColorMatrix%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMerge%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMergeNode%20in%3D%22shadowMatrixOuter1%22%3E%3C%2FfeMergeNode%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMergeNode%20in%3D%22shadowMatrixOuter2%22%3E%3C%2FfeMergeNode%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2FfeMerge%3E%0A%20%20%20%20%20%20%20%20%3C%2Ffilter%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22warning%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate(16.000000%2C%2024.000000)%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Oval-2-Copy-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22black%22%20fill-opacity%3D%221%22%20filter%3D%22url(%23filter-2)%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22%23FFFFFF%22%20fill-rule%3D%22evenodd%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M15%2C22%20L17%2C22%20L17%2C24%20L15%2C24%20L15%2C22%20L15%2C22%20Z%20M15%2C8%20L17%2C8%20L17%2C20%20L15%2C20%20L15%2C8%20L15%2C8%20Z%22%20id%3D%22Combined-Shape%22%20fill%3D%22%23FFC107%22%3E%3C%2Fpath%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E')}.angular-notify-error{background-color:#F44336}.angular-notify-error:before{content:url('data:image/svg+xml,%3Csvg%20width%3D%2248px%22%20height%3D%2248px%22%20viewBox%3D%228%2014%2048%2048%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Ccircle%20id%3D%22path-1%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2216%22%3E%3C%2Fcircle%3E%0A%20%20%20%20%20%20%20%20%3Cfilter%20x%3D%22-50%25%22%20y%3D%22-50%25%22%20width%3D%22200%25%22%20height%3D%22200%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22filter-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeOffset%20dx%3D%220%22%20dy%3D%224%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter1%22%3E%3C%2FfeOffset%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeGaussianBlur%20stdDeviation%3D%222%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%3E%3C%2FfeGaussianBlur%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%220%200%200%200%200%20%20%200%200%200%200%200%20%20%200%200%200%200%200%20%200%200%200%200.24%200%22%20type%3D%22matrix%22%20in%3D%22shadowBlurOuter1%22%20result%3D%22shadowMatrixOuter1%22%3E%3C%2FfeColorMatrix%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeOffset%20dx%3D%220%22%20dy%3D%220%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowOffsetOuter2%22%3E%3C%2FfeOffset%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeGaussianBlur%20stdDeviation%3D%222%22%20in%3D%22shadowOffsetOuter2%22%20result%3D%22shadowBlurOuter2%22%3E%3C%2FfeGaussianBlur%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%220%200%200%200%200%20%20%200%200%200%200%200%20%20%200%200%200%200%200%20%200%200%200%200.12%200%22%20type%3D%22matrix%22%20in%3D%22shadowBlurOuter2%22%20result%3D%22shadowMatrixOuter2%22%3E%3C%2FfeColorMatrix%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMerge%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMergeNode%20in%3D%22shadowMatrixOuter1%22%3E%3C%2FfeMergeNode%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3CfeMergeNode%20in%3D%22shadowMatrixOuter2%22%3E%3C%2FfeMergeNode%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2FfeMerge%3E%0A%20%20%20%20%20%20%20%20%3C%2Ffilter%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22error%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate(16.000000%2C%2024.000000)%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Oval-2-Copy%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22black%22%20fill-opacity%3D%221%22%20filter%3D%22url(%23filter-2)%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22%23FFFFFF%22%20fill-rule%3D%22evenodd%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3Cpolygon%20id%3D%22Combined-Shape%22%20fill%3D%22%23F44336%22%20points%3D%2217.1923882%2015.7781746%2023.5563492%209.41421356%2022.1421356%208%2015.7781746%2014.363961%209.41421356%208%208%209.41421356%2014.363961%2015.7781746%208%2022.1421356%209.41421356%2023.5563492%2015.7781746%2017.1923882%2022.1421356%2023.5563492%2023.5563492%2022.1421356%2017.1923882%2015.7781746%22%3E%3C%2Fpolygon%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E')}@-webkit-keyframes angular-notify-enter{0%{-webkit-transform:translate(480px,0);transform:translate(480px,0)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes angular-notify-enter{0%{-webkit-transform:translate(480px,0);transform:translate(480px,0)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes angular-notify-hide{0%{opacity:1}100%{opacity:0}}@keyframes angular-notify-hide{0%{opacity:1}100%{opacity:0}}.angular-notify-enter{-webkit-animation-name:angular-notify-enter;animation-name:angular-notify-enter;-webkit-animation-duration:.4s;animation-duration:.4s;-webkit-animation-timing-function:ease-in-out-cubic;animation-timing-function:ease-in-out-cubic;-webkit-animation-delay:0;animation-delay:0;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.angular-notify-hide{-webkit-animation-name:angular-notify-hide;animation-name:angular-notify-hide;-webkit-animation-duration:320ms;animation-duration:320ms;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-delay:0;animation-delay:0;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@media screen and (max-width:480px){.angular-notify{width:100%}@-webkit-keyframes angular-notify-enter{0%{-webkit-transform:translate(100%,0);transform:translate(100%,0)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes angular-notify-enter{0%{-webkit-transform:translate(100%,0);transform:translate(100%,0)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}.angular-notify-enter{-webkit-animation-name:angular-notify-enter;animation-name:angular-notify-enter;-webkit-animation-duration:.4s;animation-duration:.4s;-webkit-animation-timing-function:ease-in-out-cubic;animation-timing-function:ease-in-out-cubic;-webkit-animation-delay:0;animation-delay:0;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}}
/*# sourceMappingURL=angular-notify-material.min.css.map */

/*
 * mde-swipe-to-refresh 0.0.4
 * Swipe to refresh (pull to refresh) for Angular Material
 * https://github.com/alirezamirian/angular-material-swipe-to-refresh
*/

[mde-swipe-to-refresh]{position:relative}[mde-swipe-to-refresh] ._indicator-wrap{transition:top .1s;position:absolute;left:0;right:0;z-index:1}[mde-swipe-to-refresh] ._indicator{border-radius:50%;padding:10px;background:#fff}[mde-swipe-to-refresh] ._updating.ng-hide-add,[mde-swipe-to-refresh] ._updating.ng-hide-add-active{transition:transform .2s,opacity .2s}[mde-swipe-to-refresh] ._updating.ng-hide-add{display:block;opacity:1;transform:scale(1)}[mde-swipe-to-refresh] ._updating.ng-hide-add-active{opacity:0;transform:scale(0)}
md-expansion-panel,md-expansion-panel .md-expansion-panel-footer-container,md-expansion-panel .md-expansion-panel-header-container,md-expansion-panel md-expansion-panel-collapsed{background:#fff}md-expansion-panel .md-expansion-panel-footer-container .md-summary,md-expansion-panel .md-expansion-panel-footer-container .md-title,md-expansion-panel .md-expansion-panel-header-container .md-summary,md-expansion-panel .md-expansion-panel-header-container .md-title,md-expansion-panel md-expansion-panel-collapsed .md-summary,md-expansion-panel md-expansion-panel-collapsed .md-title{color:#333}md-expansion-panel md-expansion-panel-footer .md-expansion-panel-footer-container,md-expansion-panel md-expansion-panel-header .md-expansion-panel-header-container{border-color:#ddd}md-expansion-panel .md-expansion-panel-icon svg{fill:#999}md-expansion-panel[disabled] md-expansion-panel-collapsed .md-summary,md-expansion-panel[disabled] md-expansion-panel-collapsed .md-title{color:#ddd}md-expansion-panel[disabled] .md-expansion-panel-icon svg{fill:#ddd}md-expansion-panel:not(.md-open):not([disabled]):focus,md-expansion-panel:not(.md-open):not([disabled]):focus md-expansion-panel-collapsed{background:#eee}.layout-padding>md-expansion-panel-group{padding:0}md-expansion-panel{display:block;position:relative;outline:none;margin-top:0;margin-bottom:0;padding:0;box-shadow:0 -1px 0 #e5e5e5,0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24)}md-expansion-panel.md-open{margin-top:16px;margin-bottom:16px}md-expansion-panel.md-open:first-of-type{margin-top:0}md-expansion-panel.md-close{overflow:hidden}md-expansion-panel:not(.md-no-animation).md-open{-webkit-transition:margin-top .12s cubic-bezier(.25,.8,.25,1),margin-bottom .12s cubic-bezier(.25,.8,.25,1);transition:margin-top .12s cubic-bezier(.25,.8,.25,1),margin-bottom .12s cubic-bezier(.25,.8,.25,1)}md-expansion-panel:not(.md-no-animation).md-close{-webkit-transition:margin-top .08s cubic-bezier(.25,.8,.25,1),margin-bottom .08s cubic-bezier(.25,.8,.25,1);transition:margin-top .08s cubic-bezier(.25,.8,.25,1),margin-bottom .08s cubic-bezier(.25,.8,.25,1)}md-expansion-panel-collapsed .md-title,md-expansion-panel-header .md-title{-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:16px;font-weight:600;min-width:80px;max-width:184px;overflow:hidden;text-overflow:ellipsis;text-align:left;white-space:nowrap}md-expansion-panel-collapsed .md-summary,md-expansion-panel-header .md-summary{-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:13px;overflow:hidden;text-overflow:ellipsis;text-align:left;white-space:nowrap}md-expansion-panel md-expansion-panel-collapsed{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:48px;line-height:48px;padding:0 24px;opacity:1;z-index:2;box-sizing:border-box}md-expansion-panel md-expansion-panel-collapsed.md-absolute{position:absolute}md-expansion-panel md-expansion-panel-collapsed.md-hide{opacity:0}md-expansion-panel:not(.md-no-animation) md-expansion-panel-collapsed.md-show{-webkit-transition:opacity .03s linear;transition:opacity .03s linear}md-expansion-panel:not(.md-no-animation) md-expansion-panel-collapsed.md-hide{-webkit-transition:opacity .1s cubic-bezier(.25,.8,.25,1);transition:opacity .1s cubic-bezier(.25,.8,.25,1)}md-expansion-panel md-expansion-panel-expanded{display:none;min-height:48px}md-expansion-panel md-expansion-panel-expanded.md-hide,md-expansion-panel md-expansion-panel-expanded.md-show{display:block}md-expansion-panel md-expansion-panel-expanded.md-scroll-y{overflow-y:auto}md-expansion-panel md-expansion-panel-expanded.md-overflow{overflow:hidden}md-expansion-panel md-expansion-panel-expanded md-expansion-panel-content{display:block;padding:16px 24px}md-expansion-panel:not(.md-no-animation) md-expansion-panel-expanded.md-show{-webkit-transition:max-height .12s cubic-bezier(.25,.8,.25,1),opacity .12s cubic-bezier(.25,.8,.25,1);transition:max-height .12s cubic-bezier(.25,.8,.25,1),opacity .12s cubic-bezier(.25,.8,.25,1)}md-expansion-panel:not(.md-no-animation) md-expansion-panel-expanded.md-hide{-webkit-transition:max-height .06s cubic-bezier(.25,.8,.25,1),opacity .06s cubic-bezier(.25,.8,.25,1);transition:max-height .06s cubic-bezier(.25,.8,.25,1),opacity .06s cubic-bezier(.25,.8,.25,1)}md-expansion-panel-header{display:block;position:relative;outline:none}md-expansion-panel-header .md-expansion-panel-header-container{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:48px;line-height:48px;padding:0 24px;box-sizing:border-box;border-bottom:1px solid;-webkit-box-align:center;-ms-flex-align:center;align-items:center}md-expansion-panel-header.md-stick .md-expansion-panel-header-container{position:fixed;z-index:2;-webkit-animation:a .3s ease-out both;animation:a .3s ease-out both}md-expansion-panel-header.md-no-stick .md-expansion-panel-header-container{-webkit-animation:b .3s ease-out both;animation:b .3s ease-out both}md-expansion-panel-footer{display:block;position:relative}md-expansion-panel-footer.md-hide,md-expansion-panel-footer.md-show{display:block}md-expansion-panel-footer .md-expansion-panel-footer-container{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:48px;line-height:48px;padding:0 24px;border-top:1px solid;box-sizing:border-box}md-expansion-panel-footer.md-stick .md-expansion-panel-footer-container{position:fixed;z-index:2}md-expansion-panel:not(.md-no-animation) .md-expansion-panel-icon{-webkit-transition:-webkit-transform .6s cubic-bezier(.25,.8,.25,1);transition:-webkit-transform .6s cubic-bezier(.25,.8,.25,1);transition:transform .6s cubic-bezier(.25,.8,.25,1);transition:transform .6s cubic-bezier(.25,.8,.25,1),-webkit-transform .6s cubic-bezier(.25,.8,.25,1)}md-expansion-panel .md-expansion-panel-icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}md-expansion-panel .md-expansion-panel-icon:first-child{margin-right:18px}md-expansion-panel.md-open>md-expansion-panel-expanded>md-expansion-panel-header .md-expansion-panel-header-container .md-expansion-panel-icon,md-expansion-panel.md-open>md-expansion-panel.md-open>md-expansion-panel-collapsed .md-expansion-panel-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}@-webkit-keyframes a{0%{box-shadow:0 0 0 0 transparent}to{box-shadow:0 2px 4px 0 rgba(0,0,0,.16)}}@keyframes a{0%{box-shadow:0 0 0 0 transparent}to{box-shadow:0 2px 4px 0 rgba(0,0,0,.16)}}@-webkit-keyframes b{0%{box-shadow:0 2px 4px 0 rgba(0,0,0,.16)}to{box-shadow:0 0 0 0 transparent}}@keyframes b{0%{box-shadow:0 2px 4px 0 rgba(0,0,0,.16)}to{box-shadow:0 0 0 0 transparent}}
/*!
 * Name: angular-carousel-3d
 * GIT Page: https://github.com/Wlada/angular-carousel-3d
 * License: MIT
 */.carousel-3d-container{width:100%;overflow:hidden;position:relative;z-index:0;margin:20px auto}.carousel-3d{position:relative;margin:0 auto;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:1000px;-moz-perspective:1000px;-o-perspective:1000px;-ms-perspective:1000px;perspective:1000px}.carousel-3d.ng-hide{opacity:0}.carousel-3d.ng-hide-remove{transition:opacity linear 1000ms}.carousel-3d.ng-hide-add{transition:opacity linear 500ms}.carousel-3d .slide-3d{border-radius:4px;border-color:#000;border-color:rgba(0,0,0,.4);border-style:solid;background-size:cover}.carousel-3d .slide-3d figure img{width:100%}.carousel-3d .slide-3d figure figcaption{position:absolute;background:rgba(0,0,0,.5);color:#fff;width:100%;left:0;bottom:0;font-weight:400;text-align:center;padding:7px 10px}.carousel-3d-controls{position:absolute;top:30%;left:0;width:100%;z-index:9099}.carousel-3d-next,.carousel-3d-prev{width:60px;position:absolute!important;z-index:9999}.carousel-3d-next:hover,.carousel-3d-prev:hover{cursor:pointer}.carousel-3d-next{left:0}.carousel-3d-prev{right:0}.arrow-bottom,.arrow-left,.arrow-right,.arrow-top{display:block;margin:20px auto;overflow:hidden;position:relative}.arrow-bottom,.arrow-top{height:34px;width:64px}.arrow-left,.arrow-right{height:64px;width:34px}.arrow-bottom:before,.arrow-left:before,.arrow-right:before,.arrow-top:before{border:30px solid transparent;content:' ';display:block;position:absolute;z-index:2}.arrow-top:before{border-bottom-color:#000;left:2px;bottom:0}.arrow-right:before{border-left-color:#585858;left:0;top:2px}.arrow-bottom:before{border-top-color:#000;left:2px;top:0}.arrow-left:before{border-right-color:#585858;right:0;top:2px}.arrow-bottom-bg:after,.arrow-left-bg:after,.arrow-right-bg:after,.arrow-top-bg:after{border:32px solid transparent;content:' ';display:block;position:absolute;z-index:1}.arrow-top-bg:after{border-bottom-color:#000;bottom:0;left:0}.arrow-right-bg:after{border-left-color:#000;left:0;top:0}.arrow-bottom-bg:after{border-top-color:#000;left:0;top:0}.arrow-left-bg:after{border-right-color:#585858;right:0;top:0}@-webkit-keyframes uil-rolling-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}50%{-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes uil-rolling-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}50%{-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes uil-rolling-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}50%{-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-ms-keyframes uil-rolling-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}50%{-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes uil-rolling-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}50%{-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes uil-rolling-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}50%{-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes uil-rolling-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}50%{-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes uil-rolling-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}50%{-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.carousel-3d-loader-circle{width:100px;height:100px;margin:50px auto;display:block}.carousel-3d-loader-circle>div{width:100px;height:100px;position:relative;-ms-animation:uil-rolling-anim 1s linear infinite;-moz-animation:uil-rolling-anim 1s linear infinite;-webkit-animation:uil-rolling-anim 1s linear infinite;-o-animation:uil-rolling-anim 1s linear infinite;animation:uil-rolling-anim 1s linear infinite}.carousel-3d-loader-circle>div div{position:absolute;width:100px;height:50px;border-radius:500px 500px 0 0;border-color:#000;border-style:solid;border-width:20px;border-bottom-width:0}.carousel-3d-loader-circle>div div:nth-of-type(2){-ms-transform:translate(0,25px) rotate(27deg) translate(0,-25px);-moz-transform:translate(0,25px) rotate(27deg) translate(0,-25px);-webkit-transform:translate(0,25px) rotate(27deg) translate(0,-25px);-o-transform:translate(0,25px) rotate(27deg) translate(0,-25px);transform:translate(0,25px) rotate(27deg) translate(0,-25px)}.carousel-3d-loader{position:relative}.carousel-3d-loader-error,.carousel-3d-loader-percentage{font-size:18px;position:absolute;top:50%;text-align:center;width:100%;margin-top:-9px;line-height:18px}
.color-palette {
    background-color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    opacity: 0;
    padding: 5px 7px 3px;
    position: absolute;
    -webkit-transition: visibility 0s ease .218s,opacity .218s linear;
    transition: visibility 0s ease .218s,opacity .218s linear;
    visibility: hidden;
    width: 136px;
    z-index: 4011;
}

.color-picker:hover .color-palette {
    visibility: visible;
    opacity: 1;
}

.color-palette div.transparent-color {
    border-color: rgb(224,224,224);
}

.selected-color, .color-palette div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    margin: 2px;
    opacity: 1;
    cursor: pointer;
    display: inline-block;
    border: 2px solid transparent;
    outline: none!important;
}

.selected-color, .color-palette div:hover {
    border-color: rgba(0,0,0,0.4);
}

.color-palette div.palette-selected-color {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE4cHgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0iIzAwMDAwMCIgb3BhY2l0eT0iMC41NCIgdmlld0JveD0iMCAwIDE4IDE4IiBoZWlnaHQ9IjE4cHgiPgogIDxwYXRoIGQ9Im0wIDBoMTh2MThoLTE4eiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Im02LjYxIDExLjg5bC0zLjExLTMuMTEtMS4wNiAxLjA2IDQuMTcgNC4xNiA4Ljk1LTguOTUtMS4wNi0xLjA1eiIvPgo8L3N2Zz4K);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: 16px 16px;
    background-size: 16px 16px
}
.introjs-overlay{position:absolute;box-sizing:content-box;z-index:999999;background-color:#000;opacity:0;background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.4)),color-stop(100%,rgba(0,0,0,0.9)));background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);background:radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000',endColorstr='#e6000000',GradientType=1)";-ms-filter:"alpha(opacity=50)";filter:alpha(opacity=50);-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-ms-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.introjs-fixParent{z-index:auto!important;opacity:1.0!important;-webkit-transform:none!important;-moz-transform:none!important;-ms-transform:none!important;-o-transform:none!important;transform:none!important}.introjs-showElement,tr.introjs-showElement>td,tr.introjs-showElement>th{z-index:9999999!important}.introjs-disableInteraction{z-index:99999999!important;position:absolute;background-color:white;opacity:0;filter:alpha(opacity=0)}.introjs-relativePosition,tr.introjs-showElement>td,tr.introjs-showElement>th{position:relative}.introjs-helperLayer{box-sizing:content-box;position:absolute;z-index:9999998;background-color:#FFF;background-color:rgba(255,255,255,.9);border:1px solid #777;border:1px solid rgba(0,0,0,.5);border-radius:4px;box-shadow:0 2px 15px rgba(0,0,0,.4);-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-ms-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.introjs-tooltipReferenceLayer{box-sizing:content-box;position:absolute;visibility:hidden;z-index:10000000;background-color:transparent;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-ms-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.introjs-helperLayer *,.introjs-helperLayer *:before,.introjs-helperLayer *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box}.introjs-helperNumberLayer{box-sizing:content-box;position:absolute;visibility:visible;top:-16px;left:-16px;z-index:9999999999!important;padding:2px;font-family:Arial,verdana,tahoma;font-size:13px;font-weight:bold;color:white;text-align:center;text-shadow:1px 1px 1px rgba(0,0,0,.3);background:#ff3019;background:-webkit-linear-gradient(top,#ff3019 0,#cf0404 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ff3019),color-stop(100%,#cf0404));background:-moz-linear-gradient(top,#ff3019 0,#cf0404 100%);background:-ms-linear-gradient(top,#ff3019 0,#cf0404 100%);background:-o-linear-gradient(top,#ff3019 0,#cf0404 100%);background:linear-gradient(to bottom,#ff3019 0,#cf0404 100%);width:20px;height:20px;line-height:20px;border:3px solid white;border-radius:50%;filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0)";filter:"progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000)";box-shadow:0 2px 5px rgba(0,0,0,.4)}.introjs-arrow{border:5px solid white;content:'';position:absolute}.introjs-arrow.top{top:-10px;border-top-color:transparent;border-right-color:transparent;border-bottom-color:white;border-left-color:transparent}.introjs-arrow.top-right{top:-10px;right:10px;border-top-color:transparent;border-right-color:transparent;border-bottom-color:white;border-left-color:transparent}.introjs-arrow.top-middle{top:-10px;left:50%;margin-left:-5px;border-top-color:transparent;border-right-color:transparent;border-bottom-color:white;border-left-color:transparent}.introjs-arrow.right{right:-10px;top:10px;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:white}.introjs-arrow.right-bottom{bottom:10px;right:-10px;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:white}.introjs-arrow.bottom{bottom:-10px;border-top-color:white;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.introjs-arrow.left{left:-10px;top:10px;border-top-color:transparent;border-right-color:white;border-bottom-color:transparent;border-left-color:transparent}.introjs-arrow.left-bottom{left:-10px;bottom:10px;border-top-color:transparent;border-right-color:white;border-bottom-color:transparent;border-left-color:transparent}.introjs-tooltip{box-sizing:content-box;position:absolute;visibility:visible;padding:10px;background-color:white;min-width:200px;max-width:300px;border-radius:3px;box-shadow:0 1px 10px rgba(0,0,0,.4);-webkit-transition:opacity .1s ease-out;-moz-transition:opacity .1s ease-out;-ms-transition:opacity .1s ease-out;-o-transition:opacity .1s ease-out;transition:opacity .1s ease-out}.introjs-tooltipbuttons{text-align:right;white-space:nowrap}.introjs-button{box-sizing:content-box;position:relative;overflow:visible;display:inline-block;padding:.3em .8em;border:1px solid #d4d4d4;margin:0;text-decoration:none;text-shadow:1px 1px 0 #fff;font:11px/normal sans-serif;color:#333;white-space:nowrap;cursor:pointer;outline:0;background-color:#ececec;background-image:-webkit-gradient(linear,0 0,0 100%,from(#f4f4f4),to(#ececec));background-image:-moz-linear-gradient(#f4f4f4,#ececec);background-image:-o-linear-gradient(#f4f4f4,#ececec);background-image:linear-gradient(#f4f4f4,#ececec);-webkit-background-clip:padding;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-border-radius:.2em;-moz-border-radius:.2em;border-radius:.2em;zoom:1;*display:inline;margin-top:10px}.introjs-button:hover{border-color:#bcbcbc;text-decoration:none;box-shadow:0 1px 1px #e3e3e3}.introjs-button:focus,.introjs-button:active{background-image:-webkit-gradient(linear,0 0,0 100%,from(#ececec),to(#f4f4f4));background-image:-moz-linear-gradient(#ececec,#f4f4f4);background-image:-o-linear-gradient(#ececec,#f4f4f4);background-image:linear-gradient(#ececec,#f4f4f4)}.introjs-button::-moz-focus-inner{padding:0;border:0}.introjs-skipbutton{box-sizing:content-box;margin-right:5px;color:#7a7a7a}.introjs-prevbutton{-webkit-border-radius:.2em 0 0 .2em;-moz-border-radius:.2em 0 0 .2em;border-radius:.2em 0 0 .2em;border-right:0}.introjs-prevbutton.introjs-fullbutton{border:1px solid #d4d4d4;-webkit-border-radius:.2em;-moz-border-radius:.2em;border-radius:.2em}.introjs-nextbutton{-webkit-border-radius:0 .2em .2em 0;-moz-border-radius:0 .2em .2em 0;border-radius:0 .2em .2em 0}.introjs-nextbutton.introjs-fullbutton{-webkit-border-radius:.2em;-moz-border-radius:.2em;border-radius:.2em}.introjs-disabled,.introjs-disabled:hover,.introjs-disabled:focus{color:#9a9a9a;border-color:#d4d4d4;box-shadow:none;cursor:default;background-color:#f4f4f4;background-image:none;text-decoration:none}.introjs-hidden{display:none}.introjs-bullets{text-align:center}.introjs-bullets ul{box-sizing:content-box;clear:both;margin:15px auto 0;padding:0;display:inline-block}.introjs-bullets ul li{box-sizing:content-box;list-style:none;float:left;margin:0 2px}.introjs-bullets ul li a{box-sizing:content-box;display:block;width:6px;height:6px;background:#ccc;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;text-decoration:none;cursor:pointer}.introjs-bullets ul li a:hover{background:#999}.introjs-bullets ul li a.active{background:#999}.introjs-progress{box-sizing:content-box;overflow:hidden;height:10px;margin:10px 0 5px 0;border-radius:4px;background-color:#ecf0f1}.introjs-progressbar{box-sizing:content-box;float:left;width:0;height:100%;font-size:10px;line-height:10px;text-align:center;background-color:#08c}.introjsFloatingElement{position:absolute;height:0;width:0;left:50%;top:50%}.introjs-fixedTooltip{position:fixed}.introjs-hint{box-sizing:content-box;position:absolute;background:transparent;width:20px;height:15px;cursor:pointer}.introjs-hint:focus{border:0;outline:0}.introjs-hidehint{display:none}.introjs-fixedhint{position:fixed}.introjs-hint:hover>.introjs-hint-pulse{border:5px solid rgba(60,60,60,0.57)}.introjs-hint-pulse{box-sizing:content-box;width:10px;height:10px;border:5px solid rgba(60,60,60,0.27);-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;background-color:rgba(136,136,136,0.24);z-index:10;position:absolute;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out}.introjs-hint-no-anim .introjs-hint-dot{-webkit-animation:none;-moz-animation:none;animation:none}.introjs-hint-dot{box-sizing:content-box;border:10px solid rgba(146,146,146,0.36);background:transparent;-webkit-border-radius:60px;-moz-border-radius:60px;border-radius:60px;height:50px;width:50px;-webkit-animation:introjspulse 3s ease-out;-moz-animation:introjspulse 3s ease-out;animation:introjspulse 3s ease-out;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;animation-iteration-count:infinite;position:absolute;top:-25px;left:-25px;z-index:1;opacity:0}@-moz-keyframes introjspulse{0%{-moz-transform:scale(0);opacity:.0}25%{-moz-transform:scale(0);opacity:.1}50%{-moz-transform:scale(0.1);opacity:.3}75%{-moz-transform:scale(0.5);opacity:.5}100%{-moz-transform:scale(1);opacity:.0}}@-webkit-keyframes introjspulse{0%{-webkit-transform:scale(0);opacity:.0}25%{-webkit-transform:scale(0);opacity:.1}50%{-webkit-transform:scale(0.1);opacity:.3}75%{-webkit-transform:scale(0.5);opacity:.5}100%{-webkit-transform:scale(1);opacity:.0}}
.pc-container {
    position: relative;
    width: 100%;
}

.pc-border {
    position: relative;
    text-align: center;
    width: 100%;
    padding-top: 100%;
    border-radius: 100%;
}

.pc-circle {
    position: relative;
    margin-top: -90%;
    margin-left: 10%;
    width: 80%;
    padding-top: 80%;
    border-radius: 100%;
}

.pc-percent {
    font-family: Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
}
.clps i{margin-right:4px;position:relative;margin-top:-1px}.clps__title{font-weight:300;display:inline-block;transition:all .2s ease;color:#5A5A5A;margin:10px 0 20px}.clps__title:focus,.clps__title:hover{transition:color .2s ease;color:gray;text-decoration:none}.clps--expanded .clps__title{color:gray}.clps__content{display:inline-block;width:100%;position:relative;margin-bottom:10px}.clps__content.ng-hide-add,.clps__content.ng-hide-add-active,.clps__content.ng-hide-remove,.clps__content.ng-hide-remove-active{transition:all .2s ease}.clps__content.ng-hide-add{opacity:1;-webkit-animation:.2s fadeOut;animation:.2s fadeOut}.clps__content.ng-hide-remove{opacity:1;-webkit-animation:.2s fadeInUp;animation:.2s fadeInUp}@-webkit-keyframes fadeInUp{0%{opacity:0;bottom:-10px}100%{opacity:1;bottom:0}}@keyframes fadeInUp{0%{opacity:0;bottom:-10px}100%{opacity:1;bottom:0}}@-webkit-keyframes fadeOut{0%{opacity:1;bottom:0}100%{opacity:0;bottom:-10px}}@keyframes fadeOut{0%{opacity:1;bottom:0}100%{opacity:0;bottom:-10px}}
.dualmultiselect label {
  margin: 10px;
}

.dualmultiselect .btn {
  margin: 10px;
}

.dualmultiselect .list {
  border: 1px solid #999;
  border-radius: 4px;
  padding: 10px;
  margin: 5px;
  height: 150px;
  overflow-y: scroll;
}

.dualmultiselect .list ul {
  list-style: none;
  padding-left: 0px;
}

.dualmultiselect .list ul li {
  width: 100%;
  padding: 4px 8px 4px 4px;
  border-bottom: 1px dotted #CFCFCF;
}

.dualmultiselect .list ul li a:hover {
  text-decoration: none;
}

.dualmultiselect .xs {
  height: 150px;
}

.dualmultiselect .sm {
  height: 225px;
}

.dualmultiselect .md {
  height: 300px;
}

.dualmultiselect .lg {
  height: 450px;
}
/* 
 * Don't modify things marked with ! - unless you know what you're doing
 */

/* ! vertical layout */
.multiSelect .vertical {
    float: none;        
}

/* ! horizontal layout */
.multiSelect .horizontal:not(.multiSelectGroup) {
    float: left;
}

/* ! create a "row" */
.multiSelect .line {
    padding:  2px 0px 4px 0px;
    max-height: 30px;   
    overflow: hidden;
    box-sizing: content-box;
}

/* ! create a "column" */
.multiSelect .acol {
    display: inline-block;    
    min-width: 12px;
}

/* ! */
.multiSelect .inlineBlock {
    display: inline-block;
}

/* the multiselect button */
.multiSelect > button {
    display: inline-block;
    position: relative;
    text-align: center;    
    cursor: pointer;
    border: 1px solid #c6c6c6;    
    padding: 1px 8px 1px 8px;    
    font-size: 14px;
    min-height : 38px !important;
    border-radius: 4px;
    color: #555;   
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none; 
    white-space:normal;
    background-color: #fff;
    background-image: linear-gradient(#fff, #f7f7f7);      
}

/* button: hover */
.multiSelect > button:hover {    
    background-image: linear-gradient(#fff, #e9e9e9);    
}

/* button: disabled */
.multiSelect > button:disabled {
    background-image: linear-gradient(#fff, #fff);      
    border: 1px solid #ddd;    
    color: #999;
}

/* button: clicked */
.multiSelect .buttonClicked {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* labels on the button */
.multiSelect .buttonLabel {
    display: inline-block;
    padding: 5px 0px 5px 0px; 
}

/* downward pointing arrow */
.multiSelect .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0px 0px 1px 12px  !important;    
    vertical-align: middle;
    border-top: 4px solid #333;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0 dotted; 
}

/* the main checkboxes and helper layer */
.multiSelect .checkboxLayer {
    background-color: #fff;
    position: absolute;
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);    
    min-width:278px;
    display: none !important;    
}

/* container of helper elements */
.multiSelect .helperContainer {
    border-bottom: 1px solid #ddd;
    padding: 8px 8px 0px 8px;    
}

/* helper buttons (select all, none, reset); */
.multiSelect .helperButton {
    display: inline;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
    height: 26px;
    font-size: 13px;
    border-radius: 2px;
    color: #666;    
    background-color: #f1f1f1;
    line-height: 1.6;
    margin: 0px 0px 8px 0px;
}

.multiSelect .helperButton.reset{
    float: right;
}

.multiSelect .helperButton:not( .reset ) {
    margin-right: 4px;    
}

/* clear button */
.multiSelect .clearButton {
    position: absolute;
    display: inline;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
    height: 22px;
    width: 22px;
    font-size: 13px;
    border-radius: 2px;
    color: #666;    
    background-color: #f1f1f1;
    line-height: 1.4;
    right : 2px;
    top: 4px;
}

/* filter */
.multiSelect .inputFilter {
    border-radius: 2px; 
    border: 1px solid #ccc;
    height: 26px;
    font-size: 14px;
    width:100%;    
    padding-left:7px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */    
    color: #888;
    margin: 0px 0px 8px 0px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

/* helper elements on hover & focus */
.multiSelect .clearButton:hover,
.multiSelect .helperButton:hover {
    border: 1px solid #ccc;
    color: #999;    
    background-color: #f4f4f4;    
}
.multiSelect .helperButton:disabled {
    color: #ccc;    
    border: 1px solid #ddd;
}

.multiSelect .clearButton:focus,
.multiSelect .helperButton:focus,
.multiSelect .inputFilter:focus {
    border: 1px solid #66AFE9 !important;
    outline: 0;
    -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,.065), 0 0 5px rgba(102, 175, 233, .6) !important;
            box-shadow: inset 0 0 1px rgba(0,0,0,.065), 0 0 5px rgba(102, 175, 233, .6) !important;
}

/* container of multi select items */
.multiSelect .checkBoxContainer {
    display: block;
    padding: 8px;   
    overflow: hidden;
}

/* ! to show / hide the checkbox layer above */
.multiSelect .show {
    display: block !important;
}

/* item labels */
.multiSelect .multiSelectItem {
    display: block;
    padding: 3px;
    color: #444;       
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;      
    border: 1px solid transparent;
    position: relative;
    min-width:278px;    
    min-height: 32px;    
}

/* Styling on selected items */
.multiSelect .multiSelectItem:not(.multiSelectGroup).selected
{
    background-image: linear-gradient( #e9e9e9, #f1f1f1 );    
    color: #555;        
    cursor: pointer;        
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;    
    border-right: 1px solid #d9d9d9;            
}

.multiSelect .multiSelectItem .acol label {
    display: inline-block;
    padding-right: 30px;    
    margin: 0px;
    font-weight: normal;    
    line-height: normal;
}

/* item labels focus on mouse hover */
.multiSelect .multiSelectItem:hover, 
.multiSelect .multiSelectGroup:hover {
    background-image: linear-gradient( #c1c1c1, #999 ) !important;    
    color: #fff !important;    
    cursor: pointer;        
    border: 1px solid #ccc !important;
}

/* item labels focus using keyboard */
.multiSelect .multiSelectFocus { 
    background-image: linear-gradient( #c1c1c1, #999 ) !important;    
    color: #fff !important;    
    cursor: pointer;        
    border: 1px solid #ccc !important;
}

/* change mouse pointer into the pointing finger */
.multiSelect .multiSelectItem span:hover, 
.multiSelect .multiSelectGroup span:hover
{    
    cursor: pointer;  
}

/* ! group labels */
.multiSelect .multiSelectGroup {    
    display: block;
    clear: both;
}

/* right-align the tick mark (&#10004;) */
.multiSelect .tickMark {
    display:inline-block; 
    position: absolute; 
    right: 10px; 
    top: 7px;
    font-size: 10px;          
}

/* hide the original HTML checkbox away */
.multiSelect .checkbox {    
    color: #ddd !important;    
    position: absolute;
    left: -9999px;
    cursor: pointer;    
}

/* checkboxes currently disabled */
.multiSelect .disabled, 
.multiSelect .disabled:hover,
.multiSelect .disabled label input:hover ~ span {
    color: #c4c4c4 !important;
    cursor: not-allowed !important;
}

/* If you use images in button / checkbox label, you might want to change the image style here. */
.multiSelect img {
    vertical-align: middle;
    margin-bottom:0px;
    max-height: 22px;
    max-width:22px;
}

/* This is the core CSS of Tooltipster */

/* GENERAL STRUCTURE RULES (do not edit this section) */

.tooltipster-base {
	/* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
	display: flex;
	pointer-events: none;
	/* this may be overriden in JS for fixed position origins */
	position: absolute;
}

.tooltipster-box {
	/* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
	flex: 1 1 auto;
}

.tooltipster-content {
	/* prevents an overflow if the user adds padding to the div */
	box-sizing: border-box;
	/* these make sure we'll be able to detect any overflow */
	max-height: 100%;
	max-width: 100%;
	overflow: auto;
}

.tooltipster-ruler {
	/* these let us test the size of the tooltip without overflowing the window */
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
}

/* ANIMATIONS */

/* Open/close animations */

/* fade */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
	opacity: 1;
}

/* grow */

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

/* swing */

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing.tooltipster-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

/* fall */

.tooltipster-fall {
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall.tooltipster-initial {
	top: 0 !important;
}
.tooltipster-fall.tooltipster-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0 !important;
	opacity: 0;
}

/* slide */

.tooltipster-slide {
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-initial {
	left: -40px !important;
}
.tooltipster-slide.tooltipster-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0 !important;
	opacity: 0;
}

/* Update animations */

/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */

/* fade */

@keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.tooltipster-update-fade {
	animation: tooltipster-fading 400ms;
}

/* rotate */

@keyframes tooltipster-rotating {
	25% {
		transform: rotate(-2deg);
	}
	75% {
		transform: rotate(2deg);
	}
	100% {
		transform: rotate(0);
	}
}

.tooltipster-update-rotate {
	animation: tooltipster-rotating 600ms;
}

/* scale */

@keyframes tooltipster-scaling {
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.tooltipster-update-scale {
	animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */

/* .tooltipster-box */

.tooltipster-sidetip .tooltipster-box {
	background: #565656;
	border: 2px solid black;
	border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
	margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
	margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
	margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
	margin-bottom: 8px;
}

/* .tooltipster-content */

.tooltipster-sidetip .tooltipster-content {
	color: white;
	line-height: 18px;
	padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */

.tooltipster-sidetip .tooltipster-arrow {
	overflow: hidden;
	position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
	height: 10px;
	/* half the width, for centering */
	margin-left: -10px;
	top: 0;
	width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	right: 0;
	/* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	left: 0;
	/* same as .tooltipster-left .tooltipster-arrow */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
	bottom: 0;
	height: 10px;
	margin-left: -10px;
	width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
	height: 0;
	position: absolute;
	width: 0;
}

/* .tooltipster-arrow-background */

.tooltipster-sidetip .tooltipster-arrow-background {
	border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: #565656;
	left: 0px;
	top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: #565656;
	left: -3px;
	top: 0px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: #565656;
	left: 3px;
	top: 0px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: #565656;
	left: 0px;
	top: -3px;
}

/* .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-border {
	border: 10px solid transparent;
	left: 0;
	top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
	border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
	border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
	border-top-color: black;
}

/* tooltipster-arrow-uncropped */

.tooltipster-sidetip .tooltipster-arrow-uncropped {
	position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
	top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
	left: -10px;
}

.tooltipster-default{background-color:#8e8e8e}.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border{background-color:white}.tooltipster-base>.tooltipster-content{line-height:0 !important;padding:0 !important}
.tooltipster-light{border-radius:5px;border:1px solid #ccc;background:#ededed;color:#666}.tooltipster-light .tooltipster-content{font-family:Arial,sans-serif;font-size:14px;line-height:16px;padding:8px 10px}
.tooltipster-noir{border-radius:0;border:3px solid #2c2c2c;background:#fff;color:#2c2c2c}.tooltipster-noir .tooltipster-content{font-family:'Georgia',serif;font-size:14px;line-height:16px;padding:8px 10px}
.tooltipster-punk{border-radius:5px;border-bottom:3px solid #f71169;background:#2a2a2a;color:#fff}.tooltipster-punk .tooltipster-content{font-family:'Courier',monospace;font-size:14px;line-height:16px;padding:8px 10px}
.tooltipster-shadow{border-radius:5px;background:#fff;box-shadow:0 0 14px rgba(0,0,0,0.3);color:#2c2c2c}.tooltipster-shadow .tooltipster-content{font-family:'Arial',sans-serif;font-size:14px;line-height:16px;padding:8px 10px}
.tooltipster-default{border-radius:5px;border:2px solid #000;background:#4c4c4c;color:#fff}.tooltipster-default .tooltipster-content{font-family:Arial,sans-serif;font-size:14px;line-height:16px;padding:8px 10px;overflow:hidden}.tooltipster-icon{cursor:help;margin-left:4px}.tooltipster-base{padding:0;font-size:0;line-height:0;position:absolute;left:0;top:0;z-index:9999999;pointer-events:none;width:auto;overflow:visible}.tooltipster-base .tooltipster-content{overflow:hidden}.tooltipster-arrow{display:block;text-align:center;width:100%;height:100%;position:absolute;top:0;left:0;z-index:-1}.tooltipster-arrow span,.tooltipster-arrow-border{display:block;width:0;height:0;position:absolute}.tooltipster-arrow-top span,.tooltipster-arrow-top-right span,.tooltipster-arrow-top-left span{border-left:8px solid transparent !important;border-right:8px solid transparent !important;border-top:8px solid;bottom:-7px}.tooltipster-arrow-top .tooltipster-arrow-border,.tooltipster-arrow-top-right .tooltipster-arrow-border,.tooltipster-arrow-top-left .tooltipster-arrow-border{border-left:9px solid transparent !important;border-right:9px solid transparent !important;border-top:9px solid;bottom:-7px}.tooltipster-arrow-bottom span,.tooltipster-arrow-bottom-right span,.tooltipster-arrow-bottom-left span{border-left:8px solid transparent !important;border-right:8px solid transparent !important;border-bottom:8px solid;top:-7px}.tooltipster-arrow-bottom .tooltipster-arrow-border,.tooltipster-arrow-bottom-right .tooltipster-arrow-border,.tooltipster-arrow-bottom-left .tooltipster-arrow-border{border-left:9px solid transparent !important;border-right:9px solid transparent !important;border-bottom:9px solid;top:-7px}.tooltipster-arrow-top span,.tooltipster-arrow-top .tooltipster-arrow-border,.tooltipster-arrow-bottom span,.tooltipster-arrow-bottom .tooltipster-arrow-border{left:0;right:0;margin:0 auto}.tooltipster-arrow-top-left span,.tooltipster-arrow-bottom-left span{left:6px}.tooltipster-arrow-top-left .tooltipster-arrow-border,.tooltipster-arrow-bottom-left .tooltipster-arrow-border{left:5px}.tooltipster-arrow-top-right span,.tooltipster-arrow-bottom-right span{right:6px}.tooltipster-arrow-top-right .tooltipster-arrow-border,.tooltipster-arrow-bottom-right .tooltipster-arrow-border{right:5px}.tooltipster-arrow-left span,.tooltipster-arrow-left .tooltipster-arrow-border{border-top:8px solid transparent !important;border-bottom:8px solid transparent !important;border-left:8px solid;top:50%;margin-top:-7px;right:-7px}.tooltipster-arrow-left .tooltipster-arrow-border{border-top:9px solid transparent !important;border-bottom:9px solid transparent !important;border-left:9px solid;margin-top:-8px}.tooltipster-arrow-right span,.tooltipster-arrow-right .tooltipster-arrow-border{border-top:8px solid transparent !important;border-bottom:8px solid transparent !important;border-right:8px solid;top:50%;margin-top:-7px;left:-7px}.tooltipster-arrow-right .tooltipster-arrow-border{border-top:9px solid transparent !important;border-bottom:9px solid transparent !important;border-right:9px solid;margin-top:-8px}.tooltipster-fade{opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;-ms-transition-property:opacity;transition-property:opacity}.tooltipster-fade-show{opacity:1}.tooltipster-grow{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-backface-visibility:hidden}.tooltipster-grow-show{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1);-webkit-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1);-webkit-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);-moz-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);-ms-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);-o-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15)}.tooltipster-swing{opacity:0;-webkit-transform:rotateZ(4deg);-moz-transform:rotateZ(4deg);-o-transform:rotateZ(4deg);-ms-transform:rotateZ(4deg);transform:rotateZ(4deg);-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform}.tooltipster-swing-show{opacity:1;-webkit-transform:rotateZ(0);-moz-transform:rotateZ(0);-o-transform:rotateZ(0);-ms-transform:rotateZ(0);transform:rotateZ(0);-webkit-transition-timing-function:cubic-bezier(0.230,0.635,0.495,1);-webkit-transition-timing-function:cubic-bezier(0.230,0.635,0.495,2.4);-moz-transition-timing-function:cubic-bezier(0.230,0.635,0.495,2.4);-ms-transition-timing-function:cubic-bezier(0.230,0.635,0.495,2.4);-o-transition-timing-function:cubic-bezier(0.230,0.635,0.495,2.4);transition-timing-function:cubic-bezier(0.230,0.635,0.495,2.4)}.tooltipster-fall{top:0;-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;-ms-transition-property:top;transition-property:top;-webkit-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1);-webkit-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);-moz-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);-ms-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);-o-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15)}.tooltipster-fall.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;top:0 !important;opacity:0}.tooltipster-slide{left:-40px;-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;-ms-transition-property:left;transition-property:left;-webkit-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1);-webkit-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);-moz-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);-ms-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);-o-transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15);transition-timing-function:cubic-bezier(0.175,0.885,0.320,1.15)}.tooltipster-slide.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;left:0 !important;opacity:0}.tooltipster-content-changing{opacity:.5;-webkit-transform:scale(1.1,1.1);-moz-transform:scale(1.1,1.1);-o-transform:scale(1.1,1.1);-ms-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}
.flag-icon,.flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.flag-icon{position:relative;display:inline-block;width:1.33333333em;line-height:1em}.flag-icon:before{content:"\00a0"}.flag-icon.flag-icon-squared{width:1em}.flag-icon-ad{background-image:url(../flags/4x3/ad.svg)}.flag-icon-ad.flag-icon-squared{background-image:url(../flags/1x1/ad.svg)}.flag-icon-ae{background-image:url(../flags/4x3/ae.svg)}.flag-icon-ae.flag-icon-squared{background-image:url(../flags/1x1/ae.svg)}.flag-icon-af{background-image:url(../flags/4x3/af.svg)}.flag-icon-af.flag-icon-squared{background-image:url(../flags/1x1/af.svg)}.flag-icon-ag{background-image:url(../flags/4x3/ag.svg)}.flag-icon-ag.flag-icon-squared{background-image:url(../flags/1x1/ag.svg)}.flag-icon-ai{background-image:url(../flags/4x3/ai.svg)}.flag-icon-ai.flag-icon-squared{background-image:url(../flags/1x1/ai.svg)}.flag-icon-al{background-image:url(../flags/4x3/al.svg)}.flag-icon-al.flag-icon-squared{background-image:url(../flags/1x1/al.svg)}.flag-icon-am{background-image:url(../flags/4x3/am.svg)}.flag-icon-am.flag-icon-squared{background-image:url(../flags/1x1/am.svg)}.flag-icon-ao{background-image:url(../flags/4x3/ao.svg)}.flag-icon-ao.flag-icon-squared{background-image:url(../flags/1x1/ao.svg)}.flag-icon-aq{background-image:url(../flags/4x3/aq.svg)}.flag-icon-aq.flag-icon-squared{background-image:url(../flags/1x1/aq.svg)}.flag-icon-ar{background-image:url(../flags/4x3/ar.svg)}.flag-icon-ar.flag-icon-squared{background-image:url(../flags/1x1/ar.svg)}.flag-icon-as{background-image:url(../flags/4x3/as.svg)}.flag-icon-as.flag-icon-squared{background-image:url(../flags/1x1/as.svg)}.flag-icon-at{background-image:url(../flags/4x3/at.svg)}.flag-icon-at.flag-icon-squared{background-image:url(../flags/1x1/at.svg)}.flag-icon-au{background-image:url(../flags/4x3/au.svg)}.flag-icon-au.flag-icon-squared{background-image:url(../flags/1x1/au.svg)}.flag-icon-aw{background-image:url(../flags/4x3/aw.svg)}.flag-icon-aw.flag-icon-squared{background-image:url(../flags/1x1/aw.svg)}.flag-icon-ax{background-image:url(../flags/4x3/ax.svg)}.flag-icon-ax.flag-icon-squared{background-image:url(../flags/1x1/ax.svg)}.flag-icon-az{background-image:url(../flags/4x3/az.svg)}.flag-icon-az.flag-icon-squared{background-image:url(../flags/1x1/az.svg)}.flag-icon-ba{background-image:url(../flags/4x3/ba.svg)}.flag-icon-ba.flag-icon-squared{background-image:url(../flags/1x1/ba.svg)}.flag-icon-bb{background-image:url(../flags/4x3/bb.svg)}.flag-icon-bb.flag-icon-squared{background-image:url(../flags/1x1/bb.svg)}.flag-icon-bd{background-image:url(../flags/4x3/bd.svg)}.flag-icon-bd.flag-icon-squared{background-image:url(../flags/1x1/bd.svg)}.flag-icon-be{background-image:url(../flags/4x3/be.svg)}.flag-icon-be.flag-icon-squared{background-image:url(../flags/1x1/be.svg)}.flag-icon-bf{background-image:url(../flags/4x3/bf.svg)}.flag-icon-bf.flag-icon-squared{background-image:url(../flags/1x1/bf.svg)}.flag-icon-bg{background-image:url(../flags/4x3/bg.svg)}.flag-icon-bg.flag-icon-squared{background-image:url(../flags/1x1/bg.svg)}.flag-icon-bh{background-image:url(../flags/4x3/bh.svg)}.flag-icon-bh.flag-icon-squared{background-image:url(../flags/1x1/bh.svg)}.flag-icon-bi{background-image:url(../flags/4x3/bi.svg)}.flag-icon-bi.flag-icon-squared{background-image:url(../flags/1x1/bi.svg)}.flag-icon-bj{background-image:url(../flags/4x3/bj.svg)}.flag-icon-bj.flag-icon-squared{background-image:url(../flags/1x1/bj.svg)}.flag-icon-bl{background-image:url(../flags/4x3/bl.svg)}.flag-icon-bl.flag-icon-squared{background-image:url(../flags/1x1/bl.svg)}.flag-icon-bm{background-image:url(../flags/4x3/bm.svg)}.flag-icon-bm.flag-icon-squared{background-image:url(../flags/1x1/bm.svg)}.flag-icon-bn{background-image:url(../flags/4x3/bn.svg)}.flag-icon-bn.flag-icon-squared{background-image:url(../flags/1x1/bn.svg)}.flag-icon-bo{background-image:url(../flags/4x3/bo.svg)}.flag-icon-bo.flag-icon-squared{background-image:url(../flags/1x1/bo.svg)}.flag-icon-bq{background-image:url(../flags/4x3/bq.svg)}.flag-icon-bq.flag-icon-squared{background-image:url(../flags/1x1/bq.svg)}.flag-icon-br{background-image:url(../flags/4x3/br.svg)}.flag-icon-br.flag-icon-squared{background-image:url(../flags/1x1/br.svg)}.flag-icon-bs{background-image:url(../flags/4x3/bs.svg)}.flag-icon-bs.flag-icon-squared{background-image:url(../flags/1x1/bs.svg)}.flag-icon-bt{background-image:url(../flags/4x3/bt.svg)}.flag-icon-bt.flag-icon-squared{background-image:url(../flags/1x1/bt.svg)}.flag-icon-bv{background-image:url(../flags/4x3/bv.svg)}.flag-icon-bv.flag-icon-squared{background-image:url(../flags/1x1/bv.svg)}.flag-icon-bw{background-image:url(../flags/4x3/bw.svg)}.flag-icon-bw.flag-icon-squared{background-image:url(../flags/1x1/bw.svg)}.flag-icon-by{background-image:url(../flags/4x3/by.svg)}.flag-icon-by.flag-icon-squared{background-image:url(../flags/1x1/by.svg)}.flag-icon-bz{background-image:url(../flags/4x3/bz.svg)}.flag-icon-bz.flag-icon-squared{background-image:url(../flags/1x1/bz.svg)}.flag-icon-ca{background-image:url(../flags/4x3/ca.svg)}.flag-icon-ca.flag-icon-squared{background-image:url(../flags/1x1/ca.svg)}.flag-icon-cc{background-image:url(../flags/4x3/cc.svg)}.flag-icon-cc.flag-icon-squared{background-image:url(../flags/1x1/cc.svg)}.flag-icon-cd{background-image:url(../flags/4x3/cd.svg)}.flag-icon-cd.flag-icon-squared{background-image:url(../flags/1x1/cd.svg)}.flag-icon-cf{background-image:url(../flags/4x3/cf.svg)}.flag-icon-cf.flag-icon-squared{background-image:url(../flags/1x1/cf.svg)}.flag-icon-cg{background-image:url(../flags/4x3/cg.svg)}.flag-icon-cg.flag-icon-squared{background-image:url(../flags/1x1/cg.svg)}.flag-icon-ch{background-image:url(../flags/4x3/ch.svg)}.flag-icon-ch.flag-icon-squared{background-image:url(../flags/1x1/ch.svg)}.flag-icon-ci{background-image:url(../flags/4x3/ci.svg)}.flag-icon-ci.flag-icon-squared{background-image:url(../flags/1x1/ci.svg)}.flag-icon-ck{background-image:url(../flags/4x3/ck.svg)}.flag-icon-ck.flag-icon-squared{background-image:url(../flags/1x1/ck.svg)}.flag-icon-cl{background-image:url(../flags/4x3/cl.svg)}.flag-icon-cl.flag-icon-squared{background-image:url(../flags/1x1/cl.svg)}.flag-icon-cm{background-image:url(../flags/4x3/cm.svg)}.flag-icon-cm.flag-icon-squared{background-image:url(../flags/1x1/cm.svg)}.flag-icon-cn{background-image:url(../flags/4x3/cn.svg)}.flag-icon-cn.flag-icon-squared{background-image:url(../flags/1x1/cn.svg)}.flag-icon-co{background-image:url(../flags/4x3/co.svg)}.flag-icon-co.flag-icon-squared{background-image:url(../flags/1x1/co.svg)}.flag-icon-cr{background-image:url(../flags/4x3/cr.svg)}.flag-icon-cr.flag-icon-squared{background-image:url(../flags/1x1/cr.svg)}.flag-icon-cu{background-image:url(../flags/4x3/cu.svg)}.flag-icon-cu.flag-icon-squared{background-image:url(../flags/1x1/cu.svg)}.flag-icon-cv{background-image:url(../flags/4x3/cv.svg)}.flag-icon-cv.flag-icon-squared{background-image:url(../flags/1x1/cv.svg)}.flag-icon-cw{background-image:url(../flags/4x3/cw.svg)}.flag-icon-cw.flag-icon-squared{background-image:url(../flags/1x1/cw.svg)}.flag-icon-cx{background-image:url(../flags/4x3/cx.svg)}.flag-icon-cx.flag-icon-squared{background-image:url(../flags/1x1/cx.svg)}.flag-icon-cy{background-image:url(../flags/4x3/cy.svg)}.flag-icon-cy.flag-icon-squared{background-image:url(../flags/1x1/cy.svg)}.flag-icon-cz{background-image:url(../flags/4x3/cz.svg)}.flag-icon-cz.flag-icon-squared{background-image:url(../flags/1x1/cz.svg)}.flag-icon-de{background-image:url(../flags/4x3/de.svg)}.flag-icon-de.flag-icon-squared{background-image:url(../flags/1x1/de.svg)}.flag-icon-dj{background-image:url(../flags/4x3/dj.svg)}.flag-icon-dj.flag-icon-squared{background-image:url(../flags/1x1/dj.svg)}.flag-icon-dk{background-image:url(../flags/4x3/dk.svg)}.flag-icon-dk.flag-icon-squared{background-image:url(../flags/1x1/dk.svg)}.flag-icon-dm{background-image:url(../flags/4x3/dm.svg)}.flag-icon-dm.flag-icon-squared{background-image:url(../flags/1x1/dm.svg)}.flag-icon-do{background-image:url(../flags/4x3/do.svg)}.flag-icon-do.flag-icon-squared{background-image:url(../flags/1x1/do.svg)}.flag-icon-dz{background-image:url(../flags/4x3/dz.svg)}.flag-icon-dz.flag-icon-squared{background-image:url(../flags/1x1/dz.svg)}.flag-icon-ec{background-image:url(../flags/4x3/ec.svg)}.flag-icon-ec.flag-icon-squared{background-image:url(../flags/1x1/ec.svg)}.flag-icon-ee{background-image:url(../flags/4x3/ee.svg)}.flag-icon-ee.flag-icon-squared{background-image:url(../flags/1x1/ee.svg)}.flag-icon-eg{background-image:url(../flags/4x3/eg.svg)}.flag-icon-eg.flag-icon-squared{background-image:url(../flags/1x1/eg.svg)}.flag-icon-eh{background-image:url(../flags/4x3/eh.svg)}.flag-icon-eh.flag-icon-squared{background-image:url(../flags/1x1/eh.svg)}.flag-icon-er{background-image:url(../flags/4x3/er.svg)}.flag-icon-er.flag-icon-squared{background-image:url(../flags/1x1/er.svg)}.flag-icon-es{background-image:url(../flags/4x3/es.svg)}.flag-icon-es.flag-icon-squared{background-image:url(../flags/1x1/es.svg)}.flag-icon-et{background-image:url(../flags/4x3/et.svg)}.flag-icon-et.flag-icon-squared{background-image:url(../flags/1x1/et.svg)}.flag-icon-fi{background-image:url(../flags/4x3/fi.svg)}.flag-icon-fi.flag-icon-squared{background-image:url(../flags/1x1/fi.svg)}.flag-icon-fj{background-image:url(../flags/4x3/fj.svg)}.flag-icon-fj.flag-icon-squared{background-image:url(../flags/1x1/fj.svg)}.flag-icon-fk{background-image:url(../flags/4x3/fk.svg)}.flag-icon-fk.flag-icon-squared{background-image:url(../flags/1x1/fk.svg)}.flag-icon-fm{background-image:url(../flags/4x3/fm.svg)}.flag-icon-fm.flag-icon-squared{background-image:url(../flags/1x1/fm.svg)}.flag-icon-fo{background-image:url(../flags/4x3/fo.svg)}.flag-icon-fo.flag-icon-squared{background-image:url(../flags/1x1/fo.svg)}.flag-icon-fr{background-image:url(../flags/4x3/fr.svg)}.flag-icon-fr.flag-icon-squared{background-image:url(../flags/1x1/fr.svg)}.flag-icon-ga{background-image:url(../flags/4x3/ga.svg)}.flag-icon-ga.flag-icon-squared{background-image:url(../flags/1x1/ga.svg)}.flag-icon-gb{background-image:url(../flags/4x3/gb.svg)}.flag-icon-gb.flag-icon-squared{background-image:url(../flags/1x1/gb.svg)}.flag-icon-gd{background-image:url(../flags/4x3/gd.svg)}.flag-icon-gd.flag-icon-squared{background-image:url(../flags/1x1/gd.svg)}.flag-icon-ge{background-image:url(../flags/4x3/ge.svg)}.flag-icon-ge.flag-icon-squared{background-image:url(../flags/1x1/ge.svg)}.flag-icon-gf{background-image:url(../flags/4x3/gf.svg)}.flag-icon-gf.flag-icon-squared{background-image:url(../flags/1x1/gf.svg)}.flag-icon-gg{background-image:url(../flags/4x3/gg.svg)}.flag-icon-gg.flag-icon-squared{background-image:url(../flags/1x1/gg.svg)}.flag-icon-gh{background-image:url(../flags/4x3/gh.svg)}.flag-icon-gh.flag-icon-squared{background-image:url(../flags/1x1/gh.svg)}.flag-icon-gi{background-image:url(../flags/4x3/gi.svg)}.flag-icon-gi.flag-icon-squared{background-image:url(../flags/1x1/gi.svg)}.flag-icon-gl{background-image:url(../flags/4x3/gl.svg)}.flag-icon-gl.flag-icon-squared{background-image:url(../flags/1x1/gl.svg)}.flag-icon-gm{background-image:url(../flags/4x3/gm.svg)}.flag-icon-gm.flag-icon-squared{background-image:url(../flags/1x1/gm.svg)}.flag-icon-gn{background-image:url(../flags/4x3/gn.svg)}.flag-icon-gn.flag-icon-squared{background-image:url(../flags/1x1/gn.svg)}.flag-icon-gp{background-image:url(../flags/4x3/gp.svg)}.flag-icon-gp.flag-icon-squared{background-image:url(../flags/1x1/gp.svg)}.flag-icon-gq{background-image:url(../flags/4x3/gq.svg)}.flag-icon-gq.flag-icon-squared{background-image:url(../flags/1x1/gq.svg)}.flag-icon-gr{background-image:url(../flags/4x3/gr.svg)}.flag-icon-gr.flag-icon-squared{background-image:url(../flags/1x1/gr.svg)}.flag-icon-gs{background-image:url(../flags/4x3/gs.svg)}.flag-icon-gs.flag-icon-squared{background-image:url(../flags/1x1/gs.svg)}.flag-icon-gt{background-image:url(../flags/4x3/gt.svg)}.flag-icon-gt.flag-icon-squared{background-image:url(../flags/1x1/gt.svg)}.flag-icon-gu{background-image:url(../flags/4x3/gu.svg)}.flag-icon-gu.flag-icon-squared{background-image:url(../flags/1x1/gu.svg)}.flag-icon-gw{background-image:url(../flags/4x3/gw.svg)}.flag-icon-gw.flag-icon-squared{background-image:url(../flags/1x1/gw.svg)}.flag-icon-gy{background-image:url(../flags/4x3/gy.svg)}.flag-icon-gy.flag-icon-squared{background-image:url(../flags/1x1/gy.svg)}.flag-icon-hk{background-image:url(../flags/4x3/hk.svg)}.flag-icon-hk.flag-icon-squared{background-image:url(../flags/1x1/hk.svg)}.flag-icon-hm{background-image:url(../flags/4x3/hm.svg)}.flag-icon-hm.flag-icon-squared{background-image:url(../flags/1x1/hm.svg)}.flag-icon-hn{background-image:url(../flags/4x3/hn.svg)}.flag-icon-hn.flag-icon-squared{background-image:url(../flags/1x1/hn.svg)}.flag-icon-hr{background-image:url(../flags/4x3/hr.svg)}.flag-icon-hr.flag-icon-squared{background-image:url(../flags/1x1/hr.svg)}.flag-icon-ht{background-image:url(../flags/4x3/ht.svg)}.flag-icon-ht.flag-icon-squared{background-image:url(../flags/1x1/ht.svg)}.flag-icon-hu{background-image:url(../flags/4x3/hu.svg)}.flag-icon-hu.flag-icon-squared{background-image:url(../flags/1x1/hu.svg)}.flag-icon-id{background-image:url(../flags/4x3/id.svg)}.flag-icon-id.flag-icon-squared{background-image:url(../flags/1x1/id.svg)}.flag-icon-ie{background-image:url(../flags/4x3/ie.svg)}.flag-icon-ie.flag-icon-squared{background-image:url(../flags/1x1/ie.svg)}.flag-icon-il{background-image:url(../flags/4x3/il.svg)}.flag-icon-il.flag-icon-squared{background-image:url(../flags/1x1/il.svg)}.flag-icon-im{background-image:url(../flags/4x3/im.svg)}.flag-icon-im.flag-icon-squared{background-image:url(../flags/1x1/im.svg)}.flag-icon-in{background-image:url(../flags/4x3/in.svg)}.flag-icon-in.flag-icon-squared{background-image:url(../flags/1x1/in.svg)}.flag-icon-io{background-image:url(../flags/4x3/io.svg)}.flag-icon-io.flag-icon-squared{background-image:url(../flags/1x1/io.svg)}.flag-icon-iq{background-image:url(../flags/4x3/iq.svg)}.flag-icon-iq.flag-icon-squared{background-image:url(../flags/1x1/iq.svg)}.flag-icon-ir{background-image:url(../flags/4x3/ir.svg)}.flag-icon-ir.flag-icon-squared{background-image:url(../flags/1x1/ir.svg)}.flag-icon-is{background-image:url(../flags/4x3/is.svg)}.flag-icon-is.flag-icon-squared{background-image:url(../flags/1x1/is.svg)}.flag-icon-it{background-image:url(../flags/4x3/it.svg)}.flag-icon-it.flag-icon-squared{background-image:url(../flags/1x1/it.svg)}.flag-icon-je{background-image:url(../flags/4x3/je.svg)}.flag-icon-je.flag-icon-squared{background-image:url(../flags/1x1/je.svg)}.flag-icon-jm{background-image:url(../flags/4x3/jm.svg)}.flag-icon-jm.flag-icon-squared{background-image:url(../flags/1x1/jm.svg)}.flag-icon-jo{background-image:url(../flags/4x3/jo.svg)}.flag-icon-jo.flag-icon-squared{background-image:url(../flags/1x1/jo.svg)}.flag-icon-jp{background-image:url(../flags/4x3/jp.svg)}.flag-icon-jp.flag-icon-squared{background-image:url(../flags/1x1/jp.svg)}.flag-icon-ke{background-image:url(../flags/4x3/ke.svg)}.flag-icon-ke.flag-icon-squared{background-image:url(../flags/1x1/ke.svg)}.flag-icon-kg{background-image:url(../flags/4x3/kg.svg)}.flag-icon-kg.flag-icon-squared{background-image:url(../flags/1x1/kg.svg)}.flag-icon-kh{background-image:url(../flags/4x3/kh.svg)}.flag-icon-kh.flag-icon-squared{background-image:url(../flags/1x1/kh.svg)}.flag-icon-ki{background-image:url(../flags/4x3/ki.svg)}.flag-icon-ki.flag-icon-squared{background-image:url(../flags/1x1/ki.svg)}.flag-icon-km{background-image:url(../flags/4x3/km.svg)}.flag-icon-km.flag-icon-squared{background-image:url(../flags/1x1/km.svg)}.flag-icon-kn{background-image:url(../flags/4x3/kn.svg)}.flag-icon-kn.flag-icon-squared{background-image:url(../flags/1x1/kn.svg)}.flag-icon-kp{background-image:url(../flags/4x3/kp.svg)}.flag-icon-kp.flag-icon-squared{background-image:url(../flags/1x1/kp.svg)}.flag-icon-kr{background-image:url(../flags/4x3/kr.svg)}.flag-icon-kr.flag-icon-squared{background-image:url(../flags/1x1/kr.svg)}.flag-icon-kw{background-image:url(../flags/4x3/kw.svg)}.flag-icon-kw.flag-icon-squared{background-image:url(../flags/1x1/kw.svg)}.flag-icon-ky{background-image:url(../flags/4x3/ky.svg)}.flag-icon-ky.flag-icon-squared{background-image:url(../flags/1x1/ky.svg)}.flag-icon-kz{background-image:url(../flags/4x3/kz.svg)}.flag-icon-kz.flag-icon-squared{background-image:url(../flags/1x1/kz.svg)}.flag-icon-la{background-image:url(../flags/4x3/la.svg)}.flag-icon-la.flag-icon-squared{background-image:url(../flags/1x1/la.svg)}.flag-icon-lb{background-image:url(../flags/4x3/lb.svg)}.flag-icon-lb.flag-icon-squared{background-image:url(../flags/1x1/lb.svg)}.flag-icon-lc{background-image:url(../flags/4x3/lc.svg)}.flag-icon-lc.flag-icon-squared{background-image:url(../flags/1x1/lc.svg)}.flag-icon-li{background-image:url(../flags/4x3/li.svg)}.flag-icon-li.flag-icon-squared{background-image:url(../flags/1x1/li.svg)}.flag-icon-lk{background-image:url(../flags/4x3/lk.svg)}.flag-icon-lk.flag-icon-squared{background-image:url(../flags/1x1/lk.svg)}.flag-icon-lr{background-image:url(../flags/4x3/lr.svg)}.flag-icon-lr.flag-icon-squared{background-image:url(../flags/1x1/lr.svg)}.flag-icon-ls{background-image:url(../flags/4x3/ls.svg)}.flag-icon-ls.flag-icon-squared{background-image:url(../flags/1x1/ls.svg)}.flag-icon-lt{background-image:url(../flags/4x3/lt.svg)}.flag-icon-lt.flag-icon-squared{background-image:url(../flags/1x1/lt.svg)}.flag-icon-lu{background-image:url(../flags/4x3/lu.svg)}.flag-icon-lu.flag-icon-squared{background-image:url(../flags/1x1/lu.svg)}.flag-icon-lv{background-image:url(../flags/4x3/lv.svg)}.flag-icon-lv.flag-icon-squared{background-image:url(../flags/1x1/lv.svg)}.flag-icon-ly{background-image:url(../flags/4x3/ly.svg)}.flag-icon-ly.flag-icon-squared{background-image:url(../flags/1x1/ly.svg)}.flag-icon-ma{background-image:url(../flags/4x3/ma.svg)}.flag-icon-ma.flag-icon-squared{background-image:url(../flags/1x1/ma.svg)}.flag-icon-mc{background-image:url(../flags/4x3/mc.svg)}.flag-icon-mc.flag-icon-squared{background-image:url(../flags/1x1/mc.svg)}.flag-icon-md{background-image:url(../flags/4x3/md.svg)}.flag-icon-md.flag-icon-squared{background-image:url(../flags/1x1/md.svg)}.flag-icon-me{background-image:url(../flags/4x3/me.svg)}.flag-icon-me.flag-icon-squared{background-image:url(../flags/1x1/me.svg)}.flag-icon-mf{background-image:url(../flags/4x3/mf.svg)}.flag-icon-mf.flag-icon-squared{background-image:url(../flags/1x1/mf.svg)}.flag-icon-mg{background-image:url(../flags/4x3/mg.svg)}.flag-icon-mg.flag-icon-squared{background-image:url(../flags/1x1/mg.svg)}.flag-icon-mh{background-image:url(../flags/4x3/mh.svg)}.flag-icon-mh.flag-icon-squared{background-image:url(../flags/1x1/mh.svg)}.flag-icon-mk{background-image:url(../flags/4x3/mk.svg)}.flag-icon-mk.flag-icon-squared{background-image:url(../flags/1x1/mk.svg)}.flag-icon-ml{background-image:url(../flags/4x3/ml.svg)}.flag-icon-ml.flag-icon-squared{background-image:url(../flags/1x1/ml.svg)}.flag-icon-mm{background-image:url(../flags/4x3/mm.svg)}.flag-icon-mm.flag-icon-squared{background-image:url(../flags/1x1/mm.svg)}.flag-icon-mn{background-image:url(../flags/4x3/mn.svg)}.flag-icon-mn.flag-icon-squared{background-image:url(../flags/1x1/mn.svg)}.flag-icon-mo{background-image:url(../flags/4x3/mo.svg)}.flag-icon-mo.flag-icon-squared{background-image:url(../flags/1x1/mo.svg)}.flag-icon-mp{background-image:url(../flags/4x3/mp.svg)}.flag-icon-mp.flag-icon-squared{background-image:url(../flags/1x1/mp.svg)}.flag-icon-mq{background-image:url(../flags/4x3/mq.svg)}.flag-icon-mq.flag-icon-squared{background-image:url(../flags/1x1/mq.svg)}.flag-icon-mr{background-image:url(../flags/4x3/mr.svg)}.flag-icon-mr.flag-icon-squared{background-image:url(../flags/1x1/mr.svg)}.flag-icon-ms{background-image:url(../flags/4x3/ms.svg)}.flag-icon-ms.flag-icon-squared{background-image:url(../flags/1x1/ms.svg)}.flag-icon-mt{background-image:url(../flags/4x3/mt.svg)}.flag-icon-mt.flag-icon-squared{background-image:url(../flags/1x1/mt.svg)}.flag-icon-mu{background-image:url(../flags/4x3/mu.svg)}.flag-icon-mu.flag-icon-squared{background-image:url(../flags/1x1/mu.svg)}.flag-icon-mv{background-image:url(../flags/4x3/mv.svg)}.flag-icon-mv.flag-icon-squared{background-image:url(../flags/1x1/mv.svg)}.flag-icon-mw{background-image:url(../flags/4x3/mw.svg)}.flag-icon-mw.flag-icon-squared{background-image:url(../flags/1x1/mw.svg)}.flag-icon-mx{background-image:url(../flags/4x3/mx.svg)}.flag-icon-mx.flag-icon-squared{background-image:url(../flags/1x1/mx.svg)}.flag-icon-my{background-image:url(../flags/4x3/my.svg)}.flag-icon-my.flag-icon-squared{background-image:url(../flags/1x1/my.svg)}.flag-icon-mz{background-image:url(../flags/4x3/mz.svg)}.flag-icon-mz.flag-icon-squared{background-image:url(../flags/1x1/mz.svg)}.flag-icon-na{background-image:url(../flags/4x3/na.svg)}.flag-icon-na.flag-icon-squared{background-image:url(../flags/1x1/na.svg)}.flag-icon-nc{background-image:url(../flags/4x3/nc.svg)}.flag-icon-nc.flag-icon-squared{background-image:url(../flags/1x1/nc.svg)}.flag-icon-ne{background-image:url(../flags/4x3/ne.svg)}.flag-icon-ne.flag-icon-squared{background-image:url(../flags/1x1/ne.svg)}.flag-icon-nf{background-image:url(../flags/4x3/nf.svg)}.flag-icon-nf.flag-icon-squared{background-image:url(../flags/1x1/nf.svg)}.flag-icon-ng{background-image:url(../flags/4x3/ng.svg)}.flag-icon-ng.flag-icon-squared{background-image:url(../flags/1x1/ng.svg)}.flag-icon-ni{background-image:url(../flags/4x3/ni.svg)}.flag-icon-ni.flag-icon-squared{background-image:url(../flags/1x1/ni.svg)}.flag-icon-nl{background-image:url(../flags/4x3/nl.svg)}.flag-icon-nl.flag-icon-squared{background-image:url(../flags/1x1/nl.svg)}.flag-icon-no{background-image:url(../flags/4x3/no.svg)}.flag-icon-no.flag-icon-squared{background-image:url(../flags/1x1/no.svg)}.flag-icon-np{background-image:url(../flags/4x3/np.svg)}.flag-icon-np.flag-icon-squared{background-image:url(../flags/1x1/np.svg)}.flag-icon-nr{background-image:url(../flags/4x3/nr.svg)}.flag-icon-nr.flag-icon-squared{background-image:url(../flags/1x1/nr.svg)}.flag-icon-nu{background-image:url(../flags/4x3/nu.svg)}.flag-icon-nu.flag-icon-squared{background-image:url(../flags/1x1/nu.svg)}.flag-icon-nz{background-image:url(../flags/4x3/nz.svg)}.flag-icon-nz.flag-icon-squared{background-image:url(../flags/1x1/nz.svg)}.flag-icon-om{background-image:url(../flags/4x3/om.svg)}.flag-icon-om.flag-icon-squared{background-image:url(../flags/1x1/om.svg)}.flag-icon-pa{background-image:url(../flags/4x3/pa.svg)}.flag-icon-pa.flag-icon-squared{background-image:url(../flags/1x1/pa.svg)}.flag-icon-pe{background-image:url(../flags/4x3/pe.svg)}.flag-icon-pe.flag-icon-squared{background-image:url(../flags/1x1/pe.svg)}.flag-icon-pf{background-image:url(../flags/4x3/pf.svg)}.flag-icon-pf.flag-icon-squared{background-image:url(../flags/1x1/pf.svg)}.flag-icon-pg{background-image:url(../flags/4x3/pg.svg)}.flag-icon-pg.flag-icon-squared{background-image:url(../flags/1x1/pg.svg)}.flag-icon-ph{background-image:url(../flags/4x3/ph.svg)}.flag-icon-ph.flag-icon-squared{background-image:url(../flags/1x1/ph.svg)}.flag-icon-pk{background-image:url(../flags/4x3/pk.svg)}.flag-icon-pk.flag-icon-squared{background-image:url(../flags/1x1/pk.svg)}.flag-icon-pl{background-image:url(../flags/4x3/pl.svg)}.flag-icon-pl.flag-icon-squared{background-image:url(../flags/1x1/pl.svg)}.flag-icon-pm{background-image:url(../flags/4x3/pm.svg)}.flag-icon-pm.flag-icon-squared{background-image:url(../flags/1x1/pm.svg)}.flag-icon-pn{background-image:url(../flags/4x3/pn.svg)}.flag-icon-pn.flag-icon-squared{background-image:url(../flags/1x1/pn.svg)}.flag-icon-pr{background-image:url(../flags/4x3/pr.svg)}.flag-icon-pr.flag-icon-squared{background-image:url(../flags/1x1/pr.svg)}.flag-icon-ps{background-image:url(../flags/4x3/ps.svg)}.flag-icon-ps.flag-icon-squared{background-image:url(../flags/1x1/ps.svg)}.flag-icon-pt{background-image:url(../flags/4x3/pt.svg)}.flag-icon-pt.flag-icon-squared{background-image:url(../flags/1x1/pt.svg)}.flag-icon-pw{background-image:url(../flags/4x3/pw.svg)}.flag-icon-pw.flag-icon-squared{background-image:url(../flags/1x1/pw.svg)}.flag-icon-py{background-image:url(../flags/4x3/py.svg)}.flag-icon-py.flag-icon-squared{background-image:url(../flags/1x1/py.svg)}.flag-icon-qa{background-image:url(../flags/4x3/qa.svg)}.flag-icon-qa.flag-icon-squared{background-image:url(../flags/1x1/qa.svg)}.flag-icon-re{background-image:url(../flags/4x3/re.svg)}.flag-icon-re.flag-icon-squared{background-image:url(../flags/1x1/re.svg)}.flag-icon-ro{background-image:url(../flags/4x3/ro.svg)}.flag-icon-ro.flag-icon-squared{background-image:url(../flags/1x1/ro.svg)}.flag-icon-rs{background-image:url(../flags/4x3/rs.svg)}.flag-icon-rs.flag-icon-squared{background-image:url(../flags/1x1/rs.svg)}.flag-icon-ru{background-image:url(../flags/4x3/ru.svg)}.flag-icon-ru.flag-icon-squared{background-image:url(../flags/1x1/ru.svg)}.flag-icon-rw{background-image:url(../flags/4x3/rw.svg)}.flag-icon-rw.flag-icon-squared{background-image:url(../flags/1x1/rw.svg)}.flag-icon-sa{background-image:url(../flags/4x3/sa.svg)}.flag-icon-sa.flag-icon-squared{background-image:url(../flags/1x1/sa.svg)}.flag-icon-sb{background-image:url(../flags/4x3/sb.svg)}.flag-icon-sb.flag-icon-squared{background-image:url(../flags/1x1/sb.svg)}.flag-icon-sc{background-image:url(../flags/4x3/sc.svg)}.flag-icon-sc.flag-icon-squared{background-image:url(../flags/1x1/sc.svg)}.flag-icon-sd{background-image:url(../flags/4x3/sd.svg)}.flag-icon-sd.flag-icon-squared{background-image:url(../flags/1x1/sd.svg)}.flag-icon-se{background-image:url(../flags/4x3/se.svg)}.flag-icon-se.flag-icon-squared{background-image:url(../flags/1x1/se.svg)}.flag-icon-sg{background-image:url(../flags/4x3/sg.svg)}.flag-icon-sg.flag-icon-squared{background-image:url(../flags/1x1/sg.svg)}.flag-icon-sh{background-image:url(../flags/4x3/sh.svg)}.flag-icon-sh.flag-icon-squared{background-image:url(../flags/1x1/sh.svg)}.flag-icon-si{background-image:url(../flags/4x3/si.svg)}.flag-icon-si.flag-icon-squared{background-image:url(../flags/1x1/si.svg)}.flag-icon-sj{background-image:url(../flags/4x3/sj.svg)}.flag-icon-sj.flag-icon-squared{background-image:url(../flags/1x1/sj.svg)}.flag-icon-sk{background-image:url(../flags/4x3/sk.svg)}.flag-icon-sk.flag-icon-squared{background-image:url(../flags/1x1/sk.svg)}.flag-icon-sl{background-image:url(../flags/4x3/sl.svg)}.flag-icon-sl.flag-icon-squared{background-image:url(../flags/1x1/sl.svg)}.flag-icon-sm{background-image:url(../flags/4x3/sm.svg)}.flag-icon-sm.flag-icon-squared{background-image:url(../flags/1x1/sm.svg)}.flag-icon-sn{background-image:url(../flags/4x3/sn.svg)}.flag-icon-sn.flag-icon-squared{background-image:url(../flags/1x1/sn.svg)}.flag-icon-so{background-image:url(../flags/4x3/so.svg)}.flag-icon-so.flag-icon-squared{background-image:url(../flags/1x1/so.svg)}.flag-icon-sr{background-image:url(../flags/4x3/sr.svg)}.flag-icon-sr.flag-icon-squared{background-image:url(../flags/1x1/sr.svg)}.flag-icon-ss{background-image:url(../flags/4x3/ss.svg)}.flag-icon-ss.flag-icon-squared{background-image:url(../flags/1x1/ss.svg)}.flag-icon-st{background-image:url(../flags/4x3/st.svg)}.flag-icon-st.flag-icon-squared{background-image:url(../flags/1x1/st.svg)}.flag-icon-sv{background-image:url(../flags/4x3/sv.svg)}.flag-icon-sv.flag-icon-squared{background-image:url(../flags/1x1/sv.svg)}.flag-icon-sx{background-image:url(../flags/4x3/sx.svg)}.flag-icon-sx.flag-icon-squared{background-image:url(../flags/1x1/sx.svg)}.flag-icon-sy{background-image:url(../flags/4x3/sy.svg)}.flag-icon-sy.flag-icon-squared{background-image:url(../flags/1x1/sy.svg)}.flag-icon-sz{background-image:url(../flags/4x3/sz.svg)}.flag-icon-sz.flag-icon-squared{background-image:url(../flags/1x1/sz.svg)}.flag-icon-tc{background-image:url(../flags/4x3/tc.svg)}.flag-icon-tc.flag-icon-squared{background-image:url(../flags/1x1/tc.svg)}.flag-icon-td{background-image:url(../flags/4x3/td.svg)}.flag-icon-td.flag-icon-squared{background-image:url(../flags/1x1/td.svg)}.flag-icon-tf{background-image:url(../flags/4x3/tf.svg)}.flag-icon-tf.flag-icon-squared{background-image:url(../flags/1x1/tf.svg)}.flag-icon-tg{background-image:url(../flags/4x3/tg.svg)}.flag-icon-tg.flag-icon-squared{background-image:url(../flags/1x1/tg.svg)}.flag-icon-th{background-image:url(../flags/4x3/th.svg)}.flag-icon-th.flag-icon-squared{background-image:url(../flags/1x1/th.svg)}.flag-icon-tj{background-image:url(../flags/4x3/tj.svg)}.flag-icon-tj.flag-icon-squared{background-image:url(../flags/1x1/tj.svg)}.flag-icon-tk{background-image:url(../flags/4x3/tk.svg)}.flag-icon-tk.flag-icon-squared{background-image:url(../flags/1x1/tk.svg)}.flag-icon-tl{background-image:url(../flags/4x3/tl.svg)}.flag-icon-tl.flag-icon-squared{background-image:url(../flags/1x1/tl.svg)}.flag-icon-tm{background-image:url(../flags/4x3/tm.svg)}.flag-icon-tm.flag-icon-squared{background-image:url(../flags/1x1/tm.svg)}.flag-icon-tn{background-image:url(../flags/4x3/tn.svg)}.flag-icon-tn.flag-icon-squared{background-image:url(../flags/1x1/tn.svg)}.flag-icon-to{background-image:url(../flags/4x3/to.svg)}.flag-icon-to.flag-icon-squared{background-image:url(../flags/1x1/to.svg)}.flag-icon-tr{background-image:url(../flags/4x3/tr.svg)}.flag-icon-tr.flag-icon-squared{background-image:url(../flags/1x1/tr.svg)}.flag-icon-tt{background-image:url(../flags/4x3/tt.svg)}.flag-icon-tt.flag-icon-squared{background-image:url(../flags/1x1/tt.svg)}.flag-icon-tv{background-image:url(../flags/4x3/tv.svg)}.flag-icon-tv.flag-icon-squared{background-image:url(../flags/1x1/tv.svg)}.flag-icon-tw{background-image:url(../flags/4x3/tw.svg)}.flag-icon-tw.flag-icon-squared{background-image:url(../flags/1x1/tw.svg)}.flag-icon-tz{background-image:url(../flags/4x3/tz.svg)}.flag-icon-tz.flag-icon-squared{background-image:url(../flags/1x1/tz.svg)}.flag-icon-ua{background-image:url(../flags/4x3/ua.svg)}.flag-icon-ua.flag-icon-squared{background-image:url(../flags/1x1/ua.svg)}.flag-icon-ug{background-image:url(../flags/4x3/ug.svg)}.flag-icon-ug.flag-icon-squared{background-image:url(../flags/1x1/ug.svg)}.flag-icon-um{background-image:url(../flags/4x3/um.svg)}.flag-icon-um.flag-icon-squared{background-image:url(../flags/1x1/um.svg)}.flag-icon-us{background-image:url(../flags/4x3/us.svg)}.flag-icon-us.flag-icon-squared{background-image:url(../flags/1x1/us.svg)}.flag-icon-uy{background-image:url(../flags/4x3/uy.svg)}.flag-icon-uy.flag-icon-squared{background-image:url(../flags/1x1/uy.svg)}.flag-icon-uz{background-image:url(../flags/4x3/uz.svg)}.flag-icon-uz.flag-icon-squared{background-image:url(../flags/1x1/uz.svg)}.flag-icon-va{background-image:url(../flags/4x3/va.svg)}.flag-icon-va.flag-icon-squared{background-image:url(../flags/1x1/va.svg)}.flag-icon-vc{background-image:url(../flags/4x3/vc.svg)}.flag-icon-vc.flag-icon-squared{background-image:url(../flags/1x1/vc.svg)}.flag-icon-ve{background-image:url(../flags/4x3/ve.svg)}.flag-icon-ve.flag-icon-squared{background-image:url(../flags/1x1/ve.svg)}.flag-icon-vg{background-image:url(../flags/4x3/vg.svg)}.flag-icon-vg.flag-icon-squared{background-image:url(../flags/1x1/vg.svg)}.flag-icon-vi{background-image:url(../flags/4x3/vi.svg)}.flag-icon-vi.flag-icon-squared{background-image:url(../flags/1x1/vi.svg)}.flag-icon-vn{background-image:url(../flags/4x3/vn.svg)}.flag-icon-vn.flag-icon-squared{background-image:url(../flags/1x1/vn.svg)}.flag-icon-vu{background-image:url(../flags/4x3/vu.svg)}.flag-icon-vu.flag-icon-squared{background-image:url(../flags/1x1/vu.svg)}.flag-icon-wf{background-image:url(../flags/4x3/wf.svg)}.flag-icon-wf.flag-icon-squared{background-image:url(../flags/1x1/wf.svg)}.flag-icon-ws{background-image:url(../flags/4x3/ws.svg)}.flag-icon-ws.flag-icon-squared{background-image:url(../flags/1x1/ws.svg)}.flag-icon-ye{background-image:url(../flags/4x3/ye.svg)}.flag-icon-ye.flag-icon-squared{background-image:url(../flags/1x1/ye.svg)}.flag-icon-yt{background-image:url(../flags/4x3/yt.svg)}.flag-icon-yt.flag-icon-squared{background-image:url(../flags/1x1/yt.svg)}.flag-icon-za{background-image:url(../flags/4x3/za.svg)}.flag-icon-za.flag-icon-squared{background-image:url(../flags/1x1/za.svg)}.flag-icon-zm{background-image:url(../flags/4x3/zm.svg)}.flag-icon-zm.flag-icon-squared{background-image:url(../flags/1x1/zm.svg)}.flag-icon-zw{background-image:url(../flags/4x3/zw.svg)}.flag-icon-zw.flag-icon-squared{background-image:url(../flags/1x1/zw.svg)}.flag-icon-eu{background-image:url(../flags/4x3/eu.svg)}.flag-icon-eu.flag-icon-squared{background-image:url(../flags/1x1/eu.svg)}.flag-icon-gb-eng{background-image:url(../flags/4x3/gb-eng.svg)}.flag-icon-gb-eng.flag-icon-squared{background-image:url(../flags/1x1/gb-eng.svg)}.flag-icon-gb-nir{background-image:url(../flags/4x3/gb-nir.svg)}.flag-icon-gb-nir.flag-icon-squared{background-image:url(../flags/1x1/gb-nir.svg)}.flag-icon-gb-sct{background-image:url(../flags/4x3/gb-sct.svg)}.flag-icon-gb-sct.flag-icon-squared{background-image:url(../flags/1x1/gb-sct.svg)}.flag-icon-gb-wls{background-image:url(../flags/4x3/gb-wls.svg)}.flag-icon-gb-wls.flag-icon-squared{background-image:url(../flags/1x1/gb-wls.svg)}.flag-icon-un{background-image:url(../flags/4x3/un.svg)}.flag-icon-un.flag-icon-squared{background-image:url(../flags/1x1/un.svg)}
.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: 32px;
    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 #c5c5c5;
  border-radius: 2px; }
  .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: #12728e;
  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 #12728e; }
  .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 #12728e; }
  .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 #12728e; }
  .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 #12728e; }

.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: #12728e; }

.mdp-animate-next {
  opacity: 0;
  -webkit-transform: translate3d(50%, 0, 1px);
          transform: translate3d(50%, 0, 1px);
}
.mdp-animate-next-remove {
  -webkit-transition: all 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  transition: all 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  opacity: 0;
  -webkit-transform: translate3d(50%, 0, 1px);
          transform: translate3d(50%, 0, 1px);
}
.mdp-animate-next-remove-active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 1px);
          transform: translate3d(0, 0, 1px);
}
.mdp-animate-prev {
  opacity: 0;
  -webkit-transform: translate3d(-50%, 0, 1px);
          transform: translate3d(-50%, 0, 1px);
}
.mdp-animate-prev-remove {
  -webkit-transition: all 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  opacity: 0;
  -webkit-transform: translate3d(-50%, 0, 1px);
          transform: translate3d(-50%, 0, 1px);
}
.mdp-animate-prev-remove-active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 1px);
          transform: translate3d(0, 0, 1px);
}
@-webkit-keyframes mdp-animation-bounce {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mdp-animation-bounce {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.mdp-animation-zoom.ng-enter {
  -webkit-transition: all 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-name: mdp-animation-bounce;
          animation-name: mdp-animation-bounce;
}
.mdp-datepicker {
  max-height: initial;
  min-width: 234px;
}
.mdp-datepicker * {
  outline: 0;
}
.mdp-datepicker .md-actions {
  width: 100%;
  padding: 0px 5px;
}
.mdp-calendar-week-days {
  opacity: 0.6;
}
.mdp-calendar-week-days > * {
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin: 0 5px;
  padding: 0;
  min-width: 0px;
  min-height: 0px;
  box-shadow: none !important;
  background-color: transparent;
}
.mdp-calendar-days {
  font-size: 1rem;
  max-width: 100%;
}
.mdp-calendar-days .md-button,
.mdp-calendar-days .mdp-day-placeholder {
  width: 32px;
  height: 32px;
  margin: 0 5px;
}
.mdp-calendar-days .md-button {
  cursor: pointer;
  border-radius: 50%;
  font-size: 12px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  padding: 0;
  min-width: 0px;
  min-height: 0px;
  box-shadow: none !important;
  background-color: transparent;
}
.mdp-calendar-days .md-button[disabled]:not(.md-accent) {
  background-color: transparent !important;
}
.mdp-calendar-monthyear {
  font-weight: bold;
  line-height: 32px;
  min-height: 32px;
}
.mdp-datepicker-date,
.mdp-datepicker-day,
.mdp-datepicker-dow,
.mdp-datepicker-month {
  font-size: 1.8rem;
  opacity: 0.6;
}
.mdp-datepicker-date:not(.active),
.mdp-datepicker-day:not(.active),
.mdp-datepicker-dow:not(.active),
.mdp-datepicker-month:not(.active) {
  cursor: pointer;
}
.mdp-datepicker-date.active,
.mdp-datepicker-day.active,
.mdp-datepicker-dow.active,
.mdp-datepicker-month.active,
.mdp-datepicker-date:hover,
.mdp-datepicker-day:hover,
.mdp-datepicker-dow:hover,
.mdp-datepicker-month:hover {
  opacity: 1;
}
.mdp-datepicker-year {
  opacity: 0.6;
  padding: 0;
  margin: 0;
}
.mdp-datepicker-year:not(.active) {
  cursor: pointer;
}
.mdp-datepicker-year.active,
.mdp-datepicker-year:hover {
  opacity: 1;
}
.mdp-datepicker-select-year {
  height: 232px;
}
.mdp-datepicker-select-year .repeated-year {
  text-align: center;
}
.mdp-datepicker-select-year .repeated-year .md-button {
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding: 0;
  line-height: 42px;
}
.mdp-datepicker-select-year .repeated-year .md-button.current {
  font-size: 1.8rem;
  line-height: 42px;
}
.mdp-datepicker-select-year .md-virtual-repeat-container,
.mdp-datepicker-select-year .md-virtual-repeat-offsetter,
.mdp-datepicker-select-year .md-virtual-repeat-scroller {
  height: 100%;
  width: 100%;
}
mdp-date-picker > md-input-container.md-has-icon {
  padding-left: 40px;
}
mdp-date-picker .md-button.md-icon-button {
  margin: 18px 0 0 0;
}
.mdp-datepicker:not(.portrait) .mdp-datepicker-select-year {
  width: 309px;
}
.mdp-datepicker:not(.portrait) .mdp-calendar {
  margin-right: 5px;
  width: 294px;
  margin-left: 10px;
}
.mdp-datepicker:not(.portrait) .mdp-datepicker-date-wrapper {
  width: 150px;
}
.mdp-datepicker:not(.portrait) .mdp-datepicker-dow {
  width: 100%;
  display: block;
}
.mdp-datepicker:not(.portrait) .mdp-calendar-week-days > *,
.mdp-datepicker:not(.portrait) .mdp-calendar-days > * {
  width: 42px;
}
.mdp-datepicker .mdp-datepicker-date-wrapper {
  padding: 16px 35px 16px 16px;
}
.mdp-datepicker md-dialog-content {
  overflow: hidden;
  padding: 0px;
}
.mdp-datepicker md-dialog-content .mdp-calendar {
  width: 294px;
  overflow-x: hidden;
}
.mdp-datepicker.portrait {
  max-width: 234px;
}
.mdp-datepicker.portrait .mdp-calendar {
  text-align: center;
  width: 100%;
}
.mdp-datepicker.portrait .mdp-datepicker-select-year {
  height: 252px;
}
.mdp-datepicker.portrait md-dialog-content > * {
  width: 100%;
}
.mdp-datepicker.portrait .mdp-calendar-week-days,
.mdp-datepicker.portrait .mdp-calendar-days,
.mdp-datepicker.portrait .md-actions {
  padding: 0 5px;
}
.mdp-datepicker.portrait .md-actions {
  margin-top: 20px;
}
.mdp-datepicker.portrait .mdp-calendar-week-days > *,
.mdp-datepicker.portrait .mdp-calendar-days > * {
  width: 32px;
}
mdp-calendar {
  display: block;
}
.mdp-calendar-week-days {
  width: 100%;
}
.mdp-calendar-week-days > * {
  margin: 0;
}
.mdp-calendar-days .md-button,
.mdp-calendar-days .mdp-day-placeholder {
  margin: 0;
}
.mdp-clock {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  cursor: pointer;
  padding: 24px;
  background: #ededed;
}
.mdp-clock .md-button {
  box-shadow: none !important;
  background-color: transparent;
  display: block;
  position: absolute;
  min-height: 32px;
  width: 32px;
  height: 32px;
  font-size: 12px;
  line-height: 32px;
  margin: 0;
  padding: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.mdp-clock .mdp-clock-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
.mdp-clock .mdp-pointer {
  min-height: 0px;
  width: 1px;
  height: 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  z-index: 0;
  pointer-events: none;
}
.mdp-clock .mdp-clock-center {
  min-height: 0px;
  height: 6px;
  width: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.mdp-clock .md-button.mdp-clock-selected {
  position: absolute;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  bottom: -8px;
  left: 0px;
  min-width: 0;
  min-height: 0;
  pointer-events: none;
}
.mdp-timepicker .mdp-clock-switch-container {
  padding: 20px;
  width: 309px;
}
.mdp-timepicker .mdp-timepicker-time {
  padding: 15px;
}
.mdp-timepicker .mdp-timepicker-selected-time {
  font-size: 3rem;
}
.mdp-timepicker:not(.portrait) .mdp-timepicker-time {
  width: 138px;
}
.mdp-timepicker.portrait .mdp-timepicker-selected-time {
  font-size: 4rem;
  margin-right: 1.5rem;
}
mdp-time-picker md-input-container.md-has-icon {
  padding-left: 40px;
}
mdp-time-picker .md-button.md-icon-button {
  margin: 18px 0 0 0;
}
.mdp-timepicker-selected-time > span,
.mdp-timepicker-selected-ampm > span {
  outline: 0;
  opacity: 0.6;
}
.mdp-timepicker-selected-time > span:not(.active),
.mdp-timepicker-selected-ampm > span:not(.active) {
  cursor: pointer;
}
.mdp-timepicker-selected-time > span.active,
.mdp-timepicker-selected-ampm > span.active {
  opacity: 1;
}
.mdp-clock-deg0 {
  top: 0%;
  left: 50%;
}
.mdp-clock-deg30 {
  top: 6.69872981%;
  left: 75%;
}
.mdp-clock-deg60 {
  top: 25%;
  left: 93.30127019%;
}
.mdp-clock-deg90 {
  top: 50%;
  left: 100%;
}
.mdp-clock-deg120 {
  top: 75%;
  left: 93.30127019%;
}
.mdp-clock-deg150 {
  top: 93.30127019%;
  left: 75%;
}
.mdp-clock-deg180 {
  top: 100%;
  left: 50%;
}
.mdp-clock-deg210 {
  top: 93.30127019%;
  left: 25%;
}
.mdp-clock-deg240 {
  top: 75%;
  left: 6.69872981%;
}
.mdp-clock-deg270 {
  top: 50%;
  left: 0%;
}
.mdp-clock-deg300 {
  top: 25%;
  left: 6.69872981%;
}
.mdp-clock-deg330 {
  top: 6.69872981%;
  left: 25%;
}
.mdp-clock-deg360 {
  top: 0%;
  left: 50%;
}

/*
 * angular-tooltips
 * 1.2.2
 * 
 * Angular.js tooltips module.
 * http://720kb.github.io/angular-tooltips
 * 
 * MIT license
 * Tue Jun 20 2017
 */
@-webkit-keyframes animate-tooltip {
  0% {
    opacity: 0; }
  50% {
    opacity: .5; }
  60% {
    opacity: .8; }
  70% {
    opacity: .9; }
  90% {
    opacity: 1; } }

@-moz-keyframes animate-tooltip {
  0% {
    opacity: 0; }
  50% {
    opacity: .5; }
  60% {
    opacity: .8; }
  70% {
    opacity: .9; }
  90% {
    opacity: 1; } }

@-ms-keyframes animate-tooltip {
  0% {
    opacity: 0; }
  50% {
    opacity: .5; }
  60% {
    opacity: .8; }
  70% {
    opacity: .9; }
  90% {
    opacity: 1; } }

@keyframes animate-tooltip {
  0% {
    opacity: 0; }
  50% {
    opacity: .5; }
  60% {
    opacity: .8; }
  70% {
    opacity: .9; }
  90% {
    opacity: 1; } }

._exradicated-tooltip {
  display: block;
  opacity: 1;
  position: absolute;
  z-index: 999; }

tooltip {
  display: inline-block;
  position: relative; }
  tooltip._multiline {
    display: block; }
  tooltip._slow._ready tip {
    animation: animate-tooltip 0.65s; }
  tooltip._fast._ready tip {
    animation: animate-tooltip 0.15s; }
  tooltip._steady._ready tip {
    animation: animate-tooltip 0.35s; }
  tooltip tip {
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    display: none;
    line-height: normal;
    max-width: 500px;
    min-width: 230px;
    opacity: 0;
    padding: 8px 16px;
    position: absolute;
    text-align: center;
    width: auto;
    will-change: top, left, bottom, right; }
    tooltip tip._hidden {
      display: block;
      visibility: hidden; }
  tooltip.active:not(._force-hidden) tip {
    display: block;
    opacity: 1;
    z-index: 999; }
  tooltip tip-tip {
    font-size: 0.95em; }
    tooltip tip-tip._large {
      font-size: 1.1em; }
    tooltip tip-tip._small {
      font-size: 0.8em; }
  tooltip._top:not(._left):not(._right) tip {
    left: 50%;
    top: -9px;
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%); }
    tooltip._top:not(._left):not(._right) tip tip-arrow {
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid rgba(0, 0, 0, 0.85);
      content: '';
      height: 0;
      left: 50%;
      margin-left: -6px;
      position: absolute;
      top: 100%;
      width: 0; }
  tooltip._bottom:not(._left):not(._right) tip {
    right: 50%;
    top: 100%;
    -webkit-transform: translateX(50%) translateY(9px);
    transform: translateX(50%) translateY(9px); }
    tooltip._bottom:not(._left):not(._right) tip tip-arrow {
      border-bottom: 6px solid rgba(0, 0, 0, 0.85);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      bottom: 100%;
      content: '';
      height: 0;
      left: 50%;
      margin-left: -6px;
      position: absolute;
      width: 0; }
  tooltip._right:not(._top):not(._bottom) tip {
    left: 100%;
    top: 50%;
    -webkit-transform: translateX(9px) translateY(-50%);
    transform: translateX(9px) translateY(-50%); }
    tooltip._right:not(._top):not(._bottom) tip tip-arrow {
      border-bottom: 6px solid transparent;
      border-right: 6px solid rgba(0, 0, 0, 0.85);
      border-top: 6px solid transparent;
      content: '';
      height: 0;
      margin-top: -6px;
      position: absolute;
      right: 100%;
      top: 50%;
      width: 0; }
  tooltip._left:not(._top):not(._bottom) tip {
    left: -9px;
    top: 50%;
    -webkit-transform: translateX(-100%) translateY(-50%);
    transform: translateX(-100%) translateY(-50%); }
    tooltip._left:not(._top):not(._bottom) tip tip-arrow {
      border-bottom: 6px solid transparent;
      border-left: 6px solid rgba(0, 0, 0, 0.85);
      border-top: 6px solid transparent;
      content: '';
      height: 0;
      left: 100%;
      margin-top: -6px;
      position: absolute;
      top: 50%;
      width: 0; }
  tooltip._top._left tip {
    left: -9px;
    top: -9px;
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%); }
    tooltip._top._left tip tip-arrow {
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid rgba(0, 0, 0, 0.85);
      content: '';
      height: 0;
      left: 90%;
      margin-left: -6px;
      position: absolute;
      top: 100%;
      width: 0; }
  tooltip._top._right tip {
    left: 100%;
    top: -9px;
    -webkit-transform: translateX(9px) translateY(-100%);
    transform: translateX(9px) translateY(-100%); }
    tooltip._top._right tip tip-arrow {
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid rgba(0, 0, 0, 0.85);
      content: '';
      height: 0;
      left: 10%;
      margin-left: -6px;
      position: absolute;
      top: 100%;
      width: 0; }
  tooltip._bottom._left tip {
    left: -9px;
    top: 100%;
    -webkit-transform: translateX(-100%) translateY(9px);
    transform: translateX(-100%) translateY(9px); }
    tooltip._bottom._left tip tip-arrow {
      border-bottom: 6px solid rgba(0, 0, 0, 0.85);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      bottom: 100%;
      content: '';
      height: 0;
      left: 90%;
      margin-left: -6px;
      position: absolute;
      width: 0; }
  tooltip._bottom._right tip {
    left: 100%;
    top: 100%;
    -webkit-transform: translateX(9px) translateY(9px);
    transform: translateX(9px) translateY(9px); }
    tooltip._bottom._right tip tip-arrow {
      border-bottom: 6px solid rgba(0, 0, 0, 0.85);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      bottom: 100%;
      content: '';
      height: 0;
      left: 10%;
      margin-left: -6px;
      position: absolute;
      width: 0; }

tip-tip .close-button {
  cursor: pointer;
  float: right;
  left: 8%;
  margin-top: -7%;
  padding: 3px;
  position: relative; }

.mdtTableContainer {
  position: relative;
  overflow: visible;
  font-size: 15px;
  /* 12sp Roboto Medium, 54% black */
  /* optional animation of sort icons: add class 'animate-sort-icon' to mdt-header-row to activate animation */
  /* 64dp card header height */
  /* 56do for last row */
  /* column padding */
  /* 48dp row height */
  /* 13sp Roboto Regular, 87% black */
  /* border separation color */
  /* INTERACTION */
  /* default icon color */
  /* filter drop down */
  /* TH Select outline color & caret */
}
.mdtTableContainer .mdtTable {
  position: relative;
}
.mdtTableContainer .md-chips {
  font-size: 13px;
}
.mdtTableContainer .p-r {
  position: relative;
}
.mdtTableContainer .no-outline {
  outline: none;
}
.mdtTableContainer *,
.mdtTableContainer *:before,
.mdtTableContainer *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.mdtTableContainer table {
  width: 100%;
  display: table;
}
.mdtTableContainer table:focus {
  outline: none;
}
.mdtTableContainer td, .mdtTableContainer th {
  padding: 0;
  margin: 0;
}
.mdtTableContainer th {
  font-size: 12px;
  font-weight: 500;
  color: #757575;
  white-space: nowrap;
  /* prevent ink ripple bleeding */
  position: relative;
  /* no pointer cursor when disabled, could be not-allowed but i think that indication is to strong */
  /* remove the default blue outline in Chrome for consistent button-like behaviour */
  /* when hoverSortIcons on a non-sorted column*/
}
.mdtTableContainer th[disabled] {
  cursor: auto;
}
.mdtTableContainer th:focus, .mdtTableContainer th *:focus {
  outline: none;
}
.mdtTableContainer th .column-header-content {
  cursor: default;
}
.mdtTableContainer th .column-header-content.clickable {
  cursor: pointer;
}
.mdtTableContainer th .hoverSortIcons ng-md-icon {
  visibility: hidden;
  width: 16px;
  height: 16px;
  fill: #b3b3b3;
}
.mdtTableContainer th .hoverSortIcons ng-md-icon svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mdtTableContainer th:hover .hoverSortIcons ng-md-icon {
  visibility: visible;
}
.mdtTableContainer th .sortedColumn {
  /* when hoverSortIcons on a sorted column*/
  /* sort icon rotated -90 degrees for descending sort */
}
.mdtTableContainer th .sortedColumn .hoverSortIcons ng-md-icon {
  display: none;
}
.mdtTableContainer th .sortedColumn ng-md-icon {
  /* specified 16px is a fix now cause angular materia generates a 24x24 icon even the passed value is 16  */
  width: 16px;
  height: 16px;
  fill: #212121;
  /* sort icon rotated 90 degrees for ascending sort (default) */
}
.mdtTableContainer th .sortedColumn ng-md-icon svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mdtTableContainer th .sortedColumn.descending ng-md-icon > svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.mdtTableContainer tr.animate-sort-icon .sortedColumn ng-md-icon svg {
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
.mdtTableContainer .mdt-header, .mdtTableContainer .mdt-header-alternate {
  height: 64px;
  padding-left: 24px;
  padding-right: 14px;
}
.mdtTableContainer .mdt-header md-button, .mdtTableContainer .mdt-header-alternate md-button {
  margin-left: 24px;
}
.mdtTableContainer .mdt-header ng-md-icon, .mdtTableContainer .mdt-header-alternate ng-md-icon {
  fill: #757575;
}
.mdtTableContainer .mdt-header-alternate {
  background-color: #e3edfd;
}
.mdtTableContainer .mdt-header-alternate .alternate-text {
  color: #0D47A1;
}
.mdtTableContainer .mdt-footer, .mdtTableContainer tr th {
  height: 56px;
  line-height: 56px;
}
.mdtTableContainer .mdt-footer .mdt-pagination, .mdtTableContainer tr th .mdt-pagination {
  font-size: 12px;
  color: #757575;
}
.mdtTableContainer .mdt-footer .mdt-pagination md-input-container, .mdtTableContainer tr th .mdt-pagination md-input-container {
  margin-top: 0px;
  margin-bottom: 0px;
}
.mdtTableContainer .mdt-footer {
  overflow: hidden;
}
.mdtTableContainer .checkboxCell {
  width: 18px;
  /*the next cell should not have just 24px padding */
}
.mdtTableContainer .checkboxCell md-checkbox {
  margin: 0;
  padding: 0;
}
.mdtTableContainer .checkboxCell + td, .mdtTableContainer .checkboxCell + th {
  padding-left: 24px;
}
.mdtTableContainer tr td {
  padding: 0;
  height: 48px;
  font-size: 13px;
  color: #212121;
}
.mdtTableContainer td:first-child, .mdtTableContainer th:first-child {
  padding: 0 0 0 24px;
}
.mdtTableContainer td:last-child, .mdtTableContainer th:last-child {
  padding-right: 24px;
}
.mdtTableContainer .column {
  padding-left: 56px;
}
.mdtTableContainer .leftAlignedColumn {
  text-align: left;
}
.mdtTableContainer .rightAlignedColumn {
  text-align: right;
}
.mdtTableContainer tr th {
  border-bottom: solid 1px #DDDDDD;
}
.mdtTableContainer tr td {
  border-bottom: solid 1px #DDDDDD;
}
.mdtTableContainer tr:hover td {
  background: #EEEEEE;
}
.mdtTableContainer .selectedRow td {
  background: #F5F5F5;
}
.mdtTableContainer ng-md-icon {
  fill: #757575;
}
.mdtTableContainer .md-inactive ng-md-icon {
  fill: rgba(0, 0, 0, 0.26);
}
.mdtTableContainer .md-virtual-repeat-container {
  min-height: 106px;
}
.mdtTableContainer .filter-select {
  border: 1px solid transparent;
  padding: 11px 10px;
  border-radius: 2px;
  cursor: pointer;
  margin-left: -10px;
}
.mdtTableContainer .filter-select:hover {
  border-color: #dedede;
}
.mdtTableContainer .filter-select:hover ng-md-icon {
  visibility: visible;
}
.mdtTableContainer .filter-select.is-active {
  color: #fff;
  background-color: #0096D6;
  border-color: #0096D6;
}
.mdtTableContainer .filter-select ng-md-icon {
  visibility: hidden;
}
.mdtTableContainer .filter-select.is-active ng-md-icon {
  visibility: visible;
  fill: rgba(255, 255, 255, 0.87);
  fill: #fff;
}
.mdtTableContainer md-progress-linear .md-container {
  height: 3px;
}
.mdtTableContainer md-progress-linear .md-bar {
  background: #2A87E3;
}
.mdtTableContainer .loading-indicator {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.mdtTableContainer .loading-is-active {
  visibility: visible;
}

/* filter drop down AND column selector */
.filter-dropdown, .mdt-column-selector {
  position: absolute;
  z-index: 1;
  width: 250px;
  text-align: initial;
}
.filter-dropdown a, .mdt-column-selector a {
  text-decoration: none;
}
.filter-dropdown .selectall_clearall, .mdt-column-selector .selectall_clearall {
  font-size: 12px;
}
.filter-dropdown .selectall_clearall span, .mdt-column-selector .selectall_clearall span {
  margin: 0 5px 0 5px;
}
.filter-dropdown .selectall_clearall .selected_items, .mdt-column-selector .selectall_clearall .selected_items {
  text-align: right;
  color: darkgray;
}
.filter-dropdown .selectall_clearall .disabled, .mdt-column-selector .selectall_clearall .disabled {
  color: #9E9E9E;
  cursor: default;
}
.filter-dropdown .hoverSortIcons ng-md-icon, .mdt-column-selector .hoverSortIcons ng-md-icon {
  visibility: hidden;
  width: 20px;
  height: 20px;
  fill: #b3b3b3;
}
.filter-dropdown .hoverSortIcons ng-md-icon svg, .mdt-column-selector .hoverSortIcons ng-md-icon svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.filter-dropdown .hoverSortIcons ng-md-icon, .mdt-column-selector .hoverSortIcons ng-md-icon {
  visibility: visible;
}
.filter-dropdown .sortedColumn, .mdt-column-selector .sortedColumn {
  /* when hoverSortIcons on a sorted column*/
  /* sort icon rotated -90 degrees for descending sort */
}
.filter-dropdown .sortedColumn .hoverSortIcons ng-md-icon, .mdt-column-selector .sortedColumn .hoverSortIcons ng-md-icon {
  display: none;
}
.filter-dropdown .sortedColumn ng-md-icon, .mdt-column-selector .sortedColumn ng-md-icon {
  /* specified 16px is a fix now cause angular materia generates a 24x24 icon even the passed value is 16  */
  width: 20px;
  height: 20px;
  fill: #212121;
  /* sort icon rotated 90 degrees for ascending sort (default) */
}
.filter-dropdown .sortedColumn ng-md-icon svg, .mdt-column-selector .sortedColumn ng-md-icon svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.filter-dropdown .sortedColumn.descending ng-md-icon > svg, .mdt-column-selector .sortedColumn.descending ng-md-icon > svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.filter-dropdown .b-b, .mdt-column-selector .b-b {
  border-bottom: 1px solid #dedede;
}
.filter-dropdown .p-md, .mdt-column-selector .p-md {
  padding: 16px;
}
.filter-dropdown .p-l-md, .mdt-column-selector .p-l-md {
  padding-left: 16px;
}
.filter-dropdown .p-r-md, .mdt-column-selector .p-r-md {
  padding-right: 16px;
}
.filter-dropdown .p-t-md, .mdt-column-selector .p-t-md {
  padding-top: 16px;
}
.filter-dropdown .p-r-md, .mdt-column-selector .p-r-md {
  padding-right: 16px;
}
.filter-dropdown .p-smd, .mdt-column-selector .p-smd {
  padding: 12px;
}
.filter-dropdown .p-sm, .mdt-column-selector .p-sm {
  padding: 8px;
}
.filter-dropdown .p-l-sm, .mdt-column-selector .p-l-sm {
  padding-left: 8px;
}
.filter-dropdown .p-t-sm, .mdt-column-selector .p-t-sm {
  padding-top: 8px;
}
.filter-dropdown .p-b-sm, .mdt-column-selector .p-b-sm {
  padding-bottom: 8px;
}
.filter-dropdown .p-r-sm, .mdt-column-selector .p-r-sm {
  padding-right: 8px;
}
.filter-dropdown .p-b-n, .mdt-column-selector .p-b-n {
  padding-bottom: 0;
}
.filter-dropdown .md-chips, .mdt-column-selector .md-chips {
  font-size: 12px;
}
.filter-dropdown .filter__scroll, .mdt-column-selector .filter__scroll {
  max-height: 200px;
  overflow-y: auto;
  border-bottom: solid 1px #DDDDDD;
}

.mdt-column-selector {
  right: 0px;
  /* <-- this is a fix for positioning an element with the 'right' value using jquery. To make it work right:0px should be set in css before */
}
.mdt-column-selector .mdt-column-selector-title {
  color: #757575;
}
.mdt-column-selector .mdt-checbox-column-items span {
  width: 180px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

/* Structure */
json-tree {
  box-sizing: border-box;
}
json-tree *,
json-tree *:before,
json-tree *:after {
  box-sizing: border-box;
}
json-tree .key {
  vertical-align: middle;
}
json-tree .expandable {
  position: relative;
}
json-tree .expandable::before {
  pointer-events: none;
}
json-tree .expandable::before,
json-tree .expandable > .key {
  cursor: pointer;
}
json-tree .branch-preview {
  display: inline-block;
  vertical-align: middle;
}
/* Looks */
json-tree ul {
  padding-left: 20px;
}
json-tree li,
json-tree ul {
  list-style: none;
}
json-tree li {
  line-height: 1.5em;
}
json-tree .key {
  color: #D02828;
  padding: 5px 10px 5px 15px;
}
json-tree .key::after {
  content: ':';
}
json-tree json-node.expandable::before {
  content: '\25b6';
  position: absolute;
  left: 0px;
  font-size: 10px;
  -webkit-transition: -webkit-transform .1s ease;
  transition: -webkit-transform .1s ease;
  transition: transform .1s ease;
  transition: transform .1s ease, -webkit-transform .1s ease;
}
json-tree json-node.expandable.expanded::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
json-tree .leaf-value,
json-tree .branch-preview {
  word-break: break-all;
}
json-tree .branch-preview {
  overflow: hidden;
  font-style: italic;
  max-width: 40%;
  height: 1.5em;
  opacity: .7;
}

.appleskin-fixed {
    background-color: #222 !important
}

.appleskin-button {
    color: #000 !important;
    background-color: #f1d600 !important;
    padding: 5px;
    display: inline-block;
    cursor: pointer;
    background-color: #aaa;
    border-radius: 5px;
    margin-left: 15px;
    padding-left: 15px!important;
    padding-right: 15px!important;
}

.appleskin-button:hover {
    color: #000 !important;
    background-color: white !important;
}

#appleskincookielaw {
    padding: 20px!important;
}


@media (max-width: 767px) {
    .appleskin-button {
        color: #000 !important;
        background-color: #f1d600 !important;
        padding: 5px;
        display: block;
        text-align: center;
        cursor: pointer;
        margin-top: 15px;
        background-color: #aaa;
        border-radius: 5px;
        padding-left: 15px!important;
        padding-right: 15px!important;
    }

}

.more-info-link {
    color: #31a8f0;
}

/**
 * angular-bootstrap-feedback - User feedback form for angular with screenshot and highlighting
 * @author Robert Young
 * @version v1.0.2
 * @link https://robertyoung.github.io/angular-bootstrap-feedback/
 * @license MIT
 * This file is auto-generated. Please modify the Typescript related file.
 */
@keyframes slide{100%{bottom:0}}.send-feedback{font-size:12px;position:fixed;z-index:9001;right:56px;bottom:-40px;padding:5px 5px 2px;cursor:pointer;-webkit-animation:slide .3s forwards;-moz-animation:slide .3s forwards;-ms-animation:slide .3s forwards;-o-animation:slide .3s forwards;animation:slide .3s forwards;text-align:center;color:#eee;border:3px solid #333;border-bottom:0;-webkit-border-top-left-radius:10px;-moz-border-radius-topleft:10px;border-top-left-radius:10px;-webkit-border-top-right-radius:10px;-moz-border-radius-topright:10px;border-top-right-radius:10px;background-color:#797979}.feedback-screenshot img{width:100%;min-height:230px;border:5px solid #eee;border-radius:12px;object-fit:cover}#feedback-canvas{position:absolute;z-index:9000;cursor:crosshair}.close-modal-button{cursor:pointer}
.calendar-heatmap{user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}.calendar-heatmap .item{cursor:pointer}.calendar-heatmap .label{cursor:pointer;fill:#aaa;font-family:Helvetica,arial,Open Sans,sans-serif}.calendar-heatmap .button{cursor:pointer;fill:transparent;stroke-width:2;stroke:#aaa}.calendar-heatmap .button text{stroke-width:1;text-anchor:middle;fill:#aaa}.calendar-heatmap .heatmap-tooltip{pointer-events:none;position:absolute;z-index:1;width:250px;max-width:250px;overflow:hidden;padding:15px;font-size:12px;line-height:14px;color:#333;font-family:Helvetica,arial,Open Sans,sans-serif;background:hsla(0,0%,100%,.75)}.calendar-heatmap .heatmap-tooltip .header strong{display:inline-block;width:250px}.calendar-heatmap .heatmap-tooltip span{display:inline-block;width:50%;padding-right:10px;box-sizing:border-box}.calendar-heatmap .heatmap-tooltip .header strong,.calendar-heatmap .heatmap-tooltip span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
:root {
	--sc-hue-primary: #12728e;
}

@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: local('Material Icons'), local('MaterialIcons-Regular'), url('../fonts/micons.woff2') format('woff2');
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}
/* fix broken md-calendar on chrome 63 */
.md-calendar-scroll-container {
	width: 100% !important;
}

.top-tool-bar {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.review-heading {
	font-size: 19px;
	margin-bottom: 1px;
	margin-left: 2px;
}

.mhc {
	height: 125px;
	margin-right: 10px;
}

#scoresheetbx {
	display: none;
}

#closescoresheet {
	float: right;
	position: inherit;
	font-size: 15px;
	height: 30px;
	text-align: center;
	color: #fff;
	border: none;
	border-radius: 16px;
	width: 30px;
	background-color: #ff5757;
}

.topcardbx {
	margin-top: -30px;
	width: 100%;
	height: 120px;
}

.schlogobx {
	float: left;
	width: 100px;
	height: 100px;
	background-color: #b9b9b9;
	border-radius: 0px !important;
	border: 4px solid #12728e;
}

.schlogobx img {
	float: left;
	width: 100%;
}

.schdatabx {
	float: left;
	width: 70%;
	height: 100px;
}

.schnmbx {
	float: left;
	width: 100%;
	margin-top: 25px;
	padding-left: 10px;
	color: #595959;
	height: 30px;
	font-size: 24px;
}

.schlnbx {
	float: left;
	width: 100%;
	padding-left: 10px;
	color: #595959;
	height: 25px;
	font-size: 18px;
}

.gallbx {
	width: 100%;
	height: 350px;
	overflow: hidden;
	background-color: #999;
}

.imgoverbx {
	width: 100%;
	height: 100px;
}

.thumbsx {
	float: left;
	width: 120px;
	height: 70px;
	margin: 15px 0px 15px 15px;
	border: 3px solid #dedede;
	border-radius: 2px;
}

.thumbsx img {
	width: 100%;
}

.addnewsp {
	float: left;
	width: 100%;
	margin-top: 12px;
	color: #999;
	text-align: center;
	font-size: 34px;
}

.topsrchbar {
	width: 100%;
	height: 50px;
}

.cnttopshbx {
	margin: 10px auto;
	margin-top: -15px;
	width: 60%;
}

.cnttopshbx input[type='text'] {
	width: 100%;
	height: 40px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	font-size: 16px;
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25) inset;
	border-radius: 20px;
	border: 1px solid #ccc;
}

.rpotbx {
	width: 100%;
	overflow: hidden;
	height: 200px;
	cursor: pointer;
}

.rpotbx img {
	width: 100%;
}

.reptinfobx {
	width: 100%;
	height: 100px;
}

.reptinfobx p {
	font-size: 12px;
	height: 35px;
	overflow: hidden;
}

.reptinfobx .p {
	padding: 16px;
	width: 80%;
	float: left;
}

.slidelinebx {
	float: left;
	width: 200px;
	height: 200px;
	background-color: red;
}

.starticonbx {
	float: left;
	font-size: 30px;
	width: 15%;
	line-height: 105px;
	color: #999;
	text-align: center;
	height: 100%;
	margin-left: 10px;
}

/*end*/

/*update by rek*/
.gradebg {
	background-image: url(../images/gradebg.png);
	background-repeat: no-repeat;
}

ul.ribbon-badge {
	padding: 0;
	width: 245px;
	float: left;
	height: 245px;
	border-radius: 50%;
	position: relative;
}

ul.ribbon-badge li {
	z-index: 0;
	display: inline-block;
	background: #3875ff;
	width: 250px;
	height: 35px;
	left: -3px;
	top: 105px;
	position: absolute;
}

ul.ribbon-badge li.strip:nth-child(2) {
	/*transform*/
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg);
}

ul.ribbon-badge li.strip:nth-child(3) {
	/*transform*/
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	-o-transform: rotate(60deg);
	transform: rotate(60deg);
}

ul.ribbon-badge li.strip:nth-child(4) {
	/*transform*/
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

ul.ribbon-badge li.strip:nth-child(5) {
	/*transform*/
	-webkit-transform: rotate(120deg);
	-moz-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	-o-transform: rotate(120deg);
	transform: rotate(120deg);
}

ul.ribbon-badge li.strip:nth-child(6) {
	/*transform*/
	-webkit-transform: rotate(150deg);
	-moz-transform: rotate(150deg);
	-ms-transform: rotate(150deg);
	-o-transform: rotate(150deg);
	transform: rotate(150deg);
}

ul.ribbon-badge li.strip:after {
	content: '';
	display: inline-block;
	background: #3875ff;
	width: 250px;
	height: 35px;
	left: -3px;
	top: 105px;
	/*transform*/
	-webkit-transform: rotate(10deg);
	-moz-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	-o-transform: rotate(10deg);
	transform: rotate(10deg);
}

ul.ribbon-badge,
ul.ribbon-badge li.strip,
ul.ribbon-badge li.strip:after,
ul.ribbon-badge li.strip:before {
	background: #0093ff;
	background: linear-gradient(45deg, transparent 40%, rgba(113, 113, 113, 0.28) 40%, rgba(178, 216, 255, 0.85) 60%, transparent 60%),
		linear-gradient(rgba(0, 147, 255, 0.6), rgba(0, 147, 255, 0.6));
	background: -webkit-linear-gradient(45deg, transparent 40%, rgba(113, 113, 113, 0.28) 40%, rgba(178, 216, 255, 0.85) 60%, transparent 60%),
		-webkit-linear-gradient(rgba(0, 147, 255, 0.6), rgba(0, 147, 255, 0.6));
	background: -webkit-gradient(
			linear,
			left bottom,
			right top,
			color-stop(40%, transparent),
			color-stop(40%, rgba(113, 113, 113, 0.28)),
			color-stop(60%, rgba(178, 216, 255, 0.85)),
			color-stop(60%, transparent)
		),
		-webkit-gradient(linear, left top, left bottom, from(rgba(0, 147, 255, 0.6)), to(rgba(0, 147, 255, 0.6)));
	background: -moz-linear-gradient(45deg, transparent 40%, rgba(113, 113, 113, 0.28) 40%, rgba(178, 216, 255, 0.85) 60%, transparent 60%),
		-moz-linear-gradient(rgba(0, 147, 255, 0.6), rgba(0, 147, 255, 0.6));
	background: -o-linear-gradient(45deg, transparent 40%, rgba(113, 113, 113, 0.28) 40%, rgba(178, 216, 255, 0.85) 60%, transparent 60%),
		-o-linear-gradient(rgba(0, 147, 255, 0.6), rgba(0, 147, 255, 0.6));
	background-size: 4px 4px;
}

ul.ribbon-badge li.strip:before {
	content: '';
	display: inline-block;
	background: radial-gradient(circle, black, rgba(62, 151, 255, 0.25));
	width: 250px;
	height: 40px;
	position: absolute;
}

ul.ribbon-badge li.inner {
	z-index: 10;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background-color: #0093ff;
	background: linear-gradient(90deg, transparent 30%, rgba(0, 130, 226, 0.59) 30%, rgba(106, 192, 255, 0.72) 70%, transparent 70%), linear-gradient(#67bfff, #22a2ff);
	background: -webkit-linear-gradient(0deg, transparent 30%, rgba(0, 130, 226, 0.59) 30%, rgba(106, 192, 255, 0.72) 70%, transparent 70%), -webkit-linear-gradient(#67bfff, #22a2ff);
	background: -webkit-gradient(
			linear,
			left top,
			right top,
			color-stop(30%, transparent),
			color-stop(30%, rgba(0, 130, 226, 0.59)),
			color-stop(70%, rgba(106, 192, 255, 0.72)),
			color-stop(70%, transparent)
		),
		-webkit-gradient(linear, left top, left bottom, from(#67bfff), to(#22a2ff));
	background: -moz-linear-gradient(0deg, transparent 30%, rgba(0, 130, 226, 0.59) 30%, rgba(106, 192, 255, 0.72) 70%, transparent 70%), -moz-linear-gradient(#67bfff, #22a2ff);
	background: -o-linear-gradient(0deg, transparent 30%, rgba(0, 130, 226, 0.59) 30%, rgba(106, 192, 255, 0.72) 70%, transparent 70%), -o-linear-gradient(#67bfff, #22a2ff);
	background: -ms-linear-gradient(0deg, transparent 30%, rgba(0, 130, 226, 0.59) 30%, rgba(106, 192, 255, 0.72) 70%, transparent 70%), -ms-linear-gradient(#67bfff, #22a2ff);
	background-size: 3px 3px;
	position: absolute;
	left: 36px;
	top: 39px;
	box-shadow: 0 0 0 1px rgba(253, 253, 253, 0.26) inset, 0 0 0 3px #33a9ff inset, 0 0 0 4px #2fa7ff inset, 0 0 2px 5px rgba(0, 57, 98, 0.62) inset, 0 0 5px 0 rgba(0, 0, 0, 0.57),
		0 0 40px 5px rgba(0, 0, 0, 0.42);
}

ul.ribbon-badge li.inner:after,
ul.ribbon-badge li.inner:before {
	display: none;
}

ul.ribbon-badge li.inner span {
	position: absolute;
	color: #3379ff;
	color: rgba(51, 121, 255, 0.48);
	text-align: center;
	font-size: 35px;
	font-weight: bolder;
	font-family: verdana;
	text-transform: uppercase;
	line-height: 30px;
	letter-spacing: -3px;
	top: 30px;
	left: -2px;
}

/*following lines will add inner shadow effect to text*/
ul.ribbon-badge li.inner span:before,
.inner span:after {
	content: attr(title);
	position: absolute;
}

ul.ribbon-badge li.inner span:before {
	top: 1px;
	left: 1px;
	color: #262626;
	color: rgba(38, 38, 38, 0.39);
}

ul.ribbon-badge li.inner span:after {
	top: 2px;
	left: 2px;
	color: #1b8eff;
	color: rgba(27, 142, 255, 0.29);
}

ul.ribbon-badge li.tail {
	position: absolute;
	top: 220px;
	background: none;
	z-index: -1;
}

ul.ribbon-badge li.tail:before,
ul.ribbon-badge li.tail:after {
	content: '';
	position: absolute;
	background-color: #1b8eff;
	background-image: linear-gradient(
			0deg,
			transparent 20%,
			rgba(113, 113, 113, 0.28) 20%,
			rgba(178, 216, 255, 0.85) 40%,
			transparent 40%,
			rgba(113, 113, 113, 0.28) 60%,
			rgba(178, 216, 255, 0.85) 80%,
			transparent 80%
		),
		linear-gradient(rgba(26, 134, 214, 0.6), rgba(0, 89, 154, 0.6));
	background-image: -webkit-linear-gradient(
			90deg,
			transparent 20%,
			rgba(113, 113, 113, 0.28) 20%,
			rgba(178, 216, 255, 0.85) 40%,
			transparent 40%,
			rgba(113, 113, 113, 0.28) 60%,
			rgba(178, 216, 255, 0.85) 80%,
			transparent 80%
		),
		-webkit-linear-gradient(rgba(26, 134, 214, 0.6), rgba(0, 89, 154, 0.6));
	background-image: -webkit-gradient(
			linear,
			left bottom,
			left top,
			color-stop(20%, transparent),
			color-stop(20%, rgba(113, 113, 113, 0.28)),
			color-stop(40%, rgba(178, 216, 255, 0.85)),
			color-stop(40%, transparent),
			color-stop(60%, rgba(113, 113, 113, 0.28)),
			color-stop(80%, rgba(178, 216, 255, 0.85)),
			color-stop(80%, transparent)
		),
		-webkit-gradient(linear, left top, left bottom, from(rgba(26, 134, 214, 0.6)), to(rgba(0, 89, 154, 0.6)));
	background-image: -moz-linear-gradient(
			90deg,
			transparent 20%,
			rgba(113, 113, 113, 0.28) 20%,
			rgba(178, 216, 255, 0.85) 40%,
			transparent 40%,
			rgba(113, 113, 113, 0.28) 60%,
			rgba(178, 216, 255, 0.85) 80%,
			transparent 80%
		),
		-moz-linear-gradient(rgba(26, 134, 214, 0.6), rgba(0, 89, 154, 0.6));
	background-image: -o-linear-gradient(
			90deg,
			transparent 20%,
			rgba(113, 113, 113, 0.28) 20%,
			rgba(178, 216, 255, 0.85) 40%,
			transparent 40%,
			rgba(113, 113, 113, 0.28) 60%,
			rgba(178, 216, 255, 0.85) 80%,
			transparent 80%
		),
		-o-linear-gradient(rgba(26, 134, 214, 0.6), rgba(0, 89, 154, 0.6));
	background-image: -ms-linear-gradient(
			90deg,
			transparent 20%,
			rgba(113, 113, 113, 0.28) 20%,
			rgba(178, 216, 255, 0.85) 40%,
			transparent 40%,
			rgba(113, 113, 113, 0.28) 60%,
			rgba(178, 216, 255, 0.85) 80%,
			transparent 80%
		),
		-ms-linear-gradient(rgba(26, 134, 214, 0.6), rgba(0, 89, 154, 0.6));
	background-size: 4px 4px;
	/*backface-visibility*/
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
	width: 0;
	height: 0;
	border: 25px solid transparent;
	left: 0;
	border-left: 25px solid #ffffff;
	border-right-width: 150px;
}

ul.ribbon-badge li.tail:before {
	-webkit-transform: rotate(-75deg);
	-moz-transform: rotate(-75deg);
	-ms-transform: rotate(-75deg);
	-o-transform: rotate(-75deg);
	transform: rotate(-75deg);
}

ul.ribbon-badge li.tail:after {
	-webkit-transform: rotate(-105deg);
	-moz-transform: rotate(-105deg);
	-ms-transform: rotate(-105deg);
	-o-transform: rotate(-105deg);
	transform: rotate(-105deg);
	top: 0;
	left: 70px;
}

#aboutmsgbx {
	/* width: 100%;
    min-height: 200px;
    margin-left: 20px; */
}

@media (max-width: 969px) {
	#about__dialog {
		height: 100vh;
	}

	#about__content {
		height: 100%;
	}

	#aboutmsgbx {
		margin: 325px 8px 90px 8px;
		padding: 0px !important;
	}

	.about-version {
		position: absolute;
		bottom: 15px;
		right: 20px;
		padding-left: 20px;
		z-index: 1;
		background: rgba(255, 255, 255, 1);
		padding-top: 8px;
	}
}

/*end*/

/*
  Allow angular.js to be loaded in body, hiding cloaked elements until
  templates compile.  The !important is important given that there may be
  other selectors that are more specific or come later and might alter display.
 */
[ng\:cloak],
[ng-cloak],
.ng-cloak {
	display: none !important;
}

.typer__cursor--blink {
	-webkit-animation: blink 1s infinite;
	-moz-animation: blink 1s infinite;
	animation: blink 1s infinite;
}

@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@-moz-keyframes blink {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

#password-strength-indicator {
	width: 7px;
	display: none;
	position: absolute;
	top: 18px;
	right: -12px;
}

#password-strength-indicator > span {
	display: block;
	height: 5px;
}

[ui-view].ng-leave {
	display: none;
}

[ui-view].ng-leave.smooth {
	display: block;
}

::-webkit-scrollbar {
	height: 12px;
	width: 12px;
	background: #ebebeb;
	overflow: visible;
}

::-webkit-scrollbar-corner {
	display: none;
	background: #f5f5f5;
}

::-webkit-scrollbar-button {
	display: none;
	height: 0;
	width: 0;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
	display: block;
}

::-webkit-scrollbar-button:vertical:start:increment,
::-webkit-scrollbar-button:vertical:end:decrement {
	display: none;
}

::-webkit-scrollbar-track {
	-moz-background-clip: border;
	-webkit-background-clip: border;
	background-clip: padding-box;
	background-color: #f5f5f5;
}

::-webkit-scrollbar-track:vertical,
::-webkit-scrollbar-track:horizontal {
	border-left-width: 0;
	border-right-width: 0;
}

::-webkit-scrollbar-track:vertical,
::-webkit-scrollbar-track:horizontal,
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal,
::-webkit-scrollbar-track:vertical,
::-webkit-scrollbar-track:horizontal,
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
	border-style: solid;
	border-color: transparent;
}

::-webkit-scrollbar-thumb {
	-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
	background-clip: padding-box;
	background-color: rgba(0, 0, 0, 0.2);
	min-height: 28px;
	padding-top: 100px;
}

::-webkit-scrollbar-thumb:hover {
	-webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
	background-color: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-thumb:active {
	-webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.35);
	background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
	border-width: 0;
	border-left-width: 0;
	border-right-width: 0;
}

.smooth.ng-animate {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.fade-in-right-big.ng-enter {
	-webkit-animation: fadeInRightBig 0.5s;
	animation: fadeInRightBig 0.5s;
}

.fade-in-right-big.ng-leave {
	-webkit-animation: fadeOutLeftBig 0.5s;
	animation: fadeOutLeftBig 0.5s;
}

.fade-in-left-big.ng-enter {
	-webkit-animation: fadeInLeftBig 0.5s;
	animation: fadeInLeftBig 0.5s;
}

.fade-in-left-big.ng-leave {
	-webkit-animation: fadeOutRightBig 0.5s;
	animation: fadeOutRightBig 0.5s;
}

.fade-in-up-big.ng-enter {
	-webkit-animation: fadeInUpBig 0.5s;
	animation: fadeInUpBig 0.5s;
}

.fade-in-up-big.ng-leave {
	-webkit-animation: fadeOutUpBig 0.5s;
	animation: fadeOutUpBig 0.5s;
}

.fade-in-down-big.ng-enter {
	-webkit-animation: fadeInDownBig 0.5s;
	animation: fadeInDownBig 0.5s;
}

.fade-in-down-big.ng-leave {
	-webkit-animation: fadeOutDownBig 0.5s;
	animation: fadeOutDownBig 0.5s;
}

.fade-in.ng-enter {
	-webkit-animation: fadeIn 0.5s;
	animation: fadeIn 0.5s;
}

.fade-in.ng-leave {
	-webkit-animation: fadeOut 0.5s;
	animation: fadeOut 0.5s;
}

.fade-in-right.ng-enter {
	-webkit-animation: fadeInRight 0.5s;
	animation: fadeInRight 0.5s;
}

.fade-in-right.ng-leave {
	-webkit-animation: fadeOutLeft 0.5s;
	animation: fadeOutLeft 0.5s;
}

.fade-in-left.ng-enter {
	-webkit-animation: fadeInLeft 0.5s;
	animation: fadeInLeft 0.5s;
}

.fade-in-left.ng-leave {
	-webkit-animation: fadeOutRight 0.5s;
	animation: fadeOutRight 0.5s;
}

.fade-in-up.ng-enter {
	-webkit-animation: fadeInUp 0.5s;
	animation: fadeInUp 0.5s;
}

.fade-in-up.ng-leave {
	-webkit-animation: fadeOutUp 0.5s;
	animation: fadeOutUp 0.5s;
}

.fade-in-down.ng-enter {
	-webkit-animation: fadeInDown 0.5s;
	animation: fadeInDown 0.5s;
}

.fade-in-down.ng-leave {
	-webkit-animation: fadeOutDown 0.5s;
	animation: fadeOutDown 0.5s;
}

html {
	background-color: #eceff1;
}

body {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	line-height: 1.42857143;
	color: rgba(0, 0, 0, 0.87);
	background-color: transparent;
}

*:focus {
	outline: 0 !important;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	outline: 0;
}

a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
}

.well,
pre {
	background-color: #eaebec;
	border-color: #dddee0;
}

small,
.small {
	font-size: 13px;
}

blockquote {
	border-color: #dddee0;
}

label {
	font-weight: normal;
}

sup {
	position: relative;
	top: -0.5em;
	font-size: 75%;
}

.thumbnail {
	border-color: #dddee0;
}

@media (min-width: 768px) and (max-width: 991px) {
	.pull-none-sm {
		float: none !important;
	}

	.pull-right-sm {
		float: right !important;
	}

	.pull-left-sm {
		float: left !important;
	}

	.hidden-sm.show {
		display: inherit !important;
	}
}

@media (max-width: 767px) {
	.pull-none-xs {
		float: none !important;
	}

	.pull-right-xs {
		float: right !important;
	}

	.pull-left-xs {
		float: left !important;
	}

	.hidden-xs.show {
		display: inherit !important;
	}
}

.badge,
.label {
	font-weight: bold;
	background-color: #a7abaf;
}

.badge.bg-light,
.badge.bg-white,
.label.bg-light,
.label.bg-white {
	color: rgba(0, 0, 0, 0.87);
	text-shadow: none;
}

.label {
	padding: 0.35em 0.6em;
}

.badge {
	padding: 3px 6px;
}

.badge.up {
	position: relative;
	top: -10px;
	margin: 0 -0.5em;
}

.badge-lg {
	padding: 5px 9px;
	font-size: 16px;
	border-radius: 20px;
}

.badge-sm {
	padding: 2px 5px;
}

.badge-xs {
	padding: 1px 4px;
}

.label-lg {
	padding: 5px 9px;
	font-size: 16px;
}

.label-sm {
	padding: 2px 5px;
}

.label-xs {
	padding: 1px 4px;
}

.badge-white {
	padding: 2px 6px;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.badge-black {
	color: inherit;
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-default {
	color: rgba(0, 0, 0, 0.87) !important;
	background-color: #ffffff;
	border-color: #cacaca;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default.btn-stroke:hover,
.btn-default.btn-stroke:focus,
.btn-default.btn-stroke:active,
.btn-default.btn-stroke.active,
.open .dropdown-toggle.btn-default {
	color: rgba(0, 0, 0, 0.87) !important;
	background-color: #f2f2f2 !important;
	border-color: #c7cacd !important;
}

.btn-default.btn-addon > i {
	background-color: #f0f0f0;
	border: 1px solid #cdcfd1;
}

.btn-default.btn-stroke {
	color: #ffffff !important;
	background-color: transparent;
}

.btn-primary {
	color: #ffffff !important;
	background-color: #3f51b5;
	border-color: #3f51b5;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.btn-stroke:hover,
.btn-primary.btn-stroke:focus,
.btn-primary.btn-stroke:active,
.btn-primary.btn-stroke.active,
.open .dropdown-toggle.btn-primary {
	color: #ffffff !important;
	background-color: #3849a2 !important;
	border-color: #344397 !important;
}

.btn-primary.btn-addon > i {
	background-color: #37479e;
	border: 1px solid #37479e;
}

.btn-primary.btn-stroke {
	color: #3f51b5 !important;
	background-color: transparent;
}

.btn-success {
	color: #ffffff !important;
	background-color: #4caf50;
	border-color: #4caf50;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.btn-stroke:hover,
.btn-success.btn-stroke:focus,
.btn-success.btn-stroke:active,
.btn-success.btn-stroke.active,
.open .dropdown-toggle.btn-success {
	color: #ffffff !important;
	background-color: #449d48 !important;
	border-color: #409343 !important;
}

.btn-success.btn-addon > i {
	background-color: #439a46;
	border: 1px solid #439a46;
}

.btn-success.btn-stroke {
	color: #4caf50 !important;
	background-color: transparent;
}

.btn-indigo,
.md-button.indigo {
	color: #ffffff !important;
	background-color: #12728e;
	border-color: #12728e;
}

.btn-indigo:hover,
.btn-indigo:focus,
.btn-indigo:active,
.btn-indigo.active,
.md-button.indigo:hover,
.md-button.indigo:focus,
.md-button.indigo:active,
.md-button.indigo.active,
.btn-indigo.btn-stroke:hover,
.btn-indigo.btn-stroke:focus,
.btn-indigo.btn-stroke:active,
.btn-indigo.btn-stroke.active,
.open .dropdown-toggle.btn-indigo {
	color: #ffffff !important;
	background-color: #12728e !important;
	border-color: #12728e !important;
}

.btn-info {
	color: #ffffff !important;
	background-color: #12728e;
	border-color: #12728e;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.btn-stroke:hover,
.btn-info.btn-stroke:focus,
.btn-info.btn-stroke:active,
.btn-info.btn-stroke.active,
.open .dropdown-toggle.btn-info {
	color: #ffffff !important;
	background-color: #12728e !important;
	border-color: #12728e !important;
}

.btn-info.btn-addon > i {
	background-color: #12728e;
	border: 1px solid #12728e;
}

.btn-info.btn-stroke {
	color: #12728e !important;
	background-color: transparent;
}

.btn-warning {
	color: #ffffff !important;
	background-color: #ffc107;
	border-color: #ffc107;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.btn-stroke:hover,
.btn-warning.btn-stroke:focus,
.btn-warning.btn-stroke:active,
.btn-warning.btn-stroke.active,
.open .dropdown-toggle.btn-warning {
	color: #ffffff !important;
	background-color: #ecb100 !important;
	border-color: #dda600 !important;
}

.btn-warning.btn-addon > i {
	background-color: #e7ae00;
	border: 1px solid #e7ae00;
}

.btn-warning.btn-stroke {
	color: #ffc107 !important;
	background-color: transparent;
}

.btn-danger {
	color: #ffffff !important;
	background-color: #f44336;
	border-color: #f44336;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.btn-stroke:hover,
.btn-danger.btn-stroke:focus,
.btn-danger.btn-stroke:active,
.btn-danger.btn-stroke.active,
.open .dropdown-toggle.btn-danger {
	color: #ffffff !important;
	background-color: #f32c1e !important;
	border-color: #f21f0f !important;
}

.btn-danger.btn-addon > i {
	background-color: #f22819;
	border: 1px solid #f22819;
}

.btn-danger.btn-stroke {
	color: #f44336 !important;
	background-color: transparent;
}

.btn-accent {
	color: #ffffff !important;
	background-color: #7e57c2;
	border-color: #7e57c2;
}

.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active,
.btn-accent.active,
.btn-accent.btn-stroke:hover,
.btn-accent.btn-stroke:focus,
.btn-accent.btn-stroke:active,
.btn-accent.btn-stroke.active,
.open .dropdown-toggle.btn-accent {
	color: #ffffff !important;
	background-color: #7044bb !important;
	border-color: #6940b0 !important;
}

.btn-accent.btn-addon > i {
	background-color: #6d43b8;
	border: 1px solid #6d43b8;
}

.btn-accent.btn-stroke {
	color: #7e57c2 !important;
	background-color: transparent;
}

.btn-dark {
	color: #ffffff !important;
	background-color: #475069;
	border-color: #475069;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.btn-dark.btn-stroke:hover,
.btn-dark.btn-stroke:focus,
.btn-dark.btn-stroke:active,
.btn-dark.btn-stroke.active,
.open .dropdown-toggle.btn-dark {
	color: #ffffff !important;
	background-color: #3d445a !important;
	border-color: #373d51 !important;
}

.btn-dark.btn-addon > i {
	background-color: #3b4257;
	border: 1px solid #3b4257;
}

.btn-dark.btn-stroke {
	color: #475069 !important;
	background-color: transparent;
}

.btn-light {
	color: rgba(0, 0, 0, 0.87) !important;
	background-color: #eaebec;
	border-color: #eaebec;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active,
.btn-light.btn-stroke:hover,
.btn-light.btn-stroke:focus,
.btn-light.btn-stroke:active,
.btn-light.btn-stroke.active,
.open .dropdown-toggle.btn-light {
	color: rgba(0, 0, 0, 0.87) !important;
	background-color: #dddee0 !important;
	border-color: #d5d7d9 !important;
}

.btn-light.btn-addon > i {
	background-color: #dadcdd;
	border: 1px solid #dadcdd;
}

.btn-light.btn-stroke {
	color: #eaebec !important;
	background-color: transparent;
}

.btn {
	font-weight: 500;
	border-radius: 3px;
	outline: 0 !important;
	box-shadow: 0 1px 1px rgba(90, 90, 90, 0.1);
}

.btn > i.pull-left,
.btn > i.pull-right {
	line-height: 1.428571429;
}

.btn-link {
	color: rgba(0, 0, 0, 0.87);
}

.btn-link.active {
	box-shadow: none;
	webkit-box-shadow: none;
}

.btn-block {
	padding-right: 12px;
	padding-left: 12px;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
	border-top-right-radius: 3px;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
	border-bottom-left-radius: 3px;
}

.btn-rounded {
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 50px;
}

.btn-rounded.btn-lg {
	padding-right: 25px;
	padding-left: 25px;
}

.btn-addon i {
	position: relative;
	left: -1px;
	float: left;
	width: 34px;
	height: 34px;
	margin: -7px -12px;
	margin-right: 12px;
	line-height: 34px;
	text-align: center;
	border-radius: 3px 0 0 3px;
}

.btn-addon i.pull-right {
	right: -1px;
	left: auto;
	margin-right: -12px;
	margin-left: 12px;
	border-radius: 0 3px 3px 0;
}

.btn-addon.btn-sm i {
	width: 30px;
	height: 30px;
	margin: -6px -10px;
	margin-right: 10px;
	line-height: 30px;
}

.btn-addon.btn-sm i.pull-right {
	margin-right: -10px;
	margin-left: 10px;
}

.btn-addon.btn-lg i {
	width: 46px;
	height: 46px;
	margin: -11px -16px;
	margin-right: 16px;
	line-height: 45px;
}

.btn-addon.btn-lg i.pull-right {
	margin-right: -16px;
	margin-left: 16px;
}

.btn-clip {
	border-color: rgba(0, 0, 0, 0.1) !important;
	background-clip: padding-box;
}

.btn-icon {
	width: 34px;
	height: 34px;
	padding: 0;
	padding-right: 0 !important;
	padding-left: 0 !important;
	line-height: 34px;
	text-align: center;
}

.btn-icon.btn-sm {
	width: 30px;
	height: 30px;
	line-height: 30px;
}

.btn-icon.btn-lg {
	width: 45px;
	height: 45px;
	line-height: 45px;
}

.btn-groups .btn {
	margin-bottom: 5px;
}

.btn-fw {
	min-width: 120px;
}

.dropdown-menu {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	-webkit-transform-origin: top left;
	-moz-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
}

.dropdown-menu.pull-left {
	left: 100%;
}

.dropdown-menu.pull-right {
	left: auto !important;
	-webkit-transform-origin: top right;
	-moz-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
}

.dropdown-menu.pull-up {
	top: 0;
}

.dropup .dropdown-menu {
	-webkit-transform-origin: bottom left;
	-moz-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
}

.dropup .dropdown-menu.pull-right {
	-webkit-transform-origin: bottom right;
	-moz-transform-origin: bottom right;
	-ms-transform-origin: bottom right;
	transform-origin: bottom right;
}

.dropdown-menu > .panel {
	margin: -5px 0;
	border: none;
}

.dropdown-menu > li > a {
	padding: 8px 16px;
	color: inherit;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	color: rgba(0, 0, 0, 0.87);
	background-color: #eaebec !important;
	background-image: none;
	filter: none;
}

.dropdown-menu.top,
.dropdown-menu.top-left,
.dropdown-menu.top-right {
	margin-top: -2px;
}

.dropdown-menu.datepicker {
	padding-right: 5px;
	padding-left: 5px;
	font-size: 12px;
}

.dropdown-menu.datepicker .btn {
	font-size: 12px;
}

.dropdown-menu.timepicker {
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 12px;
}

.dropdown-menu.timepicker .btn {
	font-size: 12px;
}

.dropdown-menu-scale {
	display: block;
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.25s;
	transition: all 0.25s;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.open > .dropdown-menu-scale {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.dropdown-header {
	padding: 8px 16px;
}

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
	background-color: inherit !important;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus > .dropdown-menu {
	display: block;
}

.dropdown-submenu.pull-left {
	float: none !important;
}

.dropdown-submenu.pull-left > .dropdown-menu {
	left: -100%;
	margin-left: 10px;
}

.dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
}

.dropup .dropdown-submenu > .dropdown-menu {
	top: auto;
	bottom: 0;
}

@media (max-width: 767px) {
	.dropdown-menu.pull-none-xs {
		left: 0;
	}
}

.form-control {
	border-color: #cfd1d4;
	border-radius: 0;
}

.form-control,
.form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-control:focus {
	border-color: #a7abaf;
}

.form-control-spin {
	position: absolute;
	top: 50%;
	right: 10px;
	z-index: 2;
	margin-top: -7px;
}

.input-lg,
.form-horizontal .form-group-lg .form-control {
	height: 45px;
	border-radius: 0;
}

.input-group-addon {
	background-color: #eaebec;
	border-color: #cfd1d4;
}

.form-group-stack .form-control {
	position: relative;
	margin-top: -1px;
	border-radius: 0;
}

.form-group-stack .form-control:focus,
.form-group-stack .form-control:active {
	z-index: 1;
}

.form-validation .form-control.ng-dirty.ng-invalid {
	border-color: #f44336;
}

.form-validation .form-control.ng-dirty.ng-valid,
.form-validation .form-control.ng-dirty.ng-valid:focus {
	border-color: #4caf50;
}

.form-validation .ui-checks .ng-invalid.ng-dirty + i {
	border-color: #f44336;
}

.form-file {
	position: relative;
}

.form-file input {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
}

@media (max-width: 992px) {
	.form-horizontal .form-group {
		margin-right: -8px;
		margin-left: -8px;
	}
}

.list-group {
	background: transparent;
	border-radius: 3px;
}

.list-group.no-radius .list-group-item {
	border-radius: 0 !important;
}

.list-group.no-borders .list-group-item {
	border: none;
}

.list-group.no-border .list-group-item {
	border-width: 1px 0;
}

.list-group.no-bg .list-group-item {
	background-color: transparent;
}

.list-group.list-group-gap {
	background: transparent;
}

.list-group-item {
	padding: 12px 16px;
	background: transparent;
	border-color: rgba(110, 115, 120, 0.045);
	border-right-color: transparent;
	border-left-color: transparent;
}

a.list-group-item {
	color: inherit;
}

a.list-group-item:hover,
a.list-group-item:focus,
a.list-group-item.hover {
	color: inherit;
	background-color: rgba(110, 115, 120, 0.075);
}

.list-group-item.media {
	margin-top: 0;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
	color: inherit;
	background-color: rgba(110, 115, 120, 0.075);
	border-color: transparent;
}

.list-group-item.active a,
.list-group-item.active:hover a,
.list-group-item.active:focus a {
	color: inherit;
}

.list-group-alt .list-group-item:nth-child(2n + 2) {
	background-color: rgba(110, 115, 120, 0.075);
}

.list-group-alt .list-group-item.active:nth-child(2n + 2) {
	background-color: rgba(110, 115, 120, 0.075);
}

.list-group-lg .list-group-item {
	padding: 16px 24px;
}

.list-group-md .list-group-item {
	padding-top: 16px;
	padding-bottom: 16px;
}

.list-group-sm .list-group-item {
	padding: 10px 12px;
}

.list-group-gap .list-group-item {
	margin-bottom: 5px;
	background: #fff;
	border-radius: 3px;
}

.modal.fade .left {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	-moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	-o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.fade .right {
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	-moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	-o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.fade .top {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	-moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	-o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.fade .bottom {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	-moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	-o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.in .left,
.modal.in .right,
.modal.in .top,
.modal.in .bottom {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.modal > .left {
	position: absolute;
	top: 0;
	right: auto;
	bottom: 0;
	left: 0;
}

.modal > .right {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
}

.modal > .top {
	position: absolute;
	top: 0;
	right: 0;
	bottom: auto;
	left: 0;
}

.modal > .bottom {
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
}

.modal-backdrop {
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-backdrop.in {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.modal-over {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.modal-center {
	position: absolute;
	top: 50%;
	left: 50%;
}

.nav > li > a:hover,
.nav > li > a:focus,
.nav > li.active > a {
	background-color: inherit;
}

.nav > li > a {
	padding: 10px 16px;
}

.nav.nav-lg > li > a {
	padding: 20px 20px;
}

.nav.nav-md > li > a {
	padding: 16px 16px;
}

.nav.nav-sm > li > a {
	padding: 6px 12px;
	font-size: 13px;
}

.nav.nav-xs > li > a {
	padding: 4px 10px;
	font-size: 12px;
}

.nav.nav-xxs > li > a {
	padding: 1px 10px;
	font-size: 12px;
}

.nav.nav-rounded > li > a {
	border-radius: 20px;
}

.nav.no-radius > li > a {
	border-radius: 0;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
	background-color: inherit;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:active {
	color: rgba(0, 0, 0, 0.87);
	background-color: #dddee0;
}

.nav-pills > li.active > a > .text-muted {
	color: rgba(0, 0, 0, 0.87);
}

.nav-tabs {
	border-color: #dddee0;
}

.nav-tabs > li > a {
	border-bottom-color: #dddee0;
	border-radius: 3px 3px 0 0;
}

.nav-tabs > li:hover > a,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover .nav-tabs > li.active > a:focus {
	background-color: #fff;
	border-color: #dddee0;
}

.nav-tabs > li.active > a {
	border-bottom-color: #fff !important;
}

.nav-tabs.nav-justified > li {
	display: table-cell;
	width: 1%;
}

.nav-tabs.nav-justified > li > a {
	margin-bottom: 0;
	border-radius: 3px 3px 0 0;
}

.nav-lines {
	margin-bottom: -1px;
	border-width: 0 !important;
}

.nav-lines.nav-justified {
	margin-bottom: -2px;
	border-bottom: 2px solid #2196f3;
}

.nav-lines > li {
	float: left;
	border-color: inherit;
	opacity: 0.6;
}

.nav-lines > li:after {
	position: absolute;
	right: 50%;
	bottom: 0;
	left: 50%;
	border-bottom-color: transparent;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	content: '';
	-webkit-transition: all 0.3s cubic-bezier(0.35, 0, 0.25, 1);
	transition: all 0.3s cubic-bezier(0.35, 0, 0.25, 1);
}

.nav-lines > li > a {
	background-color: transparent !important;
	border-width: 0 !important;
}

.nav-lines > li.active {
	opacity: 1;
}

.nav-lines > li.active:after {
	right: 0;
	left: 0;
	border-bottom-color: inherit;
}

.nav-lines.nav-lines-top > li:after {
	top: 0;
	bottom: auto;
}

.nav-lists a {
	border-bottom: 1px solid #dddee0;
}

.tab-container {
	margin-bottom: 15px;
}

.tab-container .tab-content {
	padding: 15px;
	background-color: #fff;
	border: 1px solid #dddee0;
	border-top-width: 0;
	border-radius: 0 0 3px 3px;
}

.navbar {
	position: relative;
	z-index: 50;
	min-height: 64px;
	margin: 0;
	border: none;
}

.navbar .navbar-nav > li > a,
.navbar .navbar-tool > li > a,
.navbar .navbar-item,
.navbar .navbar-brand {
	padding: 0 13px;
	line-height: 64px;
}

.navbar .navbar-tool.nav-sm > li > a {
	padding-right: 10px;
	padding-left: 10px;
}

.navbar .navbar-tool > li {
	float: left;
}

.navbar .navbar-brand {
	display: block;
	float: none;
	min-height: 64px;
	font-size: 20px;
	font-weight: bold;
}

.navbar .navbar-brand:hover {
	text-decoration: none;
}

.navbar .navbar-brand img,
.navbar .navbar-brand svg {
	display: inline-block;
	vertical-align: -25%;
}

@media (max-width: 991px) {
	.navbar {
		min-height: 64px;
	}

	.navbar .navbar-brand {
		min-height: 64px;
	}

	.navbar .navbar-nav > li > a,
	.navbar .navbar-tool > li > a,
	.navbar .navbar-item,
	.navbar .navbar-brand {
		line-height: 64px;
	}
}

.pagination > li > a {
	border-color: #dddee0;
}

.pagination > li > a:hover,
.pagination > li > a:focus {
	background-color: #eaebec;
	border-color: #dddee0;
}

.panel {
	border-radius: 3px;
}

.panel .accordion-toggle {
	display: block;
	font-size: 14px;
	cursor: pointer;
}

.panel .list-group-item {
	border-color: #eaebec;
}

.panel.no-borders {
	border-width: 0;
}

.panel.no-borders .panel-heading,
.panel.no-borders .panel-footer {
	border-width: 0;
}

.panel-card {
	border-width: 0;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.panel-heading {
	padding: 16px 24px;
	border-radius: 3px 3px 0 0;
}

.panel-default .panel-heading {
	background-color: #f2f3f3;
}

.panel-default .panel-heading.bg-white {
	background-color: #fff;
}

.panel-heading.no-border {
	margin: -1px -1px 0 -1px;
	border: none;
}

.panel-heading .nav {
	margin: -12px -16px;
}

.panel-heading .list-group {
	background: transparent;
}

.panel-heading.panel-heading-sm {
	padding-top: 8px;
	padding-bottom: 8px;
}

.panel-heading.panel-heading-xs {
	padding-top: 6px;
	padding-bottom: 6px;
}

.panel-body {
	padding: 16px 24px;
}

.panel-footer {
	color: #474747;
	padding: 16px 24px;
	background-color: #f2f3f3;
	border-color: #eaebec;
	border-radius: 0 0 3px 3px;
}

.panel-footer.panel-footer-sm {
	padding-top: 8px;
	padding-bottom: 8px;
}

.panel-footer.panel-footer-xs {
	padding-top: 6px;
	padding-bottom: 6px;
}

.panel-group .panel-heading + .panel-collapse .panel-body {
	border-top: 1px solid #eaebec;
}

.panel-default {
	border-color: #dddee0;
}

.panel-default > .panel-heading,
.panel-default > .panel-footer {
	border-color: #eaebec;
}

.panel-primary {
	border-color: #d0d4ed;
}

.panel-primary > .panel-heading {
	color: #252f69;
	background-color: #e2e5f4;
	border-color: #d0d4ed;
}

.panel-info {
	border-color: #c6e4fc;
}

.panel-info > .panel-heading {
	color: #0960a5;
	background-color: #deeffd;
	border-color: #c6e4fc;
}

.panel-success {
	border-color: #d3ebd4;
}

.panel-success > .panel-heading {
	color: #2d682f;
	background-color: #e4f3e5;
	border-color: #d3ebd4;
}

.panel-warning {
	border-color: #ffefc0;
}

.panel-warning > .panel-heading {
	color: #a07800;
	background-color: #fff6da;
	border-color: #ffefc0;
}

.panel-danger {
	border-color: #fcccc9;
}

.panel-danger > .panel-heading {
	color: #ba160a;
	background-color: #fde3e1;
	border-color: #fcccc9;
}

.panel-dark {
	border-color: #d5d7dd;
}

.panel-dark > .panel-heading {
	color: #1e222c;
	background-color: #e3e5e9;
	border-color: #d5d7dd;
}

.progress {
	background-color: #eaebec;
}

.progress-xxxs {
	height: 1px;
}

.progress-xxs {
	height: 2px;
}

.progress-xs {
	height: 6px;
}

.progress-sm {
	height: 12px;
}

.progress-sm .progress-bar {
	font-size: 10px;
	line-height: 12px;
}

.progress,
.progress-bar {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.progress-bar-primary {
	background-color: #3f51b5;
}

.progress-bar-info {
	background-color: #2196f3;
}

.progress-bar-success {
	background-color: #4caf50;
}

.progress-bar-warning {
	background-color: #ffc107;
}

.progress-bar-danger {
	background-color: #f44336;
}

.progress-bar-accent {
	background-color: #7e57c2;
}

.progress-bar-dark {
	background-color: #475069;
}

.progress-bar-white {
	background-color: #fff;
}

.col-0 {
	clear: left;
}

.row.no-gutter {
	margin-right: 0;
	margin-left: 0;
}

.no-gutter [class*='col'] {
	padding: 0;
}

.row-sm {
	margin-right: -8px;
	margin-left: -8px;
}

.row-sm > div {
	padding-right: 8px;
	padding-left: 8px;
}

.row-xs {
	margin-right: -4px;
	margin-left: -4px;
}

.row-xs > div {
	padding-right: 4px;
	padding-left: 4px;
}

@media (max-width: 992px) {
	.row {
		margin-right: -8px;
		margin-left: -8px;
	}

	.row > div {
		padding-right: 8px;
		padding-left: 8px;
	}

	.row-2 [class*='col'] {
		float: left;
		width: 50%;
	}

	.row-2 .col-0 {
		clear: none;
	}

	.row-2 li:nth-child(odd) {
		margin-left: 0;
		clear: left;
	}
}

@media (max-width: 767px) {
	.row {
		margin-right: -4px;
		margin-left: -4px;
	}

	.row > div {
		padding-right: 4px;
		padding-left: 4px;
	}
}

.panel .table {
	border-color: #e7e8ea !important;
}

.table > tbody > tr > td,
.table > tfoot > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > th {
	padding: 12px 24px;
	border-top: 1px solid #e7e8ea;
}

.table > thead > tr > th {
	padding: 12px 24px;
	border-bottom: 1px solid #e7e8ea;
}

.table-bordered {
	border-color: #e7e8ea;
}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th {
	border-color: #e7e8ea;
}

.table-bordered > thead > tr > th {
	border-color: #e7e8ea;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
	background-color: #f6f6f7;
}

.table-striped > thead > th {
	background-color: #f6f6f7;
	border-right: 1px solid #e7e8ea;
}

.table-striped > thead > th:last-child {
	border-right: none;
}

[md-ink-ripple] {
	position: relative;
}

.md-btn {
	position: relative;
	display: inline-block;
	padding: 6px;
	overflow: hidden;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: bold;
	line-height: inherit;
	color: currentColor;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	background: transparent;
	border: 0;
	border-radius: 3px;
	outline: none;
	transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-variant: inherit;
}

.md-btn.md-flat:not([disabled]):hover,
.md-btn.md-flat:not([disabled]):focus {
	background-color: rgba(158, 158, 158, 0.2);
}

.md-btn-circle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
}

.md-btn[disabled],
.md-btn.md-raised[disabled],
.md-btn.md-fab[disabled] {
	color: rgba(0, 0, 0, 0.26);
	cursor: not-allowed;
	background-color: transparent;
}

.md-fab {
	line-height: 44px;
}

.md-fab-offset {
	margin-top: -28px;
	margin-bottom: -28px;
}

.md-btn:focus {
	outline: none;
}

.md-btn:hover {
	text-decoration: none;
}

.md-btn.md-cornered {
	border-radius: 0;
}

.md-btn.md-icon {
	padding: 0;
	background: none;
}

.md-btn.md-raised {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.md-btn.md-fab {
	z-index: 20;
	width: 56px;
	height: 56px;
	overflow: hidden;
	border-radius: 50%;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition: 0.2s linear;
	transition-property: -webkit-transform, box-shadow;
	transition-property: transform, box-shadow;
}

.md-btn.md-raised:not([disabled]),
.md-btn.md-fab {
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.md-btn.md-raised:not([disabled]):focus,
.md-btn.md-raised:not([disabled]):hover,
.md-btn.md-fab:not([disabled]):focus,
.md-btn.md-fab:not([disabled]):hover {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

.md-btn.md-fab.md-fab-bottom-right {
	position: absolute;
	top: auto;
	right: 20px;
	bottom: 20px;
	left: auto;
}

.md-btn.md-fab.md-fab-bottom-left {
	position: absolute;
	top: auto;
	right: auto;
	bottom: 20px;
	left: 20px;
}

.md-btn.md-fab.md-fab-top-right {
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: auto;
	left: auto;
}

.md-btn.md-fab.md-fab-top-left {
	position: absolute;
	top: 20px;
	right: auto;
	bottom: auto;
	left: 20px;
}

.md-btn.md-fab md-icon {
	margin-top: 0;
}

.md-btn.md-fab.md-mini {
	width: 40px;
	height: 40px;
}

.md-btn:not([disabled]).md-raised:focus,
.md-btn:not([disabled]).md-raised:hover,
.md-btn:not([disabled]).md-fab:focus,
.md-btn:not([disabled]).md-fab:hover {
	-webkit-transform: translate3d(0, -1px, 0);
	transform: translate3d(0, -1px, 0);
}

.md-toast-open-top .md-btn.md-fab-top-left,
.md-toast-open-top .md-btn.md-fab-top-right {
	-webkit-transform: translate3d(0, 42px, 0);
	transform: translate3d(0, 42px, 0);
}

.md-toast-open-top .md-btn.md-fab-top-left:not([disabled]):focus,
.md-toast-open-top .md-btn.md-fab-top-left:not([disabled]):hover,
.md-toast-open-top .md-btn.md-fab-top-right:not([disabled]):focus,
.md-toast-open-top .md-btn.md-fab-top-right:not([disabled]):hover {
	-webkit-transform: translate3d(0, 41px, 0);
	transform: translate3d(0, 41px, 0);
}

.md-toast-open-bottom .md-btn.md-fab-bottom-left,
.md-toast-open-bottom .md-btn.md-fab-bottom-right {
	-webkit-transform: translate3d(0, -42px, 0);
	transform: translate3d(0, -42px, 0);
}

.md-toast-open-bottom .md-btn.md-fab-bottom-left:not([disabled]):focus,
.md-toast-open-bottom .md-btn.md-fab-bottom-left:not([disabled]):hover,
.md-toast-open-bottom .md-btn.md-fab-bottom-right:not([disabled]):focus,
.md-toast-open-bottom .md-btn.md-fab-bottom-right:not([disabled]):hover {
	-webkit-transform: translate3d(0, -43px, 0);
	transform: translate3d(0, -43px, 0);
}

.card {
	position: relative;
	margin-bottom: 24px;
	background-color: #fff;
	color: #595959;
}

.card-heading {
	position: relative;
	padding: 20px 24px;
}

.card-heading h2 {
	margin: 0;
	font-size: 18px;
}

.card-heading small {
	display: block;
	margin-top: 8px;
	opacity: 0.5;
}

.card-body {
	padding: 20px 24px;
}

.card-divider {
	margin: 0 24px;
	border-bottom: 1px solid rgba(110, 115, 120, 0.15);
}

.card-tools {
	position: absolute;
	top: 12px;
	right: 12px;
}

.red {
	background-color: #f44336;
}

.red-50 {
	background-color: #ffebee;
}

.red-100 {
	background-color: #ffcdd2;
}

.red-200 {
	background-color: #ef9a9a;
}

.red-300 {
	background-color: #e57373;
}

.red-400 {
	background-color: #ef5350;
}

.red-500 {
	background-color: #f44336;
}

.red-600 {
	background-color: #e53935;
}

.red-700 {
	background-color: #d32f2f;
}

.red-800 {
	background-color: #c62828;
}

.red-900 {
	background-color: #b71c1c;
}

.red-A100 {
	background-color: #ff8a80;
}

.red-A200 {
	background-color: #ff5252;
}

.red-A400 {
	background-color: #ff1744;
}

.red-A700 {
	background-color: #d50000;
}

.pink {
	background-color: #e91e63;
}

.pink-50 {
	background-color: #fce4ec;
}

.pink-100 {
	background-color: #f8bbd0;
}

.pink-200 {
	background-color: #f48fb1;
}

.pink-300 {
	background-color: #f06292;
}

.pink-400 {
	background-color: #ec407a;
}

.pink-500 {
	background-color: #e91e63;
}

.pink-600 {
	background-color: #d81b60;
}

.pink-700 {
	background-color: #c2185b;
}

.pink-800 {
	background-color: #ad1457;
}

.pink-900 {
	background-color: #880e4f;
}

.pink-A100 {
	background-color: #ff80ab;
}

.pink-A200 {
	background-color: #ff4081;
}

.pink-A400 {
	background-color: #f50057;
}

.pink-A700 {
	background-color: #c51162;
}

.purple {
	background-color: #9c27b0;
}

.purple-50 {
	background-color: #f3e5f5;
}

.purple-100 {
	background-color: #e1bee7;
}

.purple-200 {
	background-color: #ce93d8;
}

.purple-300 {
	background-color: #ba68c8;
}

.purple-400 {
	background-color: #ab47bc;
}

.purple-500 {
	background-color: #9c27b0;
}

.purple-600 {
	background-color: #8e24aa;
}

.purple-700 {
	background-color: #7b1fa2;
}

.purple-800 {
	background-color: #6a1b9a;
}

.purple-900 {
	background-color: #4a148c;
}

.purple-A100 {
	background-color: #ea80fc;
}

.purple-A200 {
	background-color: #e040fb;
}

.purple-A400 {
	background-color: #d500f9;
}

.purple-A700 {
	background-color: #aa00ff;
}

.deep-purple {
	background-color: #7341c9;
}

.deep-purple-50 {
	background-color: #ede7f6;
}

.deep-purple-100 {
	background-color: #d1c4e9;
}

.deep-purple-200 {
	background-color: #b39ddb;
}

.deep-purple-300 {
	background-color: #9575cd;
}

.deep-purple-400 {
	background-color: #7e57c2;
}

.deep-purple-500 {
	background-color: #673ab7;
}

.deep-purple-600 {
	background-color: #5e35b1;
}

.deep-purple-700 {
	background-color: #512da8;
}

.deep-purple-800 {
	background-color: #4527a0;
}

.deep-purple-900 {
	background-color: #311b92;
}

.deep-purple-A100 {
	background-color: #b388ff;
}

.deep-purple-A200 {
	background-color: #7c4dff;
}

.deep-purple-A400 {
	background-color: #651fff;
}

.deep-purple-A700 {
	background-color: #6200ea;
}

/* tainted */
.indigo {
	background-color: #12728e;
}

.indigo-50 {
	background-color: #f4f9ff;
}

.indigo-100 {
	background-color: #c5cae9;
}

.indigo-200 {
	background-color: #9fa8da;
}

.indigo-300 {
	background-color: #7986cb;
}

.indigo-400 {
	background-color: #5c6bc0;
}

.indigo-500 {
	background-color: #3f51b5;
}

.indigo-600 {
	background-color: #3949ab;
}

.indigo-700 {
	background-color: #303f9f;
}

.indigo-800 {
	background-color: #283593;
}

.indigo-900 {
	background-color: #1a237e;
}

.indigo-A100 {
	background-color: #8c9eff;
}

.indigo-A200 {
	background-color: #536dfe;
}

.indigo-A400 {
	background-color: #3d5afe;
}

.indigo-A700 {
	background-color: #304ffe;
}

.blue {
	background-color: #2196f3;
}

.blue-50 {
	background-color: #e3f2fd;
}

.blue-100 {
	background-color: #bbdefb;
}

.blue-200 {
	background-color: #90caf9;
}

.blue-300 {
	background-color: #64b5f6;
}

.blue-400 {
	background-color: #42a5f5;
}

.blue-500 {
	background-color: #2196f3;
}

.blue-600 {
	background-color: #1e88e5;
}

.blue-700 {
	background-color: #1976d2;
}

.blue-800 {
	background-color: #1565c0;
}

.blue-900 {
	background-color: #0d47a1;
}

.blue-A100 {
	background-color: #82b1ff;
}

.blue-A200 {
	background-color: #448aff;
}

.blue-A400 {
	background-color: #2979ff;
}

.blue-A700 {
	background-color: #2962ff;
}

.light-blue {
	background-color: #03a9f4;
}

.light-blue-50 {
	background-color: #e1f5fe;
}

.light-blue-100 {
	background-color: #b3e5fc;
}

.light-blue-200 {
	background-color: #81d4fa;
}

.light-blue-300 {
	background-color: #4fc3f7;
}

.light-blue-400 {
	background-color: #29b6f6;
}

.light-blue-500 {
	background-color: #03a9f4;
}

.light-blue-600 {
	background-color: #039be5;
}

.light-blue-700 {
	background-color: #0288d1;
}

.light-blue-800 {
	background-color: #0277bd;
}

.light-blue-900 {
	background-color: #01579b;
}

.light-blue-A100 {
	background-color: #80d8ff;
}

.light-blue-A200 {
	background-color: #40c4ff;
}

.light-blue-A400 {
	background-color: #00b0ff;
}

.light-blue-A700 {
	background-color: #0091ea;
}

.cyan {
	background-color: #00bcd4;
}

.cyan-50 {
	background-color: #e0f7fa;
}

.cyan-100 {
	background-color: #b2ebf2;
}

.cyan-200 {
	background-color: #80deea;
}

.cyan-300 {
	background-color: #4dd0e1;
}

.cyan-400 {
	background-color: #26c6da;
}

.cyan-500 {
	background-color: #00bcd4;
}

.cyan-600 {
	background-color: #00acc1;
}

.cyan-700 {
	background-color: #0097a7;
}

.cyan-800 {
	background-color: #00838f;
}

.cyan-900 {
	background-color: #006064;
}

.cyan-A100 {
	background-color: #84ffff;
}

.cyan-A200 {
	background-color: #18ffff;
}

.cyan-A400 {
	background-color: #00e5ff;
}

.cyan-A700 {
	background-color: #00b8d4;
}

.teal {
	background-color: #009688;
}

.teal-50 {
	background-color: #e0f2f1;
}

.teal-100 {
	background-color: #b2dfdb;
}

.teal-200 {
	background-color: #80cbc4;
}

.teal-300 {
	background-color: #4db6ac;
}

.teal-400 {
	background-color: #26a69a;
}

.teal-500 {
	background-color: #009688;
}

.teal-600 {
	background-color: #00897b;
}

.teal-700 {
	background-color: #00796b;
}

.teal-800 {
	background-color: #00695c;
}

.teal-900 {
	background-color: #004d40;
}

.teal-A100 {
	background-color: #a7ffeb;
}

.teal-A200 {
	background-color: #64ffda;
}

.teal-A400 {
	background-color: #1de9b6;
}

.teal-A700 {
	background-color: #00bfa5;
}

.green {
	background-color: #4caf50;
}

.green-50 {
	background-color: #e8f5e9;
}

.green-100 {
	background-color: #c8e6c9;
}

.green-200 {
	background-color: #a5d6a7;
}

.green-300 {
	background-color: #81c784;
}

.green-400 {
	background-color: #66bb6a;
}

.green-500 {
	background-color: #4caf50;
}

.green-600 {
	background-color: #43a047;
}

.green-700 {
	background-color: #388e3c;
}

.green-800 {
	background-color: #2e7d32;
}

.green-900 {
	background-color: #1b5e20;
}

.green-A100 {
	background-color: #b9f6ca;
}

.green-A200 {
	background-color: #69f0ae;
}

.green-A400 {
	background-color: #00e676;
}

.green-A700 {
	background-color: #00c853;
}

.light-green {
	background-color: #8bc34a;
}

.light-green-50 {
	background-color: #f1f8e9;
}

.light-green-100 {
	background-color: #dcedc8;
}

.light-green-200 {
	background-color: #c5e1a5;
}

.light-green-300 {
	background-color: #aed581;
}

.light-green-400 {
	background-color: #9ccc65;
}

.light-green-500 {
	background-color: #8bc34a;
}

.light-green-600 {
	background-color: #7cb342;
}

.light-green-700 {
	background-color: #689f38;
}

.light-green-800 {
	background-color: #558b2f;
}

.light-green-900 {
	background-color: #33691e;
}

.light-green-A100 {
	background-color: #ccff90;
}

.light-green-A200 {
	background-color: #b2ff59;
}

.light-green-A400 {
	background-color: #76ff03;
}

.light-green-A700 {
	background-color: #64dd17;
}

.lime {
	background-color: #cddc39;
}

.lime-50 {
	background-color: #f9fbe7;
}

.lime-100 {
	background-color: #f0f4c3;
}

.lime-200 {
	background-color: #e6ee9c;
}

.lime-300 {
	background-color: #dce775;
}

.lime-400 {
	background-color: #d4e157;
}

.lime-500 {
	background-color: #cddc39;
}

.lime-600 {
	background-color: #c0ca33;
}

.lime-700 {
	background-color: #afb42b;
}

.lime-800 {
	background-color: #9e9d24;
}

.lime-900 {
	background-color: #827717;
}

.lime-A100 {
	background-color: #f4ff81;
}

.lime-A200 {
	background-color: #eeff41;
}

.lime-A400 {
	background-color: #c6ff00;
}

.lime-A700 {
	background-color: #aeea00;
}

.yellow {
	background-color: #ffeb3b;
}

.yellow-50 {
	background-color: #fffde7;
}

.yellow-100 {
	background-color: #fff9c4;
}

.yellow-200 {
	background-color: #fff59d;
}

.yellow-300 {
	background-color: #fff176;
}

.yellow-400 {
	background-color: #ffee58;
}

.yellow-500 {
	background-color: #ffeb3b;
}

.yellow-600 {
	background-color: #fdd835;
}

.yellow-700 {
	background-color: #fbc02d;
}

.yellow-800 {
	background-color: #f9a825;
}

.yellow-900 {
	background-color: #f57f17;
}

.yellow-A100 {
	background-color: #ffff8d;
}

.yellow-A200 {
	background-color: #ffff00;
}

.yellow-A400 {
	background-color: #ffea00;
}

.yellow-A700 {
	background-color: #ffd600;
}

.amber {
	background-color: #ffc107;
}

.amber-50 {
	background-color: #fff8e1;
}

.amber-100 {
	background-color: #ffecb3;
}

.amber-200 {
	background-color: #ffe082;
}

.amber-300 {
	background-color: #ffd54f;
}

.amber-400 {
	background-color: #ffca28;
}

.amber-500 {
	background-color: #ffc107;
}

.amber-600 {
	background-color: #ffb300;
}

.amber-700 {
	background-color: #ffa000;
}

.amber-800 {
	background-color: #ff8f00;
}

.amber-900 {
	background-color: #ff6f00;
}

.amber-A100 {
	background-color: #ffe57f;
}

.amber-A200 {
	background-color: #ffd740;
}

.amber-A400 {
	background-color: #ffc400;
}

.amber-A700 {
	background-color: #ffab00;
}

.orange {
	background-color: #ff9800;
}

.orange-50 {
	background-color: #fff3e0;
}

.orange-100 {
	background-color: #ffe0b2;
}

.orange-200 {
	background-color: #ffcc80;
}

.orange-300 {
	background-color: #ffb74d;
}

.orange-400 {
	background-color: #ffa726;
}

.orange-500 {
	background-color: #ff9800;
}

.orange-600 {
	background-color: #fb8c00;
}

.orange-700 {
	background-color: #f57c00;
}

.orange-800 {
	background-color: #ef6c00;
}

.orange-900 {
	background-color: #e65100;
}

.orange-A100 {
	background-color: #ffd180;
}

.orange-A200 {
	background-color: #ffab40;
}

.orange-A400 {
	background-color: #ff9100;
}

.orange-A700 {
	background-color: #ff6d00;
}

.deep-orange {
	background-color: #ff5722;
}

.deep-orange-50 {
	background-color: #fbe9e7;
}

.deep-orange-100 {
	background-color: #ffccbc;
}

.deep-orange-200 {
	background-color: #ffab91;
}

.deep-orange-300 {
	background-color: #ff8a65;
}

.deep-orange-400 {
	background-color: #ff7043;
}

.deep-orange-500 {
	background-color: #ff5722;
}

.deep-orange-600 {
	background-color: #f4511e;
}

.deep-orange-700 {
	background-color: #e64a19;
}

.deep-orange-800 {
	background-color: #d84315;
}

.deep-orange-900 {
	background-color: #bf360c;
}

.deep-orange-A100 {
	background-color: #ff9e80;
}

.deep-orange-A200 {
	background-color: #ff6e40;
}

.deep-orange-A400 {
	background-color: #ff3d00;
}

.deep-orange-A700 {
	background-color: #dd2c00;
}

.brown {
	background-color: #795548;
}

.brown-50 {
	background-color: #efebe9;
}

.brown-100 {
	background-color: #d7ccc8;
}

.brown-200 {
	background-color: #bcaaa4;
}

.brown-300 {
	background-color: #a1887f;
}

.brown-400 {
	background-color: #8d6e63;
}

.brown-500 {
	background-color: #795548;
}

.brown-600 {
	background-color: #6d4c41;
}

.brown-700 {
	background-color: #5d4037;
}

.brown-800 {
	background-color: #4e342e;
}

.brown-900 {
	background-color: #3e2723;
}

.blue-grey {
	background-color: #607d8b;
}

.blue-grey-50 {
	background-color: #eceff1;
}

.blue-grey-100 {
	background-color: #cfd8dc;
}

.blue-grey-200 {
	background-color: #b0bec5;
}

.blue-grey-300 {
	background-color: #90a4ae;
}

.blue-grey-400 {
	background-color: #78909c;
}

.blue-grey-500 {
	background-color: #607d8b;
}

.blue-grey-600 {
	background-color: #546e7a;
}

.blue-grey-700 {
	background-color: #455a64;
}

.blue-grey-800 {
	background-color: #37474f;
}

.blue-grey-900 {
	background-color: #263238;
}

.grey {
	background-color: #9e9e9e;
}

.grey-50 {
	background-color: #fafafa;
}

.grey-100 {
	background-color: #f5f5f5;
}

.grey-200 {
	background-color: #eeeeee;
}

.grey-300 {
	background-color: #e0e0e0;
}

.grey-400 {
	background-color: #bdbdbd;
}

.grey-500 {
	background-color: #9e9e9e;
}

.grey-600 {
	background-color: #757575;
}

.grey-700 {
	background-color: #616161;
}

.grey-800 {
	background-color: #424242;
}

.grey-900 {
	background-color: #212121;
}

.red,
.red-500,
.red-600,
.red-700,
.red-A200,
.red-A400,
.red-A700,
.pink,
.pink-500,
.pink-600,
.pink-A200,
.pink-A400,
.pink-A700,
.purple-300,
.purple-400,
.purple-A200,
.purple-A400,
.purple-A700,
.deep-purple-300,
.deep-purple-400,
.deep-purple-A200,
.indigo-300,
.indigo-400,
.indigo-A200,
.indigo-A400,
.blue,
.blue-500,
.blue-600,
.blue-700,
.blue-A200,
.blue-A400,
.blue-A700,
.light-blue,
.light-blue-500,
.light-blue-600,
.light-blue-700,
.light-blue-800,
.light-blue-A700,
.cyan,
.cyan-500,
.cyan-600,
.cyan-700,
.cyan-800,
.teal,
.teal-500,
.teal-600,
.teal-700,
.green,
.green-500,
.green-600,
.green-700,
.light-green-800,
.light-green-900,
.lime-900,
.orange-800,
.orange-900,
.deep-orange,
.deep-orange-500,
.deep-orange-600,
.deep-orange-700,
.deep-orange-800,
.deep-orange-900,
.deep-orange-A400,
.deep-orange-A700,
.brown-300,
.brown-400,
.blue-grey,
.blue-grey-400,
.blue-grey-500 {
	color: #ffffff;
}

.red-800,
.red-900,
.pink-700,
.pink-800,
.pink-900,
.purple,
.purple-500,
.purple-600,
.purple-700,
.purple-800,
.purple-900,
.deep-purple,
.deep-purple-500,
.deep-purple-600,
.deep-purple-700,
.deep-purple-800,
.deep-purple-900,
.deep-purple-A400,
.deep-purple-A700,
.indigo,
.indigo-500,
.indigo-600,
.indigo-700,
.indigo-800,
.indigo-900,
.indigo-A700,
.blue-800,
.blue-900,
.light-blue-900,
.cyan-900,
.teal-800,
.teal-900,
.green-800,
.green-900,
.brown,
.brown-500,
.brown-600,
.brown-700,
.brown-800,
.brown-900,
.blue-grey-600,
.blue-grey-700,
.blue-grey-800,
.blue-grey-900,
.grey-600,
.grey-700,
.grey-800,
.grey-900 {
	color: #ffffff;
}

.orange-A700 {
	color: #000000;
}

.md-list {
	border-radius: 3px;
}

.md-list-item {
	position: relative;
	display: block;
	padding: 16px;
}

.md-list-item:after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	border-bottom: 1px solid rgba(160, 160, 160, 0.2);
	content: '';
}

.md-list-item:last-child.md-list-item:after {
	border: none;
}

.md-list-item.inset.md-list-item:after {
	left: 72px;
}

.md-list-item-left {
	float: left;
	width: 50px;
	height: 50px;
	margin-right: 16px;
	line-height: 40px;
	text-align: center;
}

.md-list-item-content {
	overflow: hidden;
}

.md-list-item-content h3 {
	margin: 0 0 3px 0;
	font-weight: normal;
}

.md-form-group {
	position: relative;
	padding: 18px 0 24px 0;
}

.md-input {
	position: relative;
	z-index: 5;
	width: 100%;
	height: 34px;
	padding: 2px;
	color: inherit;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(160, 160, 160, 0.2);
	border-radius: 0;
	box-shadow: none;
}

.md-input:focus,
.md-input.focus {
	padding-bottom: 1px;
	border-color: #12728e;
	border-bottom-width: 2px;
}

.md-input:focus ~ label,
.md-input.focus ~ label {
	top: 0 !important;
	font-size: 0.85em !important;
	color: #12728e;
	opacity: 1;
}

.float-label .md-input ~ label {
	top: 20px;
	font-size: 1em;
}

.float-label .md-input.ng-dirty ~ label,
.float-label .md-input.has-value ~ label {
	top: 0;
	font-size: 0.85em;
}

.md-input ~ label {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	display: inline-block;
	font-size: 0.85em;
	opacity: 0.5;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.md-input.disabled,
.md-input[disabled] {
	opacity: 0.5;
}

textarea.md-input {
	height: 170px;
}

.md-input-white:focus,
.md-input-white.focus {
	border-color: #fff;
}

.md-input-white:focus ~ label,
.md-input-white.focus ~ label {
	color: #fff;
}

.md-input-msg {
	position: absolute;
	bottom: 0;
	font-size: 0.85em;
	line-height: 24px;
}

.md-input-msg.right {
	right: 0;
}

.md-check {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	margin: 0;
	cursor: pointer;
}

.md-check input {
	position: absolute;
	z-index: 1;
	width: 20px;
	height: 20px;
	margin-left: -20px;
	cursor: pointer;
	opacity: 0;
}

.md-check input:checked + i:before {
	background-color: inherit;
	border-width: 0;
}

.md-check input:checked + span .active {
	display: inherit;
}

.md-check input[type='radio'] + i,
.md-check input[type='radio'] + i:before {
	border-radius: 50%;
}

.md-check input[type='checkbox']:checked + i:after {
	position: absolute;
	top: 2px;
	left: 6px;
	display: table;
	width: 6px;
	height: 12px;
	border: 2px solid;
	border-top: 0;
	border-left: 0;
	content: ' ';
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.md-check input[type='radio']:checked + i:after {
	position: absolute;
	top: 6px;
	left: 6px;
	display: table;
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	content: ' ';
}

.md-check input[disabled] + i:before,
fieldset[disabled] .md-check input + i:before {
	border-color: rgba(0, 0, 0, 0.26);
}

.md-check input[disabled]:checked + i:before {
	background-color: rgba(0, 0, 0, 0.26);
}

.md-check > i {
	position: relative;
	display: inline-block;
	width: 0;
	height: 18px;
	margin-top: -2px;
	margin-right: 28px;
	margin-left: -20px;
	line-height: 1;
	vertical-align: middle;
}

.md-check > i:before {
	position: absolute;
	width: 18px;
	height: 100%;
	border: 2px solid rgba(0, 0, 0, 0.54);
	border-radius: 2px;
	content: '';
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.md-check > i.no-icon:after {
	display: none !important;
}

.md-switch {
	min-height: 20px;
	padding-left: 36px;
	margin: 0;
	cursor: pointer;
}

.md-switch input {
	position: absolute;
	z-index: 1;
	width: 36px;
	height: 20px;
	margin-left: -36px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}

.md-switch input:checked + i:before {
	background: inherit;
	opacity: 0.5;
}

.md-switch input:checked + i:after {
	left: 16px;
	background: inherit;
}

.md-switch input[disabled] + i:before,
fieldset[disabled] .md-switch input + i:before {
	background-color: rgba(0, 0, 0, 0.12);
}

.md-switch input[disabled] + i:after,
fieldset[disabled] .md-switch input + i:after {
	background-color: #bdbdbd;
}

.md-switch i {
	position: relative;
	display: inline-block;
	width: 0;
	height: 18px;
	margin-top: -2px;
	margin-right: 44px;
	margin-left: -36px;
	line-height: 1;
	vertical-align: middle;
}

.md-switch i:before {
	position: absolute;
	top: 3px;
	left: 1px;
	width: 34px;
	height: 14px;
	background-color: #9e9e9e;
	border-radius: 8px;
	content: '';
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.md-switch i:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	margin: 0;
	background-color: #fff;
	border-radius: 50%;
	content: '';
	outline: none;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.md-whiteframe-z0 {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.md-whiteframe-z1 {
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.md-whiteframe-z2 {
	box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2);
}

.md-whiteframe-z3 {
	box-shadow: 0 17px 50px rgba(0, 0, 0, 0.19);
}

.md-whiteframe-z4 {
	box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22);
}

.md-whiteframe-z5 {
	box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2);
}

.arrow {
	position: absolute;
	z-index: 10;
}

.arrow:before,
.arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 9px;
	content: '';
}

.arrow:after {
	border-width: 8px;
}

.arrow.top {
	top: -9px !important;
	left: 50% !important;
	margin-left: 130px;
}

.arrow.top-a {
	margin-left: 155px !important;
}

.note {
	top: -9px !important;
	left: 60% !important;
	margin-left: 92px;
}

.arrow.top.pull-in {
	top: -4px;
}

.arrow.top:before {
	border-bottom-color: rgba(0, 0, 0, 0.1);
	border-top-width: 0;
}

.arrow.top:after {
	top: 1px;
	left: 1px;
	border-top-color: transparent;
	border-right-color: transparent;
	border-bottom-color: inherit;
	border-left-color: transparent;
	border-top-width: 0;
}

.arrow.right {
	top: 50%;
	right: 0;
	margin-top: -9px;
}

.arrow.right.pull-in {
	right: 5px;
}

.arrow.right:before {
	border-left-color: rgba(0, 0, 0, 0.1);
	border-right-width: 0;
}

.arrow.right:after {
	top: 1px;
	left: 0;
	border-top-color: transparent;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: inherit;
	border-right-width: 0;
}

.arrow.bottom {
	bottom: 0;
	left: 50%;
	margin-left: -9px;
}

.arrow.bottom.pull-in {
	bottom: 5px;
}

.arrow.bottom:before {
	border-top-color: rgba(0, 0, 0, 0.1);
	border-bottom-width: 0;
}

.arrow.bottom:after {
	top: 0;
	left: 1px;
	border-top-color: inherit;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-bottom-width: 0;
}

.arrow.left {
	top: 50%;
	left: -9px;
	margin-top: -9px;
}

.arrow.left.pull-in {
	left: -4px;
}

.arrow.left:before {
	border-right-color: rgba(0, 0, 0, 0.1);
	border-left-width: 0;
}

.arrow.left:after {
	top: 1px;
	left: 1px;
	border-top-color: transparent;
	border-right-color: inherit;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-left-width: 0;
}

.arrow.pull-left {
	left: 18px;
}

.arrow.pull-right {
	right: 26px;
	left: auto;
}

.arrow.pull-top {
	top: 18px;
}

.arrow.pull-bottom {
	top: auto;
	bottom: 26px;
}

.arrow.b-primary:before,
.arrow.b-info:before,
.arrow.b-success:before,
.arrow.b-warning:before,
.arrow.b-danger:before,
.arrow.b-accent:before,
.arrow.b-dark:before {
	border-color: transparent;
}

.box {
	display: table;
	width: 100%;
	height: 100%;
	border-spacing: 0;
	table-layout: fixed;
}

.box .box-row {
	display: table-row;
	height: 100%;
}

.box .box-row .box-cell {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.ie .box .box-row .box-cell {
	display: table-cell;
}

.box .box-col {
	display: table-cell;
	vertical-align: top;
}

.box .box-inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.box > [class*='col-'],
.box > [class*=' col-'] {
	position: static;
	float: none;
	height: 100%;
	padding: 0;
	vertical-align: top;
}

.v-m {
	vertical-align: middle !important;
}

.v-t {
	vertical-align: top !important;
}

.v-b {
	vertical-align: bottom !important;
}

.v-c {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}

@media (min-width: 1200px) {
	.box > [class*='col-lg'],
	.box > [class*=' col-lg'] {
		display: table-cell;
	}
}

@media (min-width: 992px) {
	.box > [class*='col-md'],
	.box > [class*=' col-md'] {
		display: table-cell;
	}
}

@media (min-width: 768px) {
	.box > [class*='col-sm'],
	.box > [class*=' col-sm'] {
		display: table-cell;
	}
}

@media (max-width: 767px) {
	.box > [class*='col-xs'],
	.box > [class*=' col-xs'] {
		display: table-cell;
	}
}

.ui-checks {
	padding-left: 20px;
	cursor: pointer;
}

.ui-checks input {
	position: absolute;
	margin-left: -20px;
	opacity: 0;
}

.ui-checks input:checked + i {
	border-color: #cfd1d4;
}

.ui-checks input:checked + i:before {
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	background-color: #2196f3;
}

.ui-checks input:checked + span .active {
	display: inherit;
}

.ui-checks input[type='radio'] + i,
.ui-checks input[type='radio'] + i:before {
	border-radius: 50%;
}

.ui-checks input[disabled] + i,
fieldset[disabled] .ui-checks input + i {
	border-color: #dddee0;
}

.ui-checks input[disabled] + i:before,
fieldset[disabled] .ui-checks input + i:before {
	background-color: #dddee0;
}

.ui-checks > i {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-top: -2px;
	margin-right: 4px;
	margin-left: -20px;
	line-height: 1;
	vertical-align: middle;
	background-color: #fff;
	border: 1px solid #cfd1d4;
}

.ui-checks > i:before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background-color: transparent;
	content: '';
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.ui-checks > span {
	margin-left: -20px;
}

.ui-checks > span .active {
	display: none;
}

.ui-checks-md input:checked + i:before {
	top: 5px;
	left: 5px;
}

.ui-checks-md > i {
	width: 18px;
	height: 18px;
}

.ui-checks-lg input:checked + i:before {
	top: 8px;
	left: 8px;
	width: 12px;
	height: 12px;
}

.ui-checks-lg > i {
	width: 30px;
	height: 30px;
}

/*layout*/

html,
body {
	width: 100%;
	height: 100%;
}

body {
	overflow: hidden;
}

.app {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: auto;
}

.modal-open .app {
	overflow: hidden;
}

.app-aside {
	position: absolute !important;
	top: 0;
	bottom: 0;
	z-index: 60;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: transparent;
	opacity: 1;
	box-shadow: 0 64px 3px 0 rgba(0, 0, 0, 0.26);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.app-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	overflow-y: auto;
}

@media (min-width: 992px) {
	.app-aside {
		display: block !important;
		width: 240px;
	}

	.app-aside.folded {
		width: 64px;
	}

	.app-aside.folded ~ .app-content {
		margin-left: 64px;
	}

	.app-aside.none ~ .app-content {
		margin-left: 0px !important;
	}

	.app-aside ~ .app-content {
		margin-left: 240px;
	}

	.app-aside.md-sidenav-left {
		min-width: 0;
		-webkit-transform: translate3d(0, 0, 0) !important;
		transform: translate3d(0, 0, 0) !important;
	}

	.app-aside .left {
		-webkit-transform: translate3d(0, 0, 0) !important;
		transform: translate3d(0, 0, 0) !important;
	}
}

@media (max-width: 991px) {
	.app-aside.modal {
		z-index: 1050;
	}

	.app-aside .left {
		max-width: 304px;
	}

	.app-padding {
		padding: 4px 4px;
	}
}

nav {
	overflow-x: hidden;
}

nav ul.nav li {
	position: relative;
}

nav ul.nav li li a {
	padding-left: 72px;
	line-height: 36px;
}

nav ul.nav li li a .badge,
nav ul.nav li li a .label {
	margin-top: 10px;
}

nav ul.nav li li li a {
	padding-left: 88px;
}

nav ul.nav li li li li a {
	padding-left: 106px;
}

nav ul.nav li a,
nav ul.nav li .nav-item {
	position: relative;
	display: block;
	padding: 0 16px;
	font-weight: normal;
	line-height: 40px;
	text-align: left;
	text-transform: none;
	border-radius: 0 !important;
}

nav ul.nav li a .text,
nav ul.nav li .nav-item .text {
	margin-left: 16px;
}

nav ul.nav li a .up,
nav ul.nav li .nav-item .up {
	z-index: 1;
	margin-left: 16px;
	font-style: normal;
}

nav ul.nav li a > .pull-right i,
nav ul.nav li .nav-item > .pull-right i {
	margin-left: 16px;
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

nav ul.nav li a > .icon,
nav ul.nav li .nav-item > .icon {
	top: 0;
	float: left;
	min-width: 40px;
	margin-right: 16px;
	line-height: inherit;
}

nav ul.nav li a > .icon:before,
nav ul.nav li .nav-item > .icon:before {
	display: inline-block;
	width: 24px;
	text-align: center;
	opacity: 0.75;
}

nav ul.nav li a:hover,
nav ul.nav li .nav-item:hover,
nav ul.nav li a:focus,
nav ul.nav li .nav-item:focus {
	background-color: rgba(158, 158, 158, 0.2);
}

nav ul.nav li label {
	display: block;
}

nav ul.nav li label i {
	margin-right: 48px;
	margin-left: -16px;
}

nav ul.nav li.active {
	background-color: rgba(0, 0, 0, 0.05);
}

nav ul.nav li.active > a {
	background-color: transparent;
}

nav ul.nav li.active > a > .pull-right i {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

nav ul.nav.nav-stacked a,
nav ul.nav.nav-stacked .nav-header {
	padding: 0 16px;
	line-height: 30px;
}

nav .nav-header {
	padding: 0 16px;
	line-height: 40px;
}

nav .nav-header:hover,
nav .nav-header:focus {
	background-color: transparent !important;
}

@media (min-width: 992px) {
	.folded {
		z-index: 60;
		-webkit-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
		transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	}

	.folded .nav li ul {
		display: none;
	}

	.folded .nav li a,
	.folded .nav li .nav-item {
		text-align: center;
	}

	.folded .nav li a span,
	.folded .nav li .nav-item span {
		display: none;
	}

	.folded .nav li a .up,
	.folded .nav li .nav-item .up {
		position: absolute;
		top: -8px;
		right: 4px;
	}

	.folded .nav li a .icon,
	.folded .nav li .nav-item .icon {
		float: none;
		min-width: 0;
		margin-right: 0;
		line-height: 50px;
	}

	.folded .nav li a label i,
	.folded .nav li .nav-item label i {
		margin-right: 0;
		margin-left: -38px;
	}

	.folded .navbar-brand {
		text-align: center;
	}

	.folded .hidden-folded {
		display: none;
	}

	.folded:hover,
	.folded:focus,
	.folded.active {
		width: 240px;
	}

	.folded:hover > *,
	.folded:focus > *,
	.folded.active > * {
		width: 240px;
	}

	.folded:hover .nav li ul,
	.folded:focus .nav li ul,
	.folded.active .nav li ul {
		display: inherit;
	}

	.folded:hover .nav li a,
	.folded:focus .nav li a,
	.folded.active .nav li a,
	.folded:hover .nav li .nav-item,
	.folded:focus .nav li .nav-item,
	.folded.active .nav li .nav-item {
		text-align: left;
	}

	.folded:hover .nav li a span,
	.folded:focus .nav li a span,
	.folded.active .nav li a span,
	.folded:hover .nav li .nav-item span,
	.folded:focus .nav li .nav-item span,
	.folded.active .nav li .nav-item span {
		display: inline;
	}

	.folded:hover .nav li a .up,
	.folded:focus .nav li a .up,
	.folded.active .nav li a .up,
	.folded:hover .nav li .nav-item .up,
	.folded:focus .nav li .nav-item .up,
	.folded.active .nav li .nav-item .up {
		position: static;
	}

	.folded:hover .nav li a .icon,
	.folded:focus .nav li a .icon,
	.folded.active .nav li a .icon,
	.folded:hover .nav li .nav-item .icon,
	.folded:focus .nav li .nav-item .icon,
	.folded.active .nav li .nav-item .icon {
		float: left;
		margin-right: 32px;
		line-height: inherit;
	}

	.folded:hover .nav li label i,
	.folded:focus .nav li label i,
	.folded.active .nav li label i {
		margin-right: 48px;
		margin-left: -16px;
	}

	.folded:hover .navbar-brand,
	.folded:focus .navbar-brand,
	.folded.active .navbar-brand {
		text-align: left;
	}

	.folded:hover .hidden-folded,
	.folded:focus .hidden-folded,
	.folded.active .hidden-folded {
		display: inherit;
	}

	.folded:hover .hidden-folded.inline,
	.folded:focus .hidden-folded.inline,
	.folded.active .hidden-folded.inline {
		display: inline-block;
	}
}

.nav-sub {
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height 0.5s cubic-bezier(0.35, 0, 0.25, 1);
	transition: max-height 0.5s cubic-bezier(0.35, 0, 0.25, 1);
}

.nav-sub .md-ripple-container {
	display: none;
	visibility: hidden;
}

.active > .nav-sub {
	max-height: 999px;
}

.active > .nav-sub .md-ripple-container {
	display: block;
	visibility: visible;
}

.i-16 {
	font-size: 16px;
	vertical-align: -15%;
}

.i-20 {
	font-size: 20px;
	vertical-align: -19%;
}

.i-24 {
	font-size: 24px;
	vertical-align: -23%;
}

.ui-icon {
	display: inline-block;
	height: 1em;
	text-align: center;
	background: transparent !important;
}

.ui-icon:before {
	position: relative;
	z-index: 1;
}

.ui-icon:after {
	position: relative;
	top: -1.5em;
	z-index: 0;
	display: block;
	width: 2em;
	height: 2em;
	border-color: inherit;
	border-style: solid;
	border-width: 1px;
	border-radius: 2em;
	content: '';
	background-clip: padding-box;
}

.ui-icon.b-2x:after {
	border-width: 2px;
}

.ui-icon.b-3x:after {
	border-width: 3px;
}

.ui-icon.ui-icon-sm:after {
	top: -1.35em;
	width: 1.7em;
	height: 1.7em;
}

.ui-icon.bg-primary:after {
	background-color: #3f51b5;
}

.ui-icon.bg-info:after {
	background-color: #2196f3;
}

.ui-icon.bg-success:after {
	background-color: #4caf50;
}

.ui-icon.bg-warning:after {
	background-color: #ffc107;
}

.ui-icon.bg-danger:after {
	background-color: #f44336;
}

.ui-icon.bg-accent:after {
	background-color: #7e57c2;
}

.ui-icon.bg-dark:after {
	background-color: #475069;
}

.ui-icon.bg-light:after {
	background-color: #eaebec;
}

.ui-icon.bg-white:after {
	background-color: #fff;
}

.item {
	position: relative;
}

.item .top {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}

.item .bottom {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
}

.item .center {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
}

.item-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
}

.item-overlay.active,
.item:hover .item-overlay {
	display: block;
}

.list-icon i {
	margin-right: 16px;
	-webkit-transition: font-size 0.2s;
	transition: font-size 0.2s;
}

.list-icon div {
	overflow: hidden;
	line-height: 40px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/*Charts*/

.jqstooltip {
	padding: 5px 10px !important;
	background-color: rgba(0, 0, 0, 0.8) !important;
	border: solid 1px #000 !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.easyPieChart {
	position: relative;
	display: table;
	text-align: center;
}

.easyPieChart > div {
	position: relative;
	z-index: 1;
	display: table-cell;
	line-height: 1;
	vertical-align: middle;
}

.easyPieChart > div img {
	margin-top: -4px;
}

.easyPieChart canvas {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

#flotTip,
.flotTip {
	z-index: 100;
	padding: 4px 10px;
	font-size: 12px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.8) !important;
	border: solid 1px #000 !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.legendColorBox > div {
	margin: 5px;
	border: none !important;
}

.legendColorBox > div > div {
	border-radius: 10px;
}

.st-sort-ascent:before {
	content: '\25B2';
}

.st-sort-descent:before {
	content: '\25BC';
}

.st-selected td {
	background: #f0f9ec !important;
}

.ui-select-bootstrap > .ui-select-choices {
	overflow-y: scroll;
}

.panel .dataTables_wrapper {
	padding-top: 10px;
}

.panel .dataTables_wrapper > .row {
	margin: 0;
}

.panel .dataTables_wrapper > .row > .col-sm-12 {
	padding: 0;
}

.dataTables_wrapper.form-inline .form-control {
	width: auto;
}

.btn-info .text-info {
	color: #fff;
}

.ie .ie-show {
	display: block;
}

.streamline {
	position: relative;
	border-color: #dddee0;
}

.streamline .sl-item:after,
.streamline:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 11px;
	height: 11px;
	margin-left: -6px;
	background-color: #fff;
	border-color: inherit;
	border-style: solid;
	border-width: 2px;
	border-radius: 50%;
	content: '';
}

.sl-icon {
	position: absolute;
	left: -15px;
	z-index: 1;
}

.sl-icon > i {
	display: table-cell;
	width: 30px;
	height: 30px;
	text-align: center;
	vertical-align: middle;
}

.sl-item {
	position: relative;
	padding-bottom: 1px;
	border-color: #dddee0;
}

.sl-item:before,
.sl-item:after {
	display: table;
	content: ' ';
}

.sl-item:after {
	clear: both;
}

.sl-item:after {
	top: 0;
	bottom: auto;
}

.sl-item.b-l {
	margin-left: -1px;
}

.sl-item.sl-item-md:after {
	top: -10px;
	width: 30px;
	height: 30px;
	margin-left: -16px;
}

.sl-item.sl-item-md .sl-icon {
	top: -10px;
}

.sl-content {
	padding-bottom: 10px;
	margin-top: -6px;
	margin-left: 24px;
}

.ui-switch {
	position: relative;
	display: inline-block;
	width: 32px;
	height: 18px;
	margin: 0;
	cursor: pointer;
	background-color: #4caf50;
	border-radius: 30px;
}

.ui-switch input {
	position: absolute;
	opacity: 0;
	filter: alpha(opacity=0);
}

.ui-switch input:checked + i:before {
	top: 50%;
	right: 5px;
	bottom: 50%;
	left: 50%;
	border-width: 0;
	border-radius: 5px;
}

.ui-switch input:checked + i:after {
	margin-left: 15px;
}

.ui-switch i:before {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	background-color: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 30px;
	content: '';
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.ui-switch i:after {
	position: absolute;
	top: 1px;
	bottom: 1px;
	width: 16px;
	background-color: #fff;
	border-radius: 50%;
	content: '';
	-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
	-webkit-transition: margin-left 0.3s;
	transition: margin-left 0.3s;
}

.ui-switch-md {
	width: 40px;
	height: 24px;
}

.ui-switch-md input:checked + i:after {
	margin-left: 17px;
}

.ui-switch-md i:after {
	width: 22px;
}

.ui-switch-lg {
	width: 50px;
	height: 30px;
}

.ui-switch-lg input:checked + i:after {
	margin-left: 21px;
}

.ui-switch-lg i:after {
	width: 28px;
}

.timeline {
	padding: 0;
	margin: 0;
}

.tl-item {
	display: block;
}

.tl-item:before,
.tl-item:after {
	display: table;
	content: ' ';
}

.tl-item:after {
	clear: both;
}

.visible-left {
	display: none;
}

.tl-wrap {
	display: block;
	padding: 15px 0 15px 20px;
	margin-left: 6em;
	border-color: #dddee0;
	border-style: solid;
	border-width: 0 0 0 2px;
}

.tl-wrap:before,
.tl-wrap:after {
	display: table;
	content: ' ';
}

.tl-wrap:after {
	clear: both;
}

.tl-wrap:before {
	position: relative;
	top: 15px;
	float: left;
	width: 10px;
	height: 10px;
	margin-left: -26px;
	background: #eaebec;
	border-color: inherit;
	border-style: solid;
	border-width: 3px;
	border-radius: 50%;
	content: '';
	box-shadow: 0 0 0 4px #efefef;
}

.tl-date {
	position: relative;
	top: 10px;
	display: block;
	float: left;
	width: 4.5em;
	margin-left: -7.5em;
	text-align: right;
}

.tl-content {
	position: relative;
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 10px;
}

.tl-content.block {
	display: block;
	width: 100%;
}

.tl-content.panel {
	margin-bottom: 0;
}

.tl-header {
	display: block;
	width: 12em;
	margin-left: 1px;
	text-align: center;
}

.timeline-center .tl-item {
	margin-left: 50%;
}

.timeline-center .tl-item .tl-wrap {
	margin-left: -2px;
}

.timeline-center .tl-header {
	width: auto;
	margin-left: -1px;
}

.timeline-center .tl-left {
	margin-right: 50%;
	margin-left: 0;
}

.timeline-center .tl-left .hidden-left {
	display: none !important;
}

.timeline-center .tl-left .visible-left {
	display: inherit;
}

.timeline-center .tl-left .tl-wrap {
	float: right;
	padding-right: 20px;
	padding-left: 0;
	margin-right: 0;
	border-right-width: 2px;
	border-left-width: 0;
}

.timeline-center .tl-left .tl-wrap:before {
	float: right;
	margin-right: -26px;
	margin-left: 0;
}

.timeline-center .tl-left .tl-date {
	float: right;
	margin-right: -8.5em;
	margin-left: 0;
	text-align: left;
}

.bg-white {
	background-color: #fff;
}

.bg-light {
	background-color: #eaebec;
}

.bg-light.lt {
	background-color: #fafafa !important;
}

.bg-light .lt {
	background-color: #f8f8f8;
}

.bg-light.dk {
	background-color: #dbdee2 !important;
}

.bg-light .dk {
	background-color: #dbdee2;
}

.bg-light.bg {
	background-color: #eaebec !important;
}

.bg-light .bg {
	background-color: #eaebec;
}

.bg-dark {
	color: rgba(255, 255, 255, 0.87);
	background-color: #475069;
}

.bg-dark.lt {
	background-color: #565e73 !important;
}

.bg-dark .lt {
	background-color: #565e73;
}

.bg-dark.dk {
	background-color: #39435e !important;
}

.bg-dark .dk {
	background-color: #39435e;
}

.bg-dark.bg {
	background-color: #475069 !important;
}

.bg-dark .bg {
	background-color: #475069;
}

.bg-primary {
	color: rgba(255, 255, 255, 0.87);
	background-color: #3f51b5;
}

.bg-primary.lt {
	background-color: #5363bb !important;
}

.bg-primary .lt {
	background-color: #5363bb;
}

.bg-primary.dk {
	background-color: #3345a8 !important;
}

.bg-primary .dk {
	background-color: #3345a8;
}

.bg-primary.bg {
	background-color: #3f51b5 !important;
}

.bg-primary .bg {
	background-color: #3f51b5;
}

.bg-success {
	color: rgba(255, 255, 255, 0.87);
	background-color: #4caf50;
}

.bg-system {
	color: #12728e;
	background-color: #ffffff;
}

.bg-success.lt {
	background-color: #62b265 !important;
}

.bg-success .lt {
	background-color: #62b265;
}

.bg-success.dk {
	background-color: #3fa343 !important;
}

.bg-success .dk {
	background-color: #3fa343;
}

.bg-success.bg {
	background-color: #4caf50 !important;
}

.bg-success .bg {
	background-color: #4caf50;
}

.bg-info {
	color: rgba(255, 255, 255, 0.87);
	background-color: #12728e;
}

.bg-info.lt {
	background-color: #3ea1ef !important;
}

.bg-info .lt {
	background-color: #3ea1ef;
}

.bg-info.dk {
	background-color: #078bf4 !important;
}

.bg-info .dk {
	background-color: #078bf4;
}

.bg-info.bg {
	background-color: #2196f3 !important;
}

.bg-info .bg {
	background-color: #2196f3;
}

.bg-warning {
	color: rgba(255, 255, 255, 0.87);
	background-color: #ffc107;
}

.bg-warning.lt {
	background-color: #f9c526 !important;
}

.bg-warning .lt {
	background-color: #f9c526;
}

.bg-warning.dk {
	background-color: #ecb100 !important;
}

.bg-warning .dk {
	background-color: #ecb100;
}

.bg-warning.bg {
	background-color: #ffc107 !important;
}

.bg-warning .bg {
	background-color: #ffc107;
}

.bg-danger {
	color: rgba(255, 255, 255, 0.87);
	background-color: #f44336;
}

.bg-danger.lt {
	background-color: #f15e53 !important;
}

.bg-danger .lt {
	background-color: #f15e53;
}

.bg-danger.dk {
	background-color: #f92718 !important;
}

.bg-danger .dk {
	background-color: #f92718;
}

.bg-danger.bg {
	background-color: #f44336 !important;
}

.bg-danger .bg {
	background-color: #f44336;
}

.bg-accent {
	color: rgba(255, 255, 255, 0.87);
	background-color: #7e57c2;
}

.bg-accent.lt {
	background-color: #8e6fc4 !important;
}

.bg-accent .lt {
	background-color: #8e6fc4;
}

.bg-accent.dk {
	background-color: #6e3ec2 !important;
}

.bg-accent .dk {
	background-color: #6e3ec2;
}

.bg-accent.bg {
	background-color: #7e57c2 !important;
}

.bg-accent .bg {
	background-color: #7e57c2;
}

a.bg-primary:hover {
	background-color: #3849a2;
}

a.text-primary:hover {
	color: #3849a2;
}

.text-primary {
	color: #3f51b5;
}

.text-primary-lt {
	color: #4d5ec1;
}

.text-primary-dk {
	color: #3849a2;
}

a.bg-info:hover {
	background-color: #0d8aee;
}

a.text-info:hover {
	color: #0d8aee;
}

.text-info {
	color: #2196f3;
}

.text-info-lt {
	color: #39a1f4;
}

.text-info-dk {
	color: #0d8aee;
}

a.bg-success:hover {
	background-color: #449d48;
}

a.text-success:hover {
	color: #449d48;
}

.text-success {
	color: #4caf50;
}

.text-success-lt {
	color: #5cb860;
}

.text-success-dk {
	color: #449d48;
}

a.bg-warning:hover {
	background-color: #ecb100;
}

a.text-warning:hover {
	color: #ecb100;
}

.text-warning {
	color: #ffc107;
}

.text-warning-lt {
	color: #ffc721;
}

.text-warning-dk {
	color: #ecb100;
}

a.bg-danger:hover {
	background-color: #f32c1e;
}

a.text-danger:hover {
	color: #f32c1e;
}

.text-danger {
	color: #f44336;
}

.text-danger-lt {
	color: #f55a4e;
}

.text-danger-dk {
	color: #f32c1e;
}

a.bg-accent:hover {
	background-color: #7044bb;
}

a.text-accent:hover {
	color: #7044bb;
}

.text-accent {
	color: #7e57c2;
}

.text-accent-lt {
	color: #8c6ac9;
}

.text-accent-dk {
	color: #7044bb;
}

a.bg-dark:hover {
	background-color: #3d445a;
}

a.text-dark:hover {
	color: #3d445a;
}

.text-dark {
	color: #475069;
}

.text-dark-lt {
	color: #515c78;
}

.text-dark-dk {
	color: #3d445a;
}

.text-white {
	color: #ffffff !important;
}

.text-white-lt {
	color: rgba(255, 255, 255, 0.54);
}

.text-white-dk {
	color: rgba(255, 255, 255, 0.87);
}

.text-black {
	color: #000000;
}

.text-black-lt {
	color: rgba(0, 0, 0, 0.54);
}

.text-black-dk {
	color: rgba(0, 0, 0, 0.87);
}

.text-muted {
	color: inherit;
	opacity: 0.75;
}

.text-muted-dk {
	color: inherit;
	opacity: 0.75;
}

.text-muted-lt {
	color: inherit;
	opacity: 0.25;
}

.text-color {
	color: #585858;
}

.bg-big:before {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: -1;
	width: 100%;
	background-color: inherit;
	border: inherit;
	content: '';
}

.bg-white-overlay {
	background-color: rgba(255, 255, 255, 0.8);
}

.bg-black-overlay {
	background-color: rgba(32, 43, 54, 0.8);
}

.no-bg {
	color: inherit;
	background-color: transparent;
}

@media (min-width: 768px) {
	.bg-auto:before {
		position: absolute;
		top: 0;
		bottom: 0;
		z-index: -1;
		width: inherit;
		background-color: inherit;
		border: inherit;
		content: '';
	}

	.bg-auto.b-l:before {
		margin-left: -1px;
	}

	.bg-auto.b-r:before {
		margin-right: -1px;
	}
}

.pos-rlt {
	position: relative;
	z-index: 1;
}

.pos-abt {
	position: absolute;
}

.pos-fix {
	position: fixed !important;
}

.pos-stc {
	position: static !important;
}

.pos-sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
}

.top-0 {
	top: 0px;
}

.block {
	display: block;
}

.block.hide {
	display: none;
}

.pull-none {
	float: none;
}

.inline {
	display: inline-block;
}

.inline-16 {
	width: 16px;
	height: 16px;
}

.inline-24 {
	width: 24px;
	height: 24px;
}

.none {
	display: none;
}

.active > .inline,
.active > .auto .inline {
	display: none;
}

.active > .none,
.active > .auto .none {
	display: inline-block;
}

.line {
	height: 1px;
	margin: 10px 0;
	overflow: hidden;
	font-size: 0;
}

.line-dashed {
	background-color: transparent;
	border-style: dashed !important;
	border-width: 0;
}

.pointer {
	cursor: pointer;
}

.rounded,
.circle {
	border-radius: 50%;
}

.clear {
	display: block;
	overflow: hidden;
}

.no-border {
	border-color: transparent;
	border-width: 0;
}

.no-borders {
	border-width: 0 !important;
}

.b {
	border-color: rgba(110, 115, 120, 0.15) !important;
}

.b-a {
	border: 1px solid rgba(221, 222, 224, 0.7);
}

.b-t {
	border-top: 1px solid #dddee0;
}

.b-r {
	border-right: 1px solid #dddee0;
}

.b-b {
	border-bottom: 1px solid #dddee0;
}

.b-l {
	border-left: 1px solid #dddee0;
}

.b-2x {
	border-width: 2px;
}

.b-3x {
	border-width: 3px;
}

.b-4x {
	border-width: 4px;
}

.b-5x {
	border-width: 5px;
}

.b-t-2x {
	border-top-width: 2px !important;
}

.b-t-3x {
	border-top-width: 3px !important;
}

.b-t-4x {
	border-top-width: 4px !important;
}

.b-t-5x {
	border-top-width: 5px !important;
}

.b-r-2x {
	border-right-width: 2px !important;
}

.b-r-3x {
	border-right-width: 3px !important;
}

.b-r-4x {
	border-right-width: 4px !important;
}

.b-r-5x {
	border-right-width: 5px !important;
}

.b-b-2x {
	border-bottom-width: 2px !important;
}

.b-b-3x {
	border-bottom-width: 3px !important;
}

.b-b-4x {
	border-bottom-width: 4px !important;
}

.b-b-5x {
	border-bottom-width: 5px !important;
}

.b-l-2x {
	border-left-width: 2px !important;
}

.b-l-3x {
	border-left-width: 3px !important;
}

.b-l-4x {
	border-left-width: 4px !important;
}

.b-l-5x {
	border-left-width: 5px !important;
}

.b-light {
	border-color: #eaebec;
}

.b-white {
	border-color: #fff;
}

.b-primary {
	border-color: #3f51b5;
}

.b-t-primary {
	border-top-color: #3f51b5;
}

.b-r-primary {
	border-right-color: #3f51b5;
}

.b-b-primary {
	border-bottom-color: #3f51b5;
}

.b-l-primary {
	border-left-color: #3f51b5;
}

.b-info {
	border-color: #2196f3;
}

.b-indigo {
	border-color: #12728e;
}

.b-purple {
	border-color: #12728e;
}

.b-t-info {
	border-top-color: #2196f3;
}

.b-r-info {
	border-right-color: #2196f3;
}

.b-b-info {
	border-bottom-color: #2196f3;
}

.b-l-info {
	border-left-color: #2196f3;
}

.b-success {
	border-color: #4caf50;
}

.b-t-success {
	border-top-color: #4caf50;
}

.b-r-success {
	border-right-color: #4caf50;
}

.b-b-success {
	border-bottom-color: #4caf50;
}

.b-l-success {
	border-left-color: #4caf50;
}

.b-warning {
	border-color: #ffc107;
}

.b-t-warning {
	border-top-color: #ffc107;
}

.b-r-warning {
	border-right-color: #ffc107;
}

.b-b-warning {
	border-bottom-color: #ffc107;
}

.b-l-warning {
	border-left-color: #ffc107;
}

.b-danger {
	border-color: #f44336;
}

.b-t-danger {
	border-top-color: #f44336;
}

.b-r-danger {
	border-right-color: #f44336;
}

.b-b-danger {
	border-bottom-color: #f44336;
}

.b-l-danger {
	border-left-color: #f44336;
}

.b-accent {
	border-color: #7e57c2;
}

.b-t-accent {
	border-top-color: #7e57c2;
}

.b-r-accent {
	border-right-color: #7e57c2;
}

.b-b-accent {
	border-bottom-color: #7e57c2;
}

.b-l-accent {
	border-left-color: #7e57c2;
}

.b-dark {
	border-color: #475069;
}

.b-t-dark {
	border-top-color: #475069;
}

.b-r-dark {
	border-right-color: #475069;
}

.b-b-dark {
	border-bottom-color: #475069;
}

.b-l-dark {
	border-left-color: #475069;
}

.no-b-t {
	border-top-width: 0;
}

.no-b-r {
	border-right-width: 0;
}

.no-b-b {
	border-bottom-width: 0;
}

.no-b-l {
	border-left-width: 0;
}

.b-dashed {
	border-style: dashed !important;
}

@media (max-width: 991px) {
	.no-border-sm {
		border-width: 0;
	}
}

@media (max-width: 767px) {
	.no-border-xs {
		border-width: 0;
	}
}

.hover-action {
	display: none;
}

.hover-rotate {
	-webkit-transition: all 0.2s ease-in-out 0.1s;
	transition: all 0.2s ease-in-out 0.1s;
}

.hover-anchor:hover .hover-action,
.hover-anchor:focus .hover-action,
.hover-anchor:active .hover-action {
	display: inherit;
}

.hover-anchor:hover .hover-rotate,
.hover-anchor:focus .hover-rotate,
.hover-anchor:active .hover-rotate {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.no-margin {
	margin: 0;
}

.m {
	margin: 16px;
}

.m-xs {
	margin: 4px;
}

.m-sm {
	margin: 8px;
}

.m-md {
	margin: 24px;
}

.m-lg {
	margin: 32px;
}

.m-v-xs {
	margin-top: 4px;
	margin-bottom: 4px;
}

.m-v-sm {
	margin-top: 8px;
	margin-bottom: 8px;
}

.m-v {
	margin-top: 16px;
	margin-bottom: 16px;
}

.m-v-md {
	margin-top: 24px;
	margin-bottom: 24px;
}

.m-v-lg {
	margin-top: 32px;
	margin-bottom: 32px;
}

.m-h-xs {
	margin-right: 4px;
	margin-left: 4px;
}

.m-h-sm {
	margin-right: 8px;
	margin-left: 8px;
}

.m-h {
	margin-right: 16px;
	margin-left: 16px;
}

.m-h-md {
	margin-right: 24px;
	margin-left: 24px;
}

.m-h-lg {
	margin-right: 32px;
	margin-left: 32px;
}

.m-t {
	margin-top: 16px;
}

.m-t-xs {
	margin-top: 4px;
}

.m-t-sm {
	margin-top: 8px;
}

.m-t-md {
	margin-top: 24px;
}

.m-t-lg {
	margin-top: 32px;
}

.m-r {
	margin-right: 16px;
}

.m-r-xs {
	margin-right: 4px;
}

.m-r-sm {
	margin-right: 8px;
}

.m-r-md {
	margin-right: 24px;
}

.m-r-lg {
	margin-right: 32px;
}

.m-b {
	margin-bottom: 16px;
}

.m-b-xs {
	margin-bottom: 4px;
}

.m-b-sm {
	margin-bottom: 8px;
}

.m-b-md {
	margin-bottom: 24px;
}

.m-b-lg {
	margin-bottom: 32px;
}

.m-l {
	margin-left: 16px;
}

.m-l-xs {
	margin-left: 4px;
}

.m-l-sm {
	margin-left: 8px;
}

.m-l-md {
	margin-left: 24px;
}

.m-l-lg {
	margin-left: 32px;
}

.m-n {
	margin: -16px;
}

.m-h-n {
	margin-right: -16px;
	margin-left: -16px;
}

.m-v-n {
	margin-top: -16px;
	margin-bottom: -16px;
}

.m-l-n {
	margin-left: -16px;
}

.m-r-n {
	margin-right: -16px;
}

.m-t-n {
	margin-top: -16px;
}

.m-b-n {
	margin-bottom: -16px;
}

.no-padding {
	padding: 0 !important;
}

.no-padding-h {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.no-padding-v {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.p-xs {
	padding: 4px;
}

.p-sm {
	padding: 8px;
}

.p {
	padding: 16px;
}

.p-md {
	padding: 24px;
}

.p-lg {
	padding: 32px;
}

.p-h {
	padding-right: 16px;
	padding-left: 16px;
}

.p-h-xs {
	padding-right: 4px;
	padding-left: 4px;
}

.p-h-sm {
	padding-right: 8px;
	padding-left: 8px;
}

.p-h-md {
	padding-right: 24px;
	padding-left: 24px;
	font-weight: bold !important;
}

.p-h-lg {
	padding-right: 32px;
	padding-left: 32px;
	font-weight: bold !important;
}

.p-v {
	padding-top: 16px;
	padding-bottom: 16px;
}

.p-v-xs {
	padding-top: 4px;
	padding-bottom: 4px;
}

.p-v-sm {
	padding-top: 8px;
	padding-bottom: 8px;
}

.p-v-md {
	padding-top: 24px;
	padding-bottom: 24px;
}

.p-v-lg {
	padding-top: 32px;
	padding-bottom: 32px;
}

.padding {
	padding: 32px 32px;
}

.padding-out {
	margin: -32px -32px;
}

@media (max-width: 992px) {
	.padding {
		padding: 16px 16px;
	}

	.padding-out {
		margin: -16px -16px;
	}
}

@media (max-width: 767px) {
	.padding {
		padding: 16px 16px;
	}

	.padding-out {
		margin: -8px -8px;
	}
}

.no-radius {
	border-radius: 0 !important;
}

.no-r-t {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.no-r-r {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.no-r-b {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.no-r-l {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.r {
	border-radius: 3px;
}

.r-t {
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}

.r-r {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.r-b {
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.r-l {
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
}

.r-2x {
	border-radius: 6px;
}

.r-3x {
	border-radius: 9px;
}

.scrollable {
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.scrollable.hover {
	overflow-y: hidden !important;
}

.scrollable.hover > * {
	margin-top: -1px;
}

.scrollable.hover:hover {
	overflow: visible !important;
	overflow-y: auto !important;
}

.smart .scrollable {
	overflow-y: auto !important;
}

.scroll-x,
.scroll-y {
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}

.scroll-y {
	overflow-y: auto;
}

.scroll-x {
	overflow-x: auto;
}

.no-shadow {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.box-shadow {
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.box-shadow-md {
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}

.box-shadow-lg {
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.box-shadow-inset {
	-webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.text-shadow {
	text-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.l-h {
	line-height: 1.42857143;
}

.l-h-1x {
	line-height: 1;
}

.l-h-2x {
	line-height: 2em;
}

.h-1x {
	height: 20px;
}

.h-2x {
	height: 40px;
}

.h-3x {
	height: 60px;
}

.h-4x {
	height: 80px;
}

.font-normal {
	font-weight: normal;
}

.font-thin {
	font-weight: 300;
}

.font-bold {
	font-weight: 700;
}

.text-4x {
	font-size: 4em;
}

.text-3x {
	font-size: 3em;
}

.text-2x {
	font-size: 2em;
}

.text-xl {
	font-size: 32px;
}

.text-lg {
	font-size: 24px;
}

.text-md {
	font-size: 16px;
}

.text-base {
	font-size: 14px;
}

.text-sm {
	font-size: 13px;
}

.text-xs {
	font-size: 12px;
}

.text-xxs {
	font-size: 10px;
}

.text-u-c {
	text-transform: uppercase;
}

.text-l-t {
	text-decoration: line-through;
}

.text-u-l {
	text-decoration: underline;
}

.text-ellipsis {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-wrap {
	text-wrap: balance;
}

.text-fade {
	position: relative;
	overflow: hidden;
}

.text-fade:after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 70%;
	height: 1.2em;
	text-align: right;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff 50%);
	content: '';
}

.no-select {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

@media (min-width: 768px) and (max-width: 991px) {
	.text-center-sm {
		text-align: center;
	}

	.text-left-sm {
		text-align: left;
	}

	.text-right-sm {
		text-align: right;
	}
}

@media (max-width: 767px) {
	.text-center-xs {
		text-align: center;
	}

	.text-left-xs {
		text-align: left;
	}

	.text-right-xs {
		text-align: right;
	}
}

.w-16 {
	width: 16px;
	height: 16px;
}

.w-20 {
	width: 20px;
	height: 20px;
}

.w-24 {
	width: 24px;
	height: 24px;
}

.w-32 {
	width: 32px;
	height: 32px;
}

.w-40 {
	width: 40px;
	height: 40px;
}

.w-48 {
	width: 48px;
	height: 48px;
}

.w-56 {
	width: 56px;
	height: 56px;
}

.w-64 {
	width: 64px !important;
	height: 64px !important;
}

.w-90 {
	width: 90px;
	height: 90px;
}

.w-120 {
	width: 120px !important;
}

.w-xxl {
	width: 60px;
}

.w-xs {
	width: 90px;
}

.w-sm {
	width: 120px;
}

.w {
	width: 180px;
}

.w-md {
	width: 200px;
}

.w-lg {
	width: 240px;
}

.w-xl {
	width: 280px;
}

.w-xxl {
	width: 320px;
}

.w-wide {
	width: 420px;
}

.w-full {
	width: 100%;
}

.w-auto {
	width: auto;
}

.h-auto {
	height: auto;
}

.h-full {
	height: 100%;
}

@media (max-width: 991px) {
	.w-auto-sm {
		width: auto;
	}

	.w-full-sm {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.w-auto-xs {
		width: auto;
	}

	.w-full-xs {
		width: 100%;
	}
}

.logo-svg {
	width: 90px;
	margin-top: -20px;
}

.logo-header {
	width: 50px;
	margin-left: -9px;
	margin-top: 30px;
}

.lheader {
	width: 82px;
	margin-top: 3px;
	margin-left: -6px;
	margin-right: -20px;
}

.email-icon {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 100px;
	margin-top: -15px;
	color: #ff8255;
}

.notify-icon {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 100px;
	margin-bottom: 15px;
	margin-top: 0px;
	color: #595959;
}

.success-icon {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 100px;
	margin-top: -5px;
	margin-bottom: 10px;
	color: #20b779;
}

.error-icon {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 100px;
	margin-top: -5px;
	margin-bottom: 10px;
	color: #ff5454;
}

.notifications {
	/* margin-left: -320px;
	min-width: 405px;
	padding: 10px;
	margin-top: -9px; */
}

@media (max-width: 767px) {
	.account_panel {
		/* margin-left: -358px !important; */
		/* width: 450px !important; */
	}

	.mob_note {
		margin-left: 0px !important;
		margin-right: 0px !important;
	}

	.notifications {
		/* width: 475px !important; */
	}

	.mob_top {
		margin-left: 95px !important;
	}
}

.account_panel {
	/* width: 375px; */
	/* margin-left: -320px;
	padding: 10px;
	top: 62px !important;
	margin-top: -9px; */
}

.notify-shadow {
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.ver-icon {
	position: absolute;
	right: 30px;
	top: 10px;
	font-size: 25px;
}

.success-status {
	color: #43a047;
}

.pending-status {
	color: rgb(116, 145, 162);
}

.school-time {
	position: absolute;
	top: 15px;
	right: 20px;
}

.cloud-map-menu {
	position: absolute;
	top: 0px;
	right: 0px;
}

.md-open-menu-container {
	z-index: 999999;
}

.md-scroll-mask {
	z-index: 0 !important;
}

.embed-responsive {
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
}

.embed-responsive.embed-responsive-16by9 {
	padding-bottom: 56.25%;
}

.embed-responsive-item {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.error-in-use {
	display: none;
	bottom: 0px;
	color: rgba(255, 89, 89, 0.85098);
	font-weight: bold;
}

.error-form {
	display: none;
	bottom: 0px;
	color: rgba(255, 89, 89, 0.85098);
	font-weight: bold;
}

.loading-shadow {
	width: 100%;
}

#modal .country-list {
	width: 340px;
	overflow-x: hidden;
	max-height: 101px;
}

#profile-corner-tools {
	position: absolute;
	width: 50px;
	height: 50px;
	right: 5px;
	top: 10px;
}

.bg-notify {
	background-color: #efefef;
	color: #aaa;
}

.bn-white {
	border-color: #efefef;
}

.notify-inner-loading {
	height: 260px;
	display: block;
}

.note-header {
	text-align: center;
	min-height: 40px;
	line-height: 40px;
	color: #666;
	font-size: 16px;
}

.note-body {
	min-height: 50px;
}

.note-body .no-messages {
	margin-top: 50px;
}

.note-body .messages {
	margin-top: 10px;
	padding: 0 !important;
}

#bubble-all-set {
	text-align: center;
	margin: 0 auto;
	width: 130px;
}

#all-set-img {
	margin: 0 auto;
	width: 88px;
	margin-top: 10px;
	margin-bottom: 30px;
}

.note-item-img {
	height: 80px;
	width: 80px;
	cursor: default;
}

.note-item-content {
	display: inline-block;
}

.note-item-content span {
	font-size: 15px;
	color: black;
	font-weight: bold;
	margin-left: 10px;
}

.note-item-content p {
	font-size: 12px;
	color: black;
	margin-left: 10px;
}

.note-item-actions {
	position: absolute;
	top: 5px;
	right: 5px;
}

.n-r:hover {
	color: black;
}

.mgb7 {
	margin-bottom: 7px;
}

md-backdrop.md-select-backdrop {
	z-index: 90 !important;
}

.man-btn {
	position: absolute;
	right: 4px;
	z-index: 90;
	margin-top: 7px !important;
}

.version {
	text-align: center;
	color: gray;
	font-size: 14px;
	margin-bottom: 30px;
}

.circle-num {
	margin-top: 17px;
	padding: 6px;
	height: 30px;
	width: 30px;
	background: white;
	color: #6c08c8;
	border-radius: 50%;
}

.circle-num > span {
	position: absolute;
}

.proggy .container {
	display: block;
	margin-top: 17px;
	position: absolute;
	left: 50%;
	top: 40%;
	transform: translateX(-50%);
	width: 50%;
	transition: opacity 0.1s linear;
	border-top: 0px;
}

.proggy .bottom-block {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
}

.proggy .bottom-block > span {
	display: inline-block;
	margin-top: 6px;
	padding: 25px;
	font-size: 0.9em;
}

.proggy .typer__cursor {
	display: none !important;
}

.prog-sp {
	display: inline-block;
	position: absolute;
	margin-top: 7px;
}

.prog-ver {
	position: absolute;
	top: 16px;
	right: 0px;
}

.note-count {
	position: absolute !important;
	top: 15px !important;
	left: 37px !important;
}

.lc {
	background-color: #de685d !important;
}

.shift-left {
	margin-right: 10px;
}

#ac-year {
	position: absolute;
	top: 90px;
	text-align: center;
	transform: translateX(-50%);
	left: 50%;
	width: 100%;
	color: #595959;
	font-size: 2.4em;
}

#ac-year-sub {
	position: absolute;
	min-width: 400px;
	top: 135px;
	text-align: center;
	left: 50%;
	color: #646464;
	transform: translateX(-50%);
}

#ac-year-action {
	position: absolute;
	top: 170px;
	left: 50%;
	transform: translateX(-50%);
}

#ac-cust {
	position: absolute;
	top: 90px;
	text-align: center;
	transform: translateX(-50%);
	left: 50%;
	width: 100%;
	color: #595959;
	font-size: 2.4em;
}

#ac-cust-sub {
	position: absolute;
	min-width: 400px;
	top: 135px;
	text-align: center;
	left: 50%;
	color: #646464;
	transform: translateX(-50%);
}

#ac-cust-action {
	position: absolute;
	top: 170px;
	left: 50%;
	transform: translateX(-50%);
}

::-webkit-scrollbar {
	width: 0.3em;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
	background-color: darkgrey;
	outline: 1px solid slategrey;
}

.counter {
	padding: -32px -32px;
}

.loading-top {
	z-index: 9999;
	min-width: 300px;
	position: absolute;
	top: 10px;
	text-align: center;
	left: 50%;
	height: 50px;
	transform: translateX(-50%);
	background: #fff1a8;
	font-family: 'Roboto';
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16);
	border-radius: 3px;
	padding-top: 16px;
	cursor: pointer;
	color: #595959;
}

.md-btn-loader {
	position: absolute !important;
	left: 50%;
	transform: translateX(-50%);
	top: 1px;
}

.a-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.letter-grade {
	width: 80px;
	height: 80px;
	background: #646464;
	text-align: center;
	color: white;
	margin: 0 auto;
	border-radius: 5px;
	font-size: 3em;
	padding-top: 12px;
}

.grade-letter-list-item {
	position: absolute;
	font-size: 3.5em;
	left: 50%;
	top: 7px;
	transform: translateX(-50%);
}

#g-background {
	position: absolute;
	width: 85px;
	height: 86px;
	margin-left: -17px;
	z-index: 9;
	margin-top: -17px;
}

.grade-comment {
	margin-left: 80px;
	font-size: 1.3em;
	color: #4a4a4a;
	margin-top: -3px;
}

.dl {
	top: 2px;
	position: absolute;
	font-size: 12px;
	color: #a0a0a0;
}

.prog-cl {
	display: inline-block;
	position: absolute;
	margin-top: 0px;
	margin-left: -35px;
}

#about-social {
	margin-top: 30px;
}

.panel #loading md-progress-circular {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {
	.special-panels .panel {
		margin-left: 0px;
		margin-right: 0px;
	}
}

@media (max-width: 767px) {
	.panel {
		margin-left: 30px;
		margin-right: 30px;
	}
}

@media (max-width: 767px) {
	#menu-list .panel {
		margin-left: 0px !important;
		margin-right: 0px !important;
	}
}

.panelx {
	background-color: #fcfcfc;
	margin-bottom: 10px;
}

.super-search-bar {
	width: 100%;
	margin: 0px auto;
	border-radius: 3px;
	height: 43px;
	color: gray;
	padding-left: 45px;
	background: white;
}
.list-group-title {
	text-transform: uppercase;
	font-size: 14px;
}
.search-panel {
	margin-bottom: 20px;
	margin-top: -77px;
	height: 77px;
	margin-left: -35px;
	margin-right: -16px;
	padding: 17px;
	background-color: #fcfcfc;
	padding-left: 60px;
}

ul.student-list {
	list-style: none none;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
ul.student-list li {
	list-style: none none;
	margin: 0px;
	padding: 8px 5px 8px 5px;
	display: block;
	cursor: pointer;
}
ul.student-list li a {
	padding: 8px 5px 8px 5px;
	margin: 0px;
}

.m-left {
	width: 200px;
	height: 50px;
	padding-left: 5px !important;
	margin-left: 22px;
	padding: 10px 0px 10px 5px;
}
div.student-details {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	line-height: 1;
}
div#showing-profiles {
	position: relative;
	top: -43px;
}
.top-filter-tools {
	padding: 10px;
	padding-left: 32px;
}

.class-text {
	color: #000000 !important;
	font-weight: bold !important;
	opacity: 0.7 !important;
	margin-bottom: -5px;
	margin-top: -2px;
}

.panel-row {
	margin-top: 55px;
}

@media (min-width: 1200px) {
	.panel-row {
		margin-top: 50px;
	}
}

@media (min-width: 992px) {
	.panel-row {
		margin-top: 45px;
	}
}

@media (max-width: 767px) {
	.off-list {
		width: 50%;
	}
}

.off-list {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
	background: #dc4b4f;
	color: white;
	border: 2px solid #f5f5f5;
	width: 40%;
	text-align: center;
	border-radius: 2px;
	outline: none;
	font-weight: bold;
}

.off-list .selected-d-list {
	padding: 15px;
}

.off-list .selected-d-list span {
	cursor: pointer;
}

.custom-search {
	height: 40px !important;
	font-size: 18px !important;
}

.custom-tabs {
	top: 150px;
}

.detail-img {
	margin-left: 32px;
	margin-top: 32px;
}

.detail-info {
	padding-top: 32px;
}

.detail-pills {
	margin-top: 6px;
	position: absolute;
	left: 128px;
}

.custom-detail-nav-btn {
	margin-top: -50px;
	margin-right: 25px;
}

.faded-a-bit {
	opacity: 0.9;
}

.underline-text:hover {
	text-decoration: underline;
}

.top-nav-bar-next-prev {
	margin-top: 17px;
	margin-right: 15px;
}

.dark-color {
	color: #595959 !important;
}

.bg-big header {
	text-align: center;
	float: left;
	width: 100%;
	display: block;
	min-height: 215px;
}

.bg-big section {
	float: left;
	width: 100%;
}

.bg-big header .container {
	text-align: center;
}

.bg-big header .container h1 {
	color: white;
	margin: 80px 0px 10px 0px;
	font-size: 42px;
	font-weight: 500;
}

#nl-panel {
	position: relative;
	width: 65%;
	margin: -120px auto 0px;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
	background-color: #fff;
	border: none;
	-webkit-border-radius: 4px !important;
	-moz-border-radius: 4px !important;
	border-radius: 4px;
}

#nl-panel .panel-body {
	padding: 70px 70px;
	padding-bottom: 30px;
}

#nl-panel .panel-footer {
	border-radius: 0px 0px 4px 4px;
	text-align: center;
	background-color: #f8f8f8;
	padding: 30px;
	border-top: 1px solid #e0e0e0;
}

@media (min-width: 768px) and (max-width: 991px) {
	/* sm */
	#nl-panel {
		position: relative;
		width: 80%;
	}

	#nl-panel .panel-body {
		padding: 70px 70px;
		padding-bottom: 30px;
	}

	#nl-panel .panel-footer {
	}
}

@media (max-width: 767px) {
	/* xs */
	#nl-panel {
		position: relative;
		width: 100%;
	}

	#nl-panel .panel-body {
		padding: 45px 45px;
		padding-bottom: 45px;
	}

	#nl-panel .panel-footer {
	}
}

.up-up {
	z-index: 99999;
}

.progress-jumper {
	width: 100%;
	height: 100%;
	background: #eceff1;
}

.search-progress {
	position: absolute !important;
	right: 25px !important;
	top: 10px !important;
}

.search-progress-top {
	left: 60px !important;
	top: 12px !important;
	position: absolute;
}

.upload-icon {
	font-size: 100px;
	color: #595959;
}

.center-import {
	margin: 0 auto;
	width: 100px;
	margin-top: 5px;
}

.center-download {
	margin: 0 auto;
	width: 185px;
	margin-top: 5px;
}

.lg-card-icon {
	font-size: 6em;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 62px;
	color: #454545;
}

.card-add-text {
	font-size: 1.5em;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 62px;
	color: #646464;
}

.clickable-card {
	cursor: pointer;
}

.special-panels {
}

.card-top-fix {
	height: 17em;
}

.profile-bar {
	margin-top: 15px;
}

.profile-percent-text {
	font-size: 2em;
	margin-top: -35px;
	color: #595959;
}

.profile-checklist {
	list-style: none;
	margin-left: -35px;
}

.profile-checklist > li {
}

.profile-checklist > li.done {
	text-decoration: line-through;
}

.green-check {
	color: #3cce7e;
}

.profile-bar-btn {
	float: right;
}

.pa-menu-item {
	min-height: 150px;
	color: #454545;
}

.pa-card {
	margin-bottom: 10px;
	cursor: pointer;
}

.mg-card {
	margin-left: 10px;
	margin-right: 10px;
}

.category-label {
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: bold;
	color: #454545;
}

.centered-panel {
	width: 95%;
	margin: 0 auto;
}

.mg-top-big {
	margin-top: 145px;
}

.home-title {
	font-weight: bold;
}

.home-body {
	padding-left: 15px !important;
	padding-right: 20px !important;
}

.pa-student {
	margin-top: 20px !important;
	width: 98%;
	margin: 0 auto;
	height: 70px;
}

.pa-student-icon-small {
	margin-left: 5px;
	margin-top: -4px;
}

.bottom-sheet-icon {
	font-size: 58px;
	color: #454545;
}

.bs-btn {
	padding-top: 10px;
	padding-bottom: 10px;
}

.rat-num {
	position: absolute;
	right: 26px;
	font-size: 20px;
	bottom: 15px;
}

#special-fg-phone .intl-tel-input {
	width: 100%;
}

.red-dot {
	width: 20px;
	height: 20px;
	background: #ff4528;
	border-radius: 50%;
	position: absolute;
}

.red-dot-rel {
	width: 20px;
	height: 20px;
	background: #ff4528;
	border-radius: 50%;
	position: relative;
	display: inline-block;
	margin-top: 3px;
	margin-right: 9px;
	margin-bottom: -5px;
}

div.rspan {
	margin-left: 38px;
	font-size: 15px;
	font-weight: bold;
	position: absolute;
	margin-top: 10px;
	color: #595959;
}

.Blink {
	animation: blinker 1.3s infinite alternate;
}

@keyframes blinker {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.tile {
	padding: 20px;
	cursor: pointer;
}

.tile .icon {
	position: absolute;
	right: 5px;
	bottom: 5px;
	z-index: 1;
}

.tile .num {
	font-size: 3em;
	margin-bottom: -20px;
}

.tile p {
	margin-top: -7px;
	margin-left: 3px;
}

.tile i {
	font-size: 140px;
}

.card-button {
}

.card-button button {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 90;
}

md-select-menu {
}

md-select-menu .one-line img {
	top: 10px !important;
}

.md-select-menu-container {
	z-index: 155;
}
md-backdrop.md-select-backdrop,
md-virtual-repeat-container.md-autocomplete-suggestions-container {
	z-index: 155 !important;
}

.md-panel-outer-wrapper ~ :is([class*='md-pan'], *) {
	z-index: 155;
}

.one-line {
	width: 100%;
}

.one-line img {
	position: absolute;
	top: 3px;
}

.one-line .avatar-wrapper {
	display: inline-block !important;
	margin-top: 3px;
	position: absolute;
	margin-bottom: 3px;
}

.md-select-text-combo {
	display: inline-block;
	margin-bottom: 10px;
	padding-left: 35px;
	margin-top: 5px;
}

/*------ utiltity classes -----*/
.fl {
	float: left;
}

.fr {
	float: right;
}

/*its also known as clearfix*/
.group:before,
.group:after {
	content: '';
	display: table;
}

.group:after {
	clear: both;
}

.group {
	zoom: 1; /*For IE 6/7 (trigger hasLayout) */
}

.pricing-table {
	width: 100%;
	margin: 0px auto;
	margin-top: 0px;
	text-align: center;
	padding-right: 0;
}

.pricing-table .heading {
	color: #9c9e9f;
	text-transform: uppercase;
	font-size: 1.3rem;
	margin-bottom: 4rem;
}

.pricer .block {
	width: 30%;
	margin: 0 15px;
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/*    border: 1px solid red;*/
}

/*Shared properties*/
.title,
.pt-footer {
	color: #fefefe;
	text-transform: capitalize;
	line-height: 2.5;
	position: relative;
}

.content {
	position: relative;
	color: #fefefe;
	padding: 20px 0 10px 0;
}

/*arrow creation*/
.content:after,
.content:before,
.pt-footer:before,
.pt-footer:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: ' ';
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.pt-footer:after,
.pt-footer:before {
	top: 0;
}

.content:after,
.pt-footer:after {
	border-color: rgba(136, 183, 213, 0);
	border-width: 5px;
	margin-left: -5px;
}

/*/arrow creation*/
.price {
	position: relative;
	display: inline-block;
	margin-bottom: 0.625rem;
}

.price span {
	font-size: 6rem;
	letter-spacing: -5px;
	font-weight: bold;
	margin-right: 5px;
}

.price sup {
	font-size: 1.5rem;
	position: absolute;
	top: 10px;
	left: -15px;
}

.hint {
	font-style: italic;
	font-size: 0.9em;
}

.features {
	list-style-type: none;
	background: #ffffff;
	text-align: left;
	color: #454545;
	padding: 30px 22%;
	font-size: 0.9em;
}

.features li {
	padding: 15px 0;
	width: 100%;
	text-align: center;
}

.features li span {
	padding-right: 0.4rem;
}

/*PERSONAL*/
.personal .title {
	margin-bottom: 0px;
}

.personal .content,
.personal .pt-footer {
}

.invoice-heading {
	color: #595959;
}

.pd-15 {
	padding: 0px 30px;
}

.horizontal-wrapper {
	width: 100%;
	margin-left: 0px;
	white-space: nowrap;
	overflow-y: hidden;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.horizontal-wrapper .internal {
	display: inline;
}

.internal-body {
	min-height: 400px;
}

.internal-heading {
	position: relative;
	padding: 25px 25px !important;
}

.long-group {
	width: 100%;
}

.long-group .long-group-header-title {
	font-size: 1.3em;
	color: #595959;
	margin-bottom: 0px;
	margin-top: 10px;
}

.class-card {
	cursor: pointer;
}

.term-status-bar {
	width: 100%;
	min-height: 100px;
	background: white;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
}

.cal-icon {
	display: inline-block;
	width: 100%;
	height: 100px;
	padding: 20px;
}

.cal-icon .text {
	padding-left: 60px;
}

.cal-icon i {
	font-size: 50px;
	color: #595959;
}

.h-h4-term {
	margin-bottom: -5px;
	margin-top: 10px;
}

.ward-img {
	width: 100px;
	height: 100px;
	display: inline-block;
	margin-bottom: 50px;
	margin-left: 30px;
}

.ward-info {
	display: inline-block;
}

.mb-5 {
	margin-bottom: -5px;
}

.mb-15 {
	margin-bottom: 15px;
}

.pa-term-dialog-p {
	margin-top: -5px;
}

#addbut {
	position: relative;
	height: 60px;
	width: 60px;
	font-weight: normal;
	color: #fff;
	font-size: 34px;
	float: left;
	text-align: center;
	border-radius: 40px;
	border: none;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.butcol {
	background: #12728e;
}

.rotated {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	background: #ff5555;
	transform: rotate(135deg);
}

.agroup-item-card {
	width: 300px;
	min-height: 200px;
	margin: 0 20px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0px 6px rgba(90, 90, 90, 0.17);
}

.newagroup-item-card {
	width: 300px;
	min-height: 230px;
	display: inline-block;
	vertical-align: top;
	margin: 0 20px;
	float: left;
	position: relative;
	display: none;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0px 6px rgba(90, 90, 90, 0.17);
}

.showcardx {
	display: block;
}

#showdown {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	overflow: auto;
	text-shadow: none;
}

.newcardhd {
	float: left;
	width: 100%;
	font-size: 20px;
	text-align: center;
	color: #444444;
	height: 45px;
	padding: 10px;
}

.classlns {
	float: left;
	width: 100%;
	padding: 10px;
	height: 50px;
}

.lablex {
	width: 20%;
	font-weight: 600;
	color: #807e7e;
}

.inputalx {
	width: 78%;
	border-radius: 5px;
	height: 35px;
	padding: 5px;
	border: 2px solid #ccc;
}

.spacex {
	margin: 5px 10px;
}

.cardtopx {
	float: left;
	width: 100%;
	height: 120px;
}

.belowcardbx {
	float: left;
	width: 100%;
	padding: 10px;
	min-height: 70px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	background-color: #f5f5f5;
}

.assweightbx {
	float: left;
	width: 100%;
	font-size: 18px;
	height: 25px;
	text-align: center;
	color: #999;
}

.newassessbut {
	width: 100%;
	margin: 0 auto;
	height: 30px;
	padding: 0;
}

.asscardcnt {
	width: 100%;
	float: left;
	padding: 5px;
	margin: 5px 0;
	min-height: 60px;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
}

.asscardcnt:hover {
	background-color: rgb(253, 253, 253);
	box-shadow: rgba(0, 0, 0, 0.498039) 0px 1px 2px;
}

.assnamebx {
	/* float: left; */
	width: 100%;
	min-height: 20px;
	font-size: 16px;
	color: #12728e;
	padding-left: 5px;
	cursor: pointer;
	overflow: hidden;
}

.assnamebx__title {
	width: 75%;
	display: inline-block;
}

.assnamebx__dropdown {
	padding: 0;
	right: 0px;
	position: relative;
}

.blue-staff {
	height: 10px;
	width: 10px;
	padding: 5px;
	background: #12728e;
	color: white;
	border-radius: 3px;
	margin-bottom: 15px;
	display: inline;
}

.dropasstit {
	padding: 2px 8px;
}

.assdatebx {
	float: left;
	width: 100%;
	height: 20px;
	font-size: 13px;
	color: #707070;
	padding-left: 3px;
}

.assdatebx__syncbtn {
	margin-left: auto;
	margin-right: 0;
}

.cur-default {
	cursor: default;
}

.asstotalbx {
	float: left;
	width: 100%;
	height: 20px;
	font-size: 13px;
	color: #707070;
	margin-bottom: 6px;
	padding-left: 3px;
}

.status-dot {
	width: 21px;
	height: 7px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 2px;
}

.not-approved-status {
	background: #ff4528;
}

.approved-status {
	background: #4caf50 !important;
}

.review-status {
	background: #ffb500;
}

.panel-tools {
	position: relative !important;
	float: right;
	margin-top: 10px;
	margin-right: 10px;
	top: 0px;
	right: 0px;
	z-index: 9999;
}

.panel-divider {
	margin: 0px;
	margin-top: 10px;
}

.hand-job {
	border-radius: 0 !important;
	cursor: pointer;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.hand-job-close {
	border-radius: 0 !important;
	cursor: pointer;
}

.hand-job-free {
	border-radius: 0 !important;
	cursor: pointer;
}

.real-index-header {
	width: 100%;
	min-height: 50px;
	background: #dddee0;
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
}

.real-index-input input {
	box-shadow: none;
	padding: 19px;
	border-radius: 3px;
}

.blue-link {
	color: #0c82df;
	text-decoration: underline;
}

.edit-glyph {
	left: 4px;
}

.ww-group-title {
	padding-top: 24px;
	padding-left: 24px;
	padding-bottom: 10px;
	font-size: 19px;
	color: #12728e;
}

.student-extension {
	min-height: 50px;
	padding: 24px;
}

.no-pd-t {
	padding-top: 0 !important;
}

.subject-list {
	padding-top: 50px;
}

.sub-button-version {
	padding: 0;
}

.dialog-marg {
	margin: 30px;
}

.sm-mgs {
	margin-left: 10px;
}

.menu-item-card .facing {
	width: 100%;
	display: grid;
	grid-template-columns: 40% auto;
}

.facing .left-symb {
	display: inline-block;
	padding: 50px;
	color: white;
	background: #12728e;
	font-size: 40px;
}

.facing .summary {
	padding: 10px;
	display: inline-block;
}

.facing .summary .heading {
	font-size: 30px;
	color: #595959;
}

.expansion {
	min-height: 50px;
	border-top: 1px rgba(0, 0, 0, 0.1) solid;
}

.pb-none {
	padding-bottom: 0px;
}

.pd-24 {
	padding: 24px;
}

.summary-chart {
	padding-top: 10px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-15 {
	padding-top: 15px;
}

.ul-text {
	text-decoration: underline !important;
}

.fixed-item {
	position: fixed !important;
}

.fab-fix {
	bottom: 20px;
}

.access-title {
	margin-top: -20px;
	color: #434343;
}

.fsz-17 {
	font-size: 17px;
}

.top-sleek-bar {
	top: 52px;
	z-index: -3;
	right: 0px;
	position: absolute;
	left: 0px;
	height: 120px;
	margin-bottom: 15px;
	background-image: url('../images/tr_dash.png'), url('../images/tr_dash1.png');
	background-size: auto 100%, auto 100%;
	background-position: left bottom, right bottom;
	background-repeat: no-repeat, no-repeat;
	background-color: #12728e;
	width: 100%;
}

.b-new-light {
	color: #fff;
	background: #12728e;
	border: none;
}

.noshahow {
	box-shadow: none !important;
}

.custom-shadow {
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25) !important;
}

.custom-padding {
	padding: 32px 32px;
}

.margup-10 {
	margin-top: -10px;
}

.class-teacher-image {
	margin-top: -20px !important;
	margin-left: 10px !important;
}

.forgot-body {
	padding-top: 40px !important;
	padding-left: 60px !important;
	padding-bottom: 0px !important;
}

.center-tabs {
	width: 340px;
	margin: 0 auto;
}

.bdr-5 {
	border-radius: 5px;
}

.pdg-15 {
	padding: 15px;
}

.ribbon {
	position: relative;
	padding: 0 0.5em;
	font-size: 23px;
	margin: 38px 0px 0 2px;
	width: 200px;
	line-height: 1.875em;
	color: #ffffff;
	border-radius: 0.156em 0 0 0.156em;
	background: rgb(80, 146, 255);
	box-shadow: -1px 2px 3px rgba(0, 0, 0, 0.2);
	float: right;
	z-index: 300;
}

.ribbon:before,
.ribbon:after {
	position: absolute;
	content: '';
	display: block;
}

.ribbon:before {
	width: 0.469em;
	height: 100%;
	padding: 0 0 2.5em;
	top: 0;
	right: -0.469em;
	background: inherit;
	border-radius: 0 0.313em 0.313em 0;
}

.ribbon:after {
	width: 0.313em;
	height: 0.313em;
	background: rgba(0, 0, 0, 0.35);
	bottom: -0.313em;
	right: -0.313em;
	border-radius: 0 0.313em 0.313em 0;
	box-shadow: inset -1px 2px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
	body {
		font-size: 15px;
	}

	.ribbon {
		line-height: 1.143em;
		padding: 0.5em;
	}

	.ribbon:before,
	.ribbon:after {
		font-size: 0.714em;
	}
}

.smalls {
	font-size: 15px;
}

.center-tabs-2x {
	width: 415px;
	margin: 0 auto;
}

.center-tabs-3x {
	width: 430px;
	margin: 0 auto;
}

.card-footer {
	text-align: center;
	min-height: 50px;
	padding-top: 15px;
	background: whitesmoke;
}

.nav-footer {
	text-align: center;
	font-size: 13px;
	margin-top: 30px !important;
	margin-bottom: 30px !important;
	color: #595959;
}

ul.nav-footer {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-footer > li {
	display: inline-block;
	margin: 0 8px;
}

.footer-signin {
	margin-top: 5px;
}

.reddy {
	color: #db4437;
}

.class-card-avatar {
	height: 280px;
	margin-top: -65px;
}

.opaque {
	opacity: 1 !important;
}

.class-card-btn {
	margin-left: 24px;
	margin-top: -20px;
}

.search-corner-tools {
	position: absolute;
	right: 10px;
	top: -57px;
}

.margbt-10 {
	margin-bottom: 20px;
}

.school-title {
	position: absolute;
	left: 160px;
	top: 7px;
}

.mt-15 {
	margin-top: 15px !important;
}

.map {
	margin-top: 20px;
	width: 100%;
	height: 400px;
	background: whitesmoke;
}

.top-label {
	position: absolute;
	top: 0px;
	left: 2px;
	font-size: 13px;
	color: #909090;
}

.long-phone .intl-tel-input {
	width: 100%;
}

.sms-body {
	padding-top: 50px !important;
	padding-left: 50px !important;
	padding-right: 50px !important;
	padding-bottom: 50px !important;
}

.map-box {
	padding: 0px 15px !important;
}

.map-box-zero {
	padding: 0px 0px !important;
}

.pd-30 {
	padding: 30px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.drop-caps {
	float: left;
	border-radius: 3px;
	color: rgba(0, 0, 0, 0.87);
	font-size: 46px;
	line-height: 46px;
	padding: 15px;
	margin: 5px 15px 0 0;
	border: 1px solid transparent;
}

.drop-caps-default {
	background-color: #ffffff;
	border-color: #f0f0f0;
	color: rgba(0, 0, 0, 0.87);
}

.drop-caps-primary {
	background-color: #337ab7;
	border-color: #286090;
	color: #ffffff;
}

.drop-caps-success {
	background-color: #5cb85c;
	border-color: #449d44;
	color: #ffffff;
}

.drop-caps-info {
	background-color: #5bc0de;
	border-color: #31b0d5;
	color: #ffffff;
}

.drop-caps-warning {
	background-color: #f0ad4e;
	border-color: #ec971f;
	color: #ffffff;
}

.drop-caps-danger {
	background-color: #d9534f;
	border-color: #c9302c;
	color: #ffffff;
}

.drop-caps-borderless {
	background-color: transparent;
	border-color: #c9302c;
	color: rgba(0, 0, 0, 0.87);
	border: none;
	padding: 0 5px;
}

blockquote {
	font-style: italic;
	font-size: 18px;
	border-left: 2px solid #f0f0f0;
}

blockquote.pull-right {
	border-left: 0;
	border-right: 2px solid #f0f0f0;
}

blockquote small {
	margin: 10px 0 0 0;
}

blockquote.blockquote-primary {
	border-color: #337ab7;
}

blockquote.blockquote-success {
	border-color: #5cb85c;
}

blockquote.blockquote-info {
	border-color: #5bc0de;
}

blockquote.blockquote-warning {
	border-color: #f0ad4e;
}

blockquote.blockquote-danger {
	border-color: #d9534f;
}

/*
3 - Badges
*/
.badge.badge-rounded {
	border-radius: 50%;
}

.badge-primary {
	background-color: #337ab7;
	color: #ffffff;
}

.badge-success {
	background-color: #5cb85c;
	color: #ffffff;
}

.badge-info {
	background-color: #5bc0de;
	color: #ffffff;
}

.badge-warning {
	background-color: #f0ad4e;
	color: #ffffff;
}

.badge-danger {
	background-color: #d9534f;
	color: #ffffff;
}

.badge-black {
	background-color: #000000;
	color: #ffffff;
}

.badge-white {
	background-color: #ffffff;
	color: rgba(0, 0, 0, 0.87);
}

.badge-red {
	background-color: #f34235;
	color: #ffffff;
}

.badge-pink {
	background-color: #e81d62;
	color: #ffffff;
}

.badge-purple {
	background-color: #9b26af;
	color: #ffffff;
}

.badge-deep-purple {
	background-color: #6639b6;
	color: #ffffff;
}

.indigo-link {
	color: #12728e;
}

.badge-indigo {
	background-color: #12728e;
	color: #ffffff;
}

.badge-blue {
	background-color: #2095f2;
	color: #ffffff;
}

.badge-light-blue {
	background-color: #02a8f3;
	color: #ffffff;
}

.badge-cyan {
	background-color: #00bbd3;
	color: #ffffff;
}

.badge-teal {
	background-color: #009587;
	color: #ffffff;
}

.badge-green {
	background-color: #4bae4f;
	color: #ffffff;
}

.badge-light-green {
	background-color: #8ac249;
	color: #ffffff;
}

.badge-lime {
	background-color: #ccdb38;
	color: #ffffff;
}

.badge-yellow {
	background-color: #feea3a;
	color: #ffffff;
}

.badge-amber {
	background-color: #fec006;
	color: #ffffff;
}

.badge-orange {
	background-color: #f39c12;
	color: #ffffff;
}

.badge-deep-orange {
	background-color: #fe5621;
	color: #ffffff;
}

.badge-brown {
	background-color: #785447;
	color: #ffffff;
}

.badge-grey {
	background-color: #9d9d9d;
	color: #ffffff;
}

.badge-blue-grey {
	background-color: #5f7c8a;
	color: #ffffff;
}

/*
4 - Alerts
*/
.alert-primary {
	background-color: #337ab7;
	border-color: #2e6da4;
	color: #ffffff;
}

.alert-primary hr {
	border-top-color: #286090;
}

.alert-primary .alert-link {
	color: #e6e6e6;
}

.alert-success {
	background-color: #5cb85c;
	border-color: #4cae4c;
	color: #ffffff;
}

.alert-success hr {
	border-top-color: #449d44;
}

.alert-success .alert-link {
	color: #e6e6e6;
}

.alert-info {
	background-color: #5bc0de;
	border-color: #46b8da;
	color: #ffffff;
}

.alert-info hr {
	border-top-color: #31b0d5;
}

.alert-info .alert-link {
	color: #e6e6e6;
}

.alert-warning {
	background-color: #f0ad4e;
	border-color: #eea236;
	color: #ffffff;
}

.alert-warning hr {
	border-top-color: #ec971f;
}

.alert-warning .alert-link {
	color: #e6e6e6;
}

.alert-danger {
	background-color: #e7544f;
	border-color: #e7544f;
	color: #ffffff;
}

.alert-danger hr {
	border-top-color: #e7544f;
}

.alert-danger .alert-link {
	color: #e6e6e6;
}

.alert-primary-transparent {
	background-color: transparent;
	border-color: #337ab7;
	color: #2e6da4;
}

.alert-primary-transparent hr {
	border-top-color: #2e6da4;
}

.alert-primary-transparent .alert-link {
	color: #23527c;
}

.alert-success-transparent {
	background-color: transparent;
	border-color: #5cb85c;
	color: #4cae4c;
}

.alert-success-transparent hr {
	border-top-color: #4cae4c;
}

.alert-success-transparent .alert-link {
	color: #3d8b3d;
}

.alert-info-transparent {
	background-color: transparent;
	border-color: #5bc0de;
	color: #46b8da;
}

.alert-info-transparent hr {
	border-top-color: #46b8da;
}

.alert-info-transparent .alert-link {
	color: #28a1c5;
}

.alert-warning-transparent {
	background-color: transparent;
	border-color: #f0ad4e;
	color: #eea236;
}

.alert-warning-transparent hr {
	border-top-color: #eea236;
}

.alert-warning-transparent .alert-link {
	color: #df8a13;
}

.alert-danger-transparent {
	background-color: transparent;
	border-color: #d9534f;
	color: #d43f3a;
}

.alert-danger-transparent hr {
	border-top-color: #d43f3a;
}

.alert-danger-transparent .alert-link {
	color: #b52b27;
}

.alert-red {
	background-color: #f34235;
	border-color: #f22b1d;
	color: #ffffff;
}

.alert-red hr {
	border-top-color: #e71d0e;
}

.alert-red .alert-link {
	color: #e6e6e6;
}

.alert-pink {
	background-color: #e81d62;
	border-color: #d61657;
	color: #ffffff;
}

.alert-pink hr {
	border-top-color: #bf134e;
}

.alert-pink .alert-link {
	color: #e6e6e6;
}

.alert-purple {
	background-color: #9b26af;
	border-color: #88219a;
	color: #ffffff;
}

.alert-purple hr {
	border-top-color: #761d85;
}

.alert-purple .alert-link {
	color: #e6e6e6;
}

.alert-deep-purple {
	background-color: #6639b6;
	border-color: #5b33a3;
	color: #ffffff;
}

.alert-deep-purple hr {
	border-top-color: #502d8f;
}

.alert-deep-purple .alert-link {
	color: #e6e6e6;
}

.alert-indigo {
	background-color: #12728e;
	border-color: #12728e;
	color: #ffffff;
}

.alert-indigo hr {
	border-top-color: #12728e;
}

.alert-indigo .alert-link {
	color: #e6e6e6;
}

.alert-blue {
	background-color: #2095f2;
	border-color: #0e89eb;
	color: #ffffff;
}

.alert-blue hr {
	border-top-color: #0c7bd3;
}

.alert-blue .alert-link {
	color: #e6e6e6;
}

.alert-light-blue {
	background-color: #02a8f3;
	border-color: #0297da;
	color: #ffffff;
}

.alert-light-blue hr {
	border-top-color: #0285c0;
}

.alert-light-blue .alert-link {
	color: #e6e6e6;
}

.alert-cyan {
	background-color: #00bbd3;
	border-color: #00a4ba;
	color: #ffffff;
}

.alert-cyan hr {
	border-top-color: #008ea0;
}

.alert-cyan .alert-link {
	color: #e6e6e6;
}

.alert-teal {
	background-color: #009587;
	border-color: #007c70;
	color: #ffffff;
}

.alert-teal hr {
	border-top-color: #006259;
}

.alert-teal .alert-link {
	color: #e6e6e6;
}

.alert-green {
	background-color: #4bae4f;
	border-color: #439c47;
	color: #ffffff;
}

.alert-green hr {
	border-top-color: #3c8a3f;
}

.alert-green .alert-link {
	color: #e6e6e6;
}

.alert-light-green {
	background-color: #8ac249;
	border-color: #7db53d;
	color: #ffffff;
}

.alert-light-green hr {
	border-top-color: #70a236;
}

.alert-light-green .alert-link {
	color: #e6e6e6;
}

.alert-lime {
	background-color: #ccdb38;
	border-color: #c3d326;
	color: #ffffff;
}

.alert-lime hr {
	border-top-color: #afbe22;
}

.alert-lime .alert-link {
	color: #e6e6e6;
}

.alert-yellow {
	background-color: #feea3a;
	border-color: #fee721;
	color: #ffffff;
}

.alert-yellow hr {
	border-top-color: #fee507;
}

.alert-yellow .alert-link {
	color: #e6e6e6;
}

.alert-amber {
	background-color: #fec006;
	border-color: #eaaf01;
	color: #ffffff;
}

.alert-amber hr {
	border-top-color: #d09c01;
}

.alert-amber .alert-link {
	color: #e6e6e6;
}

.alert-orange {
	background-color: #f39c12;
	border-color: #e08e0b;
	color: #ffffff;
}

.alert-orange hr {
	border-top-color: #c87f0a;
}

.alert-orange .alert-link {
	color: #e6e6e6;
}

.alert-deep-orange {
	background-color: #fe5621;
	border-color: #fe4308;
	color: #ffffff;
}

.alert-deep-orange hr {
	border-top-color: #eb3901;
}

.alert-deep-orange .alert-link {
	color: #e6e6e6;
}

.alert-brown {
	background-color: #785447;
	border-color: #68493e;
	color: rgba(0, 0, 0, 0.87);
}

.alert-brown hr {
	border-top-color: #583e34;
}

.alert-brown .alert-link {
	color: rgba(0, 0, 0, 0.87);
}

.alert-grey {
	background-color: #9d9d9d;
	border-color: #909090;
	color: #ffffff;
}

.alert-grey hr {
	border-top-color: #848484;
}

.alert-grey .alert-link {
	color: #e6e6e6;
}

.alert-blue-grey {
	background-color: #5f7c8a;
	border-color: #556e7b;
	color: #ffffff;
}

.alert-blue-grey hr {
	border-top-color: #4a616c;
}

.alert-blue-grey .alert-link {
	color: #e6e6e6;
}

.alert a {
	color: #ffffff;
	text-decoration: underline;
}

.alert a:hover {
	text-decoration: none;
}

.alert.alert-primary-transparent a,
.alert.alert-success-transparent a,
.alert.alert-info-transparent a,
.alert.alert-warning-transparent a,
.alert.alert-danger-transparent a {
	color: rgba(0, 0, 0, 0.87);
}

/*
6 - Progress Bars
*/
.progress-bar-red {
	background-color: #f34235;
}

.progress-striped .progress-bar-red {
	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: 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-pink {
	background-color: #e81d62;
}

.progress-striped .progress-bar-pink {
	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: 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-purple {
	background-color: #9b26af;
}

.progress-striped .progress-bar-purple {
	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: 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-deep-purple {
	background-color: #6639b6;
}

.progress-striped .progress-bar-deep-purple {
	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: 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-indigo {
	background-color: #3e50b4;
}

.progress-striped .progress-bar-indigo {
	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: 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-blue {
	background-color: #2095f2;
}

.progress-striped .progress-bar-blue {
	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: 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-light-blue {
	background-color: #02a8f3;
}

.progress-striped .progress-bar-light-blue {
	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: 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-cyan {
	background-color: #00bbd3;
}

.progress-striped .progress-bar-cyan {
	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: 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-teal {
	background-color: teal;
}

.progress-striped .progress-bar-teal {
	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: 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-green {
	background-color: #4bae4f;
}

.progress-striped .progress-bar-green {
	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: 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-light-green {
	background-color: #8ac249;
}

.progress-striped .progress-bar-light-green {
	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: 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-lime {
	background-color: #ccdb38;
}

.progress-striped .progress-bar-lime {
	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: 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-yellow {
	background-color: #feea3a;
}

.progress-striped .progress-bar-yellow {
	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: 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-amber {
	background-color: #fec006;
}

.progress-striped .progress-bar-amber {
	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: 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-orange {
	background-color: #f39c12;
}

.progress-striped .progress-bar-orange {
	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: 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-deep-orange {
	background-color: #fe5621;
}

.progress-striped .progress-bar-deep-orange {
	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: 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-brown {
	background-color: #785447;
}

.progress-striped .progress-bar-brown {
	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: 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-grey {
	background-color: #9d9d9d;
}

.progress-striped .progress-bar-grey {
	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: 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-blue-grey {
	background-color: #5f7c8a;
}

.progress-striped .progress-bar-blue-grey {
	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: 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 .progress-bar {
	text-align: left;
	padding-left: 10px;
}

.progress.progress-xl {
	height: 40px;
}

.progress.progress-lg {
	height: 35px;
}

.progress.progress-sm {
	height: 10px;
}

.progress.progress-xs {
	height: 5px;
}

.switcher {
	display: block;
	position: relative;
	margin: 0 0 5px 5px;
}

.switcher label {
	position: relative;
	width: 60px;
	height: 18px;
	margin: 5px 0 15px 0;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.26);
	-webkit-transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1);
	vertical-align: middle;
	cursor: pointer;
}

.switcher label:before {
	content: '';
	position: absolute;
	top: -6px;
	left: -4px;
	width: 30px;
	height: 30px;
	background: #fafafa;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
	border-radius: 50%;
	-webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.switcher label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}

.switcher input:checked + label {
	background: rgba(51, 122, 183, 0.5);
}

.switcher input:checked + label:before {
	left: 34px;
	background: #337ab7;
}

.switcher input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(51, 122, 183, 0.2);
}

.switcher.switcher-xs label {
	width: 30px;
	height: 8px;
	border-radius: 4px;
}

.switcher.switcher-xs label:before {
	top: -4px;
	width: 16px;
	height: 16px;
}

.switcher.switcher-xs input:checked + label:before {
	left: 16px;
}

.switcher.switcher-sm label {
	width: 40px;
	height: 12px;
	border-radius: 8px;
}

.switcher.switcher-sm label:before {
	top: -6px;
	width: 24px;
	height: 24px;
}

.switcher.switcher-sm input:checked + label:before {
	left: 18px;
}

.switcher.switcher-lg label {
	width: 100px;
	height: 26px;
	border-radius: 15px;
}

.switcher.switcher-lg label:before {
	top: -9px;
	width: 44px;
	height: 44px;
}

.switcher.switcher-lg input:checked + label:before {
	left: 60px;
}

.switcher.switcher-red input:checked + label {
	background: rgba(243, 66, 53, 0.5);
}

.switcher.switcher-red input:checked + label:before {
	background: #f34235;
}

.switcher.switcher-red input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(243, 66, 53, 0.2);
}

.switcher.switcher-pink input:checked + label {
	background: rgba(232, 29, 98, 0.5);
}

.switcher.switcher-pink input:checked + label:before {
	background: #e81d62;
}

.switcher.switcher-pink input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(232, 29, 98, 0.2);
}

.switcher.switcher-purple input:checked + label {
	background: rgba(155, 38, 175, 0.5);
}

.switcher.switcher-purple input:checked + label:before {
	background: #9b26af;
}

.switcher.switcher-purple input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(155, 38, 175, 0.2);
}

.switcher.switcher-deep-purple input:checked + label {
	background: rgba(102, 57, 182, 0.5);
}

.switcher.switcher-deep-purple input:checked + label:before {
	background: #6639b6;
}

.switcher.switcher-deep-purple input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(102, 57, 182, 0.2);
}

.switcher.switcher-indigo input:checked + label {
	background: rgba(62, 80, 180, 0.5);
}

.switcher.switcher-indigo input:checked + label:before {
	background: #3e50b4;
}

.switcher.switcher-indigo input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(62, 80, 180, 0.2);
}

.switcher.switcher-blue input:checked + label {
	background: rgba(32, 149, 242, 0.5);
}

.switcher.switcher-blue input:checked + label:before {
	background: #2095f2;
}

.switcher.switcher-blue input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(32, 149, 242, 0.2);
}

.switcher.switcher-light-blue input:checked + label {
	background: rgba(2, 168, 243, 0.5);
}

.switcher.switcher-light-blue input:checked + label:before {
	background: #02a8f3;
}

.switcher.switcher-light-blue input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(2, 168, 243, 0.2);
}

.switcher.switcher-cyan input:checked + label {
	background: rgba(0, 187, 211, 0.5);
}

.switcher.switcher-cyan input:checked + label:before {
	background: #00bbd3;
}

.switcher.switcher-cyan input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 187, 211, 0.2);
}

.switcher.switcher-teal input:checked + label {
	background: rgba(0, 149, 135, 0.5);
}

.switcher.switcher-teal input:checked + label:before {
	background: #009587;
}

.switcher.switcher-teal input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 149, 135, 0.2);
}

.switcher.switcher-green input:checked + label {
	background: rgba(75, 174, 79, 0.5);
}

.switcher.switcher-green input:checked + label:before {
	background: #4bae4f;
}

.switcher.switcher-green input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(75, 174, 79, 0.2);
}

.switcher.switcher-light-green input:checked + label {
	background: rgba(138, 194, 73, 0.5);
}

.switcher.switcher-light-green input:checked + label:before {
	background: #8ac249;
}

.switcher.switcher-light-green input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(138, 194, 73, 0.2);
}

.switcher.switcher-lime input:checked + label {
	background: rgba(204, 219, 56, 0.5);
}

.switcher.switcher-lime input:checked + label:before {
	background: #ccdb38;
}

.switcher.switcher-lime input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(204, 219, 56, 0.2);
}

.switcher.switcher-yellow input:checked + label {
	background: rgba(254, 234, 58, 0.5);
}

.switcher.switcher-yellow input:checked + label:before {
	background: #feea3a;
}

.switcher.switcher-yellow input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(254, 234, 58, 0.2);
}

.switcher.switcher-amber input:checked + label {
	background: rgba(254, 192, 6, 0.5);
}

.switcher.switcher-amber input:checked + label:before {
	background: #fec006;
}

.switcher.switcher-amber input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(254, 192, 6, 0.2);
}

.switcher.switcher-orange input:checked + label {
	background: rgba(243, 156, 18, 0.5);
}

.switcher.switcher-orange input:checked + label:before {
	background: #f39c12;
}

.switcher.switcher-orange input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(243, 156, 18, 0.2);
}

.switcher.switcher-deep-orange input:checked + label {
	background: rgba(254, 86, 33, 0.5);
}

.switcher.switcher-deep-orange input:checked + label:before {
	background: #fe5621;
}

.switcher.switcher-deep-orange input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(254, 86, 33, 0.2);
}

.switcher.switcher-brown input:checked + label {
	background: rgba(120, 84, 71, 0.5);
}

.switcher.switcher-brown input:checked + label:before {
	background: #785447;
}

.switcher.switcher-brown input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(120, 84, 71, 0.2);
}

.switcher.switcher-grey input:checked + label {
	background: rgba(157, 157, 157, 0.5);
}

.switcher.switcher-grey input:checked + label:before {
	background: #9d9d9d;
}

.switcher.switcher-grey input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(157, 157, 157, 0.2);
}

.switcher.switcher-blue-grey input:checked + label {
	background: rgba(95, 124, 138, 0.5);
}

.switcher.switcher-blue-grey input:checked + label:before {
	background: #5f7c8a;
}

.switcher.switcher-blue-grey input:checked + label:active::before {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(95, 124, 138, 0.2);
}

.checkboxer {
	position: relative;
	display: block;
}

.checkboxer input[type='checkbox'] {
	display: none;
}

.checkboxer input[type='checkbox'] + label {
	position: relative;
	display: inline-block;
	margin: 5px 20px 15px 36px;
	line-height: 26px;
	font-weight: normal;
	white-space: nowrap;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: color 140ms ease-out;
	transition: color 140ms ease-out;
}

.checkboxer input[type='checkbox'] + label:before {
	content: ' ';
	position: absolute;
	display: inline-block;
	top: 1px;
	left: -35px;
	width: 22px;
	height: 22px;
	border: solid 2px;
	border-color: rgba(0, 0, 0, 0.8);
	-webkit-transition: all 280ms ease-out, -webkit-transform 140ms ease-out;
	transition: all 280ms ease-out, transform 140ms ease-out;
}

.checkboxer input[type='checkbox'] + label:after {
	content: ' ';
	position: absolute;
	display: inline-block;
	top: 17px;
	left: -27px;
	width: 2px;
	height: 2px;
	border: 2px solid transparent;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 140ms ease-out;
	transition: all 140ms ease-out;
}

.checkboxer input[type='checkbox'] + label:hover {
	color: #337ab7;
}

.checkboxer input[type='checkbox'] + label:hover:before {
	border-color: #337ab7;
}

.checkboxer input[type='checkbox']:checked + label {
	color: #337ab7;
}

.checkboxer input[type='checkbox']:checked + label:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 18px;
	left: -27px;
	width: 2px;
	height: 2px;
	border-color: #337ab7;
	border-width: 0px;
}

.checkboxer input[type='checkbox']:checked + label:after {
	top: -5px;
	left: -28px;
	width: 12px;
	height: 24px;
	border: 2px solid #337ab7;
	border-top: 0;
	border-left: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-delay: 140ms;
	transition-delay: 140ms;
}

.checkboxer input[type='checkbox']:disabled ~ label {
	cursor: not-allowed;
	opacity: 0.5;
	color: rgba(0, 0, 0, 0.87);
}

.checkboxer input[type='checkbox']:disabled ~ label:before {
	border-color: rgba(0, 0, 0, 0.87);
}

.checkboxer input[type='checkbox']:disabled:checked ~ label:after {
	border-color: rgba(0, 0, 0, 0.87);
}

.checkboxer.checkboxer-red input[type='checkbox'] + label:hover {
	color: #f34235;
}

.checkboxer.checkboxer-red input[type='checkbox'] + label:hover:before {
	border-color: #f34235;
}

.checkboxer.checkboxer-red input[type='checkbox']:checked + label {
	color: #f34235;
}

.checkboxer.checkboxer-red input[type='checkbox']:checked + label:before {
	border-color: #f34235;
}

.checkboxer.checkboxer-red input[type='checkbox']:checked + label:after {
	border-color: #f34235;
}

.checkboxer.checkboxer-pink input[type='checkbox'] + label:hover {
	color: #e81d62;
}

.checkboxer.checkboxer-pink input[type='checkbox'] + label:hover:before {
	border-color: #e81d62;
}

.checkboxer.checkboxer-pink input[type='checkbox']:checked + label {
	color: #e81d62;
}

.checkboxer.checkboxer-pink input[type='checkbox']:checked + label:before {
	border-color: #e81d62;
}

.checkboxer.checkboxer-pink input[type='checkbox']:checked + label:after {
	border-color: #e81d62;
}

.checkboxer.checkboxer-purple input[type='checkbox'] + label:hover {
	color: #9b26af;
}

.checkboxer.checkboxer-purple input[type='checkbox'] + label:hover:before {
	border-color: #9b26af;
}

.checkboxer.checkboxer-purple input[type='checkbox']:checked + label {
	color: #9b26af;
}

.checkboxer.checkboxer-purple input[type='checkbox']:checked + label:before {
	border-color: #9b26af;
}

.checkboxer.checkboxer-purple input[type='checkbox']:checked + label:after {
	border-color: #9b26af;
}

.checkboxer.checkboxer-deep-purple input[type='checkbox'] + label:hover {
	color: #6639b6;
}

.checkboxer.checkboxer-deep-purple input[type='checkbox'] + label:hover:before {
	border-color: #6639b6;
}

.checkboxer.checkboxer-deep-purple input[type='checkbox']:checked + label {
	color: #6639b6;
}

.checkboxer.checkboxer-deep-purple input[type='checkbox']:checked + label:before {
	border-color: #6639b6;
}

.checkboxer.checkboxer-deep-purple input[type='checkbox']:checked + label:after {
	border-color: #6639b6;
}

.checkboxer.checkboxer-indigo input[type='checkbox'] + label:hover {
	color: #3e50b4;
}

.checkboxer.checkboxer-indigo input[type='checkbox'] + label:hover:before {
	border-color: #3e50b4;
}

.checkboxer.checkboxer-indigo input[type='checkbox']:checked + label {
	color: #3e50b4;
}

.checkboxer.checkboxer-indigo input[type='checkbox']:checked + label:before {
	border-color: #3e50b4;
}

.checkboxer.checkboxer-indigo input[type='checkbox']:checked + label:after {
	border-color: #3e50b4;
}

.checkboxer.checkboxer-blue input[type='checkbox'] + label:hover {
	color: #2095f2;
}

.checkboxer.checkboxer-blue input[type='checkbox'] + label:hover:before {
	border-color: #2095f2;
}

.checkboxer.checkboxer-blue input[type='checkbox']:checked + label {
	color: #2095f2;
}

.checkboxer.checkboxer-blue input[type='checkbox']:checked + label:before {
	border-color: #2095f2;
}

.checkboxer.checkboxer-blue input[type='checkbox']:checked + label:after {
	border-color: #2095f2;
}

.checkboxer.checkboxer-light-blue input[type='checkbox'] + label:hover {
	color: #02a8f3;
}

.checkboxer.checkboxer-light-blue input[type='checkbox'] + label:hover:before {
	border-color: #02a8f3;
}

.checkboxer.checkboxer-light-blue input[type='checkbox']:checked + label {
	color: #02a8f3;
}

.checkboxer.checkboxer-light-blue input[type='checkbox']:checked + label:before {
	border-color: #02a8f3;
}

.checkboxer.checkboxer-light-blue input[type='checkbox']:checked + label:after {
	border-color: #02a8f3;
}

.checkboxer.checkboxer-cyan input[type='checkbox'] + label:hover {
	color: #00bbd3;
}

.checkboxer.checkboxer-cyan input[type='checkbox'] + label:hover:before {
	border-color: #00bbd3;
}

.checkboxer.checkboxer-cyan input[type='checkbox']:checked + label {
	color: #00bbd3;
}

.checkboxer.checkboxer-cyan input[type='checkbox']:checked + label:before {
	border-color: #00bbd3;
}

.checkboxer.checkboxer-cyan input[type='checkbox']:checked + label:after {
	border-color: #00bbd3;
}

.checkboxer.checkboxer-teal input[type='checkbox'] + label:hover {
	color: #009587;
}

.checkboxer.checkboxer-teal input[type='checkbox'] + label:hover:before {
	border-color: #009587;
}

.checkboxer.checkboxer-teal input[type='checkbox']:checked + label {
	color: #009587;
}

.checkboxer.checkboxer-teal input[type='checkbox']:checked + label:before {
	border-color: #009587;
}

.checkboxer.checkboxer-teal input[type='checkbox']:checked + label:after {
	border-color: #009587;
}

.checkboxer.checkboxer-green input[type='checkbox'] + label:hover {
	color: #4bae4f;
}

.checkboxer.checkboxer-green input[type='checkbox'] + label:hover:before {
	border-color: #4bae4f;
}

.checkboxer.checkboxer-green input[type='checkbox']:checked + label {
	color: #4bae4f;
}

.checkboxer.checkboxer-green input[type='checkbox']:checked + label:before {
	border-color: #4bae4f;
}

.checkboxer.checkboxer-green input[type='checkbox']:checked + label:after {
	border-color: #4bae4f;
}

.checkboxer.checkboxer-light-green input[type='checkbox'] + label:hover {
	color: #8ac249;
}

.checkboxer.checkboxer-light-green input[type='checkbox'] + label:hover:before {
	border-color: #8ac249;
}

.checkboxer.checkboxer-light-green input[type='checkbox']:checked + label {
	color: #8ac249;
}

.checkboxer.checkboxer-light-green input[type='checkbox']:checked + label:before {
	border-color: #8ac249;
}

.checkboxer.checkboxer-light-green input[type='checkbox']:checked + label:after {
	border-color: #8ac249;
}

.checkboxer.checkboxer-lime input[type='checkbox'] + label:hover {
	color: #ccdb38;
}

.checkboxer.checkboxer-lime input[type='checkbox'] + label:hover:before {
	border-color: #ccdb38;
}

.checkboxer.checkboxer-lime input[type='checkbox']:checked + label {
	color: #ccdb38;
}

.checkboxer.checkboxer-lime input[type='checkbox']:checked + label:before {
	border-color: #ccdb38;
}

.checkboxer.checkboxer-lime input[type='checkbox']:checked + label:after {
	border-color: #ccdb38;
}

.checkboxer.checkboxer-yellow input[type='checkbox'] + label:hover {
	color: #feea3a;
}

.checkboxer.checkboxer-yellow input[type='checkbox'] + label:hover:before {
	border-color: #feea3a;
}

.checkboxer.checkboxer-yellow input[type='checkbox']:checked + label {
	color: #feea3a;
}

.checkboxer.checkboxer-yellow input[type='checkbox']:checked + label:before {
	border-color: #feea3a;
}

.checkboxer.checkboxer-yellow input[type='checkbox']:checked + label:after {
	border-color: #feea3a;
}

.checkboxer.checkboxer-amber input[type='checkbox'] + label:hover {
	color: #fec006;
}

.checkboxer.checkboxer-amber input[type='checkbox'] + label:hover:before {
	border-color: #fec006;
}

.checkboxer.checkboxer-amber input[type='checkbox']:checked + label {
	color: #fec006;
}

.checkboxer.checkboxer-amber input[type='checkbox']:checked + label:before {
	border-color: #fec006;
}

.checkboxer.checkboxer-amber input[type='checkbox']:checked + label:after {
	border-color: #fec006;
}

.checkboxer.checkboxer-orange input[type='checkbox'] + label:hover {
	color: #f39c12;
}

.checkboxer.checkboxer-orange input[type='checkbox'] + label:hover:before {
	border-color: #f39c12;
}

.checkboxer.checkboxer-orange input[type='checkbox']:checked + label {
	color: #f39c12;
}

.checkboxer.checkboxer-orange input[type='checkbox']:checked + label:before {
	border-color: #f39c12;
}

.checkboxer.checkboxer-orange input[type='checkbox']:checked + label:after {
	border-color: #f39c12;
}

.checkboxer.checkboxer-deep-orange input[type='checkbox'] + label:hover {
	color: #fe5621;
}

.checkboxer.checkboxer-deep-orange input[type='checkbox'] + label:hover:before {
	border-color: #fe5621;
}

.checkboxer.checkboxer-deep-orange input[type='checkbox']:checked + label {
	color: #fe5621;
}

.checkboxer.checkboxer-deep-orange input[type='checkbox']:checked + label:before {
	border-color: #fe5621;
}

.checkboxer.checkboxer-deep-orange input[type='checkbox']:checked + label:after {
	border-color: #fe5621;
}

.checkboxer.checkboxer-brown input[type='checkbox'] + label:hover {
	color: #785447;
}

.checkboxer.checkboxer-brown input[type='checkbox'] + label:hover:before {
	border-color: #785447;
}

.checkboxer.checkboxer-brown input[type='checkbox']:checked + label {
	color: #785447;
}

.checkboxer.checkboxer-brown input[type='checkbox']:checked + label:before {
	border-color: #785447;
}

.checkboxer.checkboxer-brown input[type='checkbox']:checked + label:after {
	border-color: #785447;
}

.checkboxer.checkboxer-grey input[type='checkbox'] + label:hover {
	color: #9d9d9d;
}

.checkboxer.checkboxer-grey input[type='checkbox'] + label:hover:before {
	border-color: #9d9d9d;
}

.checkboxer.checkboxer-grey input[type='checkbox']:checked + label {
	color: #9d9d9d;
}

.checkboxer.checkboxer-grey input[type='checkbox']:checked + label:before {
	border-color: #9d9d9d;
}

.checkboxer.checkboxer-grey input[type='checkbox']:checked + label:after {
	border-color: #9d9d9d;
}

.checkboxer.checkboxer-blue-grey input[type='checkbox'] + label:hover {
	color: #5f7c8a;
}

.checkboxer.checkboxer-blue-grey input[type='checkbox'] + label:hover:before {
	border-color: #5f7c8a;
}

.checkboxer.checkboxer-blue-grey input[type='checkbox']:checked + label {
	color: #5f7c8a;
}

.checkboxer.checkboxer-blue-grey input[type='checkbox']:checked + label:before {
	border-color: #5f7c8a;
}

.checkboxer.checkboxer-blue-grey input[type='checkbox']:checked + label:after {
	border-color: #5f7c8a;
}

.selecter {
	display: block;
}

.selecter + .help-block {
	display: none;
}

select[data-style='btn-primary'] + .bootstrap-select .btn,
select[data-style='btn-primary'] + .bootstrap-select .btn:hover,
select[data-style='btn-primary'] + .bootstrap-select .btn.hover,
select[data-style='btn-primary'] + .bootstrap-select .btn:active select[data-style='btn-primary'] + .bootstrap-select .btn:focus {
	color: #337ab7 !important;
	border-color: #337ab7 !important;
}

select[data-style='btn-primary'] + .bootstrap-select li.selected a {
	color: #337ab7 !important;
}

select[data-style='btn-danger'] + .bootstrap-select .btn,
select[data-style='btn-danger'] + .bootstrap-select .btn:hover,
select[data-style='btn-danger'] + .bootstrap-select .btn.hover,
select[data-style='btn-danger'] + .bootstrap-select .btn:active select[data-style='btn-danger'] + .bootstrap-select .btn:focus {
	color: #d9534f !important;
	border-color: #d9534f !important;
}

select[data-style='btn-danger'] + .bootstrap-select li.selected a {
	color: #d9534f !important;
}

select[data-style='btn-info'] + .bootstrap-select .btn,
select[data-style='btn-info'] + .bootstrap-select .btn:hover,
select[data-style='btn-info'] + .bootstrap-select .btn.hover,
select[data-style='btn-info'] + .bootstrap-select .btn:active select[data-style='btn-info'] + .bootstrap-select .btn:focus {
	color: #5bc0de !important;
	border-color: #5bc0de !important;
}

select[data-style='btn-info'] + .bootstrap-select li.selected a {
	color: #5bc0de !important;
}

select[data-style='btn-success'] + .bootstrap-select .btn,
select[data-style='btn-success'] + .bootstrap-select .btn:hover,
select[data-style='btn-success'] + .bootstrap-select .btn.hover,
select[data-style='btn-success'] + .bootstrap-select .btn:active select[data-style='btn-success'] + .bootstrap-select .btn:focus {
	color: #5cb85c !important;
	border-color: #5cb85c !important;
}

select[data-style='btn-success'] + .bootstrap-select li.selected a {
	color: #5cb85c !important;
}

select[data-style='btn-warning'] + .bootstrap-select .btn,
select[data-style='btn-warning'] + .bootstrap-select .btn:hover,
select[data-style='btn-warning'] + .bootstrap-select .btn.hover,
select[data-style='btn-warning'] + .bootstrap-select .btn:active select[data-style='btn-warning'] + .bootstrap-select .btn:focus {
	color: #f0ad4e !important;
	border-color: #f0ad4e !important;
}

select[data-style='btn-warning'] + .bootstrap-select li.selected a {
	color: #f0ad4e !important;
}

select[data-style='btn-red'] + .bootstrap-select .btn,
select[data-style='btn-red'] + .bootstrap-select .btn:hover,
select[data-style='btn-red'] + .bootstrap-select .btn.hover,
select[data-style='btn-red'] + .bootstrap-select .btn:active select[data-style='btn-red'] + .bootstrap-select .btn:focus {
	color: #f34235 !important;
	border-color: #f34235 !important;
}

select[data-style='btn-red'] + .bootstrap-select li.selected a {
	color: #f34235 !important;
}

select[data-style='btn-pink'] + .bootstrap-select .btn,
select[data-style='btn-pink'] + .bootstrap-select .btn:hover,
select[data-style='btn-pink'] + .bootstrap-select .btn.hover,
select[data-style='btn-pink'] + .bootstrap-select .btn:active select[data-style='btn-pink'] + .bootstrap-select .btn:focus {
	color: #e81d62 !important;
	border-color: #e81d62 !important;
}

select[data-style='btn-pink'] + .bootstrap-select li.selected a {
	color: #e81d62 !important;
}

select[data-style='btn-purple'] + .bootstrap-select .btn,
select[data-style='btn-purple'] + .bootstrap-select .btn:hover,
select[data-style='btn-purple'] + .bootstrap-select .btn.hover,
select[data-style='btn-purple'] + .bootstrap-select .btn:active select[data-style='btn-purple'] + .bootstrap-select .btn:focus {
	color: #9b26af !important;
	border-color: #9b26af !important;
}

select[data-style='btn-purple'] + .bootstrap-select li.selected a {
	color: #9b26af !important;
}

select[data-style='btn-deep-purple'] + .bootstrap-select .btn,
select[data-style='btn-deep-purple'] + .bootstrap-select .btn:hover,
select[data-style='btn-deep-purple'] + .bootstrap-select .btn.hover,
select[data-style='btn-deep-purple'] + .bootstrap-select .btn:active select[data-style='btn-deep-purple'] + .bootstrap-select .btn:focus {
	color: #6639b6 !important;
	border-color: #6639b6 !important;
}

select[data-style='btn-deep-purple'] + .bootstrap-select li.selected a {
	color: #6639b6 !important;
}

select[data-style='btn-indigo'] + .bootstrap-select .btn,
select[data-style='btn-indigo'] + .bootstrap-select .btn:hover,
select[data-style='btn-indigo'] + .bootstrap-select .btn.hover,
select[data-style='btn-indigo'] + .bootstrap-select .btn:active select[data-style='btn-indigo'] + .bootstrap-select .btn:focus {
	color: #3e50b4 !important;
	border-color: #3e50b4 !important;
}

select[data-style='btn-indigo'] + .bootstrap-select li.selected a {
	color: #3e50b4 !important;
}

select[data-style='btn-blue'] + .bootstrap-select .btn,
select[data-style='btn-blue'] + .bootstrap-select .btn:hover,
select[data-style='btn-blue'] + .bootstrap-select .btn.hover,
select[data-style='btn-blue'] + .bootstrap-select .btn:active select[data-style='btn-blue'] + .bootstrap-select .btn:focus {
	color: #2095f2 !important;
	border-color: #2095f2 !important;
}

select[data-style='btn-blue'] + .bootstrap-select li.selected a {
	color: #2095f2 !important;
}

select[data-style='btn-light-blue'] + .bootstrap-select .btn,
select[data-style='btn-light-blue'] + .bootstrap-select .btn:hover,
select[data-style='btn-light-blue'] + .bootstrap-select .btn.hover,
select[data-style='btn-light-blue'] + .bootstrap-select .btn:active select[data-style='btn-light-blue'] + .bootstrap-select .btn:focus {
	color: #02a8f3 !important;
	border-color: #02a8f3 !important;
}

select[data-style='btn-light-blue'] + .bootstrap-select li.selected a {
	color: #02a8f3 !important;
}

select[data-style='btn-cyan'] + .bootstrap-select .btn,
select[data-style='btn-cyan'] + .bootstrap-select .btn:hover,
select[data-style='btn-cyan'] + .bootstrap-select .btn.hover,
select[data-style='btn-cyan'] + .bootstrap-select .btn:active select[data-style='btn-cyan'] + .bootstrap-select .btn:focus {
	color: #00bbd3 !important;
	border-color: #00bbd3 !important;
}

select[data-style='btn-cyan'] + .bootstrap-select li.selected a {
	color: #00bbd3 !important;
}

select[data-style='btn-teal'] + .bootstrap-select .btn,
select[data-style='btn-teal'] + .bootstrap-select .btn:hover,
select[data-style='btn-teal'] + .bootstrap-select .btn.hover,
select[data-style='btn-teal'] + .bootstrap-select .btn:active select[data-style='btn-teal'] + .bootstrap-select .btn:focus {
	color: #009587 !important;
	border-color: #009587 !important;
}

select[data-style='btn-teal'] + .bootstrap-select li.selected a {
	color: #009587 !important;
}

select[data-style='btn-green'] + .bootstrap-select .btn,
select[data-style='btn-green'] + .bootstrap-select .btn:hover,
select[data-style='btn-green'] + .bootstrap-select .btn.hover,
select[data-style='btn-green'] + .bootstrap-select .btn:active select[data-style='btn-green'] + .bootstrap-select .btn:focus {
	color: #4bae4f !important;
	border-color: #4bae4f !important;
}

select[data-style='btn-green'] + .bootstrap-select li.selected a {
	color: #4bae4f !important;
}

select[data-style='btn-light-green'] + .bootstrap-select .btn,
select[data-style='btn-light-green'] + .bootstrap-select .btn:hover,
select[data-style='btn-light-green'] + .bootstrap-select .btn.hover,
select[data-style='btn-light-green'] + .bootstrap-select .btn:active select[data-style='btn-light-green'] + .bootstrap-select .btn:focus {
	color: #8ac249 !important;
	border-color: #8ac249 !important;
}

select[data-style='btn-light-green'] + .bootstrap-select li.selected a {
	color: #8ac249 !important;
}

select[data-style='btn-lime'] + .bootstrap-select .btn,
select[data-style='btn-lime'] + .bootstrap-select .btn:hover,
select[data-style='btn-lime'] + .bootstrap-select .btn.hover,
select[data-style='btn-lime'] + .bootstrap-select .btn:active select[data-style='btn-lime'] + .bootstrap-select .btn:focus {
	color: #ccdb38 !important;
	border-color: #ccdb38 !important;
}

select[data-style='btn-lime'] + .bootstrap-select li.selected a {
	color: #ccdb38 !important;
}

select[data-style='btn-yellow'] + .bootstrap-select .btn,
select[data-style='btn-yellow'] + .bootstrap-select .btn:hover,
select[data-style='btn-yellow'] + .bootstrap-select .btn.hover,
select[data-style='btn-yellow'] + .bootstrap-select .btn:active select[data-style='btn-yellow'] + .bootstrap-select .btn:focus {
	color: #feea3a !important;
	border-color: #feea3a !important;
}

select[data-style='btn-yellow'] + .bootstrap-select li.selected a {
	color: #feea3a !important;
}

select[data-style='btn-amber'] + .bootstrap-select .btn,
select[data-style='btn-amber'] + .bootstrap-select .btn:hover,
select[data-style='btn-amber'] + .bootstrap-select .btn.hover,
select[data-style='btn-amber'] + .bootstrap-select .btn:active select[data-style='btn-amber'] + .bootstrap-select .btn:focus {
	color: #fec006 !important;
	border-color: #fec006 !important;
}

select[data-style='btn-amber'] + .bootstrap-select li.selected a {
	color: #fec006 !important;
}

select[data-style='btn-orange'] + .bootstrap-select .btn,
select[data-style='btn-orange'] + .bootstrap-select .btn:hover,
select[data-style='btn-orange'] + .bootstrap-select .btn.hover,
select[data-style='btn-orange'] + .bootstrap-select .btn:active select[data-style='btn-orange'] + .bootstrap-select .btn:focus {
	color: #f39c12 !important;
	border-color: #f39c12 !important;
}

select[data-style='btn-orange'] + .bootstrap-select li.selected a {
	color: #f39c12 !important;
}

select[data-style='btn-deep-orange'] + .bootstrap-select .btn,
select[data-style='btn-deep-orange'] + .bootstrap-select .btn:hover,
select[data-style='btn-deep-orange'] + .bootstrap-select .btn.hover,
select[data-style='btn-deep-orange'] + .bootstrap-select .btn:active select[data-style='btn-deep-orange'] + .bootstrap-select .btn:focus {
	color: #fe5621 !important;
	border-color: #fe5621 !important;
}

select[data-style='btn-deep-orange'] + .bootstrap-select li.selected a {
	color: #fe5621 !important;
}

select[data-style='btn-brown'] + .bootstrap-select .btn,
select[data-style='btn-brown'] + .bootstrap-select .btn:hover,
select[data-style='btn-brown'] + .bootstrap-select .btn.hover,
select[data-style='btn-brown'] + .bootstrap-select .btn:active select[data-style='btn-brown'] + .bootstrap-select .btn:focus {
	color: #785447 !important;
	border-color: #785447 !important;
}

select[data-style='btn-brown'] + .bootstrap-select li.selected a {
	color: #785447 !important;
}

select[data-style='btn-grey'] + .bootstrap-select .btn,
select[data-style='btn-grey'] + .bootstrap-select .btn:hover,
select[data-style='btn-grey'] + .bootstrap-select .btn.hover,
select[data-style='btn-grey'] + .bootstrap-select .btn:active select[data-style='btn-grey'] + .bootstrap-select .btn:focus {
	color: #9d9d9d !important;
	border-color: #9d9d9d !important;
}

select[data-style='btn-grey'] + .bootstrap-select li.selected a {
	color: #9d9d9d !important;
}

select[data-style='btn-blue-grey'] + .bootstrap-select .btn,
select[data-style='btn-blue-grey'] + .bootstrap-select .btn:hover,
select[data-style='btn-blue-grey'] + .bootstrap-select .btn.hover,
select[data-style='btn-blue-grey'] + .bootstrap-select .btn:active select[data-style='btn-blue-grey'] + .bootstrap-select .btn:focus {
	color: #5f7c8a !important;
	border-color: #5f7c8a !important;
}

select[data-style='btn-blue-grey'] + .bootstrap-select li.selected a {
	color: #5f7c8a !important;
}

.radioer {
	position: relative;
	display: block;
}

.radioer input[type='radio'] {
	display: none;
}

.radioer input[type='radio'] + label {
	position: relative;
	display: inline-block;
	margin: 5px 20px 15px 36px;
	line-height: 26px;
	font-weight: normal;
	white-space: nowrap;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: color 280ms cubic-bezier(0.82, 0.14, 0.44, 0.41);
	transition: color 280ms cubic-bezier(0.82, 0.14, 0.44, 0.41);
}

.radioer input[type='radio'] + label:before {
	position: absolute;
	top: 0;
	left: -36px;
	content: ' ';
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px rgba(0, 0, 0, 0.8) inset, 0 0 0 0 transparent;
	-webkit-transition: box-shadow 280ms cubic-bezier(0.82, 0.14, 0.44, 0.41);
	transition: box-shadow 280ms cubic-bezier(0.82, 0.14, 0.44, 0.41);
}

.radioer input[type='radio'] + label:hover {
	color: #337ab7;
}

.radioer input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #337ab7 inset, 0 0 0 0 #337ab7;
}

.radioer input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #337ab7 inset, 0 0 0 24px rgba(51, 122, 183, 0.1);
}

.radioer input[type='radio']:checked + label {
	color: #337ab7;
}

.radioer input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #337ab7 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #337ab7 inset, 0 0 0 24px transparent;
}

.radioer input[type='radio']:disabled ~ label {
	cursor: not-allowed;
	opacity: 0.5;
	color: rgba(0, 0, 0, 0.87);
}

.radioer input[type='radio']:disabled ~ label:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px rgba(0, 0, 0, 0.5) inset, 0 0 0 0 transparent;
}

.radioer input[type='radio']:disabled:checked ~ label:before {
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5) inset, 0 0 0 6px #ffffff inset, 0 0 0 12px rgba(0, 0, 0, 0.5) inset, 0 0 0 24px transparent;
}

.radioer.radioer-red input[type='radio'] + label:hover {
	color: #f34235;
}

.radioer.radioer-red input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #f34235 inset, 0 0 0 0 #f34235;
}

.radioer.radioer-red input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #f34235 inset, 0 0 0 24px rgba(243, 66, 53, 0.1);
}

.radioer.radioer-red input[type='radio']:checked + label {
	color: #f34235;
}

.radioer.radioer-red input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #f34235 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #f34235 inset, 0 0 0 24px transparent;
}

.radioer.radioer-pink input[type='radio'] + label:hover {
	color: #e81d62;
}

.radioer.radioer-pink input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #e81d62 inset, 0 0 0 0 #e81d62;
}

.radioer.radioer-pink input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #e81d62 inset, 0 0 0 24px rgba(232, 29, 98, 0.1);
}

.radioer.radioer-pink input[type='radio']:checked + label {
	color: #e81d62;
}

.radioer.radioer-pink input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #e81d62 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #e81d62 inset, 0 0 0 24px transparent;
}

.radioer.radioer-purple input[type='radio'] + label:hover {
	color: #9b26af;
}

.radioer.radioer-purple input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #9b26af inset, 0 0 0 0 #9b26af;
}

.radioer.radioer-purple input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #9b26af inset, 0 0 0 24px rgba(155, 38, 175, 0.1);
}

.radioer.radioer-purple input[type='radio']:checked + label {
	color: #9b26af;
}

.radioer.radioer-purple input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #9b26af inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #9b26af inset, 0 0 0 24px transparent;
}

.radioer.radioer-deep-purple input[type='radio'] + label:hover {
	color: #6639b6;
}

.radioer.radioer-deep-purple input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #6639b6 inset, 0 0 0 0 #6639b6;
}

.radioer.radioer-deep-purple input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #6639b6 inset, 0 0 0 24px rgba(102, 57, 182, 0.1);
}

.radioer.radioer-deep-purple input[type='radio']:checked + label {
	color: #6639b6;
}

.radioer.radioer-deep-purple input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #6639b6 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #6639b6 inset, 0 0 0 24px transparent;
}

.radioer.radioer-indigo input[type='radio'] + label:hover {
	color: #3e50b4;
}

.radioer.radioer-indigo input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #3e50b4 inset, 0 0 0 0 #3e50b4;
}

.radioer.radioer-indigo input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #3e50b4 inset, 0 0 0 24px rgba(62, 80, 180, 0.1);
}

.radioer.radioer-indigo input[type='radio']:checked + label {
	color: #3e50b4;
}

.radioer.radioer-indigo input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #3e50b4 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #3e50b4 inset, 0 0 0 24px transparent;
}

.radioer.radioer-blue input[type='radio'] + label:hover {
	color: #2095f2;
}

.radioer.radioer-blue input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #2095f2 inset, 0 0 0 0 #2095f2;
}

.radioer.radioer-blue input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #2095f2 inset, 0 0 0 24px rgba(32, 149, 242, 0.1);
}

.radioer.radioer-blue input[type='radio']:checked + label {
	color: #2095f2;
}

.radioer.radioer-blue input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #2095f2 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #2095f2 inset, 0 0 0 24px transparent;
}

.radioer.radioer-light-blue input[type='radio'] + label:hover {
	color: #02a8f3;
}

.radioer.radioer-light-blue input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #02a8f3 inset, 0 0 0 0 #02a8f3;
}

.radioer.radioer-light-blue input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #02a8f3 inset, 0 0 0 24px rgba(2, 168, 243, 0.1);
}

.radioer.radioer-light-blue input[type='radio']:checked + label {
	color: #02a8f3;
}

.radioer.radioer-light-blue input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #02a8f3 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #02a8f3 inset, 0 0 0 24px transparent;
}

.radioer.radioer-cyan input[type='radio'] + label:hover {
	color: #00bbd3;
}

.radioer.radioer-cyan input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #00bbd3 inset, 0 0 0 0 #00bbd3;
}

.radioer.radioer-cyan input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #00bbd3 inset, 0 0 0 24px rgba(0, 187, 211, 0.1);
}

.radioer.radioer-cyan input[type='radio']:checked + label {
	color: #00bbd3;
}

.radioer.radioer-cyan input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #00bbd3 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #00bbd3 inset, 0 0 0 24px transparent;
}

.radioer.radioer-teal input[type='radio'] + label:hover {
	color: #009587;
}

.radioer.radioer-teal input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #009587 inset, 0 0 0 0 #009587;
}

.radioer.radioer-teal input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #009587 inset, 0 0 0 24px rgba(0, 149, 135, 0.1);
}

.radioer.radioer-teal input[type='radio']:checked + label {
	color: #009587;
}

.radioer.radioer-teal input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #009587 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #009587 inset, 0 0 0 24px transparent;
}

.radioer.radioer-green input[type='radio'] + label:hover {
	color: #4bae4f;
}

.radioer.radioer-green input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #4bae4f inset, 0 0 0 0 #4bae4f;
}

.radioer.radioer-green input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #4bae4f inset, 0 0 0 24px rgba(75, 174, 79, 0.1);
}

.radioer.radioer-green input[type='radio']:checked + label {
	color: #4bae4f;
}

.radioer.radioer-green input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #4bae4f inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #4bae4f inset, 0 0 0 24px transparent;
}

.radioer.radioer-light-green input[type='radio'] + label:hover {
	color: #8ac249;
}

.radioer.radioer-light-green input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #8ac249 inset, 0 0 0 0 #8ac249;
}

.radioer.radioer-light-green input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #8ac249 inset, 0 0 0 24px rgba(138, 194, 73, 0.1);
}

.radioer.radioer-light-green input[type='radio']:checked + label {
	color: #8ac249;
}

.radioer.radioer-light-green input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #8ac249 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #8ac249 inset, 0 0 0 24px transparent;
}

.radioer.radioer-lime input[type='radio'] + label:hover {
	color: #ccdb38;
}

.radioer.radioer-lime input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #ccdb38 inset, 0 0 0 0 #ccdb38;
}

.radioer.radioer-lime input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #ccdb38 inset, 0 0 0 24px rgba(204, 219, 56, 0.1);
}

.radioer.radioer-lime input[type='radio']:checked + label {
	color: #ccdb38;
}

.radioer.radioer-lime input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #ccdb38 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #ccdb38 inset, 0 0 0 24px transparent;
}

.radioer.radioer-yellow input[type='radio'] + label:hover {
	color: #feea3a;
}

.radioer.radioer-yellow input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #feea3a inset, 0 0 0 0 #feea3a;
}

.radioer.radioer-yellow input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #feea3a inset, 0 0 0 24px rgba(254, 234, 58, 0.1);
}

.radioer.radioer-yellow input[type='radio']:checked + label {
	color: #feea3a;
}

.radioer.radioer-yellow input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #feea3a inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #feea3a inset, 0 0 0 24px transparent;
}

.radioer.radioer-amber input[type='radio'] + label:hover {
	color: #fec006;
}

.radioer.radioer-amber input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #fec006 inset, 0 0 0 0 #fec006;
}

.radioer.radioer-amber input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #fec006 inset, 0 0 0 24px rgba(254, 192, 6, 0.1);
}

.radioer.radioer-amber input[type='radio']:checked + label {
	color: #fec006;
}

.radioer.radioer-amber input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #fec006 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #fec006 inset, 0 0 0 24px transparent;
}

.radioer.radioer-orange input[type='radio'] + label:hover {
	color: #f39c12;
}

.radioer.radioer-orange input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #f39c12 inset, 0 0 0 0 #f39c12;
}

.radioer.radioer-orange input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #f39c12 inset, 0 0 0 24px rgba(243, 156, 18, 0.1);
}

.radioer.radioer-orange input[type='radio']:checked + label {
	color: #f39c12;
}

.radioer.radioer-orange input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #f39c12 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #f39c12 inset, 0 0 0 24px transparent;
}

.radioer.radioer-deep-orange input[type='radio'] + label:hover {
	color: #fe5621;
}

.radioer.radioer-deep-orange input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #fe5621 inset, 0 0 0 0 #fe5621;
}

.radioer.radioer-deep-orange input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #fe5621 inset, 0 0 0 24px rgba(254, 86, 33, 0.1);
}

.radioer.radioer-deep-orange input[type='radio']:checked + label {
	color: #fe5621;
}

.radioer.radioer-deep-orange input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #fe5621 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #fe5621 inset, 0 0 0 24px transparent;
}

.radioer.radioer-brown input[type='radio'] + label:hover {
	color: #785447;
}

.radioer.radioer-brown input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #785447 inset, 0 0 0 0 #785447;
}

.radioer.radioer-brown input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #785447 inset, 0 0 0 24px rgba(120, 84, 71, 0.1);
}

.radioer.radioer-brown input[type='radio']:checked + label {
	color: #785447;
}

.radioer.radioer-brown input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #785447 inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #785447 inset, 0 0 0 24px transparent;
}

.radioer.radioer-grey input[type='radio'] + label:hover {
	color: #9d9d9d;
}

.radioer.radioer-grey input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #9d9d9d inset, 0 0 0 0 #9d9d9d;
}

.radioer.radioer-grey input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #9d9d9d inset, 0 0 0 24px rgba(157, 157, 157, 0.1);
}

.radioer.radioer-grey input[type='radio']:checked + label {
	color: #9d9d9d;
}

.radioer.radioer-grey input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #9d9d9d inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #9d9d9d inset, 0 0 0 24px transparent;
}

.radioer.radioer-blue-grey input[type='radio'] + label:hover {
	color: #5f7c8a;
}

.radioer.radioer-blue-grey input[type='radio'] + label:hover:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #5f7c8a inset, 0 0 0 0 #5f7c8a;
}

.radioer.radioer-blue-grey input[type='radio'] + label:active:before {
	box-shadow: 0 0 0 0 transparent inset, 0 0 0 0 transparent inset, 0 0 0 2px #5f7c8a inset, 0 0 0 24px rgba(95, 124, 138, 0.1);
}

.radioer.radioer-blue-grey input[type='radio']:checked + label {
	color: #5f7c8a;
}

.radioer.radioer-blue-grey input[type='radio']:checked + label:before {
	box-shadow: 0 0 0 2px #5f7c8a inset, 0 0 0 6px #ffffff inset, 0 0 0 12px #5f7c8a inset, 0 0 0 24px transparent;
}

.form-inline {
	display: inline-block;
}

#pac-input {
	padding: 0 15px 0 15px;
	width: 90%;
	font-size: 16px;
	font-weight: 300;
	text-overflow: ellipsis;
	color: #333;
	margin-top: 20px;
	border: 1px solid transparent;
	border-radius: 2px;
	height: 36px;
	outline: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#pac-input:focus {
	border-color: #4d90fe;
}

#type-selector {
	color: #fff;
	background-color: #4d90fe;
	padding: 5px 11px 0px 11px;
}

#type-selector label {
	font-size: 13px;
	font-weight: 300;
}

/*
8 - Panels
*/
.portlets {
	min-height: 150px;
}

.portlets .portlet-handle {
	cursor: move;
}

.portlet-placeholder {
	border: 1px dashed #f0f0f0;
	min-height: 100px;
	margin: 15px 0;
}

.panel > .panel-heading .panel-title {
	padding: 13px 20px 13px 20px;
	font-size: 18px;
}

.panel > .panel-heading .panel-title h4 {
	font-size: 16px;
	font-weight: bold;
	display: inline-block;
	margin: 0;
}

.panel > .panel-heading .panel-title .heading-icon {
	margin-right: 5px;
}

.panel > .panel-heading .panel-title small {
	font-size: 70%;
}

.panel > .panel-heading .panel-title.text-center,
.panel > .panel-heading .panel-title.text-right {
	width: 100%;
	float: none;
}

.panel > .panel-heading .panel-title .accordion-toggle,
.panel > .panel-heading .panel-title .accordion-toggle:hover,
.panel > .panel-heading .panel-title .accordion-toggle:active,
.panel > .panel-heading .panel-title .accordion-toggle:focus {
	display: block;
	text-decoration: none;
}

.panel > .panel-heading a.panel-title {
	text-decoration: none;
	float: none;
	display: block;
}

.panel > .panel-heading a.panel-title:hover,
.panel > .panel-heading a.panel-title:active,
.panel > .panel-heading a.panel-title:focus {
	color: inherit;
	outline: none;
}

.panel > .panel-heading .progress {
	float: right;
	position: relative;
	margin: 7px 0 0 0;
	width: 120px;
	height: 20px;
}

.panel > .panel-heading .pagination {
	float: right;
	margin: 2px 0 7px 0;
}

.panel > .panel-heading .pagination a {
	padding: 4px 8px;
	font-size: 14px;
}

.panel > .panel-heading .panel-buttons {
	float: right;
	position: relative;
}

.panel > .panel-heading .panel-buttons .btn {
	padding: 4px 8px;
	font-size: 14px;
}

.panel > .panel-heading .panel-inputs {
	float: right;
	position: relative;
	width: 180px;
	margin: 2px 0 0 0;
}

.panel > .panel-heading .panel-inputs .form-control {
	height: 31px;
	font-size: 14px;
	padding: 4px 8px;
}

.panel > .panel-heading .panel-inputs .btn {
	font-size: 13px;
	padding: 4px 8px;
}

.panel > .panel-heading .nav.nav-justified {
	margin: 0;
}

.panel > .panel-heading .nav.nav-justified li a {
	margin: 0;
	border-radius: 0;
}

.panel > .panel-heading .nav.nav-justified li.active a:hover,
.panel > .panel-heading .nav.nav-justified li.active a:focus {
	border: 0;
}

.panel > .panel-heading .nav.nav-tabs {
	margin-top: -15px;
}

.panel > .panel-heading .nav.nav-tabs li {
	margin-top: 0;
}

.panel > .panel-heading .nav.nav-tabs li a {
	padding: 15px 30px;
}

.panel > .panel-heading:before,
.panel > .panel-heading:after {
	content: ' ';
	display: table;
}

.panel > .panel-heading:after {
	clear: both;
}

.panel .panel-body {
	padding: 20px;
}

.panel .panel-body .refresh-container {
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(200, 200, 200, 0.25);
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 4;
}

.panel .panel-body .refresh-spinner {
	padding: 0px;
	position: absolute;
	top: 50%;
	opacity: 1;
}

.panel .panel-body .sub-title {
	padding: 10px 30px;
	margin: 0 -30px 10px -30px;
	background: rgba(236, 236, 236, 0.1);
	font-size: 14px;
}

.panel .panel-body.without-padding {
	padding: 0;
}

.panel .panel-body.horizontal-padding {
	padding: 0 20px;
}

.panel .panel-body.vertical-padding {
	padding: 20px 0;
}

.panel .panel-body.image-padding {
	padding: 4px;
}

.panel .panel-footer {
	padding: 5px 20px;
	background-color: #fff;
	border-top: 1px solid #f0f0f0;
}

.panel .panel-footer .justified-list li {
	padding: 0;
}

.panel .panel-footer .justified-list li i {
	font-size: 24px;
}

.panel .panel-footer.footer-dark {
	background-color: #000;
	color: #fff;
	border-top-color: transparent;
}

.panel .panel-footer.footer-translucent {
	position: absolute;
	bottom: 0;
	border-top-color: transparent;
	background-color: rgba(255, 255, 255, 0.5);
}

.panel .panel-footer.footer-translucent.footer-dark {
	background-color: rgba(0, 0, 0, 0.5);
}

.panel .panel-footer.footer-transparent {
	background-color: transparent;
	border-top-color: transparent;
	color: #fff;
}

.panel .panel-footer.footer-transparent i {
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.panel .panel-footer.footer-transparent.text-dark {
	color: rgba(0, 0, 0, 0.87);
}

.panel .panel-footer.footer-red {
	background-color: #f34235;
	color: #fff;
}

.panel .panel-footer.footer-pink {
	background-color: #e81d62;
	color: #fff;
}

.panel .panel-footer.footer-purple {
	background-color: #9b26af;
	color: #fff;
}

.panel .panel-footer.footer-purple {
	background-color: #9b26af;
	color: #fff;
}

.panel .panel-footer.footer-deep-purple {
	background-color: #6639b6;
	color: #fff;
}

.panel .panel-footer.footer-indigo {
	background-color: #3e50b4;
	color: #fff;
}

.panel .panel-footer.footer-blue {
	background-color: #2095f2;
	color: #fff;
}

.panel .panel-footer.footer-light-blue {
	background-color: #f34235;
	color: #fff;
}

.panel .panel-footer.footer-cyan {
	background-color: #00bbd3;
	color: #fff;
}

.panel .panel-footer.footer-teal {
	background-color: #009587;
	color: #fff;
}

.panel .panel-footer.footer-green {
	background-color: #4bae4f;
	color: #fff;
}

.panel .panel-footer.footer-light-green {
	background-color: #8ac249;
	color: #fff;
}

.panel .panel-footer.footer-lime {
	background-color: #ccdb38;
	color: #fff;
}

.panel .panel-footer.footer-yellow {
	background-color: #feea3a;
	color: #fff;
}

.panel .panel-footer.footer-amber {
	background-color: #fec006;
	color: #fff;
}

.panel .panel-footer.footer-orange {
	background-color: #f39c12;
	color: #fff;
}

.panel .panel-footer.footer-deep-orange {
	background-color: #fe5621;
	color: #fff;
}

.panel .panel-footer.footer-brown {
	background-color: #785447;
	color: #fff;
}

.panel .panel-footer.footer-grey {
	background-color: #9d9d9d;
	color: #fff;
}

.panel .panel-footer.footer-blue-grey {
	background-color: #5f7c8a;
	color: #fff;
}

.panel.panel-with-translucent-footer .panel-body {
	padding-bottom: 49px;
}

.panel.panel-with-border {
	border: 1px solid #f0f0f0;
}

.panel.panel-with-shadow {
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.panel.panel-transparent {
	padding: 0;
	background: transparent;
	-webkit-transition: box-shadow 280ms cubic-bezier(0.35, 0, 0.25, 1);
	transition: box-shadow 280ms cubic-bezier(0.35, 0, 0.25, 1);
}

.panel.panel-transparent:before {
	background: transparent;
}

.panel.panel-transparent .panel-heading {
	margin-bottom: 15px;
	box-shadow: none;
}

.panel.panel-transparent .panel-body {
	padding: 0 30px 15px 30px;
}

.panel.panel-transparent:hover {
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.panel.panel-inverted {
	background: rgba(0, 0, 0, 0.87);
	color: #fff;
}

.panel .panel-action {
	float: right;
	display: inline-block;
	position: relative;
	padding: 0;
	margin-top: 1px;
}

.panel .panel-action > a {
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
	padding: 0 5px;
	outline: none !important;
}

.panel .panel-action > a:last-child {
	padding-right: 0;
}

.panel .panel-action > a:hover {
	color: #337ab7;
}

.panel .panel-action > a:after {
	font-family: 'IonIcons';
}

.panel .panel-action [data-toggle='modal']:after {
	content: '\f35b';
}

.panel .panel-action [data-toggle='dropdown']:after {
	content: '\f397';
}

.panel .panel-action [data-toggle='fake-reload']:after,
.panel .panel-action [data-toggle='reload']:after {
	content: '\f3a8';
}

.panel .panel-action [data-toggle='panel']:after {
	content: '\f2f4';
}

.panel .panel-action [data-toggle='remove']:after {
	content: '\f2d7';
}

.panel .panel-action .initially-hidden {
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 300ms cubic-bezier(0.35, 0, 0.25, 1);
	transition: all 300ms cubic-bezier(0.35, 0, 0.25, 1);
}

.panel .panel-action .initially-hidden:nth-child(2) {
	-webkit-transition-delay: 50ms;
	transition-delay: 50ms;
}

.panel .panel-action .initially-hidden:nth-child(3) {
	-webkit-transition-delay: 100ms;
	transition-delay: 100ms;
}

.panel .panel-action .initially-hidden:nth-child(4) {
	-webkit-transition-delay: 150ms;
	transition-delay: 150ms;
}

.panel .panel-action .initially-hidden:nth-child(5) {
	-webkit-transition-delay: 200ms;
	transition-delay: 200ms;
}

.panel .panel-action .plus {
	display: none;
}

.panel.collapsed [data-toggle='panel']:after {
	content: '\f2c7';
}

.panel .nav-tabs.with-panel {
	overflow: hidden;
	border: 0;
}

.panel .nav-tabs.with-panel li {
	margin-top: 1px;
}

.panel .nav-tabs.with-panel li a {
	font-size: 14px;
	padding: 10px 0;
	border: 0;
	margin: 0 0 0 0;
	background-color: transparent;
}

.panel .nav-tabs.with-panel li.active a:after {
	top: 0;
}

.panel .nav-tabs.with-panel.colors li {
	top: 3px;
}

.panel .nav-tabs.with-panel.colors li a {
	padding: 0 !important;
	margin-top: 15px !important;
	border-radius: 0;
}

.panel .nav-tabs.with-panel.colors li a .badge {
	position: relative;
	display: block;
	padding: 0;
	width: 100%;
	height: 10px;
	border-radius: 0;
}

.panel .nav-tabs.with-panel.colors li.active a:after {
	height: 5px !important;
	background: rgba(255, 255, 255, 0.5) !important;
}

.panel .nav-tabs.with-panel.active-line li.active a:after {
	bottom: 0;
	width: 100%;
	height: 1px;
	left: 0;
	margin-left: 0;
}

.panel .tab-content.with-panel {
	border: 0;
	padding: 0;
}

.panel .portlet-handle-cancel {
	cursor: default;
}

.panel.collapsed .panel-body {
	display: none;
}

.panel.collapsed .panel-action .plus {
	display: inline-block;
}

.panel.collapsed .panel-action .minus {
	display: none;
}

.panel:hover .initially-hidden {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.panel.red:before {
	background: rgba(222, 27, 13, 0.6);
}

.panel.red > .panel-heading {
	background: #f34235;
	color: #ffffff;
}

.panel.red > .panel-heading h4 {
	color: #ffffff;
}

.panel.red > .panel-heading small {
	color: #ffffff;
}

.panel.red > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.red > .panel-heading a.panel-link:hover,
.panel.red > .panel-heading a.panel-link:focus,
.panel.red > .panel-heading a.panel-link:active {
	color: #b7170b;
	outline: none;
}

.panel.red > .panel-heading .panel-title a,
.panel.red > .panel-heading .panel-title:hover,
.panel.red > .panel-heading .panel-title:focus,
.panel.red > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.red > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.red > .panel-heading .nav-tabs > li.active > a,
.panel.red > .panel-heading .nav-tabs > li.active > a:hover,
.panel.red > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.red > .panel-heading .nav-tabs > li.active > a:after,
.panel.red > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.red > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(222, 27, 13, 0.6);
}

.panel.red .panel-body .sub-title {
	background: rgba(243, 66, 53, 0.05);
}

.panel.red .loading-bar:before {
	background: #f34235;
}

.panel.pink:before {
	background: rgba(181, 18, 74, 0.6);
}

.panel.pink > .panel-heading {
	background: #e81d62;
	color: #ffffff;
}

.panel.pink > .panel-heading h4 {
	color: #ffffff;
}

.panel.pink > .panel-heading small {
	color: #ffffff;
}

.panel.pink > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.pink > .panel-heading a.panel-link:hover,
.panel.pink > .panel-heading a.panel-link:focus,
.panel.pink > .panel-heading a.panel-link:active {
	color: #900f3b;
	outline: none;
}

.panel.pink > .panel-heading .panel-title a,
.panel.pink > .panel-heading .panel-title:hover,
.panel.pink > .panel-heading .panel-title:focus,
.panel.pink > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.pink > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.pink > .panel-heading .nav-tabs > li.active > a,
.panel.pink > .panel-heading .nav-tabs > li.active > a:hover,
.panel.pink > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.pink > .panel-heading .nav-tabs > li.active > a:after,
.panel.pink > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.pink > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(181, 18, 74, 0.6);
}

.panel.pink .panel-body .sub-title {
	background: rgba(232, 29, 98, 0.05);
}

.panel.pink .loading-bar:before {
	background: #e81d62;
}

.panel.purple:before {
	background: rgba(110, 27, 125, 0.6);
}

.panel.purple > .panel-heading {
	background: #9b26af;
	color: #ffffff;
}

.panel.purple > .panel-heading h4 {
	color: #ffffff;
}

.panel.purple > .panel-heading small {
	color: #ffffff;
}

.panel.purple > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.purple > .panel-heading a.panel-link:hover,
.panel.purple > .panel-heading a.panel-link:focus,
.panel.purple > .panel-heading a.panel-link:active {
	color: #51145b;
	outline: none;
}

.panel.purple > .panel-heading .panel-title a,
.panel.purple > .panel-heading .panel-title:hover,
.panel.purple > .panel-heading .panel-title:focus,
.panel.purple > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.purple > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.purple > .panel-heading .nav-tabs > li.active > a,
.panel.purple > .panel-heading .nav-tabs > li.active > a:hover,
.panel.purple > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.purple > .panel-heading .nav-tabs > li.active > a:after,
.panel.purple > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.purple > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(110, 27, 125, 0.6);
}

.panel.purple .panel-body .sub-title {
	background: rgba(155, 38, 175, 0.05);
}

.panel.purple .loading-bar:before {
	background: #9b26af;
}

.panel.deep-purple:before {
	background: rgba(76, 42, 135, 0.6);
}

.panel.deep-purple > .panel-heading {
	background: #6639b6;
	color: #ffffff;
}

.panel.deep-purple > .panel-heading h4 {
	color: #ffffff;
}

.panel.deep-purple > .panel-heading small {
	color: #ffffff;
}

.panel.deep-purple > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.deep-purple > .panel-heading a.panel-link:hover,
.panel.deep-purple > .panel-heading a.panel-link:focus,
.panel.deep-purple > .panel-heading a.panel-link:active {
	color: #3a2168;
	outline: none;
}

.panel.deep-purple > .panel-heading .panel-title a,
.panel.deep-purple > .panel-heading .panel-title:hover,
.panel.deep-purple > .panel-heading .panel-title:focus,
.panel.deep-purple > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.deep-purple > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.deep-purple > .panel-heading .nav-tabs > li.active > a,
.panel.deep-purple > .panel-heading .nav-tabs > li.active > a:hover,
.panel.deep-purple > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.deep-purple > .panel-heading .nav-tabs > li.active > a:after,
.panel.deep-purple > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.deep-purple > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(76, 42, 135, 0.6);
}

.panel.deep-purple .panel-body .sub-title {
	background: rgba(102, 57, 182, 0.05);
}

.panel.deep-purple .loading-bar:before {
	background: #6639b6;
}

.panel.indigo:before {
	background: rgba(46, 60, 134, 0.6);
}

.panel.indigo > .panel-heading {
	background: #3e50b4;
	color: #ffffff;
}

.panel.indigo > .panel-heading h4 {
	color: #ffffff;
}

.panel.indigo > .panel-heading small {
	color: #ffffff;
}

.panel.indigo > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.indigo > .panel-heading a.panel-link:hover,
.panel.indigo > .panel-heading a.panel-link:focus,
.panel.indigo > .panel-heading a.panel-link:active {
	color: #242e68;
	outline: none;
}

.panel.indigo > .panel-heading .panel-title a,
.panel.indigo > .panel-heading .panel-title:hover,
.panel.indigo > .panel-heading .panel-title:focus,
.panel.indigo > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.indigo > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.indigo > .panel-heading .nav-tabs > li.active > a,
.panel.indigo > .panel-heading .nav-tabs > li.active > a:hover,
.panel.indigo > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.indigo > .panel-heading .nav-tabs > li.active > a:after,
.panel.indigo > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.indigo > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(46, 60, 134, 0.6);
}

.panel.indigo .panel-body .sub-title {
	background: rgba(62, 80, 180, 0.05);
}

.panel.indigo .loading-bar:before {
	background: #3e50b4;
}

.panel.blue:before {
	background: rgba(12, 117, 201, 0.6);
}

.panel.blue > .panel-heading {
	background: #2095f2;
	color: #ffffff;
}

.panel.blue > .panel-heading h4 {
	color: #ffffff;
}

.panel.blue > .panel-heading small {
	color: #ffffff;
}

.panel.blue > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.blue > .panel-heading a.panel-link:hover,
.panel.blue > .panel-heading a.panel-link:focus,
.panel.blue > .panel-heading a.panel-link:active {
	color: #095fa3;
	outline: none;
}

.panel.blue > .panel-heading .panel-title a,
.panel.blue > .panel-heading .panel-title:hover,
.panel.blue > .panel-heading .panel-title:focus,
.panel.blue > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.blue > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.blue > .panel-heading .nav-tabs > li.active > a,
.panel.blue > .panel-heading .nav-tabs > li.active > a:hover,
.panel.blue > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.blue > .panel-heading .nav-tabs > li.active > a:after,
.panel.blue > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.blue > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(12, 117, 201, 0.6);
}

.panel.blue .panel-body .sub-title {
	background: rgba(32, 149, 242, 0.05);
}

.panel.blue .loading-bar:before {
	background: #2095f2;
}

.panel.light-blue:before {
	background: rgba(2, 126, 182, 0.6);
}

.panel.light-blue > .panel-heading {
	background: #02a8f3;
	color: #ffffff;
}

.panel.light-blue > .panel-heading h4 {
	color: #ffffff;
}

.panel.light-blue > .panel-heading small {
	color: #ffffff;
}

.panel.light-blue > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.light-blue > .panel-heading a.panel-link:hover,
.panel.light-blue > .panel-heading a.panel-link:focus,
.panel.light-blue > .panel-heading a.panel-link:active {
	color: #01628e;
	outline: none;
}

.panel.light-blue > .panel-heading .panel-title a,
.panel.light-blue > .panel-heading .panel-title:hover,
.panel.light-blue > .panel-heading .panel-title:focus,
.panel.light-blue > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.light-blue > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.light-blue > .panel-heading .nav-tabs > li.active > a,
.panel.light-blue > .panel-heading .nav-tabs > li.active > a:hover,
.panel.light-blue > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.light-blue > .panel-heading .nav-tabs > li.active > a:after,
.panel.light-blue > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.light-blue > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(2, 126, 182, 0.6);
}

.panel.light-blue .panel-body .sub-title {
	background: rgba(2, 168, 243, 0.05);
}

.panel.light-blue .loading-bar:before {
	background: #02a8f3;
}

.panel.cyan:before {
	background: rgba(0, 133, 150, 0.6);
}

.panel.cyan > .panel-heading {
	background: #00bbd3;
	color: #ffffff;
}

.panel.cyan > .panel-heading h4 {
	color: #ffffff;
}

.panel.cyan > .panel-heading small {
	color: #ffffff;
}

.panel.cyan > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.cyan > .panel-heading a.panel-link:hover,
.panel.cyan > .panel-heading a.panel-link:focus,
.panel.cyan > .panel-heading a.panel-link:active {
	color: #00616d;
	outline: none;
}

.panel.cyan > .panel-heading .panel-title a,
.panel.cyan > .panel-heading .panel-title:hover,
.panel.cyan > .panel-heading .panel-title:focus,
.panel.cyan > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.cyan > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.cyan > .panel-heading .nav-tabs > li.active > a,
.panel.cyan > .panel-heading .nav-tabs > li.active > a:hover,
.panel.cyan > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.cyan > .panel-heading .nav-tabs > li.active > a:after,
.panel.cyan > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.cyan > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(0, 133, 150, 0.6);
}

.panel.cyan .panel-body .sub-title {
	background: rgba(0, 187, 211, 0.05);
}

.panel.cyan .loading-bar:before {
	background: #00bbd3;
}

.panel.teal:before {
	background: rgba(0, 88, 80, 0.6);
}

.panel.teal > .panel-heading {
	background: #009587;
	color: #ffffff;
}

.panel.teal > .panel-heading h4 {
	color: #ffffff;
}

.panel.teal > .panel-heading small {
	color: #ffffff;
}

.panel.teal > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.teal > .panel-heading a.panel-link:hover,
.panel.teal > .panel-heading a.panel-link:focus,
.panel.teal > .panel-heading a.panel-link:active {
	color: #002f2b;
	outline: none;
}

.panel.teal > .panel-heading .panel-title a,
.panel.teal > .panel-heading .panel-title:hover,
.panel.teal > .panel-heading .panel-title:focus,
.panel.teal > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.teal > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.teal > .panel-heading .nav-tabs > li.active > a,
.panel.teal > .panel-heading .nav-tabs > li.active > a:hover,
.panel.teal > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.teal > .panel-heading .nav-tabs > li.active > a:after,
.panel.teal > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.teal > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(0, 88, 80, 0.6);
}

.panel.teal .panel-body .sub-title {
	background: rgba(0, 149, 135, 0.05);
}

.panel.teal .loading-bar:before {
	background: #009587;
}

.panel.green:before {
	background: rgba(57, 131, 60, 0.6);
}

.panel.green > .panel-heading {
	background: #4bae4f;
	color: #ffffff;
}

.panel.green > .panel-heading h4 {
	color: #ffffff;
}

.panel.green > .panel-heading small {
	color: #ffffff;
}

.panel.green > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.green > .panel-heading a.panel-link:hover,
.panel.green > .panel-heading a.panel-link:focus,
.panel.green > .panel-heading a.panel-link:active {
	color: #2c672f;
	outline: none;
}

.panel.green > .panel-heading .panel-title a,
.panel.green > .panel-heading .panel-title:hover,
.panel.green > .panel-heading .panel-title:focus,
.panel.green > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.green > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.green > .panel-heading .nav-tabs > li.active > a,
.panel.green > .panel-heading .nav-tabs > li.active > a:hover,
.panel.green > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.green > .panel-heading .nav-tabs > li.active > a:after,
.panel.green > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.green > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(57, 131, 60, 0.6);
}

.panel.green .panel-body .sub-title {
	background: rgba(75, 174, 79, 0.05);
}

.panel.green .loading-bar:before {
	background: #4bae4f;
}

.panel.light-green:before {
	background: rgba(107, 154, 52, 0.6);
}

.panel.light-green > .panel-heading {
	background: #8ac249;
	color: #ffffff;
}

.panel.light-green > .panel-heading h4 {
	color: #ffffff;
}

.panel.light-green > .panel-heading small {
	color: #ffffff;
}

.panel.light-green > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.light-green > .panel-heading a.panel-link:hover,
.panel.light-green > .panel-heading a.panel-link:focus,
.panel.light-green > .panel-heading a.panel-link:active {
	color: #567c29;
	outline: none;
}

.panel.light-green > .panel-heading .panel-title a,
.panel.light-green > .panel-heading .panel-title:hover,
.panel.light-green > .panel-heading .panel-title:focus,
.panel.light-green > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.light-green > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.light-green > .panel-heading .nav-tabs > li.active > a,
.panel.light-green > .panel-heading .nav-tabs > li.active > a:hover,
.panel.light-green > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.light-green > .panel-heading .nav-tabs > li.active > a:after,
.panel.light-green > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.light-green > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(107, 154, 52, 0.6);
}

.panel.light-green .panel-body .sub-title {
	background: rgba(138, 194, 73, 0.05);
}

.panel.light-green .loading-bar:before {
	background: #8ac249;
}

.panel.lime:before {
	background: rgba(167, 181, 33, 0.6);
}

.panel.lime > .panel-heading {
	background: #ccdb38;
	color: #ffffff;
}

.panel.lime > .panel-heading h4 {
	color: #ffffff;
}

.panel.lime > .panel-heading small {
	color: #ffffff;
}

.panel.lime > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.lime > .panel-heading a.panel-link:hover,
.panel.lime > .panel-heading a.panel-link:focus,
.panel.lime > .panel-heading a.panel-link:active {
	color: #87921b;
	outline: none;
}

.panel.lime > .panel-heading .panel-title a,
.panel.lime > .panel-heading .panel-title:hover,
.panel.lime > .panel-heading .panel-title:focus,
.panel.lime > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.lime > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.lime > .panel-heading .nav-tabs > li.active > a,
.panel.lime > .panel-heading .nav-tabs > li.active > a:hover,
.panel.lime > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.lime > .panel-heading .nav-tabs > li.active > a:after,
.panel.lime > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.lime > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(167, 181, 33, 0.6);
}

.panel.lime .panel-body .sub-title {
	background: rgba(204, 219, 56, 0.05);
}

.panel.lime .loading-bar:before {
	background: #ccdb38;
}

.panel.yellow:before {
	background: rgba(250, 224, 1, 0.6);
}

.panel.yellow > .panel-heading {
	background: #feea3a;
	color: rgba(0, 0, 0, 0.87);
}

.panel.yellow > .panel-heading h4 {
	color: rgba(0, 0, 0, 0.87);
}

.panel.yellow > .panel-heading small {
	color: rgba(0, 0, 0, 0.87);
}

.panel.yellow > .panel-heading a.panel-link {
	color: rgba(0, 0, 0, 0.87);
}

.panel.yellow > .panel-heading a.panel-link:hover,
.panel.yellow > .panel-heading a.panel-link:focus,
.panel.yellow > .panel-heading a.panel-link:active {
	color: #d1bc01;
	outline: none;
}

.panel.yellow > .panel-heading .panel-title a,
.panel.yellow > .panel-heading .panel-title:hover,
.panel.yellow > .panel-heading .panel-title:focus,
.panel.yellow > .panel-heading .panel-title:active {
	color: rgba(0, 0, 0, 0.87);
	outline: none;
}

.panel.yellow > .panel-heading .nav-tabs > li > a {
	color: rgba(0, 0, 0, 0.6);
}

.panel.yellow > .panel-heading .nav-tabs > li.active > a,
.panel.yellow > .panel-heading .nav-tabs > li.active > a:hover,
.panel.yellow > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: rgba(0, 0, 0, 0.87);
}

.panel.yellow > .panel-heading .nav-tabs > li.active > a:after,
.panel.yellow > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.yellow > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(250, 224, 1, 0.6);
}

.panel.yellow .panel-body .sub-title {
	background: rgba(254, 234, 58, 0.05);
}

.panel.yellow .loading-bar:before {
	background: #feea3a;
}

.panel.amber:before {
	background: rgba(198, 149, 1, 0.6);
}

.panel.amber > .panel-heading {
	background: #fec006;
	color: #ffffff;
}

.panel.amber > .panel-heading h4 {
	color: #ffffff;
}

.panel.amber > .panel-heading small {
	color: #ffffff;
}

.panel.amber > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.amber > .panel-heading a.panel-link:hover,
.panel.amber > .panel-heading a.panel-link:focus,
.panel.amber > .panel-heading a.panel-link:active {
	color: #9d7601;
	outline: none;
}

.panel.amber > .panel-heading .panel-title a,
.panel.amber > .panel-heading .panel-title:hover,
.panel.amber > .panel-heading .panel-title:focus,
.panel.amber > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.amber > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.amber > .panel-heading .nav-tabs > li.active > a,
.panel.amber > .panel-heading .nav-tabs > li.active > a:hover,
.panel.amber > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.amber > .panel-heading .nav-tabs > li.active > a:after,
.panel.amber > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.amber > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(198, 149, 1, 0.6);
}

.panel.amber .panel-body .sub-title {
	background: rgba(254, 192, 6, 0.05);
}

.panel.amber .loading-bar:before {
	background: #fec006;
}

.panel.orange:before {
	background: rgba(190, 120, 10, 0.6);
}

.panel.orange > .panel-heading {
	background: #f39c12;
	color: #ffffff;
}

.panel.orange > .panel-heading h4 {
	color: #ffffff;
}

.panel.orange > .panel-heading small {
	color: #ffffff;
}

.panel.orange > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.orange > .panel-heading a.panel-link:hover,
.panel.orange > .panel-heading a.panel-link:focus,
.panel.orange > .panel-heading a.panel-link:active {
	color: #976008;
	outline: none;
}

.panel.orange > .panel-heading .panel-title a,
.panel.orange > .panel-heading .panel-title:hover,
.panel.orange > .panel-heading .panel-title:focus,
.panel.orange > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.orange > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.orange > .panel-heading .nav-tabs > li.active > a,
.panel.orange > .panel-heading .nav-tabs > li.active > a:hover,
.panel.orange > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.orange > .panel-heading .nav-tabs > li.active > a:after,
.panel.orange > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.orange > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(190, 120, 10, 0.6);
}

.panel.orange .panel-body .sub-title {
	background: rgba(243, 156, 18, 0.05);
}

.panel.orange .loading-bar:before {
	background: #f39c12;
}

.panel.deep-orange:before {
	background: rgba(225, 55, 1, 0.6);
}

.panel.deep-orange > .panel-heading {
	background: #fe5621;
	color: #ffffff;
}

.panel.deep-orange > .panel-heading h4 {
	color: #ffffff;
}

.panel.deep-orange > .panel-heading small {
	color: #ffffff;
}

.panel.deep-orange > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.deep-orange > .panel-heading a.panel-link:hover,
.panel.deep-orange > .panel-heading a.panel-link:focus,
.panel.deep-orange > .panel-heading a.panel-link:active {
	color: #b82d01;
	outline: none;
}

.panel.deep-orange > .panel-heading .panel-title a,
.panel.deep-orange > .panel-heading .panel-title:hover,
.panel.deep-orange > .panel-heading .panel-title:focus,
.panel.deep-orange > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.deep-orange > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.deep-orange > .panel-heading .nav-tabs > li.active > a,
.panel.deep-orange > .panel-heading .nav-tabs > li.active > a:hover,
.panel.deep-orange > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.deep-orange > .panel-heading .nav-tabs > li.active > a:after,
.panel.deep-orange > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.deep-orange > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(225, 55, 1, 0.6);
}

.panel.deep-orange .panel-body .sub-title {
	background: rgba(254, 86, 33, 0.05);
}

.panel.deep-orange .loading-bar:before {
	background: #fe5621;
}

.panel.brown:before {
	background: rgba(82, 57, 48, 0.6);
}

.panel.brown > .panel-heading {
	background: #785447;
	color: #ffffff;
}

.panel.brown > .panel-heading h4 {
	color: #ffffff;
}

.panel.brown > .panel-heading small {
	color: #ffffff;
}

.panel.brown > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.brown > .panel-heading a.panel-link:hover,
.panel.brown > .panel-heading a.panel-link:focus,
.panel.brown > .panel-heading a.panel-link:active {
	color: #382721;
	outline: none;
}

.panel.brown > .panel-heading .panel-title a,
.panel.brown > .panel-heading .panel-title:hover,
.panel.brown > .panel-heading .panel-title:focus,
.panel.brown > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.brown > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.brown > .panel-heading .nav-tabs > li.active > a,
.panel.brown > .panel-heading .nav-tabs > li.active > a:hover,
.panel.brown > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.brown > .panel-heading .nav-tabs > li.active > a:after,
.panel.brown > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.brown > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(82, 57, 48, 0.6);
}

.panel.brown .panel-body .sub-title {
	background: rgba(120, 84, 71, 0.05);
}

.panel.brown .loading-bar:before {
	background: #785447;
}

.panel.grey:before {
	background: rgba(126, 126, 126, 0.6);
}

.panel.grey > .panel-heading {
	background: #9d9d9d;
	color: #ffffff;
}

.panel.grey > .panel-heading h4 {
	color: #ffffff;
}

.panel.grey > .panel-heading small {
	color: #ffffff;
}

.panel.grey > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.grey > .panel-heading a.panel-link:hover,
.panel.grey > .panel-heading a.panel-link:focus,
.panel.grey > .panel-heading a.panel-link:active {
	color: #6a6a6a;
	outline: none;
}

.panel.grey > .panel-heading .panel-title a,
.panel.grey > .panel-heading .panel-title:hover,
.panel.grey > .panel-heading .panel-title:focus,
.panel.grey > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.grey > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.grey > .panel-heading .nav-tabs > li.active > a,
.panel.grey > .panel-heading .nav-tabs > li.active > a:hover,
.panel.grey > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.grey > .panel-heading .nav-tabs > li.active > a:after,
.panel.grey > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.grey > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(126, 126, 126, 0.6);
}

.panel.grey .panel-body .sub-title {
	background: rgba(157, 157, 157, 0.05);
}

.panel.grey .loading-bar:before {
	background: #9d9d9d;
}

.panel.blue-grey:before {
	background: rgba(70, 91, 102, 0.6);
}

.panel.blue-grey > .panel-heading {
	background: #5f7c8a;
	color: #ffffff;
}

.panel.blue-grey > .panel-heading h4 {
	color: #ffffff;
}

.panel.blue-grey > .panel-heading small {
	color: #ffffff;
}

.panel.blue-grey > .panel-heading a.panel-link {
	color: #ffffff;
}

.panel.blue-grey > .panel-heading a.panel-link:hover,
.panel.blue-grey > .panel-heading a.panel-link:focus,
.panel.blue-grey > .panel-heading a.panel-link:active {
	color: #35464e;
	outline: none;
}

.panel.blue-grey > .panel-heading .panel-title a,
.panel.blue-grey > .panel-heading .panel-title:hover,
.panel.blue-grey > .panel-heading .panel-title:focus,
.panel.blue-grey > .panel-heading .panel-title:active {
	color: #ffffff;
	outline: none;
}

.panel.blue-grey > .panel-heading .nav-tabs > li > a {
	color: rgba(255, 255, 255, 0.6);
}

.panel.blue-grey > .panel-heading .nav-tabs > li.active > a,
.panel.blue-grey > .panel-heading .nav-tabs > li.active > a:hover,
.panel.blue-grey > .panel-heading .nav-tabs > li.active > a:focus {
	background-color: transparent;
	color: #ffffff;
}

.panel.blue-grey > .panel-heading .nav-tabs > li.active > a:after,
.panel.blue-grey > .panel-heading .nav-tabs > li.active > a:hover:after,
.panel.blue-grey > .panel-heading .nav-tabs > li.active > a:focus:after {
	background-color: transparent;
	border-bottom: 3px solid rgba(70, 91, 102, 0.6);
}

.panel.blue-grey .panel-body .sub-title {
	background: rgba(95, 124, 138, 0.05);
}

.panel.blue-grey .loading-bar:before {
	background: #5f7c8a;
}

.accordion .panel-heading,
.toggle .panel-heading {
	position: relative;
}

.accordion .panel-heading a:after,
.toggle .panel-heading a:after {
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -14px;
	font-family: 'IonIcons';
	content: '\f2f4';
}

.accordion .panel-heading.active a:after,
.toggle .panel-heading.active a:after {
	content: '\f2c7';
}

.accordion .panel-body,
.toggle .panel-body {
	border-top: 0 !important;
}

.header-tabs {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 61px;
	z-index: 1;
	background: #3e50b4;
}

.header-tabs.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100% - 81px);
	left: 81px;
	z-index: 1100;
}

.header-tabs ul li a {
	background: transparent;
	border: 0 !important;
	color: #fff;
	opacity: 0.7;
	border-radius: 0;
	padding: 16px 40px;
	top: 0;
	margin-right: 0;
}

.header-tabs ul li.active a {
	background: transparent;
	opacity: 1;
	color: #fff;
}

.scrollable-tabs {
	overflow-x: auto;
	z-index: 100;
	-webkit-overflow-scrolling: touch;
}

.scrollable-tabs.disabled {
	z-index: 0;
}

/*
10 - Responsive Tables

    Document   : unseen
    Created on : 28/02/2012, 11:01:35 AM
    Author     : Simon Elvery
    Description:
		Demonstration of the responsive tables method described at
		http://www.irishstu.com/stublog/2011/12/13/tables-responsive-design-part-2-nchilds/
		and
		http://filamentgroup.com/lab/responsive_design_approach_for_complex_multicolumn_data_tables/
*/
@media only screen and (max-width: 800px) {
	.unseen table td:nth-child(2),
	.unseen table th:nth-child(2) {
		display: none;
	}
}

@media only screen and (max-width: 640px) {
	.unseen table td:nth-child(4),
	.unseen table th:nth-child(4),
	.unseen table td:nth-child(7),
	.unseen table th:nth-child(7),
	.unseen table td:nth-child(8),
	.unseen table th:nth-child(8) {
		display: none;
	}
}

/*
    Document   : flip-scroll
    Created on : 28/02/2012, 11:01:45 AM
    Author     : Simon Elvery
    Description:
        Demonstration of the responsive tables method described at by David Bushell
		at http://dbushell.com/2012/01/05/responsive-tables-2/
*/
@media only screen and (max-width: 800px) {
	.flip-scroll .cf:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: ' ';
		clear: both;
		height: 0;
	}

	.flip-scroll * html .cf {
		zoom: 1;
	}

	.flip-scroll *:first-child + html .cf {
		zoom: 1;
	}

	.flip-scroll table {
		width: 100%;
		border-collapse: collapse;
		border-spacing: 0;
	}

	.flip-scroll th,
	.flip-scroll td {
		margin: 0;
		vertical-align: top !important;
	}

	.flip-scroll th {
		text-align: left !important;
	}

	.flip-scroll table {
		display: block;
		position: relative;
		width: 100%;
	}

	.flip-scroll thead {
		display: block;
		float: left !important;
	}

	.flip-scroll tbody {
		display: block;
		width: auto;
		position: relative;
		overflow-x: auto;
		white-space: nowrap;
	}

	.flip-scroll thead tr {
		display: block;
	}

	.flip-scroll th {
		display: block;
		text-align: right !important;
	}

	.flip-scroll tbody tr {
		display: inline-block;
		vertical-align: top;
	}

	.flip-scroll td {
		display: block;
		min-height: 1.25em;
		text-align: left !important;
	}

	/* sort out borders */
	.flip-scroll th {
		border-bottom: 0 !important;
		border-left: 0 !important;
		border-top: 1px solid #ddd !important;
	}

	.flip-scroll td {
		border-left: 0 !important;
		border-right: 0 !important;
		border-bottom: 0 !important;
	}

	.flip-scroll tbody tr {
		border-left: 1px solid #babcbf !important;
	}

	.flip-scroll th:last-child,
	.flip-scroll td:last-child {
		border-bottom: 1px solid #babcbf !important;
	}
}

/*
    Document   : no-more-tables
    Created on : 28/02/2012, 11:01:54 AM
    Author     : Simon Elvery
    Description:
        Demonstration of the responsive tables method described at by Chris Coyier
		at http://css-tricks.com/responsive-data-tables/
*/
@media only screen and (max-width: 800px) {
	/* Force table to not be like tables anymore */
	.no-more-tables table,
	.no-more-tables thead,
	.no-more-tables tbody,
	.no-more-tables th,
	.no-more-tables td,
	.no-more-tables tr {
		display: block;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	.no-more-tables thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.no-more-tables tr {
		border: 1px solid #ccc;
	}

	.no-more-tables td {
		/* Behave  like a "row" */
		border: none !important;
		border-bottom: 1px solid #eee !important;
		position: relative !important;
		padding-left: 50% !important;
		white-space: normal !important;
		text-align: left !important;
	}

	.no-more-tables td:before {
		/* Now like a table header */
		position: absolute !important;
		/* Top/left values mimic padding */
		top: 11px;
		left: 6px;
		width: 45%;
		padding-right: 10px !important;
		white-space: nowrap;
		text-align: left !important;
		font-weight: bold;
	}

	/*
	Label the data
	*/
	.no-more-tables td:before {
		content: attr(data-title);
	}
}

.layout-device .modal .modal-dialog {
	width: 90%;
}

.card ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.card .card-action {
	position: absolute;
	z-index: 2;
	top: 20px;
	right: 20px;
}

.card .card-action a {
	margin-left: 5px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.card .card-action a:last-child {
	padding-right: 0;
}

.card .card-action a:hover {
	color: #ffffff;
}

.card .card-action a:after {
	font-family: 'IonIcons';
}

.card .card-action [data-toggle='dropdown']:after {
	content: '\f397';
}

.card .card-action [data-toggle='fake-reload']:after,
.card .card-action [data-toggle='reload']:after {
	content: '\f3a8';
}

.card .card-action [data-toggle='panel']:after {
	content: '\f2f4';
}

.card .card-action [data-toggle='remove']:after {
	content: '\f2d7';
}

.card .refresh-container {
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(200, 200, 200, 0.5);
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 4;
}

.card .card-content {
	position: relative;
	z-index: 1;
}

.card .card-heading:before,
.card .card-heading:after {
	content: '';
	display: table;
	clear: both;
}

.card .card-heading .card-title {
	font-size: 16px;
	line-height: 26px;
	color: inherit;
	font-weight: bold;
	float: left;
	padding: 12px 0;
	margin: 0;
}

.card .card-heading .card-title .heading-icon {
	margin-right: 5px;
}

.card .card-heading .card-title small {
	font-size: 70%;
}

.card .card-body {
	position: relative;
	padding: 20px;
}

.card .card-body p:last-child {
	margin-bottom: 0;
}

.card .card-footer {
	position: relative;
	padding: 15px;
	border-top: 1px solid #f0f0f0;
}

.card .card-footer:before,
.card .card-footer:after {
	content: '';
	display: table;
	clear: both;
}

.card.card-error .card-heading {
	padding: 0;
	background: #f0f0f0;
	height: 100px;
	overflow: hidden;
}

.card.card-error .card-heading .error-number {
	position: absolute;
	width: 100%;
	font-size: 180px;
	text-align: center;
	line-height: 100px;
	color: rgba(0, 0, 0, 0.1);
}

.card.card-error .card-heading .error-text {
	font-size: 24px;
	color: #000000;
	text-align: center;
	padding: 30px 0;
}

.card.card-error .card-body {
	font-size: 17px;
	text-align: center;
}

.card.card-error .card-footer {
	padding: 15px 20px;
}

.card.card-meal .card-heading {
	border-top: 3px solid #f39c12;
	border-bottom: 1px solid #f0f0f0;
	background: #fff;
	padding: 15px 30px;
}

.card.card-meal .card-heading .card-title {
	float: none;
	padding: 0;
	font-weight: normal;
	width: 100%;
	font-size: 18px;
	display: block;
}

.card.card-meal .card-heading .card-subhead {
	color: rgba(77, 77, 77, 0.87);
	font-size: 13px;
}

.card.card-meal .card-heading:before,
.card.card-meal .card-heading:after {
	content: '';
	display: table;
	clear: both;
}

.card.card-meal .card-body {
	padding: 0;
}

.card.card-meal .card-body .image img {
	display: block;
	width: 100%;
	height: auto;
}

.card.card-meal .card-body .users {
	width: 100%;
	height: 64px;
	padding: 3px 20px;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
	overflow: hidden;
	text-align: center;
}

.card.card-meal .card-body .users li {
	display: inline-block;
	margin: 8px 2px;
}

.card.card-meal .card-body .users li a img {
	width: 40px;
	height: 40px;
	border-radius: 3px;
}

.card.card-meal .card-body .users.users-square img {
	border-radius: 0;
}

.card.card-meal .card-footer {
	background: #fff;
	padding: 15px 20px;
	border-top: 0;
}

.card.card-meal .card-footer ul {
	text-align: center;
}

.card.card-meal .card-footer li {
	display: inline-block;
	border-right: 1px #f0f0f0 solid;
	padding: 0 5px;
}

.card.card-meal .card-footer li:last-child {
	border-right: 0;
}

.card.card-meal.card-meal-red .card-heading {
	border-top-color: #f34235;
}

.card.card-meal.card-meal-red a {
	color: #f34235;
}

.card.card-meal.card-meal-red a:hover {
	color: #b7170b;
}

.card.card-meal.card-meal-pink .card-heading {
	border-top-color: #e81d62;
}

.card.card-meal.card-meal-pink a {
	color: #e81d62;
}

.card.card-meal.card-meal-pink a:hover {
	color: #900f3b;
}

.card.card-meal.card-meal-purple .card-heading {
	border-top-color: #9b26af;
}

.card.card-meal.card-meal-purple a {
	color: #9b26af;
}

.card.card-meal.card-meal-purple a:hover {
	color: #51145b;
}

.card.card-meal.card-meal-deep-purple .card-heading {
	border-top-color: #6639b6;
}

.card.card-meal.card-meal-deep-purple a {
	color: #6639b6;
}

.card.card-meal.card-meal-deep-purple a:hover {
	color: #3a2168;
}

.card.card-meal.card-meal-indigo .card-heading {
	border-top-color: #3e50b4;
}

.card.card-meal.card-meal-indigo a {
	color: #3e50b4;
}

.card.card-meal.card-meal-indigo a:hover {
	color: #242e68;
}

.card.card-meal.card-meal-blue .card-heading {
	border-top-color: #2095f2;
}

.card.card-meal.card-meal-blue a {
	color: #2095f2;
}

.card.card-meal.card-meal-blue a:hover {
	color: #095fa3;
}

.card.card-meal.card-meal-light-blue .card-heading {
	border-top-color: #02a8f3;
}

.card.card-meal.card-meal-light-blue a {
	color: #02a8f3;
}

.card.card-meal.card-meal-light-blue a:hover {
	color: #01628e;
}

.card.card-meal.card-meal-cyan .card-heading {
	border-top-color: #00bbd3;
}

.card.card-meal.card-meal-cyan a {
	color: #00bbd3;
}

.card.card-meal.card-meal-cyan a:hover {
	color: #00616d;
}

.card.card-meal.card-meal-teal .card-heading {
	border-top-color: #009587;
}

.card.card-meal.card-meal-teal a {
	color: #009587;
}

.card.card-meal.card-meal-teal a:hover {
	color: #002f2b;
}

.card.card-meal.card-meal-green .card-heading {
	border-top-color: #4bae4f;
}

.card.card-meal.card-meal-green a {
	color: #4bae4f;
}

.card.card-meal.card-meal-green a:hover {
	color: #2c672f;
}

.card.card-meal.card-meal-light-green .card-heading {
	border-top-color: #8ac249;
}

.card.card-meal.card-meal-light-green a {
	color: #8ac249;
}

.card.card-meal.card-meal-light-green a:hover {
	color: #567c29;
}

.card.card-meal.card-meal-lime .card-heading {
	border-top-color: #ccdb38;
}

.card.card-meal.card-meal-lime a {
	color: #ccdb38;
}

.card.card-meal.card-meal-lime a:hover {
	color: #87921b;
}

.card.card-meal.card-meal-yellow .card-heading {
	border-top-color: #feea3a;
}

.card.card-meal.card-meal-yellow a {
	color: #feea3a;
}

.card.card-meal.card-meal-yellow a:hover {
	color: #d1bc01;
}

.card.card-meal.card-meal-amber .card-heading {
	border-top-color: #fec006;
}

.card.card-meal.card-meal-amber a {
	color: #fec006;
}

.card.card-meal.card-meal-amber a:hover {
	color: #9d7601;
}

.card.card-meal.card-meal-orange .card-heading {
	border-top-color: #f39c12;
}

.card.card-meal.card-meal-orange a {
	color: #f39c12;
}

.card.card-meal.card-meal-orange a:hover {
	color: #976008;
}

.card.card-meal.card-meal-deep-orange .card-heading {
	border-top-color: #fe5621;
}

.card.card-meal.card-meal-deep-orange a {
	color: #fe5621;
}

.card.card-meal.card-meal-deep-orange a:hover {
	color: #b82d01;
}

.card.card-meal.card-meal-brown .card-heading {
	border-top-color: #785447;
}

.card.card-meal.card-meal-brown a {
	color: #785447;
}

.card.card-meal.card-meal-brown a:hover {
	color: #382721;
}

.card.card-meal.card-meal-grey .card-heading {
	border-top-color: #9d9d9d;
}

.card.card-meal.card-meal-grey a {
	color: #9d9d9d;
}

.card.card-meal.card-meal-grey a:hover {
	color: #6a6a6a;
}

.card.card-meal.card-meal-blue-grey .card-heading {
	border-top-color: #5f7c8a;
}

.card.card-meal.card-meal-blue-grey a {
	color: #5f7c8a;
}

.card.card-meal.card-meal-blue-grey a:hover {
	color: #35464e;
}

.card.card-news .card-heading {
	height: 150px;
	padding: 0;
	border: 0;
}

.card.card-news .card-heading .author {
	position: absolute;
	top: 20px;
	right: 20px;
}

.card.card-news .card-heading .author img {
	width: 32px;
	height: 32px;
	margin-right: 5px;
	border-radius: 16px;
	box-shadow: 0 1px 3px #000;
}

.card.card-news .card-heading .card-title {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	padding: 0;
	color: #fff;
	font-size: 22px;
}

.card.card-news .card-heading .card-title small {
	color: rgba(255, 255, 255, 0.8);
}

.card.card-news .card-body h4 {
	line-height: 1.4;
}

.card.card-news .card-footer {
	padding: 15px 20px;
	border: 0;
}

.card.card-news .card-footer .action li {
	display: inline-block;
	font-size: 16px;
	line-height: 20px;
}

.card.card-news .card-footer .action li:first-child {
	float: left;
}

.card.card-news .card-footer .action li:last-child {
	float: right;
	margin: 0;
}

.card.card-news .card-footer a {
	color: rgba(255, 255, 255, 0.87);
}

.card.card-news .card-footer a:hover {
	color: #337ab7;
}

.card.card-news.card-darker-for-bg .card-heading {
	background: transparent;
}

.card.card-news-more {
	overflow: hidden;
	height: 412px;
}

.card.card-news-more .card-heading {
	border: 0;
	height: 100%;
	padding: 0;
	-webkit-transition: height 280ms ease-out;
	transition: height 280ms ease-out;
}

.card.card-news-more .card-heading .heading-content {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	z-index: 2;
}

.card.card-news-more .card-heading .heading-content .headline {
	padding-right: 60px;
}

.card.card-news-more .card-heading .heading-content .toggle-card-news-more {
	position: absolute;
	right: 0px;
	bottom: 0;
}

.card.card-news-more .card-body {
	padding: 20px;
	height: calc(100% - 139px);
	background: #fff;
	color: rgba(0, 0, 0, 0.87);
	overflow: auto;
}

.card.card-news-more.card-active .card-heading {
	height: 139px;
}

.card.card-news-more.card-active .card-heading .heading-content .toggle-card-news-more {
	bottom: -42px;
}

.card.card-news-more.card-active .card-heading .heading-content .badge {
	display: none;
}

.card.card-user-simple {
	border: 0;
}

.card.card-user-simple .user-image img {
	width: 100%;
	height: auto;
	border-radius: 3px;
}

.card.card-user-simple .card-body {
	padding: 5px;
}

.card.card-user-simple .card-body small {
	display: block;
	opacity: 0.6;
}

.card.card-user-new {
	border: 0;
	overflow: hidden;
	border-radius: 0;
}

.card.card-user-new .member-image {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.card.card-user-new .card-body {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.2);
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.card.card-user-new .card-body h5 {
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: #fff;
	-webkit-transition: bottom 0.3s;
	transition: bottom 0.3s;
	font-weight: 500;
}

.card.card-user-new .card-body h6 {
	position: absolute;
	left: 20px;
	bottom: -20px;
	color: #fff;
	opacity: 0;
	-webkit-transition: bottom 0.3s;
	transition: bottom 0.3s;
	font-weight: 400;
}

.card.card-user-new .card-body h5 a,
.card.card-user-new .card-body h6 a {
	color: #fff;
}

.card.card-user-new .card-body .social-links {
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.card.card-user-new .card-body .social-links a {
	font-size: 20px;
	color: #fff;
}

.card.card-user-new .card-body .social-links a:hover {
	color: #337ab7;
}

.card.card-user-new:hover .member-image {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: -webkit-transform 1s;
	transition: transform 1s;
}

.card.card-user-new:hover .card-body {
	background: rgba(0, 0, 0, 0.6);
}

.card.card-user-new:hover .card-body h5 {
	bottom: 45px;
}

.card.card-user-new:hover .card-body h6 {
	opacity: 0.6;
	bottom: 20px;
}

.card.card-user-new:hover .card-body .social-links {
	opacity: 1;
}

.card.card-user .card-heading {
	padding: 0;
	background-color: #337ab7;
}

.card.card-user .card-heading .user-image {
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 40px;
	border: 5px solid #fff;
}

.card.card-user .card-heading.heading-left {
	height: 70px;
	margin-bottom: 40px;
}

.card.card-user .card-heading.heading-left .user-image {
	left: 30px;
	top: 30px;
}

.card.card-user .card-heading.heading-left .card-title {
	position: absolute;
	left: 125px;
	top: 25px;
}

.card.card-user .card-heading.heading-left .subhead {
	position: absolute;
	left: 125px;
	top: 75px;
}

.card.card-user .card-heading.heading-center {
	height: 120px;
	margin-bottom: 40px;
}

.card.card-user .card-heading.heading-center .user-image {
	left: 50%;
	top: 80px;
	margin-left: -40px;
}

.card.card-user .card-heading.heading-center .card-title {
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	text-align: center;
}

.card.card-user .card-heading.heading-center .subhead {
	position: absolute;
	top: 44px;
	left: 0;
	width: 100%;
	text-align: center;
}

.card.card-user .card-heading.heading-full .user-image {
	border-radius: 3px 3px 0 0;
	border: 0;
	position: relative;
	width: 100%;
	height: 196px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.card.card-user .card-body .card-title {
	font-size: 24px;
	margin: 0;
	color: rgba(0, 0, 0, 0.87);
}

.card.card-user .card-body .card-title a {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.87);
}

.card.card-user .card-body .card-title a:hover {
	color: #337ab7;
}

.card.card-user .card-body .subhead {
	font-size: 13px;
	margin-bottom: 20px;
	color: rgba(0, 0, 0, 0.87);
}

.card.card-user .card-body .social-links {
	text-align: center;
}

.card.card-user .card-body .social-links li {
	display: inline-block;
	font-size: 18px;
	padding: 0 8px;
}

.card.card-user .card-footer {
	padding: 15px 20px;
}

.card.card-user.card-user-red .card-heading {
	background-color: #f34235;
	color: #ffffff;
}

.card.card-user.card-user-red .card-heading .subhead {
	color: #871108;
}

.card.card-user.card-user-red a {
	color: #f34235;
}

.card.card-user.card-user-red a:hover {
	color: #b7170b;
}

.card.card-user.card-user-pink .card-heading {
	background-color: #e81d62;
	color: #ffffff;
}

.card.card-user.card-user-pink .card-heading .subhead {
	color: #620a28;
}

.card.card-user.card-user-pink a {
	color: #e81d62;
}

.card.card-user.card-user-pink a:hover {
	color: #900f3b;
}

.card.card-user.card-user-purple .card-heading {
	background-color: #9b26af;
	color: #ffffff;
}

.card.card-user.card-user-purple .card-heading .subhead {
	color: #2c0b31;
}

.card.card-user.card-user-purple a {
	color: #9b26af;
}

.card.card-user.card-user-purple a:hover {
	color: #51145b;
}

.card.card-user.card-user-deep-purple .card-heading {
	background-color: #6639b6;
	color: #ffffff;
}

.card.card-user.card-user-deep-purple .card-heading .subhead {
	color: #251541;
}

.card.card-user.card-user-deep-purple a {
	color: #6639b6;
}

.card.card-user.card-user-deep-purple a:hover {
	color: #3a2168;
}

.card.card-user.card-user-indigo .card-heading {
	/*background: url('../images/patterns/pattern-search.png');*/
	background-color: #12728e;
	color: #ffffff;
}

.card.card-user.card-user-indigo .card-heading .subhead {
	color: #ffffff;
}

.card.card-user.card-user-indigo a {
	color: #12728e;
}

.card.card-user.card-user-indigo a:hover {
	color: #12728e;
}

.card.card-user.card-user-blue .card-heading {
	background-color: #2095f2;
	color: #ffffff;
}

.card.card-user.card-user-blue .card-heading .subhead {
	color: #074372;
}

.card.card-user.card-user-blue a {
	color: #2095f2;
}

.card.card-user.card-user-blue a:hover {
	color: #095fa3;
}

.card.card-user.card-user-light-blue .card-heading {
	background-color: #02a8f3;
	color: #ffffff;
}

.card.card-user.card-user-light-blue .card-heading .subhead {
	color: #013f5b;
}

.card.card-user.card-user-light-blue a {
	color: #02a8f3;
}

.card.card-user.card-user-light-blue a:hover {
	color: #01628e;
}

.card.card-user.card-user-cyan .card-heading {
	background-color: #00bbd3;
	color: #ffffff;
}

.card.card-user.card-user-cyan .card-heading .subhead {
	color: #00333a;
}

.card.card-user.card-user-cyan a {
	color: #00bbd3;
}

.card.card-user.card-user-cyan a:hover {
	color: #00616d;
}

.card.card-user.card-user-teal .card-heading {
	background-color: #009587;
	color: #ffffff;
}

.card.card-user.card-user-teal .card-heading .subhead {
	color: #000000;
}

.card.card-user.card-user-teal a {
	color: #009587;
}

.card.card-user.card-user-teal a:hover {
	color: #002f2b;
}

.card.card-user.card-user-green .card-heading {
	background-color: #4bae4f;
	color: #ffffff;
}

.card.card-user.card-user-green .card-heading .subhead {
	color: #1d431e;
}

.card.card-user.card-user-green a {
	color: #4bae4f;
}

.card.card-user.card-user-green a:hover {
	color: #2c672f;
}

.card.card-user.card-user-light-green .card-heading {
	background-color: #8ac249;
	color: #ffffff;
}

.card.card-user.card-user-light-green .card-heading .subhead {
	color: #3b551d;
}

.card.card-user.card-user-light-green a {
	color: #8ac249;
}

.card.card-user.card-user-light-green a:hover {
	color: #567c29;
}

.card.card-user.card-user-lime .card-heading {
	background-color: #ccdb38;
	color: #ffffff;
}

.card.card-user.card-user-lime .card-heading .subhead {
	color: #606713;
}

.card.card-user.card-user-lime a {
	color: #ccdb38;
}

.card.card-user.card-user-lime a:hover {
	color: #87921b;
}

.card.card-user.card-user-yellow .card-heading {
	background-color: #feea3a;
	color: #ffffff;
}

.card.card-user.card-user-yellow .card-heading .subhead {
	color: #9e8e01;
}

.card.card-user.card-user-yellow a {
	color: #feea3a;
}

.card.card-user.card-user-yellow a:hover {
	color: #d1bc01;
}

.card.card-user.card-user-amber .card-heading {
	background-color: #fec006;
	color: #ffffff;
}

.card.card-user.card-user-amber .card-heading .subhead {
	color: #6b5000;
}

.card.card-user.card-user-amber a {
	color: #fec006;
}

.card.card-user.card-user-amber a:hover {
	color: #9d7601;
}

.card.card-user.card-user-orange .card-heading {
	background-color: #f39c12;
	color: #ffffff;
}

.card.card-user.card-user-orange .card-heading .subhead {
	color: #674105;
}

.card.card-user.card-user-orange a {
	color: #f39c12;
}

.card.card-user.card-user-orange a:hover {
	color: #976008;
}

.card.card-user.card-user-deep-orange .card-heading {
	background-color: #fe5621;
	color: #ffffff;
}

.card.card-user.card-user-deep-orange .card-heading .subhead {
	color: #852001;
}

.card.card-user.card-user-deep-orange a {
	color: #fe5621;
}

.card.card-user.card-user-deep-orange a:hover {
	color: #b82d01;
}

.card.card-user.card-user-brown .card-heading {
	background-color: #785447;
	color: rgba(0, 0, 0, 0.87);
}

.card.card-user.card-user-brown .card-heading .subhead {
	color: #18110e;
}

.card.card-user.card-user-brown a {
	color: #785447;
}

.card.card-user.card-user-brown a:hover {
	color: #382721;
}

.card.card-user.card-user-grey .card-heading {
	background-color: #9d9d9d;
	color: #ffffff;
}

.card.card-user.card-user-grey .card-heading .subhead {
	color: #515151;
}

.card.card-user.card-user-grey a {
	color: #9d9d9d;
}

.card.card-user.card-user-grey a:hover {
	color: #6a6a6a;
}

.card.card-user.card-user-blue-grey .card-heading {
	background-color: #5f7c8a;
	color: #ffffff;
}

.card.card-user.card-user-blue-grey .card-heading .subhead {
	color: #212b2f;
}

.card.card-user.card-user-blue-grey a {
	color: #5f7c8a;
}

.card.card-user.card-user-blue-grey a:hover {
	color: #35464e;
}

.card .context {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	padding: 12px 16px;
	background-color: rgba(0, 0, 0, 0.5);
}

.card .context.transparent {
	background-color: rgba(0, 0, 0, 0);
}

.card .context.solid {
	background-color: #000000;
}

.card .context.top {
	top: 0;
	bottom: auto;
}

.card .context.has-action-left .tile-content {
	margin-left: 30px;
}

.card .context.has-action-right .tile-content {
	margin-right: 30px;
}

.card .context .tile-action {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 4px 16px;
	font-size: 20px;
}

.card .context .tile-action.right {
	left: auto;
	right: 0;
}

.card .context .tile-icon {
	font-size: 20px;
}

.card .context .tile-content .text-title {
	display: block;
	line-height: 1;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.card .context .tile-content .text-subtitle {
	display: block;
	font-size: 14px;
	opacity: 0.7;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.card.card-image {
	height: 250px;
}

.card.card-image .card-heading {
	position: absolute;
	right: 30px;
	top: 30px;
	border: 0;
	padding: 0;
}

.card.card-image .card-heading button {
	border-radius: 100%;
	height: 30px;
	width: 30px;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	line-height: 1;
	padding: 5px;
}

.card.card-image .card-heading button:hover {
	background-color: #c0392b;
}

.card.card-image .card-body {
	position: absolute;
	bottom: 30px;
	left: 30px;
	padding: 0;
}

.card.card-image .card-body li {
	margin: 0;
}

.card.card-image .card-body li i {
	margin-right: 5px;
}

.card.card-image .card-body a {
	text-decoration: none;
}

.card.card-social {
	height: 250px;
}

.card.card-social .card-body {
	position: absolute;
	top: 60px;
	padding: 20px;
	font-weight: 300;
}

.card.card-social .card-footer {
	position: absolute;
	bottom: 0;
	left: 5px;
	border: 0;
	font-size: 14px;
}

.card.card-social .card-icon {
	position: absolute;
	left: 20px;
	top: 10px;
	font-size: 40px;
	opacity: 0.2;
}

.card.card-stocks {
	height: 504px;
}

.card.card-stocks .card-heading {
	padding: 0;
	height: 204px;
	border: 0;
	background: #5f7c8a;
}

.card.card-stocks .card-heading .chart {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 84px;
}

.card.card-stocks .card-heading .name {
	position: absolute;
	left: 20px;
	top: 20px;
	font-weight: 300;
	font-size: 24px;
	color: #fff;
}

.card.card-stocks .card-heading .price {
	position: absolute;
	left: 20px;
	top: 55px;
	color: #fff;
	text-align: right;
	opacity: 0.7;
}

.card.card-stocks .card-body {
	height: 300px;
	padding: 0;
	overflow: auto;
}

.card.card-stocks .card-body li {
	clear: both;
	padding: 15px 20px;
	border-bottom: 1px solid #f0f0f0;
}

.card.card-stocks .card-body li .name {
	display: inline;
	font-weight: 300;
}

.card.card-stocks .card-body li .price {
	display: inline;
	float: right;
}

.card.card-stocks .card-body li:last-child {
	border-bottom-color: transparent;
}

.card.card-stocks .card-body li:hover {
	background: rgba(240, 240, 240, 0.2);
}

.card.card-stocks.material-animate .animate-item {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.card.card-stocks.material-animated .animate-item {
	-webkit-animation: display 0.5s cubic-bezier(0.55, 0, 0.1, 1) forwards;
	animation: display 0.5s cubic-bezier(0.55, 0, 0.1, 1) forwards;
}

.card.card-stocks.material-animated .animate-item:nth-child(1) {
	-webkit-animation-delay: 900ms;
	animation-delay: 900ms;
}

.card.card-stocks.material-animated .animate-item:nth-child(2) {
	-webkit-animation-delay: 950ms;
	animation-delay: 950ms;
}

.card.card-stocks.material-animated .animate-item:nth-child(3) {
	-webkit-animation-delay: 1000ms;
	animation-delay: 1000ms;
}

.card.card-stocks.material-animated .animate-item:nth-child(4) {
	-webkit-animation-delay: 1050ms;
	animation-delay: 1050ms;
}

.card.card-stocks.material-animated .animate-item:nth-child(5) {
	-webkit-animation-delay: 1100ms;
	animation-delay: 1100ms;
}

.card.card-weather {
	height: 504px;
}

.card.card-weather .card-heading {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	border: 0;
}

.card.card-weather .card-body {
	height: 360px;
	padding: 20px;
}

.card.card-weather .card-body .forecast-container {
	position: relative;
	z-index: 1;
}

.card.card-weather .card-body .forecast-container .temparature {
	font-size: 60px;
	font-weight: 300;
}

.card.card-weather .card-body .forecast-container .forecast {
	font-weight: 300;
}

.card.card-weather .card-footer {
	background: rgba(0, 0, 0, 0.7);
	height: 144px;
	border: 0;
}

.card.card-weather .card-footer li {
	text-align: center;
}

.card.card-weather .card-footer li:nth-child(1) {
	font-size: 14px;
	margin-bottom: 14px;
	opacity: 0.5;
}

.card.card-weather .card-footer li:nth-child(2) {
	font-size: 24px;
	margin-bottom: 10px;
}

.card.card-weather.material-animate .animate-item {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.card.card-weather.material-animated .animate-item {
	-webkit-animation: display 0.5s cubic-bezier(0.55, 0, 0.1, 1) forwards;
	animation: display 0.5s cubic-bezier(0.55, 0, 0.1, 1) forwards;
}

.card.card-weather.material-animated .animate-item:nth-child(1) {
	-webkit-animation-delay: 600ms;
	animation-delay: 600ms;
}

.card.card-weather.material-animated .animate-item:nth-child(2) {
	-webkit-animation-delay: 650ms;
	animation-delay: 650ms;
}

.card.card-weather.material-animated .animate-item:nth-child(3) {
	-webkit-animation-delay: 700ms;
	animation-delay: 700ms;
}

.card.card-weather.material-animated .animate-item:nth-child(4) {
	-webkit-animation-delay: 750ms;
	animation-delay: 750ms;
}

.card.card-weather.material-animated .animate-item:nth-child(5) {
	-webkit-animation-delay: 800ms;
	animation-delay: 800ms;
}

.card.card-weather.material-animated .animate-item:nth-child(6) {
	-webkit-animation-delay: 850ms;
	animation-delay: 850ms;
}

.card.card-quote .card-body {
	padding: 40px;
}

.card.card-quote .card-body .quote {
	position: relative;
	font-size: 18px;
	text-align: center;
}

.card.card-quote .card-body .quote .fa-quote-left {
	position: absolute;
	left: -20px;
	top: 0px;
	opacity: 0.5;
}

.card.card-quote .card-body .quote .fa-quote-right {
	position: absolute;
	right: -20px;
	bottom: 0px;
	opacity: 0.5;
}

.card.card-quote .card-body .author {
	font-size: 14px;
	font-style: italic;
	display: block;
	text-align: right;
}

.card.card-iconic {
	overflow: hidden;
}

.card.card-iconic .card-full-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -100px;
	margin-top: -100px;
	font-size: 200px;
	opacity: 0.3;
	color: #fff;
}

.card.card-iconic .card-body {
	text-align: center;
	padding: 30px 20px;
	color: #fff;
}

.card.card-iconic .card-body .card-icon {
	font-size: 30px;
}

.card.card-iconic .card-body h4 {
	margin-top: 0;
	color: rgba(255, 255, 255, 0.74);
}

.card.card-iconic .card-body p {
	font-size: 16px;
	opacity: 0.8;
}

.card.card-iconic .card-body.text-left {
	text-align: left;
}

.card.card-iconic .card-body.text-right {
	text-align: right;
}

.card.card-event .card-heading {
	height: 150px;
	border: 0;
	padding: 0;
}

.card.card-event .card-body h4 {
	margin-bottom: 20px;
}

.card.card-event .card-body .calendar {
	position: absolute;
	top: -25px;
	right: 30px;
	border: 1px solid #c0392b;
	border-radius: 3px;
}

.card.card-event .card-body .calendar .month {
	padding: 1px 6px;
	font-size: 13px;
	background-color: #c0392b;
	border-bottom: 1px solid #c0392b;
	text-align: center;
	color: #fff;
}

.card.card-event .card-body .calendar .date {
	font-size: 18px;
	text-align: center;
	color: #c0392b;
}

.card.card-event .card-footer {
	padding: 15px 20px;
}

.card.card-event .card-footer .users li {
	display: inline-block;
	margin: 0;
}

.card.card-event .card-footer .users li img {
	width: 32px;
	height: 32px;
	border-radius: 16px;
}

.card.card-post {
	border: 1px solid #f0f0f0;
}

.card.card-post .card-heading {
	padding: 20px 20px 10px 20px;
	border-bottom: 0;
}

.card.card-post .card-heading .user-image {
	float: left;
	margin: 1px 10px 0 0;
	border-radius: 3px;
	width: 40px;
	height: 40px;
}

.card.card-post .card-heading .author {
	margin: 0;
	font-size: 16px;
	line-height: 18px;
}

.card.card-post .card-heading .author a {
	font-weight: bold;
}

.card.card-post .card-heading .time {
	margin: 0;
	font-size: 14px;
	color: #999;
}

.card.card-post .card-body {
	padding: 5px 20px 0 20px;
}

.card.card-post .card-body .post-single-image {
	position: relative;
	width: 100%;
	height: auto;
	margin: 5px auto;
	border-radius: 3px;
	border: 1px solid #f0f0f0;
}

.card.card-post .card-body .post-video {
	position: relative;
}

.card.card-post .card-body .post-video:after {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	margin-top: -50px;
	font-family: 'FontAwesome';
	content: '\f04b';
	font-size: 50px;
	color: #fff;
}

.card.card-post .card-body .post-video:hover:after {
	color: #337ab7;
}

.card.card-post .card-footer {
	padding: 10px 20px;
	background: #fff;
}

.card.card-post .post-action {
	display: block;
	margin: 10px 0;
}

.card.card-post .post-action li {
	display: inline-block;
	font-size: 13px;
}

.card.card-post .post-action li:after {
	margin: 0 2px 0 5px;
	content: '-';
}

.card.card-post .post-action li:last-child:after {
	content: '';
}

.card.card-post .post-likers {
	font-size: 13px;
	margin: 5px 0 10px 0;
}

.card.card-music .card-heading {
	border: 0;
	padding: 0;
}

.card.card-music .card-heading .song-container {
	position: absolute;
	bottom: 20px;
	right: 20px;
	left: 75px;
	z-index: 2;
}

.card.card-music .card-heading .song-container .artist {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
}

.card.card-music .card-heading .song-container .song {
	line-height: 22px;
	margin: 0;
}

.card.card-music .card-heading button {
	border-radius: 100%;
	height: 30px;
	width: 30px;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	line-height: 23px;
	padding: 3px;
}

.card.card-music .card-heading button.btn-heart {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 3;
}

.card.card-music .card-heading button:hover {
	background-color: #c0392b;
}

.card.card-music .card-heading button.btn-list-songs {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 3;
}

.card.card-music .card-heading button.btn-list-songs .icon-list {
	margin: 0;
}

.card.card-music .card-heading button.btn-list-songs .icon-close {
	display: none;
}

.card.card-music .audiojs .play-pause .play,
.card.card-music .audiojs .play-pause .pause,
.card.card-music .audiojs .play-pause .loading {
	background: #337ab7;
}

.card.card-music .audiojs .scrubber .progress {
	background: #337ab7;
	box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
}

.card.card-music.card-music-bar-top .scrubber {
	bottom: auto;
	top: 0;
}

.card.card-music.card-music-bar-full .play-pause {
	width: 40px;
	height: 40px;
}

.card.card-music.card-music-bar-full .scrubber {
	z-index: 1;
	height: 100%;
}

.card.card-music.card-music-bar-full .scrubber .progress {
	height: 100%;
	background: rgba(51, 122, 183, 0.2);
}

.card.card-music.card-music-bar-full .scrubber .loaded {
	height: 100%;
	background: transparent;
}

.card.card-music.card-music-centered .play-pause {
	left: 50%;
	top: 50%;
	bottom: auto;
	margin: -20px 0 0 -20px;
	width: 40px;
	height: 40px;
}

.card.card-music.card-music-centered .play-pause .play,
.card.card-music.card-music-centered .play-pause .pause,
.card.card-music.card-music-centered .play-pause .loading,
.card.card-music.card-music-centered .play-pause .error {
	top: 0;
	left: 0;
	bottom: auto;
}

.card.card-music.card-music-centered .song-container {
	left: 0;
	width: 100%;
}

.card.card-music.card-music-centered .song-container .artist,
.card.card-music.card-music-centered .song-container .song {
	text-align: center;
}

.card.card-music.card-player-red .audiojs .scrubber .progress {
	background: #f34235;
}

.card.card-music.card-player-red .audiojs .play-pause .play,
.card.card-music.card-player-red .audiojs .play-pause .pause,
.card.card-music.card-player-red .audiojs .play-pause .loading {
	background: #f34235;
	color: #ffffff;
}

.card.card-music.card-player-red.card-music-bar-full .scrubber .progress {
	background: rgba(243, 66, 53, 0.5);
}

.card.card-music.card-player-red.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(243, 66, 53, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-red.card-music-basic {
	background-color: #f34235;
}

.card.card-music.card-player-pink .audiojs .scrubber .progress {
	background: #e81d62;
}

.card.card-music.card-player-pink .audiojs .play-pause .play,
.card.card-music.card-player-pink .audiojs .play-pause .pause,
.card.card-music.card-player-pink .audiojs .play-pause .loading {
	background: #e81d62;
	color: #ffffff;
}

.card.card-music.card-player-pink.card-music-bar-full .scrubber .progress {
	background: rgba(232, 29, 98, 0.5);
}

.card.card-music.card-player-pink.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(232, 29, 98, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-pink.card-music-basic {
	background-color: #e81d62;
}

.card.card-music.card-player-purple .audiojs .scrubber .progress {
	background: #9b26af;
}

.card.card-music.card-player-purple .audiojs .play-pause .play,
.card.card-music.card-player-purple .audiojs .play-pause .pause,
.card.card-music.card-player-purple .audiojs .play-pause .loading {
	background: #9b26af;
	color: #ffffff;
}

.card.card-music.card-player-purple.card-music-bar-full .scrubber .progress {
	background: rgba(155, 38, 175, 0.5);
}

.card.card-music.card-player-purple.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(155, 38, 175, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-purple.card-music-basic {
	background-color: #9b26af;
}

.card.card-music.card-player-deep-purple .audiojs .scrubber .progress {
	background: #6639b6;
}

.card.card-music.card-player-deep-purple .audiojs .play-pause .play,
.card.card-music.card-player-deep-purple .audiojs .play-pause .pause,
.card.card-music.card-player-deep-purple .audiojs .play-pause .loading {
	background: #6639b6;
	color: #ffffff;
}

.card.card-music.card-player-deep-purple.card-music-bar-full .scrubber .progress {
	background: rgba(102, 57, 182, 0.5);
}

.card.card-music.card-player-deep-purple.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(102, 57, 182, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-deep-purple.card-music-basic {
	background-color: #6639b6;
}

.card.card-music.card-player-indigo .audiojs .scrubber .progress {
	background: #3e50b4;
}

.card.card-music.card-player-indigo .audiojs .play-pause .play,
.card.card-music.card-player-indigo .audiojs .play-pause .pause,
.card.card-music.card-player-indigo .audiojs .play-pause .loading {
	background: #3e50b4;
	color: #ffffff;
}

.card.card-music.card-player-indigo.card-music-bar-full .scrubber .progress {
	background: rgba(62, 80, 180, 0.5);
}

.card.card-music.card-player-indigo.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(62, 80, 180, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-indigo.card-music-basic {
	background-color: #3e50b4;
}

.card.card-music.card-player-blue .audiojs .scrubber .progress {
	background: #2095f2;
}

.card.card-music.card-player-blue .audiojs .play-pause .play,
.card.card-music.card-player-blue .audiojs .play-pause .pause,
.card.card-music.card-player-blue .audiojs .play-pause .loading {
	background: #2095f2;
	color: #ffffff;
}

.card.card-music.card-player-blue.card-music-bar-full .scrubber .progress {
	background: rgba(32, 149, 242, 0.5);
}

.card.card-music.card-player-blue.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(32, 149, 242, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-blue.card-music-basic {
	background-color: #2095f2;
}

.card.card-music.card-player-light-blue .audiojs .scrubber .progress {
	background: #02a8f3;
}

.card.card-music.card-player-light-blue .audiojs .play-pause .play,
.card.card-music.card-player-light-blue .audiojs .play-pause .pause,
.card.card-music.card-player-light-blue .audiojs .play-pause .loading {
	background: #02a8f3;
	color: #ffffff;
}

.card.card-music.card-player-light-blue.card-music-bar-full .scrubber .progress {
	background: rgba(2, 168, 243, 0.5);
}

.card.card-music.card-player-light-blue.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(2, 168, 243, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-light-blue.card-music-basic {
	background-color: #02a8f3;
}

.card.card-music.card-player-cyan .audiojs .scrubber .progress {
	background: #00bbd3;
}

.card.card-music.card-player-cyan .audiojs .play-pause .play,
.card.card-music.card-player-cyan .audiojs .play-pause .pause,
.card.card-music.card-player-cyan .audiojs .play-pause .loading {
	background: #00bbd3;
	color: #ffffff;
}

.card.card-music.card-player-cyan.card-music-bar-full .scrubber .progress {
	background: rgba(0, 187, 211, 0.5);
}

.card.card-music.card-player-cyan.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(0, 187, 211, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-cyan.card-music-basic {
	background-color: #00bbd3;
}

.card.card-music.card-player-teal .audiojs .scrubber .progress {
	background: #009587;
}

.card.card-music.card-player-teal .audiojs .play-pause .play,
.card.card-music.card-player-teal .audiojs .play-pause .pause,
.card.card-music.card-player-teal .audiojs .play-pause .loading {
	background: #009587;
	color: #ffffff;
}

.card.card-music.card-player-teal.card-music-bar-full .scrubber .progress {
	background: rgba(0, 149, 135, 0.5);
}

.card.card-music.card-player-teal.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(0, 149, 135, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-teal.card-music-basic {
	background-color: #009587;
}

.card.card-music.card-player-green .audiojs .scrubber .progress {
	background: #4bae4f;
}

.card.card-music.card-player-green .audiojs .play-pause .play,
.card.card-music.card-player-green .audiojs .play-pause .pause,
.card.card-music.card-player-green .audiojs .play-pause .loading {
	background: #4bae4f;
	color: #ffffff;
}

.card.card-music.card-player-green.card-music-bar-full .scrubber .progress {
	background: rgba(75, 174, 79, 0.5);
}

.card.card-music.card-player-green.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(75, 174, 79, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-green.card-music-basic {
	background-color: #4bae4f;
}

.card.card-music.card-player-light-green .audiojs .scrubber .progress {
	background: #8ac249;
}

.card.card-music.card-player-light-green .audiojs .play-pause .play,
.card.card-music.card-player-light-green .audiojs .play-pause .pause,
.card.card-music.card-player-light-green .audiojs .play-pause .loading {
	background: #8ac249;
	color: #ffffff;
}

.card.card-music.card-player-light-green.card-music-bar-full .scrubber .progress {
	background: rgba(138, 194, 73, 0.5);
}

.card.card-music.card-player-light-green.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(138, 194, 73, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-light-green.card-music-basic {
	background-color: #8ac249;
}

.card.card-music.card-player-lime .audiojs .scrubber .progress {
	background: #ccdb38;
}

.card.card-music.card-player-lime .audiojs .play-pause .play,
.card.card-music.card-player-lime .audiojs .play-pause .pause,
.card.card-music.card-player-lime .audiojs .play-pause .loading {
	background: #ccdb38;
	color: #ffffff;
}

.card.card-music.card-player-lime.card-music-bar-full .scrubber .progress {
	background: rgba(204, 219, 56, 0.5);
}

.card.card-music.card-player-lime.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(204, 219, 56, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-lime.card-music-basic {
	background-color: #ccdb38;
}

.card.card-music.card-player-yellow .audiojs .scrubber .progress {
	background: #feea3a;
}

.card.card-music.card-player-yellow .audiojs .play-pause .play,
.card.card-music.card-player-yellow .audiojs .play-pause .pause,
.card.card-music.card-player-yellow .audiojs .play-pause .loading {
	background: #feea3a;
	color: #ffffff;
}

.card.card-music.card-player-yellow.card-music-bar-full .scrubber .progress {
	background: rgba(254, 234, 58, 0.5);
}

.card.card-music.card-player-yellow.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(254, 234, 58, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-yellow.card-music-basic {
	background-color: #feea3a;
}

.card.card-music.card-player-amber .audiojs .scrubber .progress {
	background: #fec006;
}

.card.card-music.card-player-amber .audiojs .play-pause .play,
.card.card-music.card-player-amber .audiojs .play-pause .pause,
.card.card-music.card-player-amber .audiojs .play-pause .loading {
	background: #fec006;
	color: #ffffff;
}

.card.card-music.card-player-amber.card-music-bar-full .scrubber .progress {
	background: rgba(254, 192, 6, 0.5);
}

.card.card-music.card-player-amber.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(254, 192, 6, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-amber.card-music-basic {
	background-color: #fec006;
}

.card.card-music.card-player-orange .audiojs .scrubber .progress {
	background: #f39c12;
}

.card.card-music.card-player-orange .audiojs .play-pause .play,
.card.card-music.card-player-orange .audiojs .play-pause .pause,
.card.card-music.card-player-orange .audiojs .play-pause .loading {
	background: #f39c12;
	color: #ffffff;
}

.card.card-music.card-player-orange.card-music-bar-full .scrubber .progress {
	background: rgba(243, 156, 18, 0.5);
}

.card.card-music.card-player-orange.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(243, 156, 18, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-orange.card-music-basic {
	background-color: #f39c12;
}

.card.card-music.card-player-deep-orange .audiojs .scrubber .progress {
	background: #fe5621;
}

.card.card-music.card-player-deep-orange .audiojs .play-pause .play,
.card.card-music.card-player-deep-orange .audiojs .play-pause .pause,
.card.card-music.card-player-deep-orange .audiojs .play-pause .loading {
	background: #fe5621;
	color: #ffffff;
}

.card.card-music.card-player-deep-orange.card-music-bar-full .scrubber .progress {
	background: rgba(254, 86, 33, 0.5);
}

.card.card-music.card-player-deep-orange.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(254, 86, 33, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-deep-orange.card-music-basic {
	background-color: #fe5621;
}

.card.card-music.card-player-brown .audiojs .scrubber .progress {
	background: #785447;
}

.card.card-music.card-player-brown .audiojs .play-pause .play,
.card.card-music.card-player-brown .audiojs .play-pause .pause,
.card.card-music.card-player-brown .audiojs .play-pause .loading {
	background: #785447;
	color: rgba(0, 0, 0, 0.87);
}

.card.card-music.card-player-brown.card-music-bar-full .scrubber .progress {
	background: rgba(120, 84, 71, 0.5);
}

.card.card-music.card-player-brown.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(120, 84, 71, 0.5);
	color: rgba(0, 0, 0, 0.87);
}

.card.card-music.card-player-brown.card-music-basic {
	background-color: #785447;
}

.card.card-music.card-player-grey .audiojs .scrubber .progress {
	background: #9d9d9d;
}

.card.card-music.card-player-grey .audiojs .play-pause .play,
.card.card-music.card-player-grey .audiojs .play-pause .pause,
.card.card-music.card-player-grey .audiojs .play-pause .loading {
	background: #9d9d9d;
	color: #ffffff;
}

.card.card-music.card-player-grey.card-music-bar-full .scrubber .progress {
	background: rgba(157, 157, 157, 0.5);
}

.card.card-music.card-player-grey.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(157, 157, 157, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-grey.card-music-basic {
	background-color: #9d9d9d;
}

.card.card-music.card-player-blue-grey .audiojs .scrubber .progress {
	background: #5f7c8a;
}

.card.card-music.card-player-blue-grey .audiojs .play-pause .play,
.card.card-music.card-player-blue-grey .audiojs .play-pause .pause,
.card.card-music.card-player-blue-grey .audiojs .play-pause .loading {
	background: #5f7c8a;
	color: #ffffff;
}

.card.card-music.card-player-blue-grey.card-music-bar-full .scrubber .progress {
	background: rgba(95, 124, 138, 0.5);
}

.card.card-music.card-player-blue-grey.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(95, 124, 138, 0.5);
	color: #ffffff;
}

.card.card-music.card-player-blue-grey.card-music-basic {
	background-color: #5f7c8a;
}

.card.card-music-single {
	height: 250px;
}

.card.card-music-single .card-heading {
	height: 100%;
}

.card.card-music-basic {
	height: 80px;
}

.card.card-music-basic .card-heading {
	height: 100%;
}

.card.card-music-list .card-heading {
	position: relative;
	height: 300px;
}

.card.card-music-list .card-heading .list-songs {
	position: relative;
	z-index: 2;
	display: none;
	width: 100%;
	height: 300px;
	background: rgba(0, 0, 0, 0.5);
	padding: 15px 70px 25px 70px;
	overflow: auto;
}

.card.card-music-list .card-heading .list-songs li {
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card.card-music-list .card-heading .list-songs li a {
	display: block;
	padding: 5px 20px 5px 5px;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
}

.card.card-music-list .card-heading .list-songs li a i {
	margin-right: 5px;
}

.card.card-music-list .card-heading .list-songs li a:hover {
	background: rgba(51, 122, 183, 0.2);
}

.card.card-music-list .card-body {
	background: #fff;
	color: initial;
}

.card.card-music-list .card-footer {
	background: #fff;
	padding: 15px 20px;
}

.card.card-music-list.collapsed .list-songs {
	display: block;
}

.card.card-music-list.collapsed .card-heading .btn-list-songs .icon-list {
	display: none;
}

.card.card-music-list.collapsed .card-heading .btn-list-songs .icon-close {
	display: block;
}

.card.card-music-list.collapsed .card-heading .btn-heart,
.card.card-music-list.collapsed .card-heading .song-container,
.card.card-music-list.collapsed .card-heading .audiojs {
	display: none;
}

.card.card-video .card-heading {
	padding: 0;
}

.card.card-video .card-footer {
	padding: 15px 20px;
}

.card.card-video .vjs-default-skin {
	color: #fff;
}

.card.card-video .vjs-default-skin .vjs-play-progress {
	background-color: #337ab7;
}

.card.card-video .vjs-default-skin .vjs-volume-level {
	background-color: #337ab7;
}

.card.card-video .vjs-default-skin .vjs-big-play-button {
	border-color: #337ab7;
	color: #337ab7;
}

.card.card-video .vjs-default-skin .vjs-control:hover:before {
	color: #337ab7;
}

.card.card-video .vjs-default-skin:hover .vjs-big-play-button {
	background-color: #337ab7;
	color: #fff;
	border-color: #fff;
}

.card.card-video .play-button-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.card.card-video .play-button-container .play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border: 3px solid #337ab7;
	border-radius: 100%;
	color: #337ab7;
	background-color: rgba(0, 0, 0, 0.7);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	text-align: center;
	font-size: 30px;
}

.card.card-video .play-button-container .play-button:before {
	position: absolute;
	top: 4px;
	left: 3px;
	width: 100%;
	height: 100%;
	font-family: 'VideoJS';
	content: '\e001';
}

.card.card-video .play-button-container:hover .play-button {
	background-color: #337ab7;
	color: #fff;
	border-color: #fff;
}

.card.card-video.card-player-red .play-button-container .play-button {
	border-color: #f34235;
	color: #f34235;
}

.card.card-video.card-player-red .play-button-container:hover .play-button {
	background: #f34235;
	color: #ffffff;
}

.card.card-video.card-player-red .vjs-default-skin .vjs-big-play-button {
	border-color: #f34235;
	color: #f34235;
}

.card.card-video.card-player-red .vjs-default-skin .vjs-volume-level {
	background-color: #f34235;
}

.card.card-video.card-player-red .vjs-default-skin .vjs-play-progress {
	background-color: #f34235;
}

.card.card-video.card-player-red .vjs-default-skin .vjs-control:hover {
	color: #f34235;
}

.card.card-video.card-player-red .vjs-default-skin .vjs-control:hover:before {
	color: #f34235;
}

.card.card-video.card-player-red .vjs-default-skin:hover .vjs-big-play-button {
	background: #f34235;
	color: #ffffff;
}

.card.card-video.card-player-pink .play-button-container .play-button {
	border-color: #e81d62;
	color: #e81d62;
}

.card.card-video.card-player-pink .play-button-container:hover .play-button {
	background: #e81d62;
	color: #ffffff;
}

.card.card-video.card-player-pink .vjs-default-skin .vjs-big-play-button {
	border-color: #e81d62;
	color: #e81d62;
}

.card.card-video.card-player-pink .vjs-default-skin .vjs-volume-level {
	background-color: #e81d62;
}

.card.card-video.card-player-pink .vjs-default-skin .vjs-play-progress {
	background-color: #e81d62;
}

.card.card-video.card-player-pink .vjs-default-skin .vjs-control:hover {
	color: #e81d62;
}

.card.card-video.card-player-pink .vjs-default-skin .vjs-control:hover:before {
	color: #e81d62;
}

.card.card-video.card-player-pink .vjs-default-skin:hover .vjs-big-play-button {
	background: #e81d62;
	color: #ffffff;
}

.card.card-video.card-player-purple .play-button-container .play-button {
	border-color: #9b26af;
	color: #9b26af;
}

.card.card-video.card-player-purple .play-button-container:hover .play-button {
	background: #9b26af;
	color: #ffffff;
}

.card.card-video.card-player-purple .vjs-default-skin .vjs-big-play-button {
	border-color: #9b26af;
	color: #9b26af;
}

.card.card-video.card-player-purple .vjs-default-skin .vjs-volume-level {
	background-color: #9b26af;
}

.card.card-video.card-player-purple .vjs-default-skin .vjs-play-progress {
	background-color: #9b26af;
}

.card.card-video.card-player-purple .vjs-default-skin .vjs-control:hover {
	color: #9b26af;
}

.card.card-video.card-player-purple .vjs-default-skin .vjs-control:hover:before {
	color: #9b26af;
}

.card.card-video.card-player-purple .vjs-default-skin:hover .vjs-big-play-button {
	background: #9b26af;
	color: #ffffff;
}

.card.card-video.card-player-deep-purple .play-button-container .play-button {
	border-color: #6639b6;
	color: #6639b6;
}

.card.card-video.card-player-deep-purple .play-button-container:hover .play-button {
	background: #6639b6;
	color: #ffffff;
}

.card.card-video.card-player-deep-purple .vjs-default-skin .vjs-big-play-button {
	border-color: #6639b6;
	color: #6639b6;
}

.card.card-video.card-player-deep-purple .vjs-default-skin .vjs-volume-level {
	background-color: #6639b6;
}

.card.card-video.card-player-deep-purple .vjs-default-skin .vjs-play-progress {
	background-color: #6639b6;
}

.card.card-video.card-player-deep-purple .vjs-default-skin .vjs-control:hover {
	color: #6639b6;
}

.card.card-video.card-player-deep-purple .vjs-default-skin .vjs-control:hover:before {
	color: #6639b6;
}

.card.card-video.card-player-deep-purple .vjs-default-skin:hover .vjs-big-play-button {
	background: #6639b6;
	color: #ffffff;
}

.card.card-video.card-player-indigo .play-button-container .play-button {
	border-color: #3e50b4;
	color: #3e50b4;
}

.card.card-video.card-player-indigo .play-button-container:hover .play-button {
	background: #3e50b4;
	color: #ffffff;
}

.card.card-video.card-player-indigo .vjs-default-skin .vjs-big-play-button {
	border-color: #3e50b4;
	color: #3e50b4;
}

.card.card-video.card-player-indigo .vjs-default-skin .vjs-volume-level {
	background-color: #3e50b4;
}

.card.card-video.card-player-indigo .vjs-default-skin .vjs-play-progress {
	background-color: #3e50b4;
}

.card.card-video.card-player-indigo .vjs-default-skin .vjs-control:hover {
	color: #3e50b4;
}

.card.card-video.card-player-indigo .vjs-default-skin .vjs-control:hover:before {
	color: #3e50b4;
}

.card.card-video.card-player-indigo .vjs-default-skin:hover .vjs-big-play-button {
	background: #3e50b4;
	color: #ffffff;
}

.card.card-video.card-player-blue .play-button-container .play-button {
	border-color: #2095f2;
	color: #2095f2;
}

.card.card-video.card-player-blue .play-button-container:hover .play-button {
	background: #2095f2;
	color: #ffffff;
}

.card.card-video.card-player-blue .vjs-default-skin .vjs-big-play-button {
	border-color: #2095f2;
	color: #2095f2;
}

.card.card-video.card-player-blue .vjs-default-skin .vjs-volume-level {
	background-color: #2095f2;
}

.card.card-video.card-player-blue .vjs-default-skin .vjs-play-progress {
	background-color: #2095f2;
}

.card.card-video.card-player-blue .vjs-default-skin .vjs-control:hover {
	color: #2095f2;
}

.card.card-video.card-player-blue .vjs-default-skin .vjs-control:hover:before {
	color: #2095f2;
}

.card.card-video.card-player-blue .vjs-default-skin:hover .vjs-big-play-button {
	background: #2095f2;
	color: #ffffff;
}

.card.card-video.card-player-light-blue .play-button-container .play-button {
	border-color: #02a8f3;
	color: #02a8f3;
}

.card.card-video.card-player-light-blue .play-button-container:hover .play-button {
	background: #02a8f3;
	color: #ffffff;
}

.card.card-video.card-player-light-blue .vjs-default-skin .vjs-big-play-button {
	border-color: #02a8f3;
	color: #02a8f3;
}

.card.card-video.card-player-light-blue .vjs-default-skin .vjs-volume-level {
	background-color: #02a8f3;
}

.card.card-video.card-player-light-blue .vjs-default-skin .vjs-play-progress {
	background-color: #02a8f3;
}

.card.card-video.card-player-light-blue .vjs-default-skin .vjs-control:hover {
	color: #02a8f3;
}

.card.card-video.card-player-light-blue .vjs-default-skin .vjs-control:hover:before {
	color: #02a8f3;
}

.card.card-video.card-player-light-blue .vjs-default-skin:hover .vjs-big-play-button {
	background: #02a8f3;
	color: #ffffff;
}

.card.card-video.card-player-cyan .play-button-container .play-button {
	border-color: #00bbd3;
	color: #00bbd3;
}

.card.card-video.card-player-cyan .play-button-container:hover .play-button {
	background: #00bbd3;
	color: #ffffff;
}

.card.card-video.card-player-cyan .vjs-default-skin .vjs-big-play-button {
	border-color: #00bbd3;
	color: #00bbd3;
}

.card.card-video.card-player-cyan .vjs-default-skin .vjs-volume-level {
	background-color: #00bbd3;
}

.card.card-video.card-player-cyan .vjs-default-skin .vjs-play-progress {
	background-color: #00bbd3;
}

.card.card-video.card-player-cyan .vjs-default-skin .vjs-control:hover {
	color: #00bbd3;
}

.card.card-video.card-player-cyan .vjs-default-skin .vjs-control:hover:before {
	color: #00bbd3;
}

.card.card-video.card-player-cyan .vjs-default-skin:hover .vjs-big-play-button {
	background: #00bbd3;
	color: #ffffff;
}

.card.card-video.card-player-teal .play-button-container .play-button {
	border-color: #009587;
	color: #009587;
}

.card.card-video.card-player-teal .play-button-container:hover .play-button {
	background: #009587;
	color: #ffffff;
}

.card.card-video.card-player-teal .vjs-default-skin .vjs-big-play-button {
	border-color: #009587;
	color: #009587;
}

.card.card-video.card-player-teal .vjs-default-skin .vjs-volume-level {
	background-color: #009587;
}

.card.card-video.card-player-teal .vjs-default-skin .vjs-play-progress {
	background-color: #009587;
}

.card.card-video.card-player-teal .vjs-default-skin .vjs-control:hover {
	color: #009587;
}

.card.card-video.card-player-teal .vjs-default-skin .vjs-control:hover:before {
	color: #009587;
}

.card.card-video.card-player-teal .vjs-default-skin:hover .vjs-big-play-button {
	background: #009587;
	color: #ffffff;
}

.card.card-video.card-player-green .play-button-container .play-button {
	border-color: #4bae4f;
	color: #4bae4f;
}

.card.card-video.card-player-green .play-button-container:hover .play-button {
	background: #4bae4f;
	color: #ffffff;
}

.card.card-video.card-player-green .vjs-default-skin .vjs-big-play-button {
	border-color: #4bae4f;
	color: #4bae4f;
}

.card.card-video.card-player-green .vjs-default-skin .vjs-volume-level {
	background-color: #4bae4f;
}

.card.card-video.card-player-green .vjs-default-skin .vjs-play-progress {
	background-color: #4bae4f;
}

.card.card-video.card-player-green .vjs-default-skin .vjs-control:hover {
	color: #4bae4f;
}

.card.card-video.card-player-green .vjs-default-skin .vjs-control:hover:before {
	color: #4bae4f;
}

.card.card-video.card-player-green .vjs-default-skin:hover .vjs-big-play-button {
	background: #4bae4f;
	color: #ffffff;
}

.card.card-video.card-player-light-green .play-button-container .play-button {
	border-color: #8ac249;
	color: #8ac249;
}

.card.card-video.card-player-light-green .play-button-container:hover .play-button {
	background: #8ac249;
	color: #ffffff;
}

.card.card-video.card-player-light-green .vjs-default-skin .vjs-big-play-button {
	border-color: #8ac249;
	color: #8ac249;
}

.card.card-video.card-player-light-green .vjs-default-skin .vjs-volume-level {
	background-color: #8ac249;
}

.card.card-video.card-player-light-green .vjs-default-skin .vjs-play-progress {
	background-color: #8ac249;
}

.card.card-video.card-player-light-green .vjs-default-skin .vjs-control:hover {
	color: #8ac249;
}

.card.card-video.card-player-light-green .vjs-default-skin .vjs-control:hover:before {
	color: #8ac249;
}

.card.card-video.card-player-light-green .vjs-default-skin:hover .vjs-big-play-button {
	background: #8ac249;
	color: #ffffff;
}

.card.card-video.card-player-lime .play-button-container .play-button {
	border-color: #ccdb38;
	color: #ccdb38;
}

.card.card-video.card-player-lime .play-button-container:hover .play-button {
	background: #ccdb38;
	color: #ffffff;
}

.card.card-video.card-player-lime .vjs-default-skin .vjs-big-play-button {
	border-color: #ccdb38;
	color: #ccdb38;
}

.card.card-video.card-player-lime .vjs-default-skin .vjs-volume-level {
	background-color: #ccdb38;
}

.card.card-video.card-player-lime .vjs-default-skin .vjs-play-progress {
	background-color: #ccdb38;
}

.card.card-video.card-player-lime .vjs-default-skin .vjs-control:hover {
	color: #ccdb38;
}

.card.card-video.card-player-lime .vjs-default-skin .vjs-control:hover:before {
	color: #ccdb38;
}

.card.card-video.card-player-lime .vjs-default-skin:hover .vjs-big-play-button {
	background: #ccdb38;
	color: #ffffff;
}

.card.card-video.card-player-yellow .play-button-container .play-button {
	border-color: #feea3a;
	color: #feea3a;
}

.card.card-video.card-player-yellow .play-button-container:hover .play-button {
	background: #feea3a;
	color: #ffffff;
}

.card.card-video.card-player-yellow .vjs-default-skin .vjs-big-play-button {
	border-color: #feea3a;
	color: #feea3a;
}

.card.card-video.card-player-yellow .vjs-default-skin .vjs-volume-level {
	background-color: #feea3a;
}

.card.card-video.card-player-yellow .vjs-default-skin .vjs-play-progress {
	background-color: #feea3a;
}

.card.card-video.card-player-yellow .vjs-default-skin .vjs-control:hover {
	color: #feea3a;
}

.card.card-video.card-player-yellow .vjs-default-skin .vjs-control:hover:before {
	color: #feea3a;
}

.card.card-video.card-player-yellow .vjs-default-skin:hover .vjs-big-play-button {
	background: #feea3a;
	color: #ffffff;
}

.card.card-video.card-player-amber .play-button-container .play-button {
	border-color: #fec006;
	color: #fec006;
}

.card.card-video.card-player-amber .play-button-container:hover .play-button {
	background: #fec006;
	color: #ffffff;
}

.card.card-video.card-player-amber .vjs-default-skin .vjs-big-play-button {
	border-color: #fec006;
	color: #fec006;
}

.card.card-video.card-player-amber .vjs-default-skin .vjs-volume-level {
	background-color: #fec006;
}

.card.card-video.card-player-amber .vjs-default-skin .vjs-play-progress {
	background-color: #fec006;
}

.card.card-video.card-player-amber .vjs-default-skin .vjs-control:hover {
	color: #fec006;
}

.card.card-video.card-player-amber .vjs-default-skin .vjs-control:hover:before {
	color: #fec006;
}

.card.card-video.card-player-amber .vjs-default-skin:hover .vjs-big-play-button {
	background: #fec006;
	color: #ffffff;
}

.card.card-video.card-player-orange .play-button-container .play-button {
	border-color: #f39c12;
	color: #f39c12;
}

.card.card-video.card-player-orange .play-button-container:hover .play-button {
	background: #f39c12;
	color: #ffffff;
}

.card.card-video.card-player-orange .vjs-default-skin .vjs-big-play-button {
	border-color: #f39c12;
	color: #f39c12;
}

.card.card-video.card-player-orange .vjs-default-skin .vjs-volume-level {
	background-color: #f39c12;
}

.card.card-video.card-player-orange .vjs-default-skin .vjs-play-progress {
	background-color: #f39c12;
}

.card.card-video.card-player-orange .vjs-default-skin .vjs-control:hover {
	color: #f39c12;
}

.card.card-video.card-player-orange .vjs-default-skin .vjs-control:hover:before {
	color: #f39c12;
}

.card.card-video.card-player-orange .vjs-default-skin:hover .vjs-big-play-button {
	background: #f39c12;
	color: #ffffff;
}

.card.card-video.card-player-deep-orange .play-button-container .play-button {
	border-color: #fe5621;
	color: #fe5621;
}

.card.card-video.card-player-deep-orange .play-button-container:hover .play-button {
	background: #fe5621;
	color: #ffffff;
}

.card.card-video.card-player-deep-orange .vjs-default-skin .vjs-big-play-button {
	border-color: #fe5621;
	color: #fe5621;
}

.card.card-video.card-player-deep-orange .vjs-default-skin .vjs-volume-level {
	background-color: #fe5621;
}

.card.card-video.card-player-deep-orange .vjs-default-skin .vjs-play-progress {
	background-color: #fe5621;
}

.card.card-video.card-player-deep-orange .vjs-default-skin .vjs-control:hover {
	color: #fe5621;
}

.card.card-video.card-player-deep-orange .vjs-default-skin .vjs-control:hover:before {
	color: #fe5621;
}

.card.card-video.card-player-deep-orange .vjs-default-skin:hover .vjs-big-play-button {
	background: #fe5621;
	color: #ffffff;
}

.card.card-video.card-player-brown .play-button-container .play-button {
	border-color: #785447;
	color: #785447;
}

.card.card-video.card-player-brown .play-button-container:hover .play-button {
	background: #785447;
	color: rgba(0, 0, 0, 0.87);
}

.card.card-video.card-player-brown .vjs-default-skin .vjs-big-play-button {
	border-color: #785447;
	color: #785447;
}

.card.card-video.card-player-brown .vjs-default-skin .vjs-volume-level {
	background-color: #785447;
}

.card.card-video.card-player-brown .vjs-default-skin .vjs-play-progress {
	background-color: #785447;
}

.card.card-video.card-player-brown .vjs-default-skin .vjs-control:hover {
	color: #785447;
}

.card.card-video.card-player-brown .vjs-default-skin .vjs-control:hover:before {
	color: #785447;
}

.card.card-video.card-player-brown .vjs-default-skin:hover .vjs-big-play-button {
	background: #785447;
	color: rgba(0, 0, 0, 0.87);
}

.card.card-video.card-player-grey .play-button-container .play-button {
	border-color: #9d9d9d;
	color: #9d9d9d;
}

.card.card-video.card-player-grey .play-button-container:hover .play-button {
	background: #9d9d9d;
	color: #ffffff;
}

.card.card-video.card-player-grey .vjs-default-skin .vjs-big-play-button {
	border-color: #9d9d9d;
	color: #9d9d9d;
}

.card.card-video.card-player-grey .vjs-default-skin .vjs-volume-level {
	background-color: #9d9d9d;
}

.card.card-video.card-player-grey .vjs-default-skin .vjs-play-progress {
	background-color: #9d9d9d;
}

.card.card-video.card-player-grey .vjs-default-skin .vjs-control:hover {
	color: #9d9d9d;
}

.card.card-video.card-player-grey .vjs-default-skin .vjs-control:hover:before {
	color: #9d9d9d;
}

.card.card-video.card-player-grey .vjs-default-skin:hover .vjs-big-play-button {
	background: #9d9d9d;
	color: #ffffff;
}

.card.card-video.card-player-blue-grey .play-button-container .play-button {
	border-color: #5f7c8a;
	color: #5f7c8a;
}

.card.card-video.card-player-blue-grey .play-button-container:hover .play-button {
	background: #5f7c8a;
	color: #ffffff;
}

.card.card-video.card-player-blue-grey .vjs-default-skin .vjs-big-play-button {
	border-color: #5f7c8a;
	color: #5f7c8a;
}

.card.card-video.card-player-blue-grey .vjs-default-skin .vjs-volume-level {
	background-color: #5f7c8a;
}

.card.card-video.card-player-blue-grey .vjs-default-skin .vjs-play-progress {
	background-color: #5f7c8a;
}

.card.card-video.card-player-blue-grey .vjs-default-skin .vjs-control:hover {
	color: #5f7c8a;
}

.card.card-video.card-player-blue-grey .vjs-default-skin .vjs-control:hover:before {
	color: #5f7c8a;
}

.card.card-video.card-player-blue-grey .vjs-default-skin:hover .vjs-big-play-button {
	background: #5f7c8a;
	color: #ffffff;
}

.card.card-video-modal {
	background-color: #000;
}

.card.card-video-modal .card-body {
	height: 200px;
}

.card .card-information {
	position: absolute;
	left: 0;
	bottom: 0px;
	background: rgba(255, 255, 255, 0.7);
	width: 100%;
	padding: 5px;
	text-align: center;
	font-size: 13px;
}

.card .card-comments {
	margin: 0;
}

.card .card-comments li {
	display: block;
	margin: 0;
	padding: 5px 0;
}

.card .card-comments li .user-photo {
	display: table-cell;
	width: 40px;
}

.card .card-comments li .user-photo img {
	width: 32px;
	height: 32px;
	border-radius: 3px;
}

.card .card-comments li .comment {
	display: table-cell;
	position: relative;
	top: -8px;
	font-size: 13px;
	line-height: 18px;
}

.card .card-comments li:last-child {
	border-bottom: 0;
}

.card.card-shadow {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card.card-hover-shadow:hover {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card.card-darker-for-bg {
	background-color: #000 !important;
}

.card.tile {
	border-radius: 0;
	box-shadow: none;
}

.card.card-black {
	background-color: #000000;
	color: #ffffff;
}

.card.card-black a {
	opacity: 1;
	color: #ffffff;
}

.card.card-black a:hover,
.card.card-black a:active,
.card.card-black a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-red {
	background-color: #f34235;
	color: #ffffff;
}

.card.card-red a {
	opacity: 1;
	color: #ffffff;
}

.card.card-red a:hover,
.card.card-red a:active,
.card.card-red a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-pink {
	background-color: #e81d62;
	color: #ffffff;
}

.card.card-pink a {
	opacity: 1;
	color: #ffffff;
}

.card.card-pink a:hover,
.card.card-pink a:active,
.card.card-pink a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-purple {
	background-color: #9b26af;
	color: #ffffff;
}

.card.card-purple a {
	opacity: 1;
	color: #ffffff;
}

.card.card-purple a:hover,
.card.card-purple a:active,
.card.card-purple a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-deep-purple {
	background-color: #6639b6;
	color: #ffffff;
}

.card.card-deep-purple a {
	opacity: 1;
	color: #ffffff;
}

.card.card-deep-purple a:hover,
.card.card-deep-purple a:active,
.card.card-deep-purple a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-indigo {
	background-color: #3e50b4;
	color: #ffffff;
}

.card.card-indigo a {
	opacity: 1;
	color: #ffffff;
}

.card.card-indigo a:hover,
.card.card-indigo a:active,
.card.card-indigo a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-blue {
	background-color: #12728e;
	color: #ffffff;
}

.card.card-blue a {
	opacity: 1;
	color: #ffffff;
}

.card.card-blue a:hover,
.card.card-blue a:active,
.card.card-blue a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-light-blue {
	background-color: #02a8f3;
	color: #ffffff;
}

.card.card-light-blue a {
	opacity: 1;
	color: #ffffff;
}

.card.card-light-blue a:hover,
.card.card-light-blue a:active,
.card.card-light-blue a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-cyan {
	background-color: #00bbd3;
	color: #ffffff;
}

.card.card-cyan a {
	opacity: 1;
	color: #ffffff;
}

.card.card-cyan a:hover,
.card.card-cyan a:active,
.card.card-cyan a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-teal {
	background-color: #009587;
	color: #ffffff;
}

.card.card-teal a {
	opacity: 1;
	color: #ffffff;
}

.card.card-teal a:hover,
.card.card-teal a:active,
.card.card-teal a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-green {
	background-color: #4bae4f;
	color: #ffffff;
}

.card.card-green a {
	opacity: 1;
	color: #ffffff;
}

.card.card-green a:hover,
.card.card-green a:active,
.card.card-green a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-light-green {
	background-color: #8ac249;
	color: #ffffff;
}

.card.card-light-green a {
	opacity: 1;
	color: #ffffff;
}

.card.card-light-green a:hover,
.card.card-light-green a:active,
.card.card-light-green a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-lime {
	background-color: #ccdb38;
	color: #ffffff;
}

.card.card-lime a {
	opacity: 1;
	color: #ffffff;
}

.card.card-lime a:hover,
.card.card-lime a:active,
.card.card-lime a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-yellow {
	background-color: #feea3a;
	color: #ffffff;
}

.card.card-yellow a {
	opacity: 1;
	color: #ffffff;
}

.card.card-yellow a:hover,
.card.card-yellow a:active,
.card.card-yellow a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-amber {
	background-color: #fec006;
	color: #ffffff;
}

.card.card-amber a {
	opacity: 1;
	color: #ffffff;
}

.card.card-amber a:hover,
.card.card-amber a:active,
.card.card-amber a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-orange {
	background-color: #f39c12;
	color: #ffffff;
}

.card.card-orange a {
	opacity: 1;
	color: #ffffff;
}

.card.card-orange a:hover,
.card.card-orange a:active,
.card.card-orange a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-deep-orange {
	background-color: #fe5621;
	color: #ffffff;
}

.card.card-deep-orange a {
	opacity: 1;
	color: #ffffff;
}

.card.card-deep-orange a:hover,
.card.card-deep-orange a:active,
.card.card-deep-orange a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-brown {
	background-color: #785447;
	color: #ffffff;
}

.card.card-brown a {
	opacity: 1;
	color: #ffffff;
}

.card.card-brown a:hover,
.card.card-brown a:active,
.card.card-brown a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-grey {
	background-color: #9d9d9d;
	color: #ffffff;
}

.card.card-grey a {
	opacity: 1;
	color: #ffffff;
}

.card.card-grey a:hover,
.card.card-grey a:active,
.card.card-grey a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card.card-blue-grey {
	background-color: #5f7c8a;
	color: #ffffff;
}

.card.card-blue-grey a {
	opacity: 1;
	color: #ffffff;
}

.card.card-blue-grey a:hover,
.card.card-blue-grey a:active,
.card.card-blue-grey a:focus {
	color: #ffffff;
	opacity: 0.7;
}

.card-friend:before,
.card-friend:after {
	content: ' ';
	display: table;
}

.card-friend:after {
	clear: both;
}

.card-friend .user-photo {
	float: left;
	width: 100px;
	height: auto;
	border-radius: 3px 0 0 3px;
}

.card-friend .friend-content {
	margin-left: 120px;
}

.card-friend .title {
	font-size: 18px;
	margin-top: 10px;
}

.card-friend p {
	font-size: 14px;
	margin: 0;
}

.card-friend p a {
	color: #999;
}

.card-friend .btn {
	left: -10px;
}

.card-friend.tile .user-photo {
	border-radius: 0;
}

.card-calendar {
	box-shadow: none;
	padding: 5px 15px;
	margin-bottom: 5px;
}

.card-calendar .event-detail {
	position: relative;
}

.card-calendar .primary {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	display: block;
	font-size: 16px;
	font-weight: bold;
}

.card-calendar .secondary {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	display: block;
	margin-top: -4px;
	font-size: 14px;
}

.card-calendar .related-image {
	width: 40px;
	height: 40px;
	position: absolute;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	right: 0px;
}

.card-calendar .related-image img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}

.card-calendar.card-calendar-image {
	height: 120px;
}

.card-calendar.card-calendar-image .event-detail {
	position: absolute;
	bottom: 15px;
	left: 15px;
}

.card-calendar:focus,
.card-calendar:active {
	opacity: 0.5;
	outline: none;
}

.full-video {
	margin: 15px 0;
	background: #fff;
}

.full-video .playlist-heading {
	position: relative;
	width: 100%;
	height: 50px;
	background: #337ab7;
	border-bottom: 1px solid #f0f0f0;
	padding: 0 25px;
	font-size: 17px;
	line-height: 50px;
	color: #fff;
}

.full-video .video-playlist {
	height: 150px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	overflow-y: auto;
}

.full-video .video-playlist li {
	position: relative;
	padding: 15px 25px;
	margin: 0;
	border-bottom: 1px solid #f0f0f0;
	border-right: 1px solid transparent;
	cursor: pointer;
	-webkit-transition: padding 0.3s;
	transition: padding 0.3s;
}

.full-video .video-playlist li .media {
	overflow: hidden;
}

.full-video .video-playlist li .media .media-object {
	height: 40px;
	border-radius: 3px;
}

.full-video .video-playlist li:hover {
	background: rgba(236, 236, 236, 0.1);
}

.full-video .video-playlist li.active {
	padding: 15px 30px 15px 60px;
}

.full-video .video-playlist li.active:before {
	position: absolute;
	left: 30px;
	top: 25px;
	font-family: FontAwesome;
	color: #337ab7;
	content: '\f04b';
}

.full-video .video-playlist li:last-child {
	border-bottom: 0;
}

.full-video .video-playlist .pull-left {
	margin-right: 10px;
}

.full-video .video-playlist .media-body {
	padding-top: 3px;
}

.full-video .video-playlist .media-body .media-heading {
	margin: 0;
}

.full-video .video-playlist .media-body small {
	color: #999;
}

.full-video .playlist-action {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: #f5f5f5;
	margin: 5px 20px;
}

.full-video.turquoise .vjs-default-skin .vjs-big-play-button {
	border-color: #1abc9c;
	color: #1abc9c;
}

.full-video.turquoise .vjs-default-skin .vjs-volume-level {
	background-color: #1abc9c;
}

.full-video.turquoise .vjs-default-skin .vjs-play-progress {
	background-color: #1abc9c;
}

.full-video.turquoise .vjs-default-skin .vjs-control:hover {
	color: #1abc9c;
}

.full-video.turquoise .vjs-default-skin .vjs-control:hover:before {
	color: #1abc9c;
}

.full-video.turquoise .vjs-default-skin:hover .vjs-big-play-button {
	background: #1abc9c;
	color: #ffffff;
}

.full-video.turquoise .playlist-heading {
	background: #1abc9c;
	color: #ffffff;
}

.full-video.turquoise .video-playlist .active:before {
	color: #1abc9c;
}

.full-video.green-sea .vjs-default-skin .vjs-big-play-button {
	border-color: #16a085;
	color: #16a085;
}

.full-video.green-sea .vjs-default-skin .vjs-volume-level {
	background-color: #16a085;
}

.full-video.green-sea .vjs-default-skin .vjs-play-progress {
	background-color: #16a085;
}

.full-video.green-sea .vjs-default-skin .vjs-control:hover {
	color: #16a085;
}

.full-video.green-sea .vjs-default-skin .vjs-control:hover:before {
	color: #16a085;
}

.full-video.green-sea .vjs-default-skin:hover .vjs-big-play-button {
	background: #16a085;
	color: #ffffff;
}

.full-video.green-sea .playlist-heading {
	background: #16a085;
	color: #ffffff;
}

.full-video.green-sea .video-playlist .active:before {
	color: #16a085;
}

.full-video.emerald .vjs-default-skin .vjs-big-play-button {
	border-color: #2ecc71;
	color: #2ecc71;
}

.full-video.emerald .vjs-default-skin .vjs-volume-level {
	background-color: #2ecc71;
}

.full-video.emerald .vjs-default-skin .vjs-play-progress {
	background-color: #2ecc71;
}

.full-video.emerald .vjs-default-skin .vjs-control:hover {
	color: #2ecc71;
}

.full-video.emerald .vjs-default-skin .vjs-control:hover:before {
	color: #2ecc71;
}

.full-video.emerald .vjs-default-skin:hover .vjs-big-play-button {
	background: #2ecc71;
	color: #ffffff;
}

.full-video.emerald .playlist-heading {
	background: #2ecc71;
	color: #ffffff;
}

.full-video.emerald .video-playlist .active:before {
	color: #2ecc71;
}

.full-video.nephritis .vjs-default-skin .vjs-big-play-button {
	border-color: #27ae60;
	color: #27ae60;
}

.full-video.nephritis .vjs-default-skin .vjs-volume-level {
	background-color: #27ae60;
}

.full-video.nephritis .vjs-default-skin .vjs-play-progress {
	background-color: #27ae60;
}

.full-video.nephritis .vjs-default-skin .vjs-control:hover {
	color: #27ae60;
}

.full-video.nephritis .vjs-default-skin .vjs-control:hover:before {
	color: #27ae60;
}

.full-video.nephritis .vjs-default-skin:hover .vjs-big-play-button {
	background: #27ae60;
	color: #ffffff;
}

.full-video.nephritis .playlist-heading {
	background: #27ae60;
	color: #ffffff;
}

.full-video.nephritis .video-playlist .active:before {
	color: #27ae60;
}

.full-video.peter-river .vjs-default-skin .vjs-big-play-button {
	border-color: #3498db;
	color: #3498db;
}

.full-video.peter-river .vjs-default-skin .vjs-volume-level {
	background-color: #3498db;
}

.full-video.peter-river .vjs-default-skin .vjs-play-progress {
	background-color: #3498db;
}

.full-video.peter-river .vjs-default-skin .vjs-control:hover {
	color: #3498db;
}

.full-video.peter-river .vjs-default-skin .vjs-control:hover:before {
	color: #3498db;
}

.full-video.peter-river .vjs-default-skin:hover .vjs-big-play-button {
	background: #3498db;
	color: #ffffff;
}

.full-video.peter-river .playlist-heading {
	background: #3498db;
	color: #ffffff;
}

.full-video.peter-river .video-playlist .active:before {
	color: #3498db;
}

.full-video.belize-hole .vjs-default-skin .vjs-big-play-button {
	border-color: #2980b9;
	color: #2980b9;
}

.full-video.belize-hole .vjs-default-skin .vjs-volume-level {
	background-color: #2980b9;
}

.full-video.belize-hole .vjs-default-skin .vjs-play-progress {
	background-color: #2980b9;
}

.full-video.belize-hole .vjs-default-skin .vjs-control:hover {
	color: #2980b9;
}

.full-video.belize-hole .vjs-default-skin .vjs-control:hover:before {
	color: #2980b9;
}

.full-video.belize-hole .vjs-default-skin:hover .vjs-big-play-button {
	background: #2980b9;
	color: #ffffff;
}

.full-video.belize-hole .playlist-heading {
	background: #2980b9;
	color: #ffffff;
}

.full-video.belize-hole .video-playlist .active:before {
	color: #2980b9;
}

.full-video.amethyst .vjs-default-skin .vjs-big-play-button {
	border-color: #9b59b6;
	color: #9b59b6;
}

.full-video.amethyst .vjs-default-skin .vjs-volume-level {
	background-color: #9b59b6;
}

.full-video.amethyst .vjs-default-skin .vjs-play-progress {
	background-color: #9b59b6;
}

.full-video.amethyst .vjs-default-skin .vjs-control:hover {
	color: #9b59b6;
}

.full-video.amethyst .vjs-default-skin .vjs-control:hover:before {
	color: #9b59b6;
}

.full-video.amethyst .vjs-default-skin:hover .vjs-big-play-button {
	background: #9b59b6;
	color: #ffffff;
}

.full-video.amethyst .playlist-heading {
	background: #9b59b6;
	color: #ffffff;
}

.full-video.amethyst .video-playlist .active:before {
	color: #9b59b6;
}

.full-video.wisteria .vjs-default-skin .vjs-big-play-button {
	border-color: #8e44ad;
	color: #8e44ad;
}

.full-video.wisteria .vjs-default-skin .vjs-volume-level {
	background-color: #8e44ad;
}

.full-video.wisteria .vjs-default-skin .vjs-play-progress {
	background-color: #8e44ad;
}

.full-video.wisteria .vjs-default-skin .vjs-control:hover {
	color: #8e44ad;
}

.full-video.wisteria .vjs-default-skin .vjs-control:hover:before {
	color: #8e44ad;
}

.full-video.wisteria .vjs-default-skin:hover .vjs-big-play-button {
	background: #8e44ad;
	color: #ffffff;
}

.full-video.wisteria .playlist-heading {
	background: #8e44ad;
	color: #ffffff;
}

.full-video.wisteria .video-playlist .active:before {
	color: #8e44ad;
}

.full-video.wet-asphalt .vjs-default-skin .vjs-big-play-button {
	border-color: #34495e;
	color: #34495e;
}

.full-video.wet-asphalt .vjs-default-skin .vjs-volume-level {
	background-color: #34495e;
}

.full-video.wet-asphalt .vjs-default-skin .vjs-play-progress {
	background-color: #34495e;
}

.full-video.wet-asphalt .vjs-default-skin .vjs-control:hover {
	color: #34495e;
}

.full-video.wet-asphalt .vjs-default-skin .vjs-control:hover:before {
	color: #34495e;
}

.full-video.wet-asphalt .vjs-default-skin:hover .vjs-big-play-button {
	background: #34495e;
	color: #ffffff;
}

.full-video.wet-asphalt .playlist-heading {
	background: #34495e;
	color: #ffffff;
}

.full-video.wet-asphalt .video-playlist .active:before {
	color: #34495e;
}

.full-video.midnight-blue .vjs-default-skin .vjs-big-play-button {
	border-color: #2c3e50;
	color: #2c3e50;
}

.full-video.midnight-blue .vjs-default-skin .vjs-volume-level {
	background-color: #2c3e50;
}

.full-video.midnight-blue .vjs-default-skin .vjs-play-progress {
	background-color: #2c3e50;
}

.full-video.midnight-blue .vjs-default-skin .vjs-control:hover {
	color: #2c3e50;
}

.full-video.midnight-blue .vjs-default-skin .vjs-control:hover:before {
	color: #2c3e50;
}

.full-video.midnight-blue .vjs-default-skin:hover .vjs-big-play-button {
	background: #2c3e50;
	color: #ffffff;
}

.full-video.midnight-blue .playlist-heading {
	background: #2c3e50;
	color: #ffffff;
}

.full-video.midnight-blue .video-playlist .active:before {
	color: #2c3e50;
}

.full-video.sunflower .vjs-default-skin .vjs-big-play-button {
	border-color: #f1c40f;
	color: #f1c40f;
}

.full-video.sunflower .vjs-default-skin .vjs-volume-level {
	background-color: #f1c40f;
}

.full-video.sunflower .vjs-default-skin .vjs-play-progress {
	background-color: #f1c40f;
}

.full-video.sunflower .vjs-default-skin .vjs-control:hover {
	color: #f1c40f;
}

.full-video.sunflower .vjs-default-skin .vjs-control:hover:before {
	color: #f1c40f;
}

.full-video.sunflower .vjs-default-skin:hover .vjs-big-play-button {
	background: #f1c40f;
	color: #ffffff;
}

.full-video.sunflower .playlist-heading {
	background: #f1c40f;
	color: #ffffff;
}

.full-video.sunflower .video-playlist .active:before {
	color: #f1c40f;
}

.full-video.orange .vjs-default-skin .vjs-big-play-button {
	border-color: #f39c12;
	color: #f39c12;
}

.full-video.orange .vjs-default-skin .vjs-volume-level {
	background-color: #f39c12;
}

.full-video.orange .vjs-default-skin .vjs-play-progress {
	background-color: #f39c12;
}

.full-video.orange .vjs-default-skin .vjs-control:hover {
	color: #f39c12;
}

.full-video.orange .vjs-default-skin .vjs-control:hover:before {
	color: #f39c12;
}

.full-video.orange .vjs-default-skin:hover .vjs-big-play-button {
	background: #f39c12;
	color: #ffffff;
}

.full-video.orange .playlist-heading {
	background: #f39c12;
	color: #ffffff;
}

.full-video.orange .video-playlist .active:before {
	color: #f39c12;
}

.full-video.carrot .vjs-default-skin .vjs-big-play-button {
	border-color: #e67e22;
	color: #e67e22;
}

.full-video.carrot .vjs-default-skin .vjs-volume-level {
	background-color: #e67e22;
}

.full-video.carrot .vjs-default-skin .vjs-play-progress {
	background-color: #e67e22;
}

.full-video.carrot .vjs-default-skin .vjs-control:hover {
	color: #e67e22;
}

.full-video.carrot .vjs-default-skin .vjs-control:hover:before {
	color: #e67e22;
}

.full-video.carrot .vjs-default-skin:hover .vjs-big-play-button {
	background: #e67e22;
	color: #ffffff;
}

.full-video.carrot .playlist-heading {
	background: #e67e22;
	color: #ffffff;
}

.full-video.carrot .video-playlist .active:before {
	color: #e67e22;
}

.full-video.pumpkin .vjs-default-skin .vjs-big-play-button {
	border-color: #d35400;
	color: #d35400;
}

.full-video.pumpkin .vjs-default-skin .vjs-volume-level {
	background-color: #d35400;
}

.full-video.pumpkin .vjs-default-skin .vjs-play-progress {
	background-color: #d35400;
}

.full-video.pumpkin .vjs-default-skin .vjs-control:hover {
	color: #d35400;
}

.full-video.pumpkin .vjs-default-skin .vjs-control:hover:before {
	color: #d35400;
}

.full-video.pumpkin .vjs-default-skin:hover .vjs-big-play-button {
	background: #d35400;
	color: #ffffff;
}

.full-video.pumpkin .playlist-heading {
	background: #d35400;
	color: #ffffff;
}

.full-video.pumpkin .video-playlist .active:before {
	color: #d35400;
}

.full-video.alizarin .vjs-default-skin .vjs-big-play-button {
	border-color: #e74c3c;
	color: #e74c3c;
}

.full-video.alizarin .vjs-default-skin .vjs-volume-level {
	background-color: #e74c3c;
}

.full-video.alizarin .vjs-default-skin .vjs-play-progress {
	background-color: #e74c3c;
}

.full-video.alizarin .vjs-default-skin .vjs-control:hover {
	color: #e74c3c;
}

.full-video.alizarin .vjs-default-skin .vjs-control:hover:before {
	color: #e74c3c;
}

.full-video.alizarin .vjs-default-skin:hover .vjs-big-play-button {
	background: #e74c3c;
	color: #ffffff;
}

.full-video.alizarin .playlist-heading {
	background: #e74c3c;
	color: #ffffff;
}

.full-video.alizarin .video-playlist .active:before {
	color: #e74c3c;
}

.full-video.pomegranate .vjs-default-skin .vjs-big-play-button {
	border-color: #c0392b;
	color: #c0392b;
}

.full-video.pomegranate .vjs-default-skin .vjs-volume-level {
	background-color: #c0392b;
}

.full-video.pomegranate .vjs-default-skin .vjs-play-progress {
	background-color: #c0392b;
}

.full-video.pomegranate .vjs-default-skin .vjs-control:hover {
	color: #c0392b;
}

.full-video.pomegranate .vjs-default-skin .vjs-control:hover:before {
	color: #c0392b;
}

.full-video.pomegranate .vjs-default-skin:hover .vjs-big-play-button {
	background: #c0392b;
	color: #ffffff;
}

.full-video.pomegranate .playlist-heading {
	background: #c0392b;
	color: #ffffff;
}

.full-video.pomegranate .video-playlist .active:before {
	color: #c0392b;
}

.full-video.clouds .vjs-default-skin .vjs-big-play-button {
	border-color: #1abc9c;
	color: #1abc9c;
}

.full-video.clouds .vjs-default-skin .vjs-volume-level {
	background-color: #1abc9c;
}

.full-video.clouds .vjs-default-skin .vjs-play-progress {
	background-color: #1abc9c;
}

.full-video.clouds .vjs-default-skin .vjs-control:hover {
	color: #1abc9c;
}

.full-video.clouds .vjs-default-skin .vjs-control:hover:before {
	color: #1abc9c;
}

.full-video.clouds .vjs-default-skin:hover .vjs-big-play-button {
	background: #1abc9c;
	color: rgba(0, 0, 0, 0.87);
}

.full-video.clouds .playlist-heading {
	background: #1abc9c;
	color: rgba(0, 0, 0, 0.87);
}

.full-video.clouds .video-playlist .active:before {
	color: #1abc9c;
}

.full-video.silver .vjs-default-skin .vjs-big-play-button {
	border-color: #bdc3c7;
	color: #bdc3c7;
}

.full-video.silver .vjs-default-skin .vjs-volume-level {
	background-color: #bdc3c7;
}

.full-video.silver .vjs-default-skin .vjs-play-progress {
	background-color: #bdc3c7;
}

.full-video.silver .vjs-default-skin .vjs-control:hover {
	color: #bdc3c7;
}

.full-video.silver .vjs-default-skin .vjs-control:hover:before {
	color: #bdc3c7;
}

.full-video.silver .vjs-default-skin:hover .vjs-big-play-button {
	background: #bdc3c7;
	color: #ffffff;
}

.full-video.silver .playlist-heading {
	background: #bdc3c7;
	color: #ffffff;
}

.full-video.silver .video-playlist .active:before {
	color: #bdc3c7;
}

.full-video.concrete .vjs-default-skin .vjs-big-play-button {
	border-color: #95a5a6;
	color: #95a5a6;
}

.full-video.concrete .vjs-default-skin .vjs-volume-level {
	background-color: #95a5a6;
}

.full-video.concrete .vjs-default-skin .vjs-play-progress {
	background-color: #95a5a6;
}

.full-video.concrete .vjs-default-skin .vjs-control:hover {
	color: #95a5a6;
}

.full-video.concrete .vjs-default-skin .vjs-control:hover:before {
	color: #95a5a6;
}

.full-video.concrete .vjs-default-skin:hover .vjs-big-play-button {
	background: #95a5a6;
	color: #ffffff;
}

.full-video.concrete .playlist-heading {
	background: #95a5a6;
	color: #ffffff;
}

.full-video.concrete .video-playlist .active:before {
	color: #95a5a6;
}

.full-video.asbestos .vjs-default-skin .vjs-big-play-button {
	border-color: #7f8c8d;
	color: #7f8c8d;
}

.full-video.asbestos .vjs-default-skin .vjs-volume-level {
	background-color: #7f8c8d;
}

.full-video.asbestos .vjs-default-skin .vjs-play-progress {
	background-color: #7f8c8d;
}

.full-video.asbestos .vjs-default-skin .vjs-control:hover {
	color: #7f8c8d;
}

.full-video.asbestos .vjs-default-skin .vjs-control:hover:before {
	color: #7f8c8d;
}

.full-video.asbestos .vjs-default-skin:hover .vjs-big-play-button {
	background: #7f8c8d;
	color: #ffffff;
}

.full-video.asbestos .playlist-heading {
	background: #7f8c8d;
	color: #ffffff;
}

.full-video.asbestos .video-playlist .active:before {
	color: #7f8c8d;
}

.card-dashboard-graph {
	position: relative;
	border-radius: 0;
	background: #fff;
	overflow: hidden;
	height: 250px;
}

.card-dashboard-graph h5 {
	color: #555555;
}

.card-dashboard-graph .contextual {
	padding: 20px 50px 20px 20px;
}

.card-dashboard-graph .contextual p {
	font-size: 14px;
}

.card-dashboard-graph .chart {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 80px;
}

.card-dashboard-graph .chart-legend {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 26px;
	height: 80px;
	background: transparent;
}

.card-dashboard-graph .chart-legend ul {
	margin: 0;
}

.card-dashboard-graph .chart-legend ul li {
	line-height: inherit;
	padding: 0;
	min-width: inherit;
}

.card-dashboard-graph .chart-legend ul li a {
	position: absolute;
	left: auto;
	margin: 0;
	font-size: inherit;
	width: 14px;
	display: block;
	color: transparent;
}

.card-dashboard-graph .chart-legend ul li .swatch {
	border-radius: 50%;
	width: 12px;
	height: 12px;
	margin: 0;
}

.card-dashboard-graph .chart-legend ul li .label {
	display: none;
}

.card-dashboard-graph .chart-legend ul li:hover {
	background: transparent;
}

.card-dashboard-info .card-body {
	padding: 18px 20px 38px 20px;
}

.card-dashboard-info .card-icon {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 30px;
	opacity: 0.2;
}

.card-dashboard-info h4 {
	font-size: 16px;
	margin-bottom: 5px;
	color: rgba(255, 255, 255, 0.54);
}

.card-dashboard-info p {
	font-size: 20px;
}

.card-dashboard-info small {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #f0f0f0;
	padding: 10px 20px;
}

.card-dashboard-info.card-red {
	color: #ffffff;
	background-color: #f34235;
}

.card-dashboard-info.card-red small {
	background: #f22b1d;
}

.card-dashboard-info.card-pink {
	color: #ffffff;
	background-color: #e81d62;
}

.card-dashboard-info.card-pink small {
	background: #d61657;
}

.card-dashboard-info.card-purple {
	color: #ffffff;
	background-color: #9b26af;
}

.card-dashboard-info.card-purple small {
	background: #88219a;
}

.card-dashboard-info.card-deep-purple {
	color: #ffffff;
	background-color: #6639b6;
}

.card-dashboard-info.card-deep-purple small {
	background: #5b33a3;
}

.card-dashboard-info.card-indigo {
	color: #ffffff;
	background-color: #3e50b4;
}

.card-dashboard-info.card-indigo small {
	background: #3748a1;
}

.card-dashboard-info.card-blue {
	color: #ffffff;
	background-color: #12728e;
}

.card-dashboard-info.card-blue small {
	background: #396fd4;
}

.card-dashboard-info.card-light-blue {
	color: #ffffff;
	background-color: #02a8f3;
}

.card-dashboard-info.card-light-blue small {
	background: #0297da;
}

.card-dashboard-info.card-cyan {
	color: #ffffff;
	background-color: #00bbd3;
}

.card-dashboard-info.card-cyan small {
	background: #00a4ba;
}

.card-dashboard-info.card-teal {
	color: #ffffff;
	background-color: #009587;
}

.card-dashboard-info.card-teal small {
	background: #007c70;
}

.card-dashboard-info.card-green {
	color: #ffffff;
	background-color: #4bae4f;
}

.card-dashboard-info.card-green small {
	background: #439c47;
}

.card-dashboard-info.card-light-green {
	color: #ffffff;
	background-color: #8ac249;
}

.card-dashboard-info.card-light-green small {
	background: #7db53d;
}

.card-dashboard-info.card-lime {
	color: #ffffff;
	background-color: #ccdb38;
}

.card-dashboard-info.card-lime small {
	background: #c3d326;
}

.card-dashboard-info.card-yellow {
	color: #ffffff;
	background-color: #feea3a;
}

.card-dashboard-info.card-yellow small {
	background: #fee721;
}

.card-dashboard-info.card-amber {
	color: #ffffff;
	background-color: #fec006;
}

.card-dashboard-info.card-amber small {
	background: #eaaf01;
}

.card-dashboard-info.card-orange {
	color: #ffffff;
	background-color: #f39c12;
}

.card-dashboard-info.card-orange small {
	background: #e08e0b;
}

.card-dashboard-info.card-deep-orange {
	color: #ffffff;
	background-color: #fe5621;
}

.card-dashboard-info.card-deep-orange small {
	background: #fe4308;
}

.card-dashboard-info.card-brown {
	color: rgba(0, 0, 0, 0.87);
	background-color: #785447;
}

.card-dashboard-info.card-brown small {
	background: #68493e;
}

.card-dashboard-info.card-grey {
	color: #ffffff;
	background-color: #9d9d9d;
}

.card-dashboard-info.card-grey small {
	background: #909090;
}

.card-dashboard-info.card-blue-grey {
	color: #ffffff;
	background-color: #5f7c8a;
}

.card-dashboard-info.card-blue-grey small {
	background: #556e7b;
}

.row.no-gutters .card-user-new {
	margin-bottom: 0;
}

.text-color-white {
	color: #fff !important;
}

.text-color-white a {
	text-decoration: none;
	color: #fff !important;
}

.text-color-white a:hover {
	color: rgba(255, 255, 255, 0.5) !important;
}

.text-color-black {
	color: #000 !important;
}

.text-color-black a {
	color: #000 !important;
}

.text-color-black a:hover {
	color: rgba(0, 0, 0, 0.5);
}

.card-clickable {
	padding-bottom: 80px;
}

.card-clickable.card-clickable-from-left .layered-content {
	right: auto;
	left: 0;
}

.card-clickable.card-clickable-from-left .layered-content .floating-close {
	right: auto;
	left: 0;
}

.card-clickable.card-clickable-from-left .layered-content .overflow-content {
	margin: 30px 30px 30px 90px;
}

.card-clickable.card-clickable-from-left .layered-content .clickable-close-button {
	-webkit-transform: rotate(90deg) translateY(-48px);
	-ms-transform: rotate(90deg) translateY(-48px);
	transform: rotate(90deg) translateY(-48px);
	right: auto;
	left: 0;
}

.card-clickable.card-clickable-from-left .layered-content.active .clickable-close-button {
	-webkit-transform: rotate(0deg) translateY(0);
	-ms-transform: rotate(0deg) translateY(0);
	transform: rotate(0deg) translateY(0);
	left: 20px;
}

.card-clickable.card-clickable-from-left .clickable-button {
	right: auto;
	left: 20px;
}

.card-clickable.card-clickable-from-left .clickable-button .initial-position {
	right: auto;
	left: 0;
}

.card-clickable.card-clickable-from-left .clickable-button .layer {
	right: auto;
}

.card-clickable.card-clickable-from-left .clickable-button.clicked {
	-webkit-transform: rotate(-90deg) translateY(48px);
	-ms-transform: rotate(-90deg) translateY(48px);
	transform: rotate(-90deg) translateY(48px);
}

.card-clickable.card-clickable-over-content {
	padding-bottom: 0;
}

.card-clickable.card-clickable-over-content .clickable-button {
	right: 20px;
}

.card-clickable.card-clickable-over-content .clickable-button .layer,
.card-clickable.card-clickable-over-content .clickable-button .floating-open {
	bottom: -20px;
	right: 0;
}

.layered-content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow: hidden;
	z-index: -1;
	-webkit-transition: 0.3s all ease 0.3s;
	transition: 0.3s all ease 0.3s;
}

.layered-content .floating-close {
	position: absolute;
	right: 0;
	top: 0;
	color: #fff;
}

.layered-content .overflow-content {
	margin: 30px 70px 30px 30px;
	overflow-y: auto;
	color: #fff;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	opacity: 0;
	padding-right: 10px;
	height: calc(100% - 60px);
}

.layered-content .clickable-close-button {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 48px;
	height: 100%;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	-webkit-transform: rotate(-90deg) translateY(-48px);
	-ms-transform: rotate(-90deg) translateY(-48px);
	transform: rotate(-90deg) translateY(-48px);
}

.layered-content.active {
	opacity: 1;
	z-index: 5;
	-webkit-transition: 0.3s all ease 0.3s;
	transition: 0.3s all ease 0.3s;
}

.layered-content.active .overflow-content {
	opacity: 1;
	-webkit-transition: 0.3s all ease 0.6s;
	transition: 0.3s all ease 0.6s;
}

.layered-content.active .clickable-close-button {
	right: 20px;
	top: 20px;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	-webkit-transform: rotate(0) translateY(0px);
	-ms-transform: rotate(0) translateY(0px);
	transform: rotate(0) translateY(0px);
}

.clickable-button {
	position: absolute;
	width: 48px;
	height: 100%;
	right: 0;
	top: 0px;
	z-index: 3;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transition: 0.3s all ease 0.6s;
	transition: 0.3s all ease 0.6s;
}

.clickable-button .initial-position {
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.clickable-button .layer {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	pointer-events: none;
	z-index: -99;
	-webkit-transition: 0.3s all ease 0.3s;
	transition: 0.3s all ease 0.3s;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}

.clickable-button .floating-open {
	z-index: 3;
	-webkit-transition: 0.3s all ease 0.6s;
	transition: 0.3s all ease 0.6s;
}

.clickable-button.clicked {
	right: 0;
	bottom: 0;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	-webkit-transform: rotate(90deg) translateY(48px);
	-ms-transform: rotate(90deg) translateY(48px);
	transform: rotate(90deg) translateY(48px);
}

.clickable-button.clicked .layer {
	-webkit-transform: scale(100);
	-ms-transform: scale(100);
	transform: scale(100);
	-webkit-transition: 1.5s all ease 0.3s;
	transition: 1.5s all ease 0.3s;
}

.clickable-button.clicked .floating-open {
	pointer-events: none;
	opacity: 0;
	z-index: -1;
	-webkit-transition: none;
	transition: none;
}

/*
13 - Lists
*/
ul {
	padding: 0;
}

li {
	list-style-type: none;
}

.list-material {
	position: relative;
	padding: 0;
	margin: 0;
	background: #fff;
}

.list-material > li {
	position: relative;
	list-style-type: none;
	overflow: hidden;
}

.list-material > li a.visible {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.87);
	display: block;
	padding: 0 0 0 16px;
	-webkit-transition: 0.3s -webkit-transform cubic-bezier(0.17, 0.67, 0.6, 1.3);
	transition: 0.3s transform cubic-bezier(0.17, 0.67, 0.6, 1.3);
	background: #fff;
}

.list-material > li a.hidden {
	display: block !important;
	position: absolute;
	top: 0;
	right: 0;
	background: #f0f0f0;
	box-shadow: inset 2px 0px 5px rgba(0, 0, 0, 0.1);
	width: 60px;
	height: 100%;
	color: rgba(0, 0, 0, 0.87);
	-webkit-transition: 0.3s all cubic-bezier(0.17, 0.67, 0.6, 1.3);
	transition: 0.3s all cubic-bezier(0.17, 0.67, 0.6, 1.3);
}

.list-material > li a.hidden i {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 22px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.list-material > li .list-content {
	position: relative;
	margin-left: 0;
	margin-right: 0;
	padding: 16px 16px 16px 0;
	border-bottom: 1px solid #f0f0f0;
}

.list-material > li .list-content .title {
	font-size: 20px;
	font-weight: 400;
}

.list-material > li .list-content .caption {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.8);
}

.list-material > li .list-content .title,
.list-material > li .list-content .caption {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.list-material > li .list-action-left {
	position: absolute;
	top: 50%;
	left: 0;
	padding: 0 16px;
	width: 72px;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.list-material > li .list-action-left img {
	width: 40px;
	height: 40px;
}

.list-material > li .list-action-left .icon {
	position: relative;
	left: 0;
	top: 2px;
	width: 1em;
	font-size: 30px;
	line-height: 1;
	width: auto;
	height: auto;
	display: block;
	margin: 0;
	background-size: initial;
	text-align: center;
}

.list-material > li .list-action-left .icon-circle {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	background: #f0f0f0;
	padding: 5px;
	font-size: 20px;
}

.list-material > li .list-action-right {
	position: absolute;
	top: 0%;
	right: 16px;
	padding: 0;
	width: 70px;
	height: 100%;
	text-align: right;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.3);
}

.list-material > li .list-action-right i {
	font-size: 20px;
}

.list-material > li .list-action-right .top {
	position: absolute;
	top: 19px;
	right: 0;
}

.list-material > li .list-action-right .center {
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.list-material > li .list-action-right .bottom {
	position: absolute;
	right: 0;
	bottom: 10px;
}

.list-material > li:last-child .list-content {
	border-bottom-color: transparent;
}

.list-material > li.has-action-left .list-content {
	margin-left: 55px;
}

.list-material > li.has-action-right .list-content {
	padding-right: 80px;
}

.list-material > li.has-long-story .list-action-left {
	top: 23px;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.list-material > li.has-long-story .caption {
	white-space: inherit;
}

.list-material > li.divider {
	font-size: 14px;
	padding: 10px 16px 10px 16px;
	margin-top: 10px;
}

.list-material > li.divider.subheader {
	padding-left: 72px;
}

.list-material > li.divider.with-border {
	border-top: 1px solid #f0f0f0;
}

.list-material.has-hidden > li:hover .hidden {
	visibility: visible !important;
}

.list-material.has-hidden > li:hover a.visible {
	-webkit-transform: translate3d(-60px, 0, 0);
	transform: translate3d(-60px, 0, 0);
}

.list-material.borderless .list-content {
	border-bottom-color: transparent;
}

.inline-list {
	margin: 0 0 20px 0;
	padding: 0;
	list-style-type: none;
}

.inline-list li {
	display: inline-block;
	margin-right: 5px;
}

.inline-list li.small {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.5);
}

.inline-list li:last-child {
	margin-right: 0;
}

.inline-list.social-list:before,
.inline-list.social-list:after {
	content: ' ';
	display: table;
}

.inline-list.social-list:after {
	clear: both;
}

.inline-list.social-list li {
	float: left;
	margin: 0;
	border: 1px solid #d7d7d7;
	border-right: 0;
}

.inline-list.social-list li a {
	font-size: 30px;
	padding: 10px 0;
	min-width: 80px;
}

.inline-list.social-list li:first-child {
	border-radius: 3px 0 0 3px;
}

.inline-list.social-list li:last-child {
	border-radius: 0 3px 3px 0;
	border-right: 1px solid #d7d7d7;
}

.inline-list.borderless li {
	border: 0 !important;
}

.inline-list.borderless li a {
	box-shadow: none !important;
}

.dot-seperator li {
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
}

.dot-seperator li:after {
	position: absolute;
	font-family: 'IonIcons';
	content: '\f21b';
	font-size: 5px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: rgba(0, 0, 0, 0.5);
	margin-left: 10px;
}

.dot-seperator li:first-child {
	margin-left: 0;
}

.dot-seperator li:last-child {
	margin-right: 0;
}

.dot-seperator li:last-child:after {
	display: none;
}

.list-hover > li {
	-webkit-transition: background 300ms cubic-bezier(0.35, 0, 0.25, 1);
	transition: background 300ms cubic-bezier(0.35, 0, 0.25, 1);
	border-bottom: 1px solid #f0f0f0;
	background: #fff;
}

.list-hover > li:hover {
	background: #f0f0f0;
	border-color: #e3e3e3;
}

.justified-list {
	margin: 0;
	padding: 0;
	display: table;
	width: 100%;
	table-layout: fixed;
	border-collapse: separate;
}

.justified-list li {
	list-style-type: none;
	display: table-cell;
	width: 1%;
	padding: 10px 0;
	text-align: center;
}

.justified-list.with-border {
	border-top: 1px solid #f0f0f0;
}

.justified-list.with-border li {
	border-left: 1px solid #f0f0f0;
}

.justified-list.with-border li:first-child {
	border-left-color: transparent;
}

ul.action {
	padding: 0;
	margin: 10px 0 0 0;
}

ul.action li {
	list-style-type: none;
	display: inline-block;
	margin-right: 10px;
	font-size: 15px;
}

ul.action li i {
	margin-right: 5px;
}

.comments {
	margin: 40px 0 20px 0;
}

.comments .comment {
	margin-bottom: 15px;
}

.comments .comment .user-photo {
	float: left;
	width: 50px;
}

.comments .comment .user-photo img {
	width: 50px;
	height: 50px;
	border-radius: 100%;
}

.comments .comment .comment-body {
	position: relative;
	margin-left: 70px;
}

.comments .comment .comment-body .user {
	display: block;
	margin-bottom: 15px;
}

.comments .comment .comment-body .comment-date {
	position: absolute;
	right: 0px;
	top: 0px;
	text-align: right;
	font-size: 14px;
}

.comments .comment .comment-body p {
	margin-top: 10px;
	font-size: 16px;
}

.comments .comment .comment-body .comment {
	padding-top: 20px;
}

.comments .comment .comment-body .comment:last-child {
	padding-top: 0;
}

.comments .comment .comment-body .comment-footer {
	position: relative;
}

.comments .comment .comment-body:before,
.comments .comment .comment-body:after {
	content: ' ';
	display: table;
}

.comments .comment .comment-body:after {
	clear: both;
}

.comments .comment.comment-box {
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.list-gallery img {
	width: 100%;
	height: auto;
}

.list-calendar {
	margin: 0;
	padding: 20px;
}

.list-calendar > li {
	margin-bottom: 20px;
}

.list-calendar > li:before,
.list-calendar > li:after {
	content: ' ';
	display: table;
}

.list-calendar > li:after {
	clear: both;
}

.list-calendar > li .date {
	float: left;
	width: 50px;
}

.list-calendar > li .date .number {
	display: block;
	font-size: 26px;
	color: #595959;
	line-height: 1;
}

.list-calendar > li .date .text {
	display: block;
	font-size: 14px;
}

.list-calendar > li .event {
	position: relative;
	margin-left: 50px;
}

.list-calendar > li .event > * {
	position: relative;
	margin-top: -2px;
	z-index: 2;
}

.list-calendar > li.week-seperator {
	position: relative;
	margin: 30px 0 10px 0;
	color: #9d9d9d;
	font-size: 14px;
	padding-left: 50px;
}

.list-calendar > li.month-seperator {
	position: relative;
	margin-left: -20px;
	margin-right: -20px;
	padding: 20px 0 20px 70px;
	height: 120px;
}

.list-calendar > li.month-seperator span {
	position: relative;
	z-index: 2;
	font-weight: bold;
}

.list-calendar.list-calendar-day-view > li {
	margin: 0;
}

.list-calendar.list-calendar-day-view > li .date {
	margin-top: -10px;
}

.list-calendar.list-calendar-day-view > li .date .text {
	color: #9d9d9d;
}

.list-calendar.list-calendar-day-view > li .event {
	min-height: 35px;
}

.list-calendar.list-calendar-day-view > li .event:before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	content: '';
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid transparent;
}

.list-calendar.list-calendar-day-view > li .event:after {
	position: absolute;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	width: 100%;
	content: '';
	border-bottom: 1px dotted #a3a3a3;
}

.list-calendar.list-calendar-day-view > li:last-child .event:before {
	border-bottom-color: #f0f0f0;
}

.list-calendar.list-calendar-fixed {
	padding: 20px 20px 0px 20px;
}

.list-calendar.list-calendar-fixed > li {
	min-height: 55px;
	margin: 0 -20px;
	border-bottom: 1px solid #f0f0f0;
	padding: 0 20px 0px 20px;
}

/*
14 - Messages
*/
.messages {
	padding: 15px;
}

.messages .message {
	position: relative;
	margin: 10px 0;
	overflow: hidden;
}

.messages .message .user-picture {
	position: absolute;
	left: 0;
	top: 15px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
}

.messages .message .message-text {
	position: relative;
	float: right;
	padding: 10px 20px;
	border-radius: 25px;
	margin-bottom: 2px;
	font-size: 16px;
	clear: both;
}

.messages .message .message-text:before,
.messages .message .message-text:after {
	border-radius: 100%;
}

.messages .message .message-text:first-child {
	margin-top: 15px;
}

.messages .message .message-text:first-child:before,
.messages .message .message-text:first-child:after {
	content: '';
	position: absolute;
	top: 0px;
	width: 40px;
	height: 20px;
	z-index: -1;
}

.messages .message.left {
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
}

.messages .message.left .message-text {
	margin-right: 70px;
	margin-left: 55px;
	background-color: #f0f0f0;
	color: rgba(0, 0, 0, 0.87);
	float: left;
}

.messages .message.left .message-text:before {
	left: -16px;
	background-color: #f0f0f0;
	border-radius: 0;
}

.messages .message.left .message-text:after {
	top: -1px;
	left: -50px;
	background-color: #fff;
	width: 50px;
	height: 50px;
}

.messages .message.right {
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
}

.messages .message.right .user-picture {
	left: auto;
	right: 0;
}

.messages .message.right .message-text {
	margin-left: 70px;
	margin-right: 55px;
	background-color: #2095f2;
	color: #fff;
	float: right;
}

.messages .message.right .message-text:before {
	right: -16px;
	border-radius: 0;
	background-color: #2095f2;
}

.messages .message.right .message-text:after {
	top: -1px;
	right: -49px;
	width: 50px;
	height: 50px;
	background-color: #fff;
}

.messages .message.animate {
	-webkit-animation: display 0.5s cubic-bezier(0.55, 0, 0.1, 1) forwards;
	animation: display 0.5s cubic-bezier(0.55, 0, 0.1, 1) forwards;
}

/*
15 - Footer Links
*/
.footer-links {
	padding: 0;
	margin-left: -40px;
	margin-right: -40px;
}

.footer-links a {
	padding: 20px;
	position: relative;
	display: block;
	float: left;
	padding-left: 70px;
	width: 100%;
	text-decoration: none;
}

.footer-links a span {
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.footer-links a span.state {
	font-size: 14px;
	opacity: 0.5;
	line-height: 1;
	margin-top: 10px;
}

.footer-links a span.icon {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 40px;
	overflow: initial;
	white-space: inherit;
}

.footer-links .row > div:nth-child(2) a {
	float: right;
	padding-right: 70px;
	text-align: right;
}

.footer-links .row > div:nth-child(2) a span.icon {
	right: 40px;
	left: auto;
}

/*
16 - Bg Colors
*/
.bg-white {
	background: #ffffff;
}

.bg-red {
	background: #f34235;
}

.bg-red a {
	color: #ffffff;
}

.bg-red a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-red .v-text {
	color: #ffffff;
}

.bg-red .header-tabs {
	background: #f34235;
}

.bg-pink {
	background: #e81d62;
}

.bg-pink a {
	color: #ffffff;
}

.bg-pink a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-pink .v-text {
	color: #ffffff;
}

.bg-pink .header-tabs {
	background: #e81d62;
}

.bg-purple {
	background: #9b26af;
}

.bg-purple a {
	color: #ffffff;
}

.bg-purple a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-purple .v-text {
	color: #ffffff;
}

.bg-purple .header-tabs {
	background: #9b26af;
}

.bg-deep-purple {
	background: #6639b6;
}

.bg-deep-purple a {
	color: #ffffff;
}

.bg-deep-purple a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-deep-purple .v-text {
	color: #ffffff;
}

.bg-deep-purple .header-tabs {
	background: #6639b6;
}

.bg-indigo {
	background: #3e50b4;
}

.bg-indigo a {
	color: #ffffff;
}

.bg-indigo a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-indigo .v-text {
	color: #ffffff;
}

.bg-indigo .header-tabs {
	background: #3e50b4;
}

.bg-blue {
	background: #2095f2;
}

.bg-blue a {
	color: #ffffff;
}

.bg-blue a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-blue .v-text {
	color: #ffffff;
}

.bg-blue .header-tabs {
	background: #2095f2;
}

.bg-light-blue {
	background: #02a8f3;
}

.bg-light-blue a {
	color: #ffffff;
}

.bg-light-blue a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-light-blue .v-text {
	color: #ffffff;
}

.bg-light-blue .header-tabs {
	background: #02a8f3;
}

.bg-cyan {
	background: #00bbd3;
}

.bg-cyan a {
	color: #ffffff;
}

.bg-cyan a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-cyan .v-text {
	color: #ffffff;
}

.bg-cyan .header-tabs {
	background: #00bbd3;
}

.bg-teal {
	background: #009587;
}

.bg-teal a {
	color: #ffffff;
}

.bg-teal a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-teal .v-text {
	color: #ffffff;
}

.bg-teal .header-tabs {
	background: #009587;
}

.bg-green {
	background: #4bae4f;
}

.bg-green a {
	color: #ffffff;
}

.bg-green a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-green .v-text {
	color: #ffffff;
}

.bg-green .header-tabs {
	background: #4bae4f;
}

.bg-light-green {
	background: #8ac249;
}

.bg-light-green a {
	color: #ffffff;
}

.bg-light-green a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-light-green .v-text {
	color: #ffffff;
}

.bg-light-green .header-tabs {
	background: #8ac249;
}

.bg-lime {
	background: #ccdb38;
}

.bg-lime a {
	color: #ffffff;
}

.bg-lime a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-lime .v-text {
	color: #ffffff;
}

.bg-lime .header-tabs {
	background: #ccdb38;
}

.bg-yellow {
	background: #feea3a;
}

.bg-yellow a {
	color: #ffffff;
}

.bg-yellow a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-yellow .v-text {
	color: #ffffff;
}

.bg-yellow .header-tabs {
	background: #feea3a;
}

.bg-amber {
	background: #fec006;
}

.bg-amber a {
	color: #ffffff;
}

.bg-amber a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-amber .v-text {
	color: #ffffff;
}

.bg-amber .header-tabs {
	background: #fec006;
}

.bg-orange {
	background: #f39c12;
}

.bg-orange a {
	color: #ffffff;
}

.bg-orange a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-orange .v-text {
	color: #ffffff;
}

.bg-orange .header-tabs {
	background: #f39c12;
}

.bg-deep-orange {
	background: #fe5621;
}

.bg-deep-orange a {
	color: #ffffff;
}

.bg-deep-orange a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-deep-orange .v-text {
	color: #ffffff;
}

.bg-deep-orange .header-tabs {
	background: #fe5621;
}

.bg-brown {
	background: #785447;
}

.bg-brown a {
	color: #ffffff;
}

.bg-brown a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-brown .v-text {
	color: #ffffff;
}

.bg-brown .header-tabs {
	background: #785447;
}

.bg-grey {
	background: #9d9d9d;
}

.bg-grey a {
	color: #ffffff;
}

.bg-grey a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-grey .v-text {
	color: #ffffff;
}

.bg-grey .header-tabs {
	background: #9d9d9d;
}

.bg-light-grey {
	background: #fcfcfc;
}

.bg-light-grey a {
	color: rgba(0, 0, 0, 0.87);
}

.bg-light-grey a:hover {
	color: rgba(0, 0, 0, 0.6);
}

.bg-light-grey .v-text {
	color: rgba(0, 0, 0, 0.87);
}

.bg-light-grey .header-tabs {
	background: #fcfcfc;
}

.bg-blue-grey {
	background: #5f7c8a;
}

.bg-blue-grey a {
	color: #ffffff;
}

.bg-blue-grey a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.bg-blue-grey .v-text {
	color: #ffffff;
}

.bg-blue-grey .header-tabs {
	background: #5f7c8a;
}

/*
17 - Charts
*/
.rickshaw_graph.without-time .x_label {
	display: none;
}

.rickshaw_graph .x_label {
	font-family: inherit;
}

.rickshaw_graph .detail .item {
	padding: 4px 8px !important;
	font-size: 14px !important;
	font-family: inherit !important;
}

.rickshaw_graph .detail .item:after {
	display: none !important;
}

.rickshaw_graph .detail .dot {
	width: 6px !important;
	height: 6px !important;
	margin-left: -4.5px !important;
	margin-top: -5px !important;
	border-width: 2px !important;
	box-shadow: none !important;
	border-color: rgba(0, 0, 0, 0.8) !important;
	border-radius: 50% !important;
}

.rickshaw_graph .x_tick .title {
	bottom: -25px !important;
	left: -14px !important;
	font-size: 14px !important;
	font-family: inherit !important;
}

.rickshaw_graph.white-tick .x_tick {
	border-color: rgba(255, 255, 255, 0.2);
}

.gauge-chart {
	text-align: center;
	max-width: 300px;
	display: block;
	margin: 0 auto;
}

.gauge-chart .gauge-canvas {
	width: 100%;
}

.gauge-chart #preview-textfield {
	padding: 0 0 10px 0;
	text-align: center;
	font-size: 24px;
}

.chart-desc {
	padding: 0 20px;
	font-size: 16px;
	opacity: 0.9;
	text-align: center;
}

/*
18 - Pricing Tables
*/
.card-pricing .card-heading h4,
.card-pricing .card-heading h5 {
	margin: 0;
	display: block;
}

.card-pricing .card-heading h4 i,
.card-pricing .card-heading h5 i {
	font-style: normal;
}

.card-pricing .card-body {
	padding: 0;
}

.card-pricing .card-body .pricing-features li {
	padding: 10px 20px;
	margin: 0;
	border-bottom: 1px solid transparent;
}

.card-pricing .card-body .pricing-features li i {
	margin-right: 10px;
}

.card-pricing .card-body .pricing-features li.disabled {
	color: rgba(77, 77, 77, 0.87);
	text-decoration: line-through;
}

.card-pricing .card-body .pricing-features li:last-child {
	border-bottom: 0;
}

.card-pricing .card-body .pricing-features.pricing-features-hover li:hover {
	background: rgba(236, 236, 236, 0.1);
}

.card-pricing.card-pricing-simple {
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
}

.card-pricing.card-pricing-simple .card-heading {
	padding: 0;
	border-bottom: 0;
}

.card-pricing.card-pricing-simple .card-heading h4 {
	padding: 20px 0 5px 0;
	font-size: 30px;
	text-align: center;
}

.card-pricing.card-pricing-simple .card-heading h5 {
	padding: 10px 0 10px 0;
	margin: 15px 0 10px 0;
	background: #f0f0f0;
	text-align: center;
	-webkit-transition: background-color 0.3s, color 0.6s;
	transition: background-color 0.3s, color 0.6s;
}

.card-pricing.card-pricing-simple .card-body .pricing-features li {
	border-bottom: 0;
}

.card-pricing.card-pricing-simple .card-footer {
	border-top: 0;
	padding: 10px 20px 20px 20px;
}

.card-pricing.card-pricing-simple:hover,
.card-pricing.card-pricing-simple.active {
	border-color: #337ab7;
}

.card-pricing.card-pricing-simple:hover h5,
.card-pricing.card-pricing-simple.active h5 {
	background: #337ab7;
	color: #fff;
}

.card-pricing.card-pricing-dark {
	-webkit-transition: box-shadow 0.3s, margin 0.3s;
	transition: box-shadow 0.3s, margin 0.3s;
}

.card-pricing.card-pricing-dark .card-heading {
	padding: 0;
	border-bottom: 0;
}

.card-pricing.card-pricing-dark .card-heading h4 {
	padding: 20px 0;
	font-size: 24px;
	text-align: center;
	background: #000;
	color: #fff;
	border-bottom: 5px solid transparent;
	-webkit-transition: background-color 0.3s, border-color 0.6s;
	transition: background-color 0.3s, border-color 0.6s;
}

.card-pricing.card-pricing-dark .card-heading h5 {
	padding: 20px 0;
	text-align: center;
	background: #f0f0f0;
}

.card-pricing.card-pricing-dark .card-footer {
	border-top: 0;
	padding: 20px;
}

.card-pricing.card-pricing-dark:hover,
.card-pricing.card-pricing-dark.active {
	margin-top: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-pricing.card-pricing-dark:hover h4,
.card-pricing.card-pricing-dark.active h4 {
	background: #122b40;
	border-color: #337ab7;
}

.card-pricing.card-pricing-justified .card-heading {
	padding: 20px;
	background: #222;
}

.card-pricing.card-pricing-justified .card-heading h4 {
	display: inline-block;
	float: left;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.87);
}

.card-pricing.card-pricing-justified .card-heading h5 {
	display: inline-block;
	float: right;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.87);
}

.card-pricing.card-pricing-justified .card-body {
	padding: 5px 15px;
}

.card-pricing.card-pricing-justified .card-body .pricing-features li {
	padding: 7px 5px;
	border-bottom-color: #f0f0f0;
}

.card-pricing.card-pricing-justified .card-body .pricing-features li span {
	float: right;
	text-align: right;
	font-weight: bold;
}

.card-pricing.card-pricing-justified .card-body .pricing-features li:before,
.card-pricing.card-pricing-justified .card-body .pricing-features li:after {
	content: '';
	display: table;
	clear: both;
}

.card-pricing.card-pricing-justified .card-footer {
	border-top: 0;
	padding: 10px 20px 20px 20px;
}

.card-pricing.complicated .card-heading {
	padding: 0;
}

.card-pricing.complicated .card-heading h4 {
	width: 100%;
	padding: 15px 0;
	margin: 0;
	background: #337ab7;
	color: #fff;
	text-align: center;
	border-bottom: 1px solid #fff;
}

.card-pricing.complicated .card-heading h5 {
	width: 100%;
	padding: 5px 0 20px 0;
	margin: 0;
	background: #337ab7;
	color: #fff;
	text-align: center;
}

.card-pricing.complicated .card-heading h5 .price {
	font-size: 90px;
}

.card-pricing.complicated .card-heading h5 .price .friction {
	position: relative;
	top: -42px;
	left: 10px;
	font-size: 30%;
	color: #fff;
}

.card-pricing.complicated .card-heading h5 span {
	display: block;
	margin-top: 10px;
}

.card-pricing.complicated .card-heading h5 span i {
	font-style: normal;
}

.card-pricing.complicated .card-body {
	padding: 0;
}

.pricing-table {
	margin: 15px 0;
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 3px;
	overflow: hidden;
}

.pricing-table table {
	margin: 0;
}

.pricing-table table th {
	padding: 0 20px !important;
	border-bottom-width: 1px !important;
}

.pricing-table table tfoot th {
	padding: 10px 20px !important;
}

.pricing-table table td {
	padding: 10px 20px !important;
	text-align: center;
}

.pricing-table table .categories {
	text-align: left;
}

.pricing-table table .pack,
.pricing-table table .price-container {
	text-align: center;
	padding: 15px 0 5px 0;
	margin: 0;
	display: block;
}

.pricing-table table .pack i,
.pricing-table table .price-container i {
	font-style: normal;
}

.pricing-table table .pack {
	color: #337ab7;
	font-size: 23px;
	font-weight: 300;
}

.pricing-table table .price-container {
	padding: 10px 0 15px 0;
	font-size: 16px;
}

/*
19 - Misc
*/
.img-radius {
	border-radius: 3px;
}

.face-radius {
	border-radius: 50%;
}

.legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 29px;
	font-size: 27px;
	line-height: inherit;
	border: 0;
	border-bottom: 1px solid #f0f0f0;
	font-weight: 300;
	margin-top: 30px;
}

.loading-bar {
	position: relative;
	width: 100%;
	height: 3px;
	background: #e7e7e7;
	margin-bottom: 10px;
}

.loading-bar:before {
	position: absolute;
	content: '';
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	background: #337ab7;
}

.loading-bar.indeterminate:before {
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-animation: indeterminate-bar 1s linear infinite;
	animation: indeterminate-bar 1s linear infinite;
}

.loading-bar.determinate:before {
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-animation: determinate-bar 2.2s linear infinite;
	animation: determinate-bar 2.2s linear infinite;
}

.loading-bar.determinate-center:before {
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-animation: determinate-bar 2.2s linear infinite;
	animation: determinate-bar 2.2s linear infinite;
}

.loading-bar.loading-red:before {
	background: #f34235;
}

.loading-bar.loading-pink:before {
	background: #e81d62;
}

.loading-bar.loading-purple:before {
	background: #9b26af;
}

.loading-bar.loading-deep-purple:before {
	background: #6639b6;
}

.loading-bar.loading-indigo:before {
	background: #3e50b4;
}

.loading-bar.loading-blue:before {
	background: #2095f2;
}

.loading-bar.loading-light-blue:before {
	background: #02a8f3;
}

.loading-bar.loading-cyan:before {
	background: #00bbd3;
}

.loading-bar.loading-teal:before {
	background: #009587;
}

.loading-bar.loading-green:before {
	background: #4bae4f;
}

.loading-bar.loading-light-green:before {
	background: #8ac249;
}

.loading-bar.loading-lime:before {
	background: #ccdb38;
}

.loading-bar.loading-yellow:before {
	background: #feea3a;
}

.loading-bar.loading-amber:before {
	background: #fec006;
}

.loading-bar.loading-orange:before {
	background: #f39c12;
}

.loading-bar.loading-deep-orange:before {
	background: #fe5621;
}

.loading-bar.loading-brown:before {
	background: #785447;
}

.loading-bar.loading-grey:before {
	background: #9d9d9d;
}

.loading-bar.loading-blue-grey:before {
	background: #5f7c8a;
}

@-webkit-keyframes indeterminate-bar {
	0% {
		-webkit-transform: translate(-50%) scaleX(0);
		transform: translate(-50%) scaleX(0);
	}
	50% {
		-webkit-transform: translate(0%) scaleX(0.3);
		transform: translate(0%) scaleX(0.3);
	}
	100% {
		-webkit-transform: translate(50%) scaleX(0);
		transform: translate(50%) scaleX(0);
	}
}

@keyframes indeterminate-bar {
	0% {
		-webkit-transform: translate(-50%) scaleX(0);
		transform: translate(-50%) scaleX(0);
	}
	50% {
		-webkit-transform: translate(0%) scaleX(0.3);
		transform: translate(0%) scaleX(0.3);
	}
	100% {
		-webkit-transform: translate(50%) scaleX(0);
		transform: translate(50%) scaleX(0);
	}
}

@-webkit-keyframes determinate-bar {
	0% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
	100% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes determinate-bar {
	0% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
	100% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.tooltip {
	font-family: inherit;
	font-size: 14px;
}

.tooltip .tooltip-arrow {
	display: none;
}

.tooltip .tooltip-inner {
	padding: 4px 8px;
	background-color: rgba(40, 40, 40, 0.9);
}

.tooltip.top {
	padding: 10px 0;
}

#toast-container .toast {
	opacity: 1;
	background-image: none !important;
	padding: 16px 24px;
	box-shadow: none;
	-webkit-animation: 500ms pulse;
	animation: 500ms pulse;
}

#toast-container .toast .toast-title {
	margin-bottom: 10px;
}

#toast-container .toast .toast-message {
	line-height: 24px;
}

#toast-container .toast .toast-message .btn {
	position: absolute;
	right: 24px;
	top: 12px;
}

#toast-container .toast:hover {
	box-shadow: none;
}

#toast-container .toast.toast-info {
	background-color: #323232;
}

#toast-container .toast.toast-success {
	background-color: #5cb85c;
}

#toast-container .toast.toast-warning {
	background-color: #f0ad4e;
}

#toast-container .toast.toast-error {
	background-color: #d9534f;
}

#toast-container .toast-close-button {
	position: absolute;
	right: 24px;
	top: 12px;
	text-shadow: none;
}

#toast-container .toast-close-button:hover,
#toast-container .toast-close-button:focus {
	color: #fff;
	opacity: 0.5;
	outline: none;
}

#toast-container.toast-top-right {
	top: 20px;
	right: 20px;
}

#toast-container.toast-bottom-right {
	bottom: 20px;
	right: 20px;
}

#toast-container.toast-bottom-left {
	bottom: 20px;
	left: 106px;
}

#toast-container.toast-top-left {
	top: 20px;
	left: 106px;
}

#toast-container.toast-top-full-width,
#toast-container.toast-bottom-full-width {
	left: 0;
}

#toast-container.toast-top-full-width .toast,
#toast-container.toast-bottom-full-width .toast {
	width: 100%;
	border-radius: 0;
}

.display-animation .material-animate {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.display-animation .material-animated {
	-webkit-animation: display 0.5s cubic-bezier(0.55, 0, 0.1, 1) forwards;
	animation: display 0.5s cubic-bezier(0.55, 0, 0.1, 1) forwards;
}

.no-js .display-animation .material-animate {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

@-webkit-keyframes display {
	from {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes display {
	from {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

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

.hidden {
	visibility: hidden;
}

/*
20 - Others
*/
.row.no-gutters {
	margin-left: 0;
	margin-right: 0;
}

.row.no-gutters [class^='col-'],
.row.no-gutters [class*=' col-'] {
	padding-left: 0;
	padding-right: 0;
}

.row.image-row .tile {
	margin-bottom: 4px;
}

.row.image-row .bx-viewport {
	margin-bottom: 4px;
}

.row-centered {
	text-align: center;
}

.row-centered .col-centered {
	display: inline-block;
	float: none;
	text-align: left;
	margin-right: -4px;
}

.row .square-helper {
	margin-top: 100%;
}

.row .square-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 15px;
	border: 1px solid #f0f0f0;
	padding-top: calc(35%);
	text-align: center;
	background: #fff;
}

.table > thead > tr > th {
	border-bottom-width: 1px;
}

.overflow-table {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	margin: 10px 0 !important;
}

pre {
	padding: 10px;
	margin: 20px 0;
	white-space: pre-wrap;
}

pre code,
pre .hljs {
	padding: 1em 2em;
}

.navbar-spy {
	margin-bottom: 0;
}

.scrollspy {
	position: relative;
	height: 200px;
	margin-top: 0px;
	overflow: auto;
	padding: 5px 15px;
	border: 1px #ddd solid;
	border-top: 0;
}

.user-profile > .panel {
	margin-top: 10px;
}

.user-profile .panel-heading {
	padding: 0;
	overflow: hidden;
	position: relative;
	border-radius: 3px;
	border: 0;
}

.user-profile .panel-heading .cover-image {
	position: relative;
	z-index: 1;
	height: 280px;
	background-size: cover;
	background-position: center;
}

.user-profile .panel-heading .overlay {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.user-profile .panel-heading .user-image {
	position: absolute;
	z-index: 10;
	left: 30px;
	bottom: 70px;
}

.user-profile .panel-heading .user-image img {
	width: 100px;
	border-radius: 100%;
}

.user-profile .panel-heading .user-detail {
	position: absolute;
	z-index: 10;
	left: 150px;
	bottom: 90px;
}

.user-profile .panel-heading .user-detail h1 {
	font-size: 25px;
	font-weight: normal;
	margin: 0 0 8px 0;
	color: #fff;
}

.user-profile .panel-heading .user-detail h2 {
	font-size: 18px;
	font-weight: normal;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
}

.user-profile .panel-heading .user-action {
	position: absolute;
	bottom: 0;
	z-index: 10;
	width: 100%;
	padding: 0 30px;
	background: rgba(0, 0, 0, 0.3);
	border-bottom: 2px solid #f0f0f0;
}

.user-profile .panel-heading .user-action .nav.nav-tabs {
	top: 1px;
}

.user-profile .panel-heading .user-action .nav.nav-tabs li a {
	border: 0;
	border-bottom: 2px solid transparent;
	padding: 12px 10px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 10px;
	font-size: 15px;
}

.user-profile .panel-heading .user-action .nav.nav-tabs li:first-child a {
	margin-left: 0;
}

.user-profile .panel-heading .user-action .nav.nav-tabs li.active a {
	background: transparent;
	border-bottom: 2px solid #337ab7;
	color: #fff;
}

.user-profile .tab-pane {
	padding-bottom: 40px;
}

.user-profile #about .nav-tabs {
	margin: 15px 0;
}

.user-profile #about .tab-content {
	border: 0;
}

.user-profile #about .tab-content .row {
	margin-top: 15px;
	margin-bottom: 15px;
}

.user-profile #about .tab-content .row .col-md-3 {
	color: #999;
}

.user-profile #about .legend {
	margin-top: 0;
}

.user-profile #photos a {
	margin: 2px 0;
	display: block;
}

.user-profile #photos a img {
	width: 100%;
	height: auto;
}

/*
23 - Coming Soon
*/
.coming-soon {
	margin: 0;
	color: #fff;
	text-align: center;
}

.coming-soon .center {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 412px;
	margin-top: -260px;
	z-index: 10;
}

.coming-soon h1 {
	font-size: 50px;
}

.coming-soon p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.7);
	margin: 10px 0 30px 0;
}

.coming-soon .bg-overlay {
	z-index: 0;
	background: rgba(0, 0, 0, 0.5);
}

.coming-soon .countdown-container {
	margin: 30px 0 0 0;
}

.coming-soon .countdown-container li {
	display: inline-block;
	width: 25%;
	text-align: center;
}

.coming-soon .countdown-container li span {
	opacity: 0.5;
}

.coming-soon .countdown-container li .number {
	font-size: 70px;
	line-height: 70px;
}

.coming-soon .social-links {
	position: absolute;
	z-index: 9;
	bottom: 25px;
	width: 100%;
}

.coming-soon .social-links li {
	font-size: 22px;
	display: inline;
}

.coming-soon .social-links li a {
	opacity: 0.7;
	padding: 10px;
}

.coming-soon .social-links li a:hover {
	color: #fff;
	opacity: 1;
}

/*
24 - About Us
*/
.about-us .panel-body {
	padding: 30px;
}

.about-us h2 {
	margin-top: 0;
}

.about-us .row.no-gutters {
	margin-top: 50px;
}

.about-us p {
	color: #999;
	font-size: 16px;
	text-align: justify;
}

.client-list {
	margin: 50px 0;
	padding: 0;
}

.client-list div {
	border: 1px solid #f0f0f0;
	border-right-color: transparent;
	border-bottom-color: transparent;
	margin: 0;
	padding: 15px 0;
	text-align: center;
}

.client-list div img {
	width: 100px;
}

.client-list div.col-md-3:nth-child(1),
.client-list div.col-md-3:nth-child(2),
.client-list div.col-md-3:nth-child(3),
.client-list div.col-md-3:nth-child(4) {
	border-top-color: transparent;
}

.client-list div.col-md-3:nth-of-type(4n + 1) {
	border-left-color: transparent;
}

.client-list:before,
.client-list:after {
	content: ' ';
	display: table;
}

.client-list:after {
	clear: both;
}

/*
25 - Contact Us
*/
.contact-us .panel-body {
	padding: 30px;
}

.contact-us h2 {
	margin-top: 0;
}

.contact-us p {
	color: #999;
	font-size: 16px;
	text-align: justify;
}

.contact-us .address {
	margin: 15px 0 30px 0;
	color: #999;
}

.contact-us .address h4 {
	color: rgba(0, 0, 0, 0.87);
}

.contact-us .map {
	margin: 0 0 50px 0;
	width: 100%;
	height: 250px;
}

/*
26 - Invoice
*/
.invoice {
	padding: 20px;
}

.invoice .invoice-heading .date-row #barcode {
	position: relative;
	top: 15px;
	left: -10px;
}

.invoice .invoice-heading .date-row .invoice-id {
	text-align: right;
}

.invoice .invoice-heading .date-row h4 {
	font-weight: bold;
	margin-bottom: 10px;
}

.invoice .invoice-heading .date-row h5 {
	color: #999;
}

.invoice .invoice-heading .customer-row {
	padding-bottom: 30px;
}

.invoice .invoice-heading .customer-row .company .company-logo {
	display: inline-block;
	position: relative;
	margin-bottom: 10px;
}

.invoice .invoice-heading .customer-row .company .company-logo img {
	width: 120px;
}

.invoice .invoice-heading .customer-row .customer {
	text-align: right;
}

.invoice .invoice-heading .customer-row .customer .customer-logo {
	display: inline-block;
	position: relative;
	right: -10px;
}

.invoice .invoice-heading .customer-row .customer .customer-logo img {
	width: 120px;
}

.invoice .invoice-heading .customer-row h5 {
	font-weight: bold;
	margin-bottom: 10px;
}

.invoice .invoice-body {
	padding: 20px 0;
}

.invoice .invoice-body small {
	margin-top: 5px;
	display: block;
}

.invoice .invoice-footer {
	padding: 20px 0;
	text-align: right;
}

/*
27 - Search Results
*/
.search-results.search-file .search-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.search-results.search-file .search-list li {
	border-bottom: 1px solid #f0f0f0;
	margin: 0;
	padding: 0;
}

.search-results.search-file .search-list li .file-icon {
	float: left;
	width: 65px;
	font-size: 30px;
	padding: 15px 20px 10px 20px;
}

.search-results.search-file .search-list li .file-icon .excel {
	color: #008641;
}

.search-results.search-file .search-list li .file-icon .word {
	color: #0054a6;
}

.search-results.search-file .search-list li .file-icon .powerpoint {
	color: #f04e23;
}

.search-results.search-file .search-list li .file-icon .pdf {
	color: #ff0000;
}

.search-results.search-file .search-list li .file-icon .audio {
	color: #7ab800;
}

.search-results.search-file .search-list li .file-icon .image {
	color: #ff0084;
}

.search-results.search-file .search-list li .file-icon .video {
	color: #e52d27;
}

.search-results.search-file .search-list li .file-icon .code {
	color: #a561cb;
}

.search-results.search-file .search-list li .file-icon .text {
	color: rgba(0, 0, 0, 0.87);
}

.search-results.search-file .search-list li .file-icon .file {
	color: #f4b400;
}

.search-results.search-file .search-list li .search-result {
	float: left;
	width: 80%;
	padding: 15px 0;
	overflow: hidden;
}

.search-results.search-file .search-list li .search-result h6 {
	font-size: 18px;
	margin: 5px 0;
}

.search-results.search-file .search-list li .search-result h6 a {
	color: rgba(0, 0, 0, 0.87);
}

.search-results.search-file .search-list li .search-result .source {
	margin: 7px 0 5px 0;
	text-overflow: ellipsis;
	overflow: hidden;
}

.search-results.search-file .search-list li .search-result .source a {
	color: rgba(77, 77, 77, 0.87);
}

.search-results.search-file .search-list li .search-result .highlight {
	background: rgba(51, 122, 183, 0.1);
	padding: 3px 0px;
}

.search-results.search-file .search-list li .search-result .list-inline {
	opacity: 0.5;
}

.search-results.search-file .search-list li .search-result .list-inline li {
	border-bottom: 0;
	padding: 0;
	font-size: 13px;
}

.search-results.search-file .search-list li .search-result .list-inline li a {
	text-decoration: none;
}

.search-results.search-file .search-list li .search-result .list-inline li:after {
	display: inline-block;
	content: '-';
	padding: 0 8px;
}

.search-results.search-file .search-list li .search-result .list-inline li:first-child {
	padding-left: 5px;
}

.search-results.search-file .search-list li .search-result .list-inline li:last-child:after {
	content: '';
}

.search-results.search-file .search-list li:last-child {
	border-bottom: 0;
}

.search-results.search-file .search-list li:before,
.search-results.search-file .search-list li:after {
	content: ' ';
	display: table;
	clear: both;
}

.search-results.search-file .search-list.list-hover li:hover {
	background: rgba(236, 236, 236, 0.1);
}

.search-results.search-file .search-list.list-hover li:hover .list-inline {
	opacity: 1;
}

.search-results.search-file .search-list.list-striped li:nth-child(2n) {
	background: rgba(236, 236, 236, 0.1);
}

/*
28 - Timeline
*/
.timeline {
	position: relative;
	margin: 0;
}

.timeline .frame {
	position: relative;
	margin: 0;
	float: left;
	width: 50%;
	clear: both;
	line-height: inherit;
	text-align: right;
	margin-top: 15px;
}

.timeline .frame .timeline-badge {
	position: absolute;
	top: 10px;
	right: -13px;
	z-index: 3;
	width: 26px;
	height: 26px;
	background-color: #337ab7;
	border: 1px solid #286090;
	border-radius: 13px;
	font-size: 14px;
	line-height: 26px;
	text-align: center;
	color: #fff;
}

.timeline .frame .timeline-badge i {
	position: relative;
	top: -1px;
}

.timeline .frame .timeline-date {
	display: block;
	color: #337ab7;
	font-style: italic;
	font-size: 14px;
	margin: 10px 30px 0 30px;
}

.timeline .frame .timeline-content {
	position: relative;
	font-size: 16px;
	padding: 10px 0;
	margin-right: 30px;
}

.timeline .frame .timeline-bubble {
	position: relative;
	margin-right: 30px;
	margin-top: 10px;
	padding: 15px;
	min-height: 58px;
	border-radius: 3px;
	border: 1px solid #f0f0f0;
	background: #f0f0f0;
}

.timeline .frame .timeline-bubble:before,
.timeline .frame .timeline-bubble:after {
	position: absolute;
	right: -20px;
	top: 17px;
	display: block;
	width: 0;
	height: 0;
	border-width: 10px;
	border-style: solid;
	border-left: 10px solid #f0f0f0;
	color: rgba(0, 0, 0, 0);
	content: '';
}

.timeline .frame .timeline-bubble:before {
	right: -21px;
	border-left-color: #f0f0f0;
}

.timeline .frame:nth-child(2n) {
	float: right;
	text-align: left;
}

.timeline .frame:nth-child(2n) .timeline-badge {
	left: -13px;
}

.timeline .frame:nth-child(2n) .timeline-content {
	margin-left: 30px;
	margin-right: 0;
}

.timeline .frame:nth-child(2n) .timeline-bubble {
	margin-left: 30px;
	margin-right: 0;
}

.timeline .frame:nth-child(2n) .timeline-bubble:after {
	right: auto;
	left: -10px;
	border-left: 0;
	border-right: 10px solid #f0f0f0;
}

.timeline .frame:nth-child(2n) .timeline-bubble:before {
	right: auto;
	left: -21px;
	border-left-color: transparent;
	border-right-color: #f0f0f0;
}

.timeline .frame:first-child {
	margin-top: 15px !important;
}

.timeline .frame:last-child {
	margin-bottom: 20px !important;
}

.timeline.single .frame {
	width: 100%;
	text-align: left;
}

.timeline.single .frame .timeline-badge {
	left: 7px;
	margin-left: 0;
}

.timeline.single .frame .timeline-content {
	margin-left: 50px;
}

.timeline.single .frame .timeline-date {
	margin: 10px 50px 0 50px;
}

.timeline.single .frame .timeline-bubble {
	margin: 0 10px 0 50px;
}

.timeline.single .frame .timeline-bubble:after {
	right: auto;
	left: -10px;
	border-left: 0;
	border-right: 10px solid #f0f0f0;
}

.timeline.single .frame .timeline-bubble:before {
	right: auto;
	left: -21px;
	border-left-color: transparent;
	border-right-color: #f0f0f0;
}

.timeline.single .frame:nth-child(2n) {
	float: left;
}

.timeline.single:before {
	left: 20px;
}

.timeline.single.rtl .frame {
	text-align: right;
}

.timeline.single.rtl .frame .timeline-badge {
	left: auto;
	right: 7px;
}

.timeline.single.rtl .frame .timeline-content {
	margin-left: 0;
	margin-right: 50px;
}

.timeline.single.rtl .frame .timeline-bubble {
	margin: 0 50px 0 10px;
}

.timeline.single.rtl .frame .timeline-bubble:after {
	left: auto;
	right: -10px;
	border-right: 0;
	border-left: 10px solid #f0f0f0;
}

.timeline.single.rtl .frame .timeline-bubble:before {
	left: auto;
	right: -21px;
	border-right-color: transparent;
	border-left-color: #f0f0f0;
}

.timeline.single.rtl:before {
	left: auto;
	right: 20px;
}

.timeline.vertical {
	width: 135%;
	overflow: hidden;
	overflow-x: scroll;
	white-space: nowrap;
	padding-top: 10px;
}

.timeline.vertical .frame {
	display: inline-block;
	float: none;
	width: auto;
	top: auto;
	margin: 30px 20px 10px 0;
}

.timeline.vertical .frame .timeline-badge {
	left: auto;
	top: -51px;
	right: 50%;
	margin-right: -12px;
}

.timeline.vertical .frame .timeline-bubble {
	margin: 0;
}

.timeline.vertical .frame:nth-child(2n) {
	float: left;
}

.timeline.vertical:before {
	width: 100%;
	height: 3px;
	top: 10px;
	left: 0;
}

.timeline:before,
.timeline:after {
	content: '';
	display: table;
	clear: both;
}

.timeline:before {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	margin-left: -1px;
	background-color: #eee;
	content: ' ';
}

.timeline .widget {
	margin: 0;
}

/*
29 - Helpers
*/
.disable-scroll {
	overflow: hidden !important;
}

.text-overflow {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.text-center {
	margin: 0 auto;
	display: block;
	text-align: center;
}

.vertical-center {
	position: absolute;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
}

.horizontal-center {
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
}

.rounded-image {
	width: 100%;
	height: auto;
	border-radius: 50%;
}

.margin-0 {
	margin: 0px !important;
}

.margin-top-1 {
	margin-top: 1px !important;
}

.margin-top-2 {
	margin-top: 2px !important;
}

.margin-top-3 {
	margin-top: 3px !important;
}

.margin-top-4 {
	margin-top: 4px !important;
}

.margin-top-5 {
	margin-top: 5px !important;
}

.margin-top-10 {
	margin-top: 10px !important;
}

.margin-top-20 {
	margin-top: 20px !important;
}

.margin-top-30 {
	margin-top: 30px !important;
}

.margin-top-40 {
	margin-top: 40px !important;
}

.margin-top-50 {
	margin-top: 50px !important;
}

.margin-right-1 {
	margin-right: 1px !important;
}

.margin-right-2 {
	margin-right: 2px !important;
}

.margin-right-3 {
	margin-right: 3px !important;
}

.margin-right-4 {
	margin-right: 4px !important;
}

.margin-right-5 {
	margin-right: 5px !important;
}

.margin-right-10 {
	margin-right: 10px !important;
}

.margin-right-20 {
	margin-right: 20px !important;
}

.margin-right-30 {
	margin-right: 30px !important;
}

.margin-right-40 {
	margin-right: 40px !important;
}

.margin-right-50 {
	margin-right: 50px !important;
}

.margin-bottom-1 {
	margin-bottom: 1px !important;
}

.margin-bottom-2 {
	margin-bottom: 2px !important;
}

.margin-bottom-3 {
	margin-bottom: 3px !important;
}

.margin-bottom-4 {
	margin-bottom: 4px !important;
}

.margin-bottom-5 {
	margin-bottom: 5px !important;
}

.margin-bottom-10 {
	margin-bottom: 10px !important;
}

.margin-bottom-20 {
	margin-bottom: 20px !important;
}

.margin-bottom-30 {
	margin-bottom: 30px !important;
}

.margin-bottom-40 {
	margin-bottom: 40px !important;
}

.margin-bottom-50 {
	margin-bottom: 50px !important;
}

.margin-left-1 {
	margin-left: 1px !important;
}

.margin-left-2 {
	margin-left: 2px !important;
}

.margin-left-3 {
	margin-left: 3px !important;
}

.margin-left-4 {
	margin-left: 4px !important;
}

.margin-left-5 {
	margin-left: 5px !important;
}

.margin-left-10 {
	margin-left: 10px !important;
}

.margin-left-20 {
	margin-left: 20px !important;
}

.margin-left-30 {
	margin-left: 30px !important;
}

.margin-left-40 {
	margin-left: 40px !important;
}

.margin-left-50 {
	margin-left: 50px !important;
}

.padding-0 {
	padding: 0px !important;
}

.padding-top-1 {
	padding-top: 1px !important;
}

.padding-top-2 {
	padding-top: 2px !important;
}

.padding-top-3 {
	padding-top: 3px !important;
}

.padding-top-4 {
	padding-top: 4px !important;
}

.padding-top-5 {
	padding-top: 5px !important;
}

.padding-top-10 {
	padding-top: 10px !important;
}

.padding-top-20 {
	padding-top: 20px !important;
}

.padding-top-30 {
	padding-top: 30px !important;
}

.padding-top-40 {
	padding-top: 40px !important;
}

.padding-top-50 {
	padding-top: 50px !important;
}

.padding-right-1 {
	padding-right: 1px !important;
}

.padding-right-2 {
	padding-right: 2px !important;
}

.padding-right-3 {
	padding-right: 3px !important;
}

.padding-right-4 {
	padding-right: 4px !important;
}

.padding-right-5 {
	padding-right: 5px !important;
}

.padding-right-10 {
	padding-right: 10px !important;
}

.padding-right-20 {
	padding-right: 20px !important;
}

.padding-right-30 {
	padding-right: 30px !important;
}

.padding-right-40 {
	padding-right: 40px !important;
}

.padding-right-50 {
	padding-right: 50px !important;
}

.padding-bottom-1 {
	padding-bottom: 1px !important;
}

.padding-bottom-2 {
	padding-bottom: 2px !important;
}

.padding-bottom-3 {
	padding-bottom: 3px !important;
}

.padding-bottom-4 {
	padding-bottom: 4px !important;
}

.padding-bottom-5 {
	padding-bottom: 5px !important;
}

.padding-bottom-10 {
	padding-bottom: 10px !important;
}

.padding-bottom-20 {
	padding-bottom: 20px !important;
}

.padding-bottom-30 {
	padding-bottom: 30px !important;
}

.padding-bottom-40 {
	padding-bottom: 40px !important;
}

.padding-bottom-50 {
	padding-bottom: 50px !important;
}

.padding-left-1 {
	padding-left: 1px !important;
}

.padding-left-2 {
	padding-left: 2px !important;
}

.padding-left-3 {
	padding-left: 3px !important;
}

.padding-left-4 {
	padding-left: 4px !important;
}

.padding-left-5 {
	padding-left: 5px !important;
}

.padding-left-10 {
	padding-left: 10px !important;
}

.padding-left-20 {
	padding-left: 20px !important;
}

.padding-left-30 {
	padding-left: 30px !important;
}

.padding-left-40 {
	padding-left: 40px !important;
}

.padding-left-50 {
	padding-left: 50px !important;
}

.helper-dashboard-height {
	height: 339px;
}

.helper-timeline {
	height: 283px;
}

.c3-gauge-example {
	height: 160px !important;
	overflow: hidden;
}

.table-example .item-image {
	width: 70px;
}

.table-example .item-image img {
	width: 70px;
	height: auto;
	border-radius: 3px;
}

.table-example small {
	display: block;
}

.table-example .shares {
	width: 80px;
}

.example-map {
	width: 100%;
	height: 250px;
	border-radius: 3px;
	display: block;
}

.example-buttons .btn {
	margin: 0 0 12px;
}

.example-button-group .btn-group {
	margin-bottom: 10px;
}

.example-row {
	margin-bottom: 20px;
}

.example-row .progress {
	display: block;
	margin-bottom: 10px;
}

.example-row .pagination {
	margin: 0;
}

.example-row h1,
.example-row h2,
.example-row h3,
.example-row h4,
.example-row h5,
.example-row h6 {
	margin-top: 0;
}

.width-percent-100 {
	width: 100% !important;
}

.width-percent-100 > li {
	width: 100% !important;
}

.list-fonticons ul {
	padding: 0;
}

.list-fonticons li {
	float: left;
	width: 12.5%;
	height: 115px;
	padding: 10px 10px 10px 0;
	color: #5e5e5e;
	text-align: center;
	list-style-type: none;
}

.list-fonticons li .glyphicon,
.list-fonticons li .fonticon {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 24px;
	color: #000;
}

.list-fonticons li .glyphicon-text,
.list-fonticons li .icon-text {
	display: block;
	text-align: center;
	word-wrap: break-word;
	font-size: 13px;
	opacity: 0.6;
}

.list-fonticons li:hover .glyphicon,
.list-fonticons li:hover .fonticon {
	color: #337ab7;
}

.example-weather-icon {
	text-align: center;
	margin: 10px 3px;
}

.example-weather-icon .icon {
	color: #000;
	font-size: 26px;
	margin-bottom: 10px;
	height: 40px;
}

.example-weather-icon .class {
	display: block;
	word-wrap: break-word;
	font-size: 13px;
	opacity: 0.6;
}

.example-weather-icon:hover .icon {
	color: #337ab7;
}

.fontawesome-icon-list .fa-hover {
	text-align: center;
	margin: 10px 0;
	opacity: 0.6;
	color: rgba(0, 0, 0, 0.87);
}

.fontawesome-icon-list .fa-hover i {
	font-size: 24px;
	color: #000;
	margin-bottom: 10px;
	opacity: 1;
	display: block;
}

.fontawesome-icon-list .fa-hover:hover {
	opacity: 1;
}

.fontawesome-icon-list .fa-hover:hover i {
	color: #337ab7;
}

.sample-overflow-scroll {
	height: 200px;
	overflow-y: auto;
}

.wbg-image:before {
	background: url('../images/weather.jpg');
}

.wbg-image:before {
	position: absolute;
	z-index: 0;
	opacity: 1;
	background-size: cover;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-position: 50% 50%;
}

.bg-image:before {
	background: url('../images/events/graduation.jpg');
}

.bg-image:before {
	position: absolute;
	z-index: 0;
	opacity: 1;
	background-size: cover;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-position: 50% 50%;
}

.bg-image.bg-opaque1:before {
	opacity: 0.1;
}

.bg-image.bg-opaque2:before {
	opacity: 0.2;
}

.bg-image.bg-opaque3:before {
	opacity: 0.3;
}

.bg-image.bg-opaque4:before {
	opacity: 0.4;
}

.bg-image.bg-opaque5:before {
	opacity: 0.5;
}

.bg-image.bg-opaque6:before {
	opacity: 0.6;
}

.bg-image.bg-opaque7:before {
	opacity: 0.7;
}

.bg-image.bg-opaque8:before {
	opacity: 0.8;
}

.bg-image.bg-opaque9:before {
	opacity: 0.9;
}

.bg-image.bg-solid:before {
	opacity: 1;
}

.rtl-20 {
	margin-right: -20px;
	margin-left: -20px;
	margin-top: -20px;
}

.bg-ns-white {
	background-color: rgba(252, 252, 252, 1);
}

.fz25 {
	font-size: 25px;
}

.fz20 {
	font-size: 20px;
}

.perf-card {
	min-height: 400px;
}

.pd-50 {
	padding: 50px;
}

.full-width-card {
	margin-right: -47px;
	margin-left: -47px;
}

.term-and-event-card {
	min-height: 505px;
}

.class-level {
	font-size: 35px;
	margin-top: -45px;
	margin-left: 45px;
}

.class-division {
	font-size: 20px;
	margin-left: 47px;
}

#t-card-name {
	padding-top: 10px;
}

.abs-top {
	position: absolute;
	top: 45px;
	font-size: 20px;
}

.t-card-btn-pos {
	margin-left: 30px;
	margin-top: 20px;
}

.t-avatar {
	margin-left: 50px;
	position: absolute;
	bottom: 50px;
}

.fc-event {
	font-size: 0.95em !important;
	border: 1px solid #12728e !important;
	background-color: #12728e !important;
	font-weight: normal;
}

.fc-toolbar {
	margin-bottom: 1.3em !important;
}

.fc-toolbar h2 {
	font-size: 24px !important;
	margin-top: 4px !important;
}

.fc-day-grid-event {
	margin: 0;
	padding: 1px;
	border-radius: 0;
}

.fc-ltr .fc-time-grid .fc-event-container {
	margin: 0;
}

.fc-ltr .fc-time-grid .fc-event-container a {
	border-radius: 0;
}

.fc-basic-view td.fc-day-number,
.fc-basic-view td.fc-week-number span {
	padding-top: 5px;
	padding-bottom: 5px;
}

.fc-basic-view .fc-day-number,
.fc-basic-view .fc-week-number {
	padding: 0 5px;
}

.fc-state-default {
	text-shadow: none !important;
	border-color: #f0f0f0 !important;
	box-shadow: none !important;
	background-image: none !important;
	background-color: transparent !important;
}

.fc-button {
	outline: 0 !important;
	text-transform: capitalize !important;
}

.fc button {
	height: auto !important;
	padding: 0.3em 0.8em !important;
	font-size: 14px !important;
}

.fc th {
	vertical-align: middle !important;
	height: 40px !important;
	background: #f5f5f5 !important;
}

.fc-state-active,
.fc-state-down {
	background-color: #12728e !important;
	border-color: #12728e !important;
	color: #fff !important;
}

.fc-state-default.fc-corner-left {
	border-top-left-radius: 3px !important;
	border-bottom-left-radius: 3px !important;
}

.fc-state-default.fc-corner-right {
	border-top-right-radius: 3px !important;
	border-bottom-right-radius: 3px !important;
}

.fa-school-logo {
	color: white;
	font-size: 30px;
	text-align: center;
	margin: 0 auto;
	width: 30px;
	margin-left: 30px;
	margin-top: 30px;
}

.full-screen {
	width: 100%;
	height: 100%;
}

.float-right {
	float: right;
}

.float-left {
	float: left;
}

.text-color-custo {
	color: #4e4e4e;
}

.dept-height {
	height: 250px;
}

.img-card {
	width: 100%;
}

.img-card .left-img {
	display: inline-block;
	width: 150px;
	height: 250px;
	background: #12728e;
	background-size: cover !important;
}

.img-card .right-section {
	display: inline-block;
	position: absolute;
	padding: 30px;
}

.img-card .right-section .heading {
	font-size: 20px;
}

.pdl-10 {
	padding-left: 10px;
}

.mtc {
	margin-top: -20px;
}

.schlogobx-center {
	width: 100px;
	border-radius: 50% !important;
	margin: 0 auto;
	height: 100px;
	background-color: #b9b9b9;
	border-radius: 5px;
	border: 4px solid #e6e4e4;
}

.topcardbx-center {
	margin-top: -75px;
	width: 100%;
	height: 90px;
}

.apple-size {
	width: 150px;
}
.apple-size1 {
	width: 300px;
}
.map-label {
	margin-bottom: 20px;
	color: #5a5a5a;
}

.school-card {
	min-height: 300px;
	background: white;
	padding-bottom: 10px;
	padding: 0;
	margin-left: 15px;
}

.school-card .info {
	padding: 20px;
}

.card-map {
	width: 100%;
	min-height: 200px;
	background: whitesmoke;
}

.ml-5 {
	margin-left: 5px;
}

.ml-15 {
	margin-left: 15px;
}

.ml-0 {
	margin-left: 0;
}

.bbn {
	margin-bottom: 15px;
}

.cmap-img {
	width: 306px;
	height: 200px;
}

.school-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.hover-icon {
	top: -50px;
	margin-left: 30px;
}

.pdt-15 {
	padding-top: 65px;
}

.system-logo {
	margin-top: 35px;
	width: 150px;
}

.tw-400 {
	font-weight: 400 !important;
}

.slb {
	margin-left: 20px;
	margin-top: 45px;
}

.pdt-15x {
	padding-top: 15px;
}

.no-overflow {
	overflow: hidden !important;
}

.background-image-cover-top-card {
	width: 100%;
	height: 200px;
	background-color: #000;
}

.profile-banner {
	position: absolute;
	width: 100%;
	margin-left: -15px;
	height: 230px;
	background: #595959;
	background-size: cover;
	box-shadow: inset 0 -10px 10px -5px rgba(0, 0, 0, 0.3);
}

.pdl-30 {
	padding-left: 30px;
}

.mt-30 {
	margin-top: 30px;
}

.success-image {
	width: 150px;
	display: block;
	margin: 0 auto;
	padding-bottom: 20px;
}

.mt-10 {
	margin-top: 10px;
}

.pd-q {
	padding: 32px;
	padding-top: 24px;
}

.mb-32 {
	margin-bottom: 32px;
}

.text-dec-none {
	text-decoration: none;
	text-transform: capitalize;
}

.close-ribbon {
	position: absolute;
	top: 0;
	right: 1em;
	z-index: 1;
	color: #eee;
	font-size: 2em;
	cursor: pointer;
	width: 1.5em;
	line-height: 0.5em;
	-webkit-transition: line-height 0.5s;
	transition: line-height 0.5s;
}

.close-ribbon:after {
	content: '';
	font-size: 0.5em;
	position: absolute;
	height: 1.2em;
	border: 1.5em solid #f44336;
	z-index: -1;
	top: -1em;
	border-top-width: 1.5em;
	border-bottom-color: transparent;
	right: 0;
	-webkit-transition: height 0.5s;
	transition: height 0.5s;
}

.close-ribbon:before {
	content: '';
	font-size: 0.5em;
	position: absolute;
	border-style: solid;
	border-color: transparent transparent #b71c1c transparent;
	top: -1em;
	right: 3em;
	border-width: 0 0 1em 0.7em;
	z-index: -1;
}

.close-ribbon:hover:after {
	border: 1.5em solid #ef5350;
	border-bottom-color: transparent;
	height: 1.6em;
	-webkit-transition: height 0.5s;
	transition: height 0.5s;
}

.close-ribbon:hover {
	line-height: 0.9em;
	color: #333;
	-webkit-transition: line-height 0.5s;
	transition: line-height 0.5s;
}

.mt0b5 {
	margin-top: 0px;
	margin-bottom: 5px;
}

.mt0b10 {
	margin-top: 0;
	margin-bottom: 10px;
}

.s-icon {
	left: 69px !important;
	top: 13px !important;
}

.std-bread {
	width: 185px;
	margin-left: 99px;
	margin-top: 5px;
	margin-bottom: 0px;
}

.mb-50 {
	margin-bottom: 50px !important;
}

.one-line .avatar-wrapper {
}

.one-line .avatar-wrapper img {
	top: 0 !important;
}

.no-pointer {
	cursor: default;
}

.tname {
	margin-left: 5px;
	font-size: 20px;
	display: inline-block;
	margin-top: 15px;
}

.tsub {
	margin-left: 5px;
	padding-left: 133px;
}

.term-indicator {
	position: absolute;
	width: 40px;
	top: 90px;
	left: 100px;
}

.gender-sub {
	position: absolute;
	width: 40px;
	left: 90px;
	top: 85px;
}

.w-130 {
	width: 130px;
}

.boy-num-label {
	position: absolute;
	top: -25px;
	left: 60px;
}

.girl-num-label {
	position: absolute;
	top: -25px;
	right: 75px;
}

.col-sm-3 .control-label {
	padding-left: 7px;
	margin-bottom: 0;
	text-align: right;
}

.aca-year .aca-term {
	cursor: pointer;
	display: inline-block;
	position: relative;
	font: normal 11px/22px Arial, sans-serif;
	color: black;
	border: 1px solid #ccc;
}

button {
	font-weight: 400 !important;
}

.mtb-20 {
	margin-bottom: 20px;
	margin-top: 20px;
}

.sub-imp {
	position: absolute;
	width: 64px;
	bottom: 100px;
	margin-left: -50px;
}

.search-body {
	background: white;
	width: 1504px;
	min-height: 500px;
	position: fixed;
	border-bottom-left-radius: 5px;
	top: 52px;
	border-bottom-right-radius: 5px;
}

.g-group {
}

.g-title {
}

.search-results {
	position: absolute;
}

.btn-color-up {
	color: #3a3a3a !important;
}

.bwhi-chbx md-checkbox .md-icon {
	border-color: rgba(255, 255, 255, 0.54);
}

.ward-list li {
	display: inline-block;
	margin: 0;
}

.ward-list img {
	width: 32px;
	height: 32px;
}

.black-text {
	color: #595959 !important;
}

.bold-text {
	font-weight: bold;
}

.ml3 {
	margin-left: 3px;
}

.min-h-400 {
	min-height: 400px;
}

.min-h-600 {
	min-height: 600px;
}

.mt-neg-10 {
	margin-top: -10px;
}

.cal-compo {
	padding-top: 30px !important;
	padding-left: 30px !important;
	padding-right: 30px !important;
	padding-bottom: 40px !important;
}

.full-s {
	margin-right: -32px;
	margin-left: -32px;
	margin-top: -31px;
}

.text-bdr {
	margin-top: 10px;
	border-radius: 5px;
	padding: 20px;
}

.margin-top-neg-5 {
	margin-top: -5px !important;
}

.margin-top-neg-10 {
	margin-top: -10px;
}

.fw300 {
	font-weight: 300;
}

.fw400 {
	font-weight: 400 !important;
}

.xchip {
	display: inline-block;
	padding: 0 25px;
	height: 32px;
	font-size: 14px;
	line-height: 35px;
	border-radius: 32px;
	background-color: #f1f1f1;
	margin-bottom: 20px;
	margin-top: 10px;
}

.xchip > img {
	float: left;
	margin: 0 10px 0 -25px;
	height: 32px;
	width: 32px;
	border-radius: 50%;
}

.xchip .avatar-wrapper > img {
	float: left;
	height: 32px;
	width: 32px;
	border-radius: 50%;
}

.xchip .avatar-wrapper {
	float: left;
	margin-right: 8px;
	margin-left: -24px;
}

.h-150 {
	height: 150px;
}

.stidqr canvas {
	margin-top: -40px;
}

.s-box-mod {
	margin-bottom: -17px;
	margin-top: 28px;
	width: 100%;
}

.xmenu-item,
.xmenu-open-button {
	background: #12728e;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin-left: -40px;
	position: absolute;
	top: 64px;
	color: white;
	text-align: center;
	line-height: 80px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: -webkit-transform ease-out 200ms;
	transition: -webkit-transform ease-out 200ms;
	transition: transform ease-out 200ms;
	transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}

.xmenu-open {
	display: none;
}

.hamburger {
	width: 25px;
	height: 3px;
	background: white;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -12.5px;
	margin-top: -1.5px;
	-webkit-transition: -webkit-transform 200ms;
	transition: -webkit-transform 200ms;
	transition: transform 200ms;
	transition: transform 200ms, -webkit-transform 200ms;
}

.hamburger-1 {
	-webkit-transform: translate3d(0, -8px, 0);
	transform: translate3d(0, -8px, 0);
}

.hamburger-2 {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.hamburger-3 {
	-webkit-transform: translate3d(0, 8px, 0);
	transform: translate3d(0, 8px, 0);
}

.xmenu-open:checked + .xmenu-open-button .hamburger-1 {
	-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
}

.xmenu-open:checked + .xmenu-open-button .hamburger-2 {
	-webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
	transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.xmenu-open:checked + .xmenu-open-button .hamburger-3 {
	-webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
	transform: translate3d(0, 0, 0) rotate(-45deg);
}

.xmenu {
	position: absolute;
	left: 50%;
	margin-left: -190px;
	padding-top: 20px;
	padding-left: 190px;
	width: 380px;
	height: 250px;
	box-sizing: border-box;
	font-size: 20px;
	text-align: left;
}

.xmenu-item:hover {
	background: white;
	color: #12728e;
}

.xmenu-item:nth-child(3) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}

.xmenu-item:nth-child(4) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}

.xmenu-item:nth-child(5) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}

.xmenu-item:nth-child(6) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}

.xmenu-item:nth-child(7) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}

.xmenu-item:nth-child(8) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}

.xmenu-item:nth-child(9) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}

.xmenu-open-button {
	z-index: 2;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-webkit-transition-duration: 400ms;
	transition-duration: 400ms;
	-webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
	transform: scale(1.1, 1.1) translate3d(0, 0, 0);
	cursor: pointer;
}

.xmenu-open-button:hover {
	-webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
	transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.xmenu-open:checked + .xmenu-open-button {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	-webkit-transition-duration: 200ms;
	transition-duration: 200ms;
	-webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
	transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}

.xmenu-open:checked ~ .xmenu-item {
	-webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
	transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
}

.xmenu-open:checked ~ .xmenu-item:nth-child(3) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
	-webkit-transform: translate3d(0.08361px, -104.99997px, 0);
	transform: translate3d(0.08361px, -104.99997px, 0);
}

.xmenu-open:checked ~ .xmenu-item:nth-child(4) {
	-webkit-transition-duration: 280ms;
	transition-duration: 280ms;
	-webkit-transform: translate3d(90.9466px, -52.47586px, 0);
	transform: translate3d(90.9466px, -52.47586px, 0);
}

.xmenu-open:checked ~ .xmenu-item:nth-child(5) {
	-webkit-transition-duration: 380ms;
	transition-duration: 380ms;
	-webkit-transform: translate3d(90.9466px, 52.47586px, 0);
	transform: translate3d(90.9466px, 52.47586px, 0);
}

.xmenu-open:checked ~ .xmenu-item:nth-child(6) {
	-webkit-transition-duration: 480ms;
	transition-duration: 480ms;
	-webkit-transform: translate3d(0.08361px, 104.99997px, 0);
	transform: translate3d(0.08361px, 104.99997px, 0);
}

.xmenu-open:checked ~ .xmenu-item:nth-child(7) {
	-webkit-transition-duration: 580ms;
	transition-duration: 580ms;
	-webkit-transform: translate3d(-90.86291px, 52.62064px, 0);
	transform: translate3d(-90.86291px, 52.62064px, 0);
}

.xmenu-open:checked ~ .xmenu-item:nth-child(8) {
	-webkit-transition-duration: 680ms;
	transition-duration: 680ms;
	-webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
	transform: translate3d(-91.03006px, -52.33095px, 0);
}

.xmenu-open:checked ~ .xmenu-item:nth-child(9) {
	-webkit-transition-duration: 780ms;
	transition-duration: 780ms;
	-webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
	transform: translate3d(-0.25084px, -104.9997px, 0);
}

.phone-container {
	position: relative;
	height: 28.5em;
	width: 13.5em;
	border-radius: 2em;
	border: 0.5em solid #181818;
}

.top-bezel,
.bottom-bezel {
	position: absolute;
	width: 12.5em;
	height: 2.4em;
	border-radius: 1em 1em 0 0;
	background: #181818;
}

.bottom-bezel {
	bottom: 0;
	border-radius: 0 0 1em 1em;
}

.camera {
	position: absolute;
	top: 0.55em;
	left: 2em;
	width: 0.2em;
	height: 0.2em;
	background: #000;
	border-radius: 100%;
	border: 0.25em solid #2e2e2e;
}

.speaker-grill {
	position: relative;
	top: 0.6em;
	left: 4em;
	width: 5em;
	height: 0.2em;
	border: 0.2em solid #0d0d0d;
	border-radius: 5em;
	background: #272727;
}

.bottom-bezel .speaker-grill {
	top: 1.3em;
}

.ml-10 {
	margin-left: 10px;
}

.ml1 {
	margin-left: 1px;
}

.rspan2 {
	margin-left: 38px;
	font-size: 15px;
	font-weight: bold;
	position: absolute;
	top: 30px;
	color: #595959;
	right: 40px;
}

.fsz64 {
	font-size: 64px;
}

.chart-sales-by-year {
}

.md-smaller-fab {
	bottom: 85px !important;
	width: 40px !important;
	height: 40px !important;
	right: 28px !important;
}

.md-smaller-icon {
	vertical-align: 23% !important;
	font-size: 18px !important;
	color: #595959 !important;
}

.white {
	background-color: white;
}

.margin-top-neg-15 {
	margin-top: -15px;
}

.mt-pic {
	margin-top: 0px;
}

.teacher-name-dash {
	font-size: 20px;
}

.teacher-class-list-thumbs {
	margin-left: 45px !important;
	margin-top: 35px !important;
}

.sub-imp-report {
	position: absolute;
	width: 70px;
	top: 170px;
	margin-left: -50px;
}

.btn-badge {
	position: absolute;
	margin-left: -30px;
}

.btn-fab-top-right {
	position: absolute !important;
	top: 50px !important;
	right: 20px !important;
	bottom: auto !important;
	left: auto !important;
}

.btn-fab-top-right-sub {
	right: 88px !important;
	top: 58px !important;
}

.abs-full {
	position: absolute;
	height: 215px;
	width: 100%;
}

.showbox {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 5%;
}

.loader {
	position: relative;
	margin: 0 auto;
	width: 100px;
	padding-left: 20px !important;
}

.signin-loader {
	position: relative;
	margin: 0 auto;
	width: 128px;
}

.b-loader {
	position: relative;
	margin: 0 auto;
	width: 128px;
}

.loader:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.circular {
	-webkit-animation: rotate 2s linear infinite;
	animation: rotate 2s linear infinite;
	height: 100%;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.path {
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	-webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	stroke-linecap: round;
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

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

@-webkit-keyframes color {
	100%,
	0% {
		stroke: #d62d20;
	}
	40% {
		stroke: #0057e7;
	}
	66% {
		stroke: #008744;
	}
	80%,
	90% {
		stroke: #ffa700;
	}
}

@keyframes color {
	100%,
	0% {
		stroke: #d62d20;
	}
	40% {
		stroke: #0057e7;
	}
	66% {
		stroke: #008744;
	}
	80%,
	90% {
		stroke: #ffa700;
	}
}

.overlay .starting-point span {
	background-color: #3e50b4;
}

.overlay {
	display: none;
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.overlay.active {
	display: block;
}

.overlay .starting-point {
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 2;
	width: 30px;
	height: 30px;
	border-radius: 100%;
}

.overlay .starting-point span {
	position: absolute;
	display: inline-block;
	-webkit-transform: translateZ(0) scale(0);
	transform: translateZ(0) scale(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	border-radius: 50%;
}

/*
4.7 - Layer Search
*/
.search-layer.ng-enter {
	animation: fadeInUp 1s;
}

.search-layer.ng-leave {
	animation: fadeInDown 1s;
}

.search-layer {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	background: #12728e;
	width: 100%;
	height: 100%;
	visibility: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	z-index: 11;
	-webkit-transition: background 500ms cubic-bezier(0.35, 0, 0.25, 1) 250ms;
	transition: background 500ms cubic-bezier(0.35, 0, 0.25, 1) 250ms;
}

.search-layer .search {
	width: 100%;
	padding: 65px 30px 30px 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 500ms cubic-bezier(0.35, 0, 0.25, 1) 0ms;
	transition: all 500ms cubic-bezier(0.35, 0, 0.25, 1) 0ms;
}

.search-layer .search .form-control {
	background: transparent;
	border: none;
	box-shadow: none;
	height: 80px;
	font-size: 50px;
	color: #fff;
	padding: 6px 80px 6px 0;
}

.search-layer .search .form-control::-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.search-layer .search .form-control:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.search-layer .search .form-control::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.search-layer .search .btn {
	position: absolute;
	right: 0;
	top: 15px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 40px;
	padding: 0 10px 0 25px;
}

.search-layer .results {
	position: relative;
	width: calc(100% - 80px);
	margin: 0 40px;
}

.search-layer .results .result {
	margin-bottom: 20px;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: 0.3s all cubic-bezier(0.17, 0.67, 0.6, 1.3);
	transition: 0.3s all cubic-bezier(0.17, 0.67, 0.6, 1.3);
	color: #fff;
}

.search-layer .results .result h4 {
	color: rgba(255, 255, 255, 0.6);
}

.search-layer .results .result h4 small {
	color: rgba(255, 255, 255, 0.8);
}

.search-layer .results .result .list-material {
	background: transparent;
}

.search-layer .results .result .list-material li a {
	background: transparent;
}

.search-layer .results .result .list-material li .list-action-left {
	padding: 0;
}

.search-layer .results .result .list-material li .list-action-left img {
	width: 50px;
	height: auto;
}

.search-layer .results .result .list-material li .list-content {
	margin-left: 50px;
	border-bottom-color: rgba(0, 0, 0, 0.05);
}

.search-layer .results .result .list-material li .list-content .title {
	color: #fff;
}

.search-layer .results .result .list-material li .list-content .caption {
	color: rgba(255, 255, 255, 0.5);
}

.search-layer .results .result .list-material li:last-child .list-content {
	border-bottom-color: transparent;
}

.search-layer .results .result.result-users {
	-webkit-transition-delay: 300ms;
	transition-delay: 300ms;
}

.search-layer .results .result.result-posts {
	-webkit-transition-delay: 200ms;
	transition-delay: 200ms;
}

.search-layer .results .result.result-files {
	-webkit-transition-delay: 100ms;
	transition-delay: 100ms;
}

.search-layer.active {
	visibility: visible;
	display: block !important;
	z-index: 1300;
}

.search-layer.active .search {
	-webkit-transition-delay: 250ms;
	transition-delay: 250ms;
	visibility: visible;
	opacity: 1;
}

.search-layer.active .result {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.search-layer.active .result.result-users {
	-webkit-transition-delay: 100ms;
	transition-delay: 100ms;
}

.search-layer.active .result.result-posts {
	-webkit-transition-delay: 200ms;
	transition-delay: 200ms;
}

.search-layer.active .result.result-files {
	-webkit-transition-delay: 300ms;
	transition-delay: 300ms;
}

.search-layer.active.perfect-scrollbar {
	overflow: hidden !important;
}

.search-layer.activating {
	display: block;
}

.close-icon-btn {
	position: absolute;
	right: 145px;
	top: 20px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 40px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: 400;
}

.abs-content {
	position: absolute;
	height: 215px;
	width: 100%;
}

#skyline {
	background: url('../images/skyline.svg');
	width: 100%;
	height: 215px;
	position: absolute;
}

#sun {
	background: url('../images/sun.svg');
	width: 100%;
	height: 215px;
	background-repeat: no-repeat;
	position: absolute;
}

.mt-100 {
	margin-top: 100px;
}

div.app-play {
	position: absolute;
	z-index: 1;
	left: 220px;
}

div.phone {
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.profile_tab {
	border: none;
	color: black;
	background-color: rgba(140, 10, 90, 0.2);
}

.create-school-wizard {
	padding: 10px;
	padding-left: 25px;
	padding-right: 25px;
}

.prl30 {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 15px;
}

.h-340 {
	height: 340px !important;
}

/* Style for the  student profile details */
qrcode.qr_code {
	position: absolute;
	top: 70px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
}

div#profile_content {
	/*overflow-x: hidden;*/
}

h4.center-align {
	text-align: center;
	font-size: 18px;
	position: relative;
	left: -130px;
}

img.profile_img {
	position: absolute;
	top: 130px;
	cursor: pointer;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	right: 0;
	left: 120px;
	border-radius: 50%;
}

div.main_panel {
	margin-left: 10px;
	margin-top: -20px;
}

div.main_details {
	margin-top: -15px;
}

div.label-field > label {
	font-size: 16px;
	width: 150px;
	float: left;
	margin: 0px 15px 0px 1px;
}

div.detail-field > label {
	font-size: 16px;
	width: 160px;
	text-align: justify;
	margin: 0 15px 0px 1px;
}

/* Styling for the teacher profile */
div.detail_prefix > a {
	margin-top: 20px;
	margin-left: 10px;
}

h6.sub_heading {
	margin-top: 8px;
	font-size: 16px;
	margin-left: 12px;
	margin-bottom: -100px;
	text-decoration: underline;
}

h6.skill_heading {
	margin-top: 16px;
	font-size: 16px;
	margin-left: 12px;
	margin-bottom: -100px;
	text-decoration: underline;
}

/* styling for the dashboard news panel */
div.news-header {
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

div.pane-anim {
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

div.news-container {
	transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
}

div.news-container:hover {
	cursor: pointer;
	background-color: #e8e8e8;
	transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	/*transform: scale(1.05);*/
}

h3.center-align {
	text-align: center;
	font-size: 14px;
	color: #616161;
}

div.footer-bg {
	background-color: #eeeeee;
}

/* Styling fot the preview of the schools */
div.cover_picture {
	width: 900px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	background-size: cover;
	background-position: center;
	padding-bottom: 0px;
	margin-top: 0px;
	background-image: url('images/weather.jpg');
	height: 350px;
	cursor: pointer;
	transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
}

div.school-img1 {
	width: 115px;
	height: 110px;
	background-color: #29b6f6;
	position: absolute;
	cursor: pointer;
	z-index: 4;
	top: 280px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	border: 4px solid #12728e;
	right: 30px;
}

/* Css style not activated yet for the school image */
div.school-img1 > div.inside_box img {
	transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
}

div.school-img1 > div.inside_box img:hover {
	transform: scale(1.25);
	transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
}

i.fa-school-img {
	color: #ffffff;
	position: absolute;
	top: 34px;
	left: 31px;
	right: 0;
	bottom: 0;
}

div.school_name,
div.school_mail,
div.school_box,
div.school_web {
	padding: 5px 3px 10px 2px;
	font-size: 16px;
	font-weight: 500;
}

.hoverable {
	transition: box-shadow 0.35s;
	box-shadow: 0;
}

.hoverable:hover {
	transition: box-shadow 0.35s;
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div.preview_body {
	margin-top: 40px;
}

div.label-field > label {
	margin: 10px 2px 0 4px;
	float: left;
	height: auto;
}

.h-310 {
	height: 310px !important;
}

div#department_card {
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
}

@keyframes outline {
	0% {
		-o-transform: rotate(0deg) skewX(80deg);
		-moz-transform: rotate(0deg) skewX(80deg);
		-webkit-transform: rotate(0deg) skewX(80deg);
		-ms-transform: rotate(0deg) skewX(80deg);
		transform: rotate(0deg) skewX(80deg);
	}
	25% {
		-o-transform: rotate(500deg) skewX(15deg);
		-moz-transform: rotate(500deg) skewX(15deg);
		-webkit-transform: rotate(500deg) skewX(15deg);
		-ms-transform: rotate(500deg) skewX(15deg);
		transform: rotate(500deg) skewX(15deg);
	}
	50% {
		-o-transform: rotate(1000deg) skewX(40deg);
		-moz-transform: rotate(1000deg) skewX(40deg);
		-webkit-transform: rotate(1000deg) skewX(40deg);
		-ms-transform: rotate(1000deg) skewX(40deg);
		transform: rotate(1000deg) skewX(40deg);
	}
	75% {
		-o-transform: rotate(1500deg) skewX(60deg);
		-moz-transform: rotate(1500deg) skewX(60deg);
		-webkit-transform: rotate(1500deg) skewX(60deg);
		-ms-transform: rotate(1500deg) skewX(60deg);
		transform: rotate(1500deg) skewX(60deg);
	}
	100% {
		-o-transform: rotate(2160deg) skewX(80deg);
		-moz-transform: rotate(2160deg) skewX(80deg);
		-webkit-transform: rotate(2160deg) skewX(80deg);
		-ms-transform: rotate(2160deg) skewX(80deg);
		transform: rotate(2160deg) skewX(80deg);
	}
}

@-o-keyframes outlineBefore {
	0% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #ffffff;
	}
	25% {
		-o-transform: skewX(-15deg);
		-moz-transform: skewX(-15deg);
		-webkit-transform: skewX(-15deg);
		-ms-transform: skewX(-15deg);
		transform: skewX(-15deg);
		border: solid 5px #ffffff;
	}
	49% {
		border: solid 5px #ffffff;
	}
	50% {
		-o-transform: skewX(-40deg);
		-moz-transform: skewX(-40deg);
		-webkit-transform: skewX(-40deg);
		-ms-transform: skewX(-40deg);
		transform: skewX(-40deg);
		border: solid 5px #3463eb;
	}
	75% {
		-o-transform: skewX(-60deg);
		-moz-transform: skewX(-60deg);
		-webkit-transform: skewX(-60deg);
		-ms-transform: skewX(-60deg);
		transform: skewX(-60deg);
		border: solid 5px #3463eb;
	}
	100% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #3463eb;
	}
}

@-moz-keyframes outlineBefore {
	0% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #ffffff;
	}
	25% {
		-o-transform: skewX(-15deg);
		-moz-transform: skewX(-15deg);
		-webkit-transform: skewX(-15deg);
		-ms-transform: skewX(-15deg);
		transform: skewX(-15deg);
		border: solid 5px #ffffff;
	}
	49% {
		border: solid 5px #ffffff;
	}
	50% {
		-o-transform: skewX(-40deg);
		-moz-transform: skewX(-40deg);
		-webkit-transform: skewX(-40deg);
		-ms-transform: skewX(-40deg);
		transform: skewX(-40deg);
		border: solid 5px #3463eb;
	}
	75% {
		-o-transform: skewX(-60deg);
		-moz-transform: skewX(-60deg);
		-webkit-transform: skewX(-60deg);
		-ms-transform: skewX(-60deg);
		transform: skewX(-60deg);
		border: solid 5px #3463eb;
	}
	100% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #3463eb;
	}
}

@-webkit-keyframes outlineBefore {
	0% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #ffffff;
	}
	25% {
		-o-transform: skewX(-15deg);
		-moz-transform: skewX(-15deg);
		-webkit-transform: skewX(-15deg);
		-ms-transform: skewX(-15deg);
		transform: skewX(-15deg);
		border: solid 5px #ffffff;
	}
	49% {
		border: solid 5px #ffffff;
	}
	50% {
		-o-transform: skewX(-40deg);
		-moz-transform: skewX(-40deg);
		-webkit-transform: skewX(-40deg);
		-ms-transform: skewX(-40deg);
		transform: skewX(-40deg);
		border: solid 5px #3463eb;
	}
	75% {
		-o-transform: skewX(-60deg);
		-moz-transform: skewX(-60deg);
		-webkit-transform: skewX(-60deg);
		-ms-transform: skewX(-60deg);
		transform: skewX(-60deg);
		border: solid 5px #3463eb;
	}
	100% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #3463eb;
	}
}

@keyframes outlineBefore {
	0% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #ffffff;
	}
	25% {
		-o-transform: skewX(-15deg);
		-moz-transform: skewX(-15deg);
		-webkit-transform: skewX(-15deg);
		-ms-transform: skewX(-15deg);
		transform: skewX(-15deg);
		border: solid 5px #ffffff;
	}
	49% {
		border: solid 5px #ffffff;
	}
	50% {
		-o-transform: skewX(-40deg);
		-moz-transform: skewX(-40deg);
		-webkit-transform: skewX(-40deg);
		-ms-transform: skewX(-40deg);
		transform: skewX(-40deg);
		border: solid 5px #3463eb;
	}
	75% {
		-o-transform: skewX(-60deg);
		-moz-transform: skewX(-60deg);
		-webkit-transform: skewX(-60deg);
		-ms-transform: skewX(-60deg);
		transform: skewX(-60deg);
		border: solid 5px #3463eb;
	}
	100% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #3463eb;
	}
}

@-o-keyframes in {
	0% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
	40% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	41% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	50% {
		width: 144px;
		height: 144px;
		background: #3a60db;
	}
	90% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	91% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	100% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
}

@-moz-keyframes in {
	0% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
	40% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	41% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	50% {
		width: 144px;
		height: 144px;
		background: #3a60db;
	}
	90% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	91% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	100% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
}

@-webkit-keyframes in {
	0% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
	40% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	41% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	50% {
		width: 144px;
		height: 144px;
		background: #3a60db;
	}
	90% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	91% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	100% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
}

@keyframes in {
	0% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
	40% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	41% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	50% {
		width: 144px;
		height: 144px;
		background: #3a60db;
	}
	90% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	91% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	100% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
}

@-o-keyframes out1 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-moz-keyframes out1 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-webkit-keyframes out1 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@keyframes out1 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-o-keyframes out2 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 0px;
		height: 0px;
	}
	60% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-moz-keyframes out2 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 0px;
		height: 0px;
	}
	60% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-webkit-keyframes out2 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 0px;
		height: 0px;
	}
	60% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@keyframes out2 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 0px;
		height: 0px;
	}
	60% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

.mt0l20 {
	margin-top: 0 !important;
	margin-left: 0px !important;
}

.null-tab {
}

.bnone {
	border-right: none;
}

.pl0t {
	margin-left: 0 !important;
	margin-top: 5px;
}

.tab-shadow {
	box-shadow: 0px 0px 2px #595959;
}

/*Loading CSS Auth*/
.load {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}

.load:before,
.load:after,
.load .dot,
.load .outline {
	position: absolute;
	top: 50%;
	left: 50%;
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
}

.load .dot {
	width: 96px;
	height: 96px;
	background: #ffffff;
	-o-animation: in 4s linear infinite;
	-moz-animation: in 4s linear infinite;
	-ms-animation: in 4s linear infinite;
	-webkit-animation: in 4s linear infinite;
	animation: in 4s linear infinite;
	z-index: 2;
}

.load:before {
	content: '';
	width: 0px;
	height: 0px;
	background: #3a60db;
	-o-animation: out1 4s linear infinite;
	-moz-animation: out1 4s linear infinite;
	-ms-animation: out1 4s linear infinite;
	-webkit-animation: out1 4s linear infinite;
	animation: out1 4s linear infinite;
}

.load:after {
	content: '';
	width: 0px;
	height: 0px;
	background: #ffffff;
	-o-animation: out2 4s linear infinite;
	-moz-animation: out2 4s linear infinite;
	-ms-animation: out2 4s linear infinite;
	-webkit-animation: out2 4s linear infinite;
	animation: out2 4s linear infinite;
}

.load .outline {
	width: 120px;
	height: 120px;
	z-index: 2;
}

.load .outline span {
	width: 68px;
	height: 68px;
	-o-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	-o-transform: rotate(45deg) skewX(80deg);
	-moz-transform: rotate(45deg) skewX(80deg);
	-webkit-transform: rotate(45deg) skewX(80deg);
	-ms-transform: rotate(45deg) skewX(80deg);
	transform: rotate(45deg) skewX(80deg);
	overflow: hidden;
	position: absolute;
	bottom: 50%;
	right: 50%;
	-o-animation: outline 4s linear infinite;
	-moz-animation: outline 4s linear infinite;
	-ms-animation: outline 4s linear infinite;
	-webkit-animation: outline 4s linear infinite;
	animation: outline 4s linear infinite;
}

.load .outline span:before {
	content: '';
	display: block;
	border: solid 5px #fff;
	width: 200%;
	height: 200%;
	border-radius: 50%;
	-o-transform: skewX(-80deg);
	-moz-transform: skewX(-80deg);
	-webkit-transform: skewX(-80deg);
	-ms-transform: skewX(-80deg);
	transform: skewX(-80deg);
	-o-animation: outlineBefore 4s linear infinite;
	-moz-animation: outlineBefore 4s linear infinite;
	-ms-animation: outlineBefore 4s linear infinite;
	-webkit-animation: outlineBefore 4s linear infinite;
	animation: outlineBefore 4s linear infinite;
}

@-o-keyframes outline {
	0% {
		-o-transform: rotate(0deg) skewX(80deg);
		-moz-transform: rotate(0deg) skewX(80deg);
		-webkit-transform: rotate(0deg) skewX(80deg);
		-ms-transform: rotate(0deg) skewX(80deg);
		transform: rotate(0deg) skewX(80deg);
	}
	25% {
		-o-transform: rotate(500deg) skewX(15deg);
		-moz-transform: rotate(500deg) skewX(15deg);
		-webkit-transform: rotate(500deg) skewX(15deg);
		-ms-transform: rotate(500deg) skewX(15deg);
		transform: rotate(500deg) skewX(15deg);
	}
	50% {
		-o-transform: rotate(1000deg) skewX(40deg);
		-moz-transform: rotate(1000deg) skewX(40deg);
		-webkit-transform: rotate(1000deg) skewX(40deg);
		-ms-transform: rotate(1000deg) skewX(40deg);
		transform: rotate(1000deg) skewX(40deg);
	}
	75% {
		-o-transform: rotate(1500deg) skewX(60deg);
		-moz-transform: rotate(1500deg) skewX(60deg);
		-webkit-transform: rotate(1500deg) skewX(60deg);
		-ms-transform: rotate(1500deg) skewX(60deg);
		transform: rotate(1500deg) skewX(60deg);
	}
	100% {
		-o-transform: rotate(2160deg) skewX(80deg);
		-moz-transform: rotate(2160deg) skewX(80deg);
		-webkit-transform: rotate(2160deg) skewX(80deg);
		-ms-transform: rotate(2160deg) skewX(80deg);
		transform: rotate(2160deg) skewX(80deg);
	}
}

@-moz-keyframes outline {
	0% {
		-o-transform: rotate(0deg) skewX(80deg);
		-moz-transform: rotate(0deg) skewX(80deg);
		-webkit-transform: rotate(0deg) skewX(80deg);
		-ms-transform: rotate(0deg) skewX(80deg);
		transform: rotate(0deg) skewX(80deg);
	}
	25% {
		-o-transform: rotate(500deg) skewX(15deg);
		-moz-transform: rotate(500deg) skewX(15deg);
		-webkit-transform: rotate(500deg) skewX(15deg);
		-ms-transform: rotate(500deg) skewX(15deg);
		transform: rotate(500deg) skewX(15deg);
	}
	50% {
		-o-transform: rotate(1000deg) skewX(40deg);
		-moz-transform: rotate(1000deg) skewX(40deg);
		-webkit-transform: rotate(1000deg) skewX(40deg);
		-ms-transform: rotate(1000deg) skewX(40deg);
		transform: rotate(1000deg) skewX(40deg);
	}
	75% {
		-o-transform: rotate(1500deg) skewX(60deg);
		-moz-transform: rotate(1500deg) skewX(60deg);
		-webkit-transform: rotate(1500deg) skewX(60deg);
		-ms-transform: rotate(1500deg) skewX(60deg);
		transform: rotate(1500deg) skewX(60deg);
	}
	100% {
		-o-transform: rotate(2160deg) skewX(80deg);
		-moz-transform: rotate(2160deg) skewX(80deg);
		-webkit-transform: rotate(2160deg) skewX(80deg);
		-ms-transform: rotate(2160deg) skewX(80deg);
		transform: rotate(2160deg) skewX(80deg);
	}
}

@-webkit-keyframes outline {
	0% {
		-o-transform: rotate(0deg) skewX(80deg);
		-moz-transform: rotate(0deg) skewX(80deg);
		-webkit-transform: rotate(0deg) skewX(80deg);
		-ms-transform: rotate(0deg) skewX(80deg);
		transform: rotate(0deg) skewX(80deg);
	}
	25% {
		-o-transform: rotate(500deg) skewX(15deg);
		-moz-transform: rotate(500deg) skewX(15deg);
		-webkit-transform: rotate(500deg) skewX(15deg);
		-ms-transform: rotate(500deg) skewX(15deg);
		transform: rotate(500deg) skewX(15deg);
	}
	50% {
		-o-transform: rotate(1000deg) skewX(40deg);
		-moz-transform: rotate(1000deg) skewX(40deg);
		-webkit-transform: rotate(1000deg) skewX(40deg);
		-ms-transform: rotate(1000deg) skewX(40deg);
		transform: rotate(1000deg) skewX(40deg);
	}
	75% {
		-o-transform: rotate(1500deg) skewX(60deg);
		-moz-transform: rotate(1500deg) skewX(60deg);
		-webkit-transform: rotate(1500deg) skewX(60deg);
		-ms-transform: rotate(1500deg) skewX(60deg);
		transform: rotate(1500deg) skewX(60deg);
	}
	100% {
		-o-transform: rotate(2160deg) skewX(80deg);
		-moz-transform: rotate(2160deg) skewX(80deg);
		-webkit-transform: rotate(2160deg) skewX(80deg);
		-ms-transform: rotate(2160deg) skewX(80deg);
		transform: rotate(2160deg) skewX(80deg);
	}
}

@keyframes outline {
	0% {
		-o-transform: rotate(0deg) skewX(80deg);
		-moz-transform: rotate(0deg) skewX(80deg);
		-webkit-transform: rotate(0deg) skewX(80deg);
		-ms-transform: rotate(0deg) skewX(80deg);
		transform: rotate(0deg) skewX(80deg);
	}
	25% {
		-o-transform: rotate(500deg) skewX(15deg);
		-moz-transform: rotate(500deg) skewX(15deg);
		-webkit-transform: rotate(500deg) skewX(15deg);
		-ms-transform: rotate(500deg) skewX(15deg);
		transform: rotate(500deg) skewX(15deg);
	}
	50% {
		-o-transform: rotate(1000deg) skewX(40deg);
		-moz-transform: rotate(1000deg) skewX(40deg);
		-webkit-transform: rotate(1000deg) skewX(40deg);
		-ms-transform: rotate(1000deg) skewX(40deg);
		transform: rotate(1000deg) skewX(40deg);
	}
	75% {
		-o-transform: rotate(1500deg) skewX(60deg);
		-moz-transform: rotate(1500deg) skewX(60deg);
		-webkit-transform: rotate(1500deg) skewX(60deg);
		-ms-transform: rotate(1500deg) skewX(60deg);
		transform: rotate(1500deg) skewX(60deg);
	}
	100% {
		-o-transform: rotate(2160deg) skewX(80deg);
		-moz-transform: rotate(2160deg) skewX(80deg);
		-webkit-transform: rotate(2160deg) skewX(80deg);
		-ms-transform: rotate(2160deg) skewX(80deg);
		transform: rotate(2160deg) skewX(80deg);
	}
}

@-o-keyframes outlineBefore {
	0% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #ffffff;
	}
	25% {
		-o-transform: skewX(-15deg);
		-moz-transform: skewX(-15deg);
		-webkit-transform: skewX(-15deg);
		-ms-transform: skewX(-15deg);
		transform: skewX(-15deg);
		border: solid 5px #ffffff;
	}
	49% {
		border: solid 5px #ffffff;
	}
	50% {
		-o-transform: skewX(-40deg);
		-moz-transform: skewX(-40deg);
		-webkit-transform: skewX(-40deg);
		-ms-transform: skewX(-40deg);
		transform: skewX(-40deg);
		border: solid 5px #3463eb;
	}
	75% {
		-o-transform: skewX(-60deg);
		-moz-transform: skewX(-60deg);
		-webkit-transform: skewX(-60deg);
		-ms-transform: skewX(-60deg);
		transform: skewX(-60deg);
		border: solid 5px #3463eb;
	}
	100% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #3463eb;
	}
}

@-moz-keyframes outlineBefore {
	0% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #ffffff;
	}
	25% {
		-o-transform: skewX(-15deg);
		-moz-transform: skewX(-15deg);
		-webkit-transform: skewX(-15deg);
		-ms-transform: skewX(-15deg);
		transform: skewX(-15deg);
		border: solid 5px #ffffff;
	}
	49% {
		border: solid 5px #ffffff;
	}
	50% {
		-o-transform: skewX(-40deg);
		-moz-transform: skewX(-40deg);
		-webkit-transform: skewX(-40deg);
		-ms-transform: skewX(-40deg);
		transform: skewX(-40deg);
		border: solid 5px #3463eb;
	}
	75% {
		-o-transform: skewX(-60deg);
		-moz-transform: skewX(-60deg);
		-webkit-transform: skewX(-60deg);
		-ms-transform: skewX(-60deg);
		transform: skewX(-60deg);
		border: solid 5px #3463eb;
	}
	100% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #3463eb;
	}
}

@-webkit-keyframes outlineBefore {
	0% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #ffffff;
	}
	25% {
		-o-transform: skewX(-15deg);
		-moz-transform: skewX(-15deg);
		-webkit-transform: skewX(-15deg);
		-ms-transform: skewX(-15deg);
		transform: skewX(-15deg);
		border: solid 5px #ffffff;
	}
	49% {
		border: solid 5px #ffffff;
	}
	50% {
		-o-transform: skewX(-40deg);
		-moz-transform: skewX(-40deg);
		-webkit-transform: skewX(-40deg);
		-ms-transform: skewX(-40deg);
		transform: skewX(-40deg);
		border: solid 5px #3463eb;
	}
	75% {
		-o-transform: skewX(-60deg);
		-moz-transform: skewX(-60deg);
		-webkit-transform: skewX(-60deg);
		-ms-transform: skewX(-60deg);
		transform: skewX(-60deg);
		border: solid 5px #3463eb;
	}
	100% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #3463eb;
	}
}

@keyframes outlineBefore {
	0% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #ffffff;
	}
	25% {
		-o-transform: skewX(-15deg);
		-moz-transform: skewX(-15deg);
		-webkit-transform: skewX(-15deg);
		-ms-transform: skewX(-15deg);
		transform: skewX(-15deg);
		border: solid 5px #ffffff;
	}
	49% {
		border: solid 5px #ffffff;
	}
	50% {
		-o-transform: skewX(-40deg);
		-moz-transform: skewX(-40deg);
		-webkit-transform: skewX(-40deg);
		-ms-transform: skewX(-40deg);
		transform: skewX(-40deg);
		border: solid 5px #3463eb;
	}
	75% {
		-o-transform: skewX(-60deg);
		-moz-transform: skewX(-60deg);
		-webkit-transform: skewX(-60deg);
		-ms-transform: skewX(-60deg);
		transform: skewX(-60deg);
		border: solid 5px #3463eb;
	}
	100% {
		-o-transform: skewX(-80deg);
		-moz-transform: skewX(-80deg);
		-webkit-transform: skewX(-80deg);
		-ms-transform: skewX(-80deg);
		transform: skewX(-80deg);
		border: solid 5px #3463eb;
	}
}

@-o-keyframes in {
	0% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
	40% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	41% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	50% {
		width: 144px;
		height: 144px;
		background: #3a60db;
	}
	90% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	91% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	100% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
}

@-moz-keyframes in {
	0% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
	40% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	41% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	50% {
		width: 144px;
		height: 144px;
		background: #3a60db;
	}
	90% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	91% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	100% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
}

@-webkit-keyframes in {
	0% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
	40% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	41% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	50% {
		width: 144px;
		height: 144px;
		background: #3a60db;
	}
	90% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	91% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	100% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
}

@keyframes in {
	0% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
	40% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	41% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	50% {
		width: 144px;
		height: 144px;
		background: #3a60db;
	}
	90% {
		width: 0px;
		height: 0px;
		background: #3a60db;
	}
	91% {
		width: 0px;
		height: 0px;
		background: #ffffff;
	}
	100% {
		width: 144px;
		height: 144px;
		background: #ffffff;
	}
}

@-o-keyframes out1 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-moz-keyframes out1 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-webkit-keyframes out1 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@keyframes out1 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-o-keyframes out2 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 0px;
		height: 0px;
	}
	60% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-moz-keyframes out2 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 0px;
		height: 0px;
	}
	60% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@-webkit-keyframes out2 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 0px;
		height: 0px;
	}
	60% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

@keyframes out2 {
	0% {
		width: 0px;
		height: 0px;
	}
	30% {
		width: 0px;
		height: 0px;
	}
	60% {
		width: 120vw;
		height: 120vw;
	}
	100% {
		width: 120vw;
		height: 120vw;
	}
}

/* Adding the css for the birthday editing */
div.label-content {
	margin: 13px 0px 1px 6px;
}

div.divider {
	border: 1px solid transparent;
	border-bottom-color: #717171;
}

.t-student-card {
	color: black;
	display: inline-block;
	position: relative;
	vertical-align: top;
	box-sizing: border-box;
	margin-right: 11.4px;
	margin-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 105px;
	width: 100px;
	height: 150px;
	border-radius: 5px;
	background-color: white;
}

.t-student-card:hover {
	cursor: pointer;
	box-shadow: 0px 1px 6px #0096d6 !important;
	text-decoration: none;
}

.t-student-image {
	position: absolute;
	top: 0px;
	left: 0px;
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
}

.t-student-top {
	position: absolute;
	top: -5px;
	right: -5px;
	border-radius: 30px;
	padding: 5px 10px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}

.t-student-top-x {
	position: absolute;
	top: 88px;
	left: -87px;
	border-radius: 30px;
	padding: 5px 10px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}

.off-btn {
	background: rgba(255, 255, 255, 0.78);
	color: black !important;
	margin-left: 10px;
}

/* Defining the custom styling of the gradebook at the teachers portal */
div.student-container {
	height: auto;
	padding: 2px 2px 2px 2px;
}

div.student-image {
	width: 100%;
	height: auto;
}

div.divider {
	border: 1px solid transparent;
	border-bottom-color: #e8e8e8;
}

/*Google Play Card CSS Styles*/
#special_mobile .post {
	width: 500px;
	height: 300px;
	background: #fff;
	margin: 0 auto;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 400ms ease;
}

.post:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.post img {
	width: 100%;
	height: 50%;
	object-fit: cover;
	transition: all 400ms ease;
}

.post:hover img {
	height: 100%;
	transition: all 400ms ease;
}

.post:hover .avatar {
	transform: scale(0);
	transition: all 400ms ease;
}

.post:hover .fa {
	transform: scale(1);
	transition: all 400ms ease;
}

.post:hover p {
	color: #fff;
	transition: all 400ms ease;
}

.post:hover button {
	color: #fff;
	margin-top: -0px;
	background: rgba(0, 0, 0, 0.6);
	transition: all 400ms ease;
}

.post:hover .hover-content {
	opacity: 1;
	margin-top: -50% !important;
	transition: all 400ms ease;
}

.post:hover .app-name {
	opacity: 0;
	transition: all 400ms ease;
}

#special_mobile .content {
	position: absolute;
	text-align: center;
	left: 50%;
	top: 125px;
}

#special_mobile .post-content {
	position: relative;
	left: -50%;
	margin-top: -20% !important;
	top: 0;
}

#special_mobile .avatar {
	background: #eee;
	height: 80px !important;
	width: 80px !important;
	border-radius: 50%;
	margin-top: -100% !important;
	border: solid 3px #fff;
}

#special_mobile p {
	position: relative;
	font-weight: 300;
	font-size: 20px;
}

#special_mobile button {
	background: #67a037;
	font-size: 10px;
	color: #fff;
	font-weight: 900;
	padding: 10px 15px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
	border: 0;
	transition: all 400ms ease;
}

#special_mobile .bold-caps {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
}

#special_mobile .thin {
	font-size: 16px;
	margin-top: -30px;
}

#special_mobile .hover-content {
	left: -40%;
	margin-top: -70% !important;
	top: 0 !important;
	position: absolute;
	opacity: 0;
	transition: all 400ms ease;
}

#special_mobile .rating {
	margin-top: 70%;
	margin-left: -100% !important;
}

#special_mobile .post .fa {
	color: #fff;
	transform: scale(0);
	transition: all 400ms ease;
}

#special_mobile .post a {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	margin: 0 auto;
}

/* styling for the view student pane at the teacher's pane */
img.view_profile_img {
	width: 200px;
	height: 200px;
}

.new-student-list {
	margin-left: -10px;
	border: 3px solid white;
	border-radius: 50%;
}

.mt-picy {
	width: 130px;
}

.hoverable {
	transition: box-shadow 0.25s;
	box-shadow: 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.hoverable:hover {
	transition: box-shadow 0.25s;
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*----------------------------
	Styling the presentation
-----------------------------*/

#impress:not(.impress-not-supported) .step {
	opacity: 0.4;
}

#impress .step {
	width: 700px;
	height: 600px;
	position: relative;
	margin: 0 auto;

	-moz-transition: 1s opacity;
	-webkit-transition: 1s opacity;
	transition: 1s opacity;
}

#impress .step.active {
	opacity: 1;
}

#impress h2 {
	font: normal 44px/1.5 'PT Sans Narrow', sans-serif;
	color: #444648;
	position: absolute;
	z-index: 10;
}

#impress p {
	font: normal 18px/1.3 'Open Sans', sans-serif;
	color: #27333f;
	position: absolute;
	z-index: 10;
}

#impress img {
	position: absolute;
	z-index: 1;
}

.arrow {
}

.arrow:hover {
	opacity: 1;
}

#arrowLeft {
	left: 45px;
}

#arrowRight {
	right: 45px;
	background-position: top right;
}

/* Hide the arrows if impress is not supported */

#impress.impress-not-supported + .arrow,
#impress.impress-not-supported + .arrow + .arrow {
	display: none;
}

/*----------------------------
	Slide 1 - Intro
-----------------------------*/

#impress #intro {
	width: 500px;
}

#intro h2 {
	text-align: center;
	width: 100%;
}

#intro p {
	font-size: 22px;
	left: 290px;
	line-height: 1.6;
	top: 220px;
	white-space: nowrap;
}

#intro img {
	top: 120px;
}

/*----------------------------
	Slide 2 - Simplicity
-----------------------------*/

#impress #simplicity {
	width: 675px;
}

#simplicity h2 {
	left: 0;
	top: 135px;
	width: 400px;
}

#simplicity p {
	left: 50px;
	text-align: justify;
	text-indent: 16px;
	top: 225px;
	width: 365px;
}

#simplicity img {
	right: 0;
	top: 30px;
}

/*----------------------------
	Slide 3 - Connect
-----------------------------*/

#impress #connect {
	width: 560px;
}

#connect h2 {
	left: 0;
	top: 370px;
	width: 100%;
	text-align: center;
}

#connect p {
	left: 50%;
	margin-left: -245px;
	text-align: left;
	top: 460px;
	width: 490px;
}

#connect img {
	right: 0;
	top: 50px;
}

/*----------------------------
	Slide 4 - Upload
-----------------------------*/

#impress #upload {
	width: 620px;
}

#upload h2 {
	left: 0;
	text-align: left;
	top: 170px;
}

#upload p {
	left: 32px;
	top: 255px;
	width: 280px;
}

#upload img {
	right: 0;
	top: 30px;
}

/*----------------------------
	Slide 5 - Music
-----------------------------*/

#impress #music {
	width: 690px;
}

#music h2 {
	left: 0;
	text-align: center;
	top: 10px;
	width: 100%;
}

#music p {
	font-size: 15px;
	left: 45px;
	text-indent: 15px;
	top: 119px;
	width: 402px;
}

#music img {
	right: 0;
	top: 200px;
}

/* Adding styles and designs to the term cards */
div.termshadow {
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
	/* background-color: #e9e9e9 !important;
   color: #212121 !important;*/
	background-color: #616161 !important;
	color: #ffffff;
	font-weight: 500;
	font-size: 16px;
}

span.text-size {
	font-size: 20px;
}

small.sub {
	font-size: 13px;
}

.mlt-list {
	margin-left: -20px;
	margin-top: -10px;
}

/* Workings for the birthday list */

img.bphoto {
	border-radius: 50%;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
	position: absolute;
	z-index: 4;
	top: 35px;
	left: 50px;
	margin-bottom: 10px;
}

.hover_camera {
	position: absolute;
	z-index: 1;
	top: 65px;
	display: none;
	margin-left: 30px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.hover_camera:hover {
	transform: rotate(360deg);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.foot-btn {
	margin-top: 15px;
	margin-bottom: -30px;
}

.ml-n10 {
	margin-left: -10px !important;
}

.stidqr {
	position: relative !important;
}

.min-h-700 {
	min-height: 700px;
}

.min-h-900 {
	min-height: 900px;
}

.ohd {
	overflow: hidden;
}

.top-right {
	position: absolute;
	right: 30px;
	top: 30px;
}

.font-green {
	color: green;
}

.font-orange {
	color: orangered;
}

.small-icon-font {
	font-size: 20px;
}

.xchip-null {
	display: inline-block;
	padding: 0 25px;
	height: 32px;
	font-size: 14px;
	line-height: 35px;
	border-radius: 32px;
	background-color: white;
	margin-bottom: 20px;
	margin-top: 10px;
}

.margy-card-warning {
	margin-left: -22px;
	margin-right: 8px;
}

.wbdrop-custom {
	/*background-position-y: 1091px;*/
}

.min-h-740 {
	min-height: 740px;
}

.hj {
	cursor: pointer;
}

/* Redesigning the department panel */
div.bg-diagonal {
	background-color: #12728e;
	background-image: -webkit-linear-gradient(125deg, #7eafff 50%, #12728e 50%);
}

div.dp-title {
	color: white;
}

div.sub-text > a {
	color: white;
	font-weight: 600;
	font-size: 16px;
}

.control-label {
	font-size: 12px;
	margin-top: 12px;
}

.has-error {
	position: absolute;
	left: 0px;
	color: red;
}

.validation-valid {
	font-size: 12px;
	margin-top: 10px;
	color: green;
}

.highlighted {
}

.highlight {
	background: yellow;
	color: black;
	padding: 2px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.76);
}

.small-gap {
	margin-top: -15px;
}

.right-qr {
	margin-top: -40px;
	margin-right: 20px;
}

.st-up {
	margin-top: -78px !important;
}

.g-up {
	margin-top: -50px !important;
}

.facebookclass {
	text-align: center;
	-moz-background-color: transparent;
	-webkit-background-color: green;
}

.mt-5 {
	margin-top: 5px;
}

.nice-header {
	font-size: 18px;
	color: #4a4a4a;
}

.subject-list-soft {
	width: 100%;
	height: auto;
	margin-right: 0px;
	margin-left: 0px;
}

.subject-list-soft .subject {
	background-color: white;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.41);
	padding: 10px;
	height: 42px;
}

.subject-list-soft .subject > .img {
	display: inline-block;
	margin-top: -5px;
}

.subject-list-soft .subject > .text {
	display: inline-block;
	font-size: 12px;
}

.subjects-showing {
	font-size: 13px;
	padding-left: 10px;
	color: #777777;
}

.apple-size-x {
	width: 100px;
}

.last-updated {
	margin-top: 15px;
	margin-right: 20px;
}

.min-h-350 {
	min-height: 350px;
}

.min-h-500 {
	min-height: 500px;
}

.fx-btn {
	position: fixed !important;
	bottom: 0 !important;
}

.mtn77 {
	margin-top: -77px;
}

/* Css styling for the download pane */
select.select_os {
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	cursor: pointer;
	font-size: 18px;
	padding: 10px 10px 10px 10px;
	background-color: rgb(66, 133, 244);
	color: white;
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

select.select_os:before {
	content: '';
	font-size: 18px;
	display: inline-block;
	color: white;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	border-radius: 30px;
}

select.select_os:after {
	content: '<>';
	font-size: 18px;
	display: inline-block;
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
}

select.select_os > option {
	font-size: 16px;
	padding: 15px 5px 15px 5px;
}

select.select_os:hover {
	background-color: rgb(126, 175, 255);
}

schrep {
	color: rgb(66, 133, 244);
	font-weight: 500;
}

div.os_img > img {
	margin: 20px;
}

div.linux_pane {
	margin-bottom: 20px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	border: 1px solid #1e88e5;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.24);
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(50deg, #ffffff 90%, rgb(66, 133, 244) 10%);
}

div.linux_pane:hover {
	box-sizing: border-box;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s ease-in-out;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
}

sup.badge-new {
	position: absolute;
	top: 20px;
	right: 20px;
	color: white;
	font-weight: bold;
	font-size: 11px;
	transform: rotate(38deg);
}

div.qr_pane {
	margin-top: 70px;
	margin-left: 48px;
	margin-right: 10px;
	margin-bottom: 36px;
}

.os_img {
	width: 300px;
	height: 400px;
	margin: 0 auto;
}

.text-muted-dk-nmc {
	color: #595959;
}

.linker {
}

.linker:hover {
	text-decoration: underline;
}

.pc-percent {
	font-size: 22px;
}

.max-out-logo {
	padding: 0 16.5px !important;
	padding-top: 3px !important;
}

.top-select {
	display: inline-block !important;
	position: absolute !important;
	top: -3px !important;
	left: 44.5% !important;
	font-size: 16px;
}

.top-bar-select md-select .md-select-value {
	border-bottom-style: none !important;
	font-weight: bold !important;
	color: white !important;
}

.min-h-520 {
	min-height: 520px;
}

.w-38 {
	width: 38px;
	height: 38px;
}

.bdr-white {
	border: 2px solid rgba(255, 255, 255, 0.87);
}

.right-post-avatar {
	margin-top: 17px;
	max-height: 200px;
	max-width: 200px;
	height: 200px;
	width: 200px;
}

.bdr-black-round {
	border: 2px solid rgba(0, 0, 0, 0.31);
}

.w-34 {
	width: 34px;
	height: 34px;
}

.mt-neg-4 {
	margin-top: -4px !important;
}

.bg-account {
	background: white;
}

.gb_qb {
}

.gb_tb {
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	-webkit-transform: translateZ(0);
}

.gb_rb {
	margin-right: 20px;
	position: relative;
}

.gb_rb,
.gb_sb {
	display: inline-block;
	vertical-align: top;
}

.gbip {
	background-image: url(https://lh3.googleusercontent.com/-eQkClz2e6EM/AAAAAAAAAAI/AAAAAAAAAAA/AHalGhoXjjEt0UblbvU6nM6UcDpiPEDtOA/s96-c-mo/photo.jpg);
}

.gb_ub {
	-webkit-background-size: 96px 96px;
	background-size: 96px 96px;
	border: none;
	vertical-align: top;
	height: 96px;
	width: 96px;
}

.gb_tb .gb_kb {
	background: rgba(0, 0, 0, 0.54);
}

.gb_kb {
	background: rgba(78, 144, 254, 0.7);
	bottom: 0;
	color: #fff;
	font-size: 9px;
	font-weight: bold;
	left: 0;
	line-height: 9px;
	position: absolute;
	padding: 7px 0;
	text-align: center;
	width: 96px;
}

.gb_rb,
.gb_sb {
	display: inline-block;
	vertical-align: top;
}

.gb_vb {
	font-weight: bold;
	margin: -4px 0 1px 0;
}

.gb_xb {
	color: #666;
}

.gb_pb {
	color: #12728e;
	margin: 6px 0;
}

.search-for-place {
	position: absolute;
	top: 0px;
	padding-right: 20px;
	padding-left: 20px;
	background: white;
}

.custo-search {
	height: 46px;
	padding-left: 34px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.61);
}

.setup-search-icon {
	position: absolute;
	top: 15px;
	left: 10px;
	color: #595959;
}

.ribbon-xyz {
	position: relative;
	width: 50px;
	height: 100px;
	background: #278f3c;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.ribbon-xyz:after,
.ribbon-xyz:before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	bottom: -20px;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

.ribbon-xyz:before {
	left: 0;
	border-left: 25px solid #278f3c;
}

.ribbon-xyz:after {
	right: 0;
	border-right: 25px solid #278f3c;
}

.gb_footer {
	/* width: 373px; */
	margin: -20px;
	margin-top: 20px;
	border-top: 1px solid rgb(221, 222, 224);
	padding-left: 20px;
	background-color: #f3f3f3;
}

.subject-teacher-search {
	padding-left: 26px !important;
	padding-right: 26px !important;
	margin-top: 0px !important;
}

.pdg-subject-teacher {
	padding-left: 46px !important;
	padding-right: 46px !important;
}

.pdg-subject-groups {
	padding-left: 25px !important;
	margin-top: -5px !important;
	margin-bottom: 10px !important;
}

.pd-new-assessment {
	padding-left: 22px;
	padding-right: 10px;
}

.ph-s .country-list {
	width: 340px;
	overflow-x: hidden;
	max-height: 101px;
}

.phs .country-list {
	width: 290px;
	overflow-x: hidden;
	max-height: 101px;
}

.promo-off {
	width: 590px !important;
}

.promo-on {
	width: 735px !important;
}

.w100 {
	width: 100px !important;
	height: 100px !important;
}

.search-subject-mode {
	margin-left: 14px !important;
	margin-right: 14px !important;
}

.crowe {
	margin-right: 0px;
	margin-left: 0px;
}

.custo-t-search {
	height: 20px !important;
}

.corner-t-office {
	right: 20px;
	top: 10px;
}
.corner-options {
	right: 20px;
	top: 10px;
}
.corner-s-office {
	right: 25px;
	top: -50px;
}

.bottom-panel {
	background: white;
	min-height: 200px;
	width: 100%;
	position: fixed;
	bottom: 0px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
	margin-left: -33px;
}

.attendance-present {
	color: rgb(0, 0, 0);
	background-color: rgb(153, 226, 87);
}

.present-dot-rel {
	width: 20px;
	height: 20px;
	background: rgb(153, 226, 87);
	border-radius: 50%;
	position: relative;
	display: inline-block;
	margin-top: 1px;
	margin-right: 9px;
	margin-bottom: -5px;
	margin-left: -3px;
}

.attendance-absent {
	color: rgb(255, 255, 255);
	background-color: rgb(226, 87, 87);
}

.absent-dot-rel {
	width: 20px;
	height: 20px;
	background: rgb(226, 87, 87);
	border-radius: 50%;
	position: relative;
	display: inline-block;
	margin-top: 1px;
	margin-right: 9px;
	margin-bottom: -5px;
	margin-left: -3px;
}

.attendance-tardy {
	color: rgb(0, 0, 0);
	background-color: rgb(226, 183, 87);
}

.tardy-dot-rel {
	width: 20px;
	height: 20px;
	background: rgb(226, 183, 87);
	border-radius: 50%;
	position: relative;
	display: inline-block;
	margin-top: 1px;
	margin-right: 9px;
	margin-bottom: -5px;
	margin-left: -3px;
}

.attendance-nm {
	color: rgb(170, 170, 170);
	background-color: white;
}

.nm-dot-rel {
	width: 20px;
	height: 20px;
	background: rgb(221, 221, 221);
	border-radius: 50%;
	position: relative;
	display: inline-block;
	margin-top: 3px;
	margin-right: 9px;
	margin-bottom: -5px;
}

.panel-right {
	margin-top: -25px;
	margin-right: auto;
	margin-left: auto;
	width: 410px;
	margin-bottom: 16px;
}

.bn-b {
	margin-left: 5px;
}

.no-top {
	margin-top: 0;
}

.at_db_select input {
	text-align: center !important;
}

.ml0 {
	margin-left: 0 !important;
}

img.logo_size {
	width: 140px;
	height: auto;
	margin-top: 40px;
}

h5.subimg_title {
	color: #929292;
	font-size: 12px;
	text-align: center;
}

div.sub_img {
	width: 100%;
	height: auto;
	/* overflow-y:scroll;
  overflow-x: hidden;*/
}

span.subject_lists {
	line-height: 1.5;
}

span.subject_lists > img {
	width: 50px;
	height: 50px;
	border: 1px solid #f1f1f1;
	border-radius: 50%;
	margin-left: 12px;
	margin-bottom: 10px;
	transition: all 2s ease-out;
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-ms-transition: all 1s ease-out;
}

span.subject_lists > img:hover {
	cursor: pointer;
	transform: scale(1.25);
	-webkit-transform: scale(1.25);
	-moz-transform: scale(1.25);
	-o-transform: scale(1.25);
	transition: all 2s ease-out;
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-ms-transition: all 1s ease-out;
}

div.bg-color {
	background-color: white;
	width: 100%;
	height: 140px;
	border-radius: 2px;
}

div.ana_ft {
	background-color: white;
	margin-top: 0px;
}

.pdl-60 {
	padding-left: 60px !important;
}

.abs-search-looker {
	position: absolute;
	color: rgba(255, 255, 255, 0.8);
	top: 72px;
	font-size: 48px;
}

.abs-search-loader {
	position: absolute;
	color: rgba(255, 255, 255, 0.8);
	top: 80px;
}

#cake {
	display: block;
	position: relative;
	margin: -10em auto 0 auto;
}

/* ============================================== Candle
*/
.velas {
	background: #ffffff;
	border-radius: 10px;
	position: absolute;
	top: 228px;
	left: 50%;
	margin-left: -2.4px;
	margin-top: -8.33333333px;
	width: 5px;
	height: 35px;
	transform: translateY(-300px);
	backface-visibility: hidden;
	animation: in 500ms 6s ease-out forwards;
}

.velas:after,
.velas:before {
	background: rgba(255, 0, 0, 0.4);
	content: '';
	position: absolute;
	width: 100%;
	height: 2.22222222px;
}

.velas:after {
	top: 25%;
	left: 0;
}

.velas:before {
	top: 45%;
	left: 0;
}

/* ============================================== Fire
*/
.fuego {
	border-radius: 100%;
	position: absolute;
	top: -20px;
	left: 50%;
	margin-left: -2.6px;
	width: 6.66666667px;
	height: 18px;
}

.fuego:nth-child(1) {
	animation: fuego 2s 6.5s infinite;
}

.fuego:nth-child(2) {
	animation: fuego 1.5s 6.5s infinite;
}

.fuego:nth-child(3) {
	animation: fuego 1s 6.5s infinite;
}

.fuego:nth-child(4) {
	animation: fuego 0.5s 6.5s infinite;
}

.fuego:nth-child(5) {
	animation: fuego 0.2s 6.5s infinite;
}

/* ============================================== Animation Fire
*/
@keyframes fuego {
	0%,
	100% {
		background: rgba(254, 248, 97, 0.5);
		box-shadow: 0 0 40px 10px rgba(248, 233, 209, 0.2);
		transform: translateY(0) scale(1);
	}
	50% {
		background: rgba(255, 50, 0, 0.1);
		box-shadow: 0 0 40px 20px rgba(248, 233, 209, 0.2);
		transform: translateY(-20px) scale(0);
	}
}

@keyframes in {
	to {
		transform: translateY(0);
	}
}

.cake-abs {
	position: absolute;
}

.pie-chart-tc {
	width: 140px;
	height: 140px;
	margin-top: 30px;
	margin-left: 24px;
}

.bar-graph-tc {
	width: 600px;
}

.mr7 {
	margin-right: 7px !important;
}

#country-select-div .select2 {
	width: 262px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.top-sa-bar {
	top: 0px;
	right: 0px;
	position: absolute;
	left: 0px;
	height: 130px;
	margin-bottom: 15px;
	box-shadow: 0px 0px 1px rgb(155, 155, 155);
	background-size: auto 100%, auto 100%;
	background-position: left bottom, right bottom;
	background-repeat: no-repeat, no-repeat;
	background-color: #dbe0e3;
	width: 100%;
}

.mt10 {
	margin-top: 10px !important;
}

/*/*MAKING SOME CSS FOR THE NOTICES */
div.md-summary {
	cursor: pointer;
}

.expandAnim {
	transition: all 1s ease-in-out;
	transition-delay: 0.5s;
	transition-duration: 2s;
	border-radius: 2px;
}

.radius {
	background-color: #eceff1;
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	border-radius: 2px;
}

.mbottom {
	margin-bottom: 40px !important;
	margin-top: -10px !important;
}

/*/*MAKING SOME CSS FOR THE NOTICES */
div.md-summary {
	cursor: pointer;
}
.expandAnim {
	transition: all 1s ease-in-out;
	transition-delay: 0.5s;
	transition-duration: 2s;
	border-radius: 2px;
}
.radius {
	background-color: #eeeeee;
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	border-radius: 2px;
}
.mbottom {
	margin-bottom: 40px !important;
	margin-top: -10px !important;
}

.mat-list,
.mat-nav-list {
	padding-top: 8px;
	display: block;
}

.mat-list .mat-subheader:first-child,
.mat-nav-list .mat-subheader:first-child {
	margin-top: -8px;
}

.mat-list .mat-subheader,
.mat-nav-list .mat-subheader {
	display: block;
	box-sizing: border-box;
	height: 48px;
	padding: 16px;
	margin: 0;
	font-family: Roboto, 'Helvetica Neue', sans-serif;
	font-size: 14px;
	font-weight: 500;
}

.mat-list .mat-subheader,
.mat-nav-list .mat-subheader {
	color: rgba(0, 0, 0, 0.54);
}

.mat-list .mat-list-item,
.mat-nav-list .mat-list-item {
	display: block;
}

.mat-list .mat-list-item,
.mat-nav-list .mat-list-item {
	color: #000;
}

.mat-list .mat-list-item.mat-2-line .mat-list-item-content,
.mat-nav-list .mat-list-item.mat-2-line .mat-list-item-content {
	height: 72px;
}

.mat-list .mat-list-item.mat-list-item-avatar .mat-list-item-content,
.mat-nav-list .mat-list-item.mat-list-item-avatar .mat-list-item-content {
	height: 56px;
}

.mat-list .mat-list-item .mat-list-item-content,
.mat-nav-list .mat-list-item .mat-list-item-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-family: Roboto, 'Helvetica Neue', sans-serif;
	box-sizing: border-box;
	font-size: 16px;
	height: 48px;
	padding: 0 16px;
	position: relative;
}

.mat-ripple {
	overflow: hidden;
}

.mat-list .mat-list-item .mat-list-avatar,
.mat-nav-list .mat-list-item .mat-list-avatar {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.mat-list-item-content md-icon[md-list-avatar],
md-list-item md-icon[md-list-avatar] {
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.material-icons,
md-icon.material-icons,
md-icon.material-icons.mat-icon {
	width: 1em;
	height: 1em;
}

.mat-list-item-content md-icon[md-list-avatar],
md-list-item md-icon[md-list-avatar] {
	/*background-color: rgb(236, 239, 241);*/
	background-color: white;
}

md-list a[md-list-item] [md-list-avatar],
md-list md-list-item [md-list-avatar],
md-nav-list a[md-list-item] [md-list-avatar],
md-nav-list md-list-item [md-list-avatar] {
	min-width: 40px;
}

.mat-list-item-content md-icon,
md-list-item md-icon {
	color: rgba(0, 0, 0, 0.54);
}

.mat-icon {
	background-repeat: no-repeat;
	display: inline-block;
	fill: currentColor;
	height: 24px;
	width: 24px;
}

.material-icons {
	font-family: Material Icons;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-feature-settings: 'liga';
	font-feature-settings: 'liga';
}

.mat-list .mat-list-item .mat-list-text,
.mat-nav-list .mat-list-item .mat-list-text {
	display: flex;
	flex-direction: column;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	padding: 0 16px;
}

.mat-list .mat-list-item .mat-line,
.mat-nav-list .mat-list-item .mat-line {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	box-sizing: border-box;
}

.mat-list .mat-list-item .mat-list-text > *,
.mat-nav-list .mat-list-item .mat-list-text > * {
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: inherit;
}

.mat-list .mat-list-item .mat-line:nth-child(n + 2),
.mat-nav-list .mat-list-item .mat-line:nth-child(n + 2) {
	font-size: 14px;
	margin-top: 2px;
}

.mat-list-text p {
	color: rgba(0, 0, 0, 0.38);
}

.mat-list-text h4 {
	color: #595959;
}

.dc {
	color: #595959 !important;
}

@-webkit-keyframes fade {
	from {
		filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
		opacity: 1;
	}
	to {
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
		opacity: 0.2;
	}
}

@keyframes fade {
	from {
		filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
		opacity: 1;
	}
	to {
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
		opacity: 0.2;
	}
}

/*.spinner {*/
/*position: absolute;*/
/*width: 28px;*/
/*height: 28px;*/
/*display: block;*/
/*top: 50%;*/
/*left: 50%;*/
/*margin: -10px 0 0 -10px;*/
/*}*/

/*.spinner .se {*/
/*width: 7%;*/
/*height: 25%;*/
/*background: #000;*/
/*position: absolute;*/
/*left: 33.3%;*/
/*top: 37%;*/
/*filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);*/
/*opacity: 0;*/
/*-moz-border-radius: 50px;*/
/*-webkit-border-radius: 50px;*/
/*border-radius: 50px;*/
/*-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);*/
/*-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);*/
/*box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);*/
/*}*/

/*.spinner .b1 {*/
/*-moz-transform: rotate(0deg) translate(0, -142%);*/
/*-ms-transform: rotate(0deg) translate(0, -142%);*/
/*-webkit-transform: rotate(0deg) translate(0, -142%);*/
/*transform: rotate(0deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0s;*/
/*-webkit-animation: fade 0.75s infinite 0s;*/
/*animation: fade 0.75s infinite 0s;*/
/*}*/

/*.spinner .b2 {*/
/*-moz-transform: rotate(30deg) translate(0, -142%);*/
/*-ms-transform: rotate(30deg) translate(0, -142%);*/
/*-webkit-transform: rotate(30deg) translate(0, -142%);*/
/*transform: rotate(30deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.0625s;*/
/*-webkit-animation: fade 0.75s infinite 0.0625s;*/
/*animation: fade 0.75s infinite 0.0625s;*/
/*}*/

/*.spinner .b3 {*/
/*-moz-transform: rotate(60deg) translate(0, -142%);*/
/*-ms-transform: rotate(60deg) translate(0, -142%);*/
/*-webkit-transform: rotate(60deg) translate(0, -142%);*/
/*transform: rotate(60deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.125s;*/
/*-webkit-animation: fade 0.75s infinite 0.125s;*/
/*animation: fade 0.75s infinite 0.125s;*/
/*}*/

/*.spinner .b4 {*/
/*-moz-transform: rotate(90deg) translate(0, -142%);*/
/*-ms-transform: rotate(90deg) translate(0, -142%);*/
/*-webkit-transform: rotate(90deg) translate(0, -142%);*/
/*transform: rotate(90deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.1875s;*/
/*-webkit-animation: fade 0.75s infinite 0.1875s;*/
/*animation: fade 0.75s infinite 0.1875s;*/
/*}*/

/*.spinner .b5 {*/
/*-moz-transform: rotate(120deg) translate(0, -142%);*/
/*-ms-transform: rotate(120deg) translate(0, -142%);*/
/*-webkit-transform: rotate(120deg) translate(0, -142%);*/
/*transform: rotate(120deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.25s;*/
/*-webkit-animation: fade 0.75s infinite 0.25s;*/
/*animation: fade 0.75s infinite 0.25s;*/
/*}*/

/*.spinner .b6 {*/
/*-moz-transform: rotate(150deg) translate(0, -142%);*/
/*-ms-transform: rotate(150deg) translate(0, -142%);*/
/*-webkit-transform: rotate(150deg) translate(0, -142%);*/
/*transform: rotate(150deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.3125s;*/
/*-webkit-animation: fade 0.75s infinite 0.3125s;*/
/*animation: fade 0.75s infinite 0.3125s;*/
/*}*/

/*.spinner .b7 {*/
/*-moz-transform: rotate(180deg) translate(0, -142%);*/
/*-ms-transform: rotate(180deg) translate(0, -142%);*/
/*-webkit-transform: rotate(180deg) translate(0, -142%);*/
/*transform: rotate(180deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.375s;*/
/*-webkit-animation: fade 0.75s infinite 0.375s;*/
/*animation: fade 0.75s infinite 0.375s;*/
/*}*/

/*.spinner .b8 {*/
/*-moz-transform: rotate(210deg) translate(0, -142%);*/
/*-ms-transform: rotate(210deg) translate(0, -142%);*/
/*-webkit-transform: rotate(210deg) translate(0, -142%);*/
/*transform: rotate(210deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.4375s;*/
/*-webkit-animation: fade 0.75s infinite 0.4375s;*/
/*animation: fade 0.75s infinite 0.4375s;*/
/*}*/

/*.spinner .b9 {*/
/*-moz-transform: rotate(240deg) translate(0, -142%);*/
/*-ms-transform: rotate(240deg) translate(0, -142%);*/
/*-webkit-transform: rotate(240deg) translate(0, -142%);*/
/*transform: rotate(240deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.5s;*/
/*-webkit-animation: fade 0.75s infinite 0.5s;*/
/*animation: fade 0.75s infinite 0.5s;*/
/*}*/

/*.spinner .b10 {*/
/*-moz-transform: rotate(270deg) translate(0, -142%);*/
/*-ms-transform: rotate(270deg) translate(0, -142%);*/
/*-webkit-transform: rotate(270deg) translate(0, -142%);*/
/*transform: rotate(270deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.5625s;*/
/*-webkit-animation: fade 0.75s infinite 0.5625s;*/
/*animation: fade 0.75s infinite 0.5625s;*/
/*}*/

/*.spinner .b11 {*/
/*-moz-transform: rotate(300deg) translate(0, -142%);*/
/*-ms-transform: rotate(300deg) translate(0, -142%);*/
/*-webkit-transform: rotate(300deg) translate(0, -142%);*/
/*transform: rotate(300deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.625s;*/
/*-webkit-animation: fade 0.75s infinite 0.625s;*/
/*animation: fade 0.75s infinite 0.625s;*/
/*}*/

/*.spinner .b12 {*/
/*-moz-transform: rotate(330deg) translate(0, -142%);*/
/*-ms-transform: rotate(330deg) translate(0, -142%);*/
/*-webkit-transform: rotate(330deg) translate(0, -142%);*/
/*transform: rotate(330deg) translate(0, -142%);*/
/*-moz-animation: fade 0.75s infinite 0.6875s;*/
/*-webkit-animation: fade 0.75s infinite 0.6875s;*/
/*animation: fade 0.75s infinite 0.6875s;*/
/*}*/

/*!* Animation keyframes - you need to add prefixes *!*/
/*@-webkit-keyframes spin {*/
/*from {*/
/*-webkit-transform: rotate(0deg);*/
/*}*/
/*to {*/
/*-webkit-transform: rotate(360deg);*/
/*}*/
/*}*/

/*@-moz-keyframes spin {*/
/*from {*/
/*-moz-transform: rotate(0deg);*/
/*}*/
/*to {*/
/*-moz-transform: rotate(360deg);*/
/*}*/
/*}*/

/*@-ms-keyframes spin {*/
/*from {*/
/*-ms-transform: rotate(0deg);*/
/*}*/
/*to {*/
/*-ms-transform: rotate(360deg);*/
/*}*/
/*}*/

.loading1 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 28px;
	height: 28px;
	margin: -14px 0 0 -14px;
}

.loading1 .spinner1 {
	position: absolute;
	left: 1px;
	top: 1px;
	width: 26px;
	height: 26px;
	-webkit-animation: spin 1s infinite linear;
	-moz-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
}

.loading1 .mask1 {
	width: 12px;
	height: 12px;
	overflow: hidden;
}

.loading1 .maskedCircle1 {
	width: 20px;
	height: 20px;
	border-radius: 12px;
	border: 3px solid #666;
}

.nation-sub {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.flag-style {
	width: 32px !important;
	height: 32px !important;
	border-radius: 50% !important;
	border: 3px solid white !important;
}

.mt13 {
	margin-top: 13px !important;
}

.check-done-wizzy {
	width: 100px !important;
	margin-bottom: 20px !important;
}

.normal-cur {
	cursor: default !important;
}

/* Grade book css */

a img {
	border: none;
}

.left {
	float: left;
}

.right {
	float: right;
}

a:focus,
img:focus,
input:focus,
textarea:focus {
	outline: none;
}

input {
	border: none;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	* {
		-webkit-tap-highlight-color: transparent;
	}

	#sidebar {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
}

body,
html {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

@media print {
	body,
	html {
		height: 100%;
		width: 100%;
		overflow: visible;
	}
}

#sidebar {
	left: 0;
	width: 200px;
}

#main-panel,
#sidebar {
	position: absolute;
	top: 0;
	bottom: 0;
}

#main-panel {
	right: 0;
	left: 200px;
}

#main-panel #class-navigation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 35px;
	background-color: #606466;
}

#main-panel #class-navigation #class-navigation-name {
	display: inline-block;
	vertical-align: top;
	min-width: 100px;
	background: #7d8081;
	height: 27px;
	padding: 8px 20px 0;
	color: #fff;
	font-weight: 700;
}

#main-panel #class-navigation a {
	color: #ccc;
	display: inline-block;
	vertical-align: top;
	height: 27px;
	padding: 8px 20px 0;
}

#main-panel #class-navigation a.active {
	color: #fff;
	background-color: #494949;
}

#main-panel #workspace {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	background: #eee;
	overflow: auto;
}

#main-panel #workspace.navigation-present {
	top: 35px;
}

.eds-no-select {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.error-red {
	color: #ea4843;
}

#eds-view-header,
.eds-view-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50px;
	background: #fff;
}

#eds-view-header h1,
.eds-view-header h1 {
	float: left;
	margin-left: 20px;
	margin-top: 10px;
	font-size: 24px;
	font-weight: 300;
}

#eds-view-header .actions,
.eds-view-header .actions {
	position: absolute;
	top: 18px;
	right: 20px;
}

#eds-view-header .actions a,
.eds-view-header .actions a {
	margin-left: 10px;
}

.eds-view-body,
.eds-view-body-50 {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: auto;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.eds-view-body,
	.eds-view-body-50 {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
}

.standard-padding {
	padding: 20px;
}

.standard-padding h1 {
	margin-bottom: 10px;
}

.standard-padding p {
	color: #666;
	margin-bottom: 10px;
}

.eds-view-body-50 {
	top: 90px;
}

#eds-view-footer {
	height: 49px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	border-top: 1px solid #bfbfbf;
}

#eds-view-footer .actions-right {
	float: right;
	margin-right: 20px;
	margin-top: 18px;
}

.eds-kica-blue {
	background-color: #12728e;
}

.eds-kica-green {
	background-color: #a8dd37;
}

.eds-kica-pink,
.eds-kica-red {
	background-color: #ea125a;
}

.eds-kica-purple,
.eds-kica-violet {
	background-color: #54227b;
}

.eds-btn,
.eds-btn-35 {
	display: block;
	box-sizing: border-box;
	text-align: center;
	border: 1px solid #12728e;
	color: #12728e;
	border-radius: 5px;
}

.disabled.eds-btn-35,
.eds-btn.disabled {
	color: #a8d3e7;
	border-color: #a8d3e7;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.eds-btn-35:hover,
.eds-btn:hover {
	border-bottom-width: 3px;
	text-decoration: none;
}

.eds-btn-35:hover.disabled,
.eds-btn:hover.disabled {
	cursor: auto;
	border-bottom-width: 1px;
}

.active.eds-btn-35,
.eds-btn-35:active,
.eds-btn.active,
.eds-btn:active {
	color: #fff;
	background-color: #12728e;
}

.active.disabled.eds-btn-35,
.eds-btn-35:active.disabled,
.eds-btn.active.disabled,
.eds-btn:active.disabled {
	color: #a8d3e7;
	background-color: transparent;
}

.eds-btn-35 {
	height: 35px;
	padding: 8px 10px 0;
	font-weight: 400;
	font-size: 16px;
}

.eds-btn-gray {
	border-color: #999;
	color: #999;
}

.eds-btn-gray.active,
.eds-btn-gray:active {
	background-color: #999;
}

.eds-btn-red {
	border-color: #ed463d;
	color: #ed463d;
}

.eds-btn-red.active,
.eds-btn-red:active {
	background-color: #ed463d;
}

.eds-border-input-35 {
	box-sizing: border-box;
	height: 35px;
	border: 1px solid #bfbfbf;
	border-radius: 5px;
	padding: 0 10px;
	width: 100%;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 16px;
}

.eds-border-input-35:focus,
.eds-textarea:focus {
	border-color: #12728e;
	box-shadow: 0 0 5px #12728e;
}

.eds-border-input-35.error,
.eds-textarea.error {
	border-color: #ea4843;
}

.eds-border-input-35.error:focus,
.eds-textarea.error:focus {
	border-color: #ea4843;
	box-shadow: 0 0 5px #ea4843;
}

.eds-border-input-35.error:disabled,
.eds-border-input-35:disabled {
	border-color: #dfdfdf;
	color: #dfdfdf;
}

.eds-list-header-35 {
	height: 35px;
	background-color: #ddd;
	color: #999;
	font-size: 14px;
	text-transform: uppercase;
}

.eds-list-header-35 .eds-list-segment {
	padding-top: 9px;
	padding-left: 10px;
}

.eds-list-item {
	display: block;
	position: relative;
	list-style: none;
	border-top: 1px solid #f2f2f2;
	background-color: #fff;
}

.eds-list-item:first-child {
	border-top: none;
}

.eds-list-item:hover {
	border-left: 3px solid #12728e;
}

.eds-list-segment {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
}

.eds-list-actions {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	overflow: hidden;
}

.eds-list-item-delete,
.eds-list-item-edit {
	position: relative;
	box-sizing: border-box;
	height: 100%;
	width: 50px;
	font-size: 16px;
	float: right;
}

.eds-list-item-delete span,
.eds-list-item-edit span {
	position: absolute;
	top: 50%;
	margin-top: -8px;
	text-align: center;
	width: 100%;
}

.eds-list-item-edit {
	color: #737b80;
}

.eds-list-item-edit:hover {
	background-color: #e5eaee;
}

.eds-list-item-delete {
	color: #ea4843;
	-webkit-transition: width 0.3s;
}

.eds-list-item-delete:hover {
	color: #fff;
	background-color: #ea4843;
}

.eds-list-item-delete .eds-list-item-delete-text {
	margin-top: -9px;
}

.eds-inline-error {
	height: 21px;
	background-color: #ea4843;
	color: #fcaaaa;
	padding: 4px 10px 0;
	font-family: Helvetica Neue, Helvetica, Aria, sans-serif;
	font-size: 14px;
	border-radius: 2px;
}

#first-launch-dialog .input-group {
	margin-bottom: 10px;
}

#first-launch-dialog .label {
	color: gray;
	margin-bottom: 5px;
}

#first-launch-dialog .left,
#first-launch-dialog .right {
	width: 225px;
}

#first-launch-dialog .left {
	float: left;
}

#first-launch-dialog .right {
	float: right;
}

#first-launch-dialog .never {
	color: gray;
}

#first-launch-dialog .never:hover {
	color: #ea4843;
}

.shared-admin-styles {
	height: 100%;
	width: 100%;
	font-size: 15px;
	font-family: proxima-nova;
}

.shared-admin-styles h1 {
	font-weight: 400;
}

.shared-admin-styles .left-panel {
	position: absolute;
	background-color: #fff;
	top: 0;
	left: 0;
	bottom: 0;
	width: 260px;
	padding: 20px;
	overflow: auto;
}

.shared-admin-styles .left-panel h1 {
	margin-bottom: 10px;
}

.shared-admin-styles .left-panel .input-group {
	color: #666;
	margin-bottom: 10px;
}

.shared-admin-styles .left-panel .label {
	color: #666;
	margin-bottom: 5px;
}

.shared-admin-styles .right-panel {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 300px;
	overflow: auto;
}

.shared-admin-styles .table {
	padding: 20px;
}

.shared-admin-styles .table .row {
	padding: 8px 15px;
}

.shared-admin-styles .table .inline {
	display: inline-block;
}

.shared-admin-styles .table .heading {
	background-color: #bfbfbf;
	color: #666;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.shared-admin-styles .table .heading a {
	color: #666;
}

.shared-admin-styles .table .content .row {
	background-color: #fff;
	margin-bottom: 1px;
}

.shared-admin-styles .table .content .row:last-child {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	margin-bottom: 0;
}

.shared-admin-styles .table .footer {
	margin-top: 10px;
	text-align: center;
	color: gray;
}

.arrow.asc {
	border-bottom: 10px solid #666;
}

.arrow.asc,
.arrow.desc {
	display: inline-block;
	margin-left: 10px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}

.arrow.desc {
	border-top: 10px solid #666;
}

.rect {
	box-sizing: border-box;
	width: 340px;
	padding: 19px;
	border: 1px solid #bfbfbf;
	margin: 50px auto;
	border-radius: 10px;
	font-family: proxima-nova, HelveticaNeue, Helvetica, Arial, sans-serif;
	font-size: 15px;
}

.rect h1 {
	font-weight: 400;
	color: #000;
}

.rect h2 {
	font-weight: 400;
	font-size: 20px;
	color: #333;
}

.rect p {
	color: #666;
}

.rect .edsx-btn,
.rect .edsx-btn-40,
.rect h1,
.rect h2,
.rect p {
	margin-bottom: 10px;
}

.rect .edsx-btn-40:last-child,
.rect .edsx-btn:last-child,
.rect h1:last-child,
.rect h2:last-child,
.rect p:last-child {
	margin-bottom: 0;
}

[data-color-letter='a'] {
	background-color: #c6e687;
	color: #41710f;
}

[data-color-letter='b'] {
	background-color: #e6e687;
	color: #818a1c;
}

[data-color-letter='c'] {
	background-color: #eeca6c;
	color: #9d7815;
}

[data-color-letter='d'] {
	background-color: #eea653;
	color: #875317;
}

[data-color-letter='f'] {
	background-color: #ea4843;
	color: #fff;
}

.onboard-walkthrough-dialog {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

#tos-modal h2 {
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 20px;
}

#tos-modal .tos-text {
	overflow-y: auto;
	padding: 20px 20px 10px;
	height: 300px;
	margin: 0 -20px 20px;
	background-color: #f2f2f2;
	color: #999;
}

#tos-modal .tos-text h1 {
	font-size: 18px;
	font-weight: 400;
	color: #999;
}

#walkthrough-create-students-dialog .edsx-input-40 {
	display: inline-block;
	margin-right: 10px;
	width: 370px;
	vertical-align: top;
}

#walkthrough-create-students-dialog .return-button {
	display: inline-block;
	width: 80px;
	vertical-align: top;
}

#walkthrough-create-students-dialog .students-list {
	height: 300px;
	margin-bottom: 10px;
	overflow-y: auto;
}

#walkthrough-create-students-dialog .students-list .student {
	margin-bottom: 2px;
	background-color: #f2f2f2;
	padding: 10px 20px;
	border-radius: 5px;
}

#walkthrough-create-students-dialog .students-list .student:hover {
	background-color: #e6e6e6;
}

#walkthrough-create-students-dialog .students-list .student:hover .remove {
	display: block;
}

#walkthrough-create-students-dialog .students-list .student:last-child {
	margin-bottom: 0;
}

#walkthrough-create-students-dialog .students-list .student .name {
	float: left;
	width: 350px;
	word-break: break-word;
}

#walkthrough-create-students-dialog .students-list .student .remove {
	display: none;
	float: right;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#class-walkthrough-students-dialog .students {
	height: 300px;
	margin-bottom: 10px;
	overflow-y: auto;
}

#class-walkthrough-students-dialog .students .student {
	margin-bottom: 2px;
	background-color: #f2f2f2;
	padding: 10px 20px;
	border-radius: 5px;
}

#class-walkthrough-students-dialog .students .student:hover {
	background-color: #e6e6e6;
}

#class-walkthrough-students-dialog .students .student:hover .remove {
	display: block;
}

#class-walkthrough-students-dialog .students .student:last-child {
	margin-bottom: 0;
}

#class-walkthrough-students-dialog .students .student .name {
	float: left;
	width: 350px;
	word-break: break-word;
}

#class-walkthrough-students-dialog .students .student .remove {
	display: none;
	float: right;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#class-walkthrough-students-dialog .field-wrap,
#class-walkthrough-students-dialog .field-wrap input {
	position: relative;
}

#class-walkthrough-students-dialog .field-wrap .dropdown-info {
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	padding: 44px 2px 2px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.25);
	box-shadow: 0 1px 2px #bfbfbf;
	border-radius: 8px;
}

#class-walkthrough-students-dialog .field-wrap .dropdown-info .ul {
	max-height: 300px;
	overflow-y: auto;
	position: relative;
}

#class-walkthrough-students-dialog .field-wrap .dropdown-info .dropdown-item {
	display: block;
	background-color: #f2f2f2;
	margin-bottom: 2px;
	padding: 10px 20px;
	color: #333;
	border-radius: 5px;
}

#class-walkthrough-students-dialog .field-wrap .dropdown-info .dropdown-item:last-child {
	margin-bottom: 0;
}

#class-walkthrough-students-dialog .field-wrap .dropdown-info .dropdown-item.hover {
	text-decoration: none;
	background-color: #ccc;
}

#class-walkthrough-students-dialog .field-wrap .dropdown-info .dropdown-item.hover .add {
	display: block;
	color: #4d4d4d;
}

#class-walkthrough-students-dialog .field-wrap .dropdown-info .dropdown-item .add {
	display: none;
	float: right;
}

#class-selection-dialog input[type='checkbox'] {
	margin-right: 10px;
}

#class-selection-dialog .edsx-btn-40 {
	margin-top: 10px;
}

#class-selection-dialog .classes {
	height: 400px;
	overflow-y: auto;
}

#class-selection-dialog .select-class {
	display: block;
	padding: 8px 15px;
	background-color: #f2f2f2;
	color: #333;
	margin-bottom: 2px;
	border-radius: 5px;
}

#class-selection-dialog .select-class:last-child {
	margin-bottom: 0;
}

#class-selection-dialog .select-class:hover {
	background-color: #e6e6e6;
	color: #333;
	text-decoration: none;
}

#class-selection-dialog .select-class .checkbox {
	margin-right: 10px;
	font-size: 16px;
	color: #bfbfbf;
}

#class-selection-dialog .select-class .checkbox.fa-check-square {
	color: #12728e;
}

.tutorial-popup {
	position: absolute;
	z-index: 100;
}

.tutorial-popup .inner {
	margin-bottom: 10px;
}

.tutorial-popup .tutorial-btn {
	display: inline-block;
	border: 2px solid #fff;
	padding: 7px 20px;
	color: #fff;
	border-radius: 5px;
}

.tutorial-popup .tutorial-btn:hover {
	background-color: hsla(0, 0%, 100%, 0.3);
}

.toggle-inline .label {
	vertical-align: middle;
}

.toggle-inline .toggle {
	vertical-align: middle;
	margin-left: 10px;
}

.two-panel-layout-left {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 250px;
	overflow-y: auto;
}

.two-panel-layout-left.default-style {
	box-sizing: border-box;
	padding: 20px;
	background-color: #fff;
}

.two-panel-layout-right {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 250px;
	overflow-y: auto;
}

.temp-bodytext-style h1,
.temp-bodytext-style p {
	margin-bottom: 10px;
}

.temp-bodytext-style h1 {
	font-weight: 400;
}

.temp-izone-grade-dialog {
	position: absolute;
	padding: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color: #d8d8d8;
	white-space: nowrap;
}

.temp-izone-grade-dialog a {
	display: inline-block;
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	font-size: 24px;
	background-color: hsla(0, 0%, 100%, 0.5);
	margin-right: 5px;
}

.temp-izone-grade-dialog a:last-child {
	margin-right: 0;
}

.temp-izone-grade-dialog a.hover,
.temp-izone-grade-dialog a:hover {
	text-decoration: none;
	background-color: #fff;
}

@media print {
	#sidebar {
		display: none;
	}

	#main-panel {
		left: 0;
		width: 100%;
	}

	#class-student-view {
		min-width: auto !important;
	}

	#class-navigation {
		display: none !important;
	}

	#workspace {
		top: 0 !important;
		background-color: #fff !important;
	}

	.actions {
		display: none !important;
	}
}

.edsx-inline-published-label {
	padding: 1px 3px;
	background-color: #b3b3b3;
	color: #fff;
	font-size: 12px;
	border-radius: 3px;
}

.edsx-inline-published-label:hover {
	cursor: pointer;
}

#modify-class-dialog .edit-bucket-view .edsx-input-group-extra-width .label,
#modify-class-dialog .edsx-input-group .label,
.edit-bucket-view #modify-class-dialog .edsx-input-group-extra-width .label {
	width: 110px;
}

#modify-class-dialog .edit-bucket-view .edsx-input-group-extra-width input,
#modify-class-dialog .edsx-input-group input,
.edit-bucket-view #modify-class-dialog .edsx-input-group-extra-width input {
	width: 290px;
}

#show-all-classes-dialog .search-view {
	margin-bottom: 10px;
}

#show-all-classes-dialog .classes {
	overflow-y: auto;
	height: 400px;
	margin-bottom: 10px;
}

#show-all-classes-dialog .classes .class-item {
	position: relative;
	overflow: hidden;
	padding: 8px 20px;
	border-radius: 5px;
	background-color: #f2f2f2;
	margin-bottom: 2px;
}

#show-all-classes-dialog .classes .class-item .name {
	font-weight: 700;
}

#show-all-classes-dialog .classes .class-item .description {
	color: #666;
}

#show-all-classes-dialog .classes .class-item .right {
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
}

#show-all-classes-dialog .classes .class-item .delete,
#show-all-classes-dialog .classes .class-item .edit {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: 50%;
	margin-top: -20px;
	margin-right: 10px;
	height: 40px;
	width: 40px;
	border-radius: 20px;
}

#show-all-classes-dialog .classes .class-item .delete .icon-compose,
#show-all-classes-dialog .classes .class-item .delete .icon-trash,
#show-all-classes-dialog .classes .class-item .edit .icon-compose,
#show-all-classes-dialog .classes .class-item .edit .icon-trash {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	width: 100%;
	text-align: center;
}

#show-all-classes-dialog .classes .class-item .edit {
	color: #737b80;
}

#show-all-classes-dialog .classes .class-item .edit:hover {
	background-color: #bfbfbf;
}

#show-all-classes-dialog .classes .class-item .delete {
	color: #ea4843;
}

#show-all-classes-dialog .classes .class-item .delete:hover {
	background-color: #ea4843;
	color: #fff;
	text-decoration: none;
}

#show-all-classes-dialog .classes .class-item .delete .delete-text {
	position: absolute;
	top: 50%;
	margin-top: -8px;
	width: 100%;
	text-align: center;
}

#show-all-classes-dialog .classes .class-item:hover {
	background-color: #d8d8d8;
}

#support-dialog .segments {
	margin-bottom: 10px;
}

#support-dialog .segments a {
	width: 200px;
}

#support-dialog #feedback-message {
	height: 150px;
	margin-bottom: 10px;
}

#all-students-view .actions {
	-webkit-transform: translateY(-55px);
}

#all-students-view .table-wrap {
	top: 0;
}

#all-students-view .left-panel {
	left: 0;
}

#all-students-view .right-panel {
	left: 300px;
}

#classroom-students-view .eds-view-body-50 {
	overflow-x: hidden;
}

#classroom-students-view .header {
	height: 50px;
	line-height: 50px;
	background-color: #fff;
	text-align: center;
	padding: 0 20px;
}

#classroom-students-view .header .left {
	float: left;
}

#classroom-students-view .header .actions {
	float: right;
}

#classroom-students-view .header .actions a {
	margin-left: 10px;
}

#classroom-students-view .student-view-mode-toggle {
	display: inline-block;
	vertical-align: middle;
}

#classroom-students-view .student-view-mode-toggle a {
	width: 50px;
}

#classroom-students-view #student-parent-view-introduction {
	padding: 5px 20px;
	line-height: 30px;
	background-color: #9e84b3;
	color: #fff;
}

#classroom-students-view #student-parent-view-introduction a {
	color: #fff;
	text-decoration: underline;
}

#classroom-students-view #student-parent-view-introduction .close {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAB1ElEQVRIDcWXO24CMRBADVUKWijScQKKdFEkboAi5QRcIjVNquQOtClzA7p06WjSpoi0lEmJFGeehRF41/asdyVGGmbBM/P8mbXNwOhkKG63oveiN6LXBxVjvg/6IfZN9F30T7STXEn0o2glapWKLzHEFsmDRH2JaoGhH7HkUMtAPJ9Ew0Sl38lFzqTg8CpaConFkTMJ73OkYSfI3SisR+jc9/famlOBXQpJ20EYZ9VO+WuDu/rBcjKUz+h7OhqN7HK5VMHm87mdzWY5X1gwzZ1o1Hk8HtvtdmtXq1XUh3igVVU5m8p3aINpXnKOOXhLKAOAaTY5MO0xeAEUMEzzSWKNhvBCKCyY5lcD9T4evl6v26xpODCY7cB0YLFY2P1+b4H7DrW0P+Kvn2qS++kFrqn2SIfcVG8ijbXReCiWGD/tuVetIT/M/OtEILDdbufsaaJC+DPg5AaSgvoOFMDdBpLcMqfTaeNIPdTbyWTi1lyxvR63TIl1d6TamvqkwP1zyjJy9vaUj7QdDwl5dkcVR1YuqGs7jLNjEfhFLgKAkYtcfQBf7LLn4X2OnFzJGybQU2HNuxQcseQoEiqQ8o9ejaQtrHR8ialVr/x2FO0UDCWi1z9t/8tqFvy8KJo5AAAAAElFTkSuQmCC);
	background-repeat: no-repeat;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	float: right;
	text-decoration: none;
}

@media (-webkit-min-device-pixel-ratio: 1.3), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
	#classroom-students-view #student-parent-view-introduction .close {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADv0lEQVRoBeWbu2obQRSG14UIBFIZJdETpFdaEytNIA9g/AJ+AJtU6fQoqlQb/AZJcKp0blK5jSEYQyBg4mjzf8uOkFZZ7+7cdoQOHMZ7OWf+b2a9Mzse72Xh7KlSH8hfy1+V/lLls9JVZL9K/6Hye+nfVH6R/5Ynb8+l8FT+SX4vzy2dWHKQi5zJ2RspupD/kdtC1sWRk9zU0bu9lYLP8jqxvs9T10Qe3UaqcS73DdQ2H3WjIYq9Vy138rbiQt2HBrQEtQ/K/lceCqJrXrSgybs9UcaZvKugWPejDY1ebKgsl/JY4m3rQSNanYxW2wZY00hoderpmRKYZNtSotnKeBlsC2RVZ+cXGa/7lN7GVaCmY7S3HrIY0FMYZ5ugmq7D0GpyMteNTcm25Tosj9pEV7cFpq1OmGot5odAW8Gu98H0XzvUWdfkqcbDtmEXOmMteDQaWcfW1bu/v58PBgMfeWFbM1YVrD/ex+Nxfnt7m0+nUx/iihzD4TC/urrKz8/PfUDDtrZycqoT1mKPjo7yh4eHHPMBbWDJBzQ97aKvjIVxaawfOSU9Pj72Al2F5dhVWxkPY2GsLt7LnRO7QgeEhQ1GWLN3cmdYk8MWOjCs4YM1+2jE+iq7QkeCBRrWMCsZbaEjwgI8A/ir3HS517IJOjIsbLBm16GAyVsH3QMswLBmPxEW0qvQPcHCCKufIampwVahb25umFMUkwrgm2I9XmdoigOM6JOTk3yxWBSwQEeGpWEL4OCPNLCrj7GB9jENJXcHLx7p6w4BXZIv712FZW5MT/uce3fQD2u4YQkhVVjzGK/+Tkfs6WJYmiEshNfBmrp6gIbV/9QSoCZY7sEjQxdTS68fD11ge4AuPh68fR7awEaEZkgqPg9VFhtInH+P2z7GBrJaBn68lwsAADst8SDcFdbAB4ReW+JxWsTzBRsQemMRT3UVW4OsHuuzszPvc2PT06yGelgC3limBZh9UFbAxAFNT7vkqMayGsoScPW8xXHtHq+d+lOLGi5jo5mPFk0pxwSwx2yuiykJdtECS6ONdMed3KWiFGJhgKWV7dSWB9MibAxJoadsNKDdymaKsqmwzxg0WxubvC7lfQJ0qRutaHayndp6aFqKVpvJu7R2zHvR5tyzyrFhvAxS2rAWbPvwKjlDVgrjNBpa77ZbBbD5mQG9zxkZdbeeVNgA1sVMdCHmBwd1UWfvdigFfHNa7wRSbN1Ljpzkpo7k7IUUncpZP7qX10E0nSeWHORa226kYyfbc4p+PJgVwuT+Fe8fQ0do/r1LeEsAAAAASUVORK5CYII=);
	}
}

#classroom-students-view #students-list {
	padding: 20px;
}

#classroom-students-view #students-list .sst-head {
	padding-left: 70px;
}

#classroom-students-view #students-list .heading {
	background-color: #ccc;
	padding: 10px 0;
}

#classroom-students-view #students-list .heading .inline {
	display: inline-block;
}

#classroom-students-view #students-list .heading .student-name {
	padding-left: 70px;
}

#classroom-students-view #students-list .heading a {
	color: #666;
}

#classroom-students-view #students-list .student-image {
	width: 70px;
	padding: 5px 10px;
}

#classroom-students-view #students-list .student-image img {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 25px;
}

#classroom-students-view #students-list .student-name {
	width: 200px;
}

#classroom-students-view #students-list .email,
#classroom-students-view #students-list .student-number {
	width: 150px;
}

#manual-import-dialog textarea {
	margin-bottom: 10px;
	height: 200px;
}

.preview-import-dialog .preview-li {
	list-style: none;
	color: #666;
	margin-bottom: 10px;
}

.preview-import-dialog .preview-li strong {
	color: #000;
	font-weight: 700;
}

#students-title {
	font-size: 40px;
	font-weight: 700;
	color: #999;
	margin-top: 20px;
	margin-left: 20px;
	margin-bottom: 20px;
}

#student-dialog .edit-bucket-view .edsx-input-group-extra-width .label,
#student-dialog .edsx-input-group .label,
.edit-bucket-view #student-dialog .edsx-input-group-extra-width .label {
	width: 90px;
}

#student-dialog .edit-bucket-view .edsx-input-group-extra-width input,
#student-dialog .edsx-input-group input,
.edit-bucket-view #student-dialog .edsx-input-group-extra-width input {
	width: 210px;
}

#student-dialog .picture {
	position: relative;
	width: 50px;
	height: 50px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	border-radius: 25px;
}

.text-align-center {
	text-align: center;
}

#students-enrollment-dialog .students-list {
	height: 400px;
	overflow-y: auto;
	margin-bottom: 10px;
}

#students-enrollment-dialog .add-new-student-inline {
	padding: 20px;
	color: #666;
}

#students-enrollment-dialog .ul-view {
	max-height: 400px;
	margin-bottom: 10px;
	overflow-y: auto;
}

#students-enrollment-dialog .add-drop-student-li {
	list-style: none;
	padding: 8px 10px;
	background-color: #f2f2f2;
	margin-bottom: 2px;
	border-radius: 5px;
}

#students-enrollment-dialog .add-drop-student-li:hover {
	background-color: #e6e6e6;
}

#students-enrollment-dialog .add-drop-student-li:last-child {
	margin-bottom: 0;
}

#students-enrollment-dialog .add-drop-student-li .name {
	float: left;
}

#students-enrollment-dialog .add-drop-student-li .action {
	float: right;
	margin-bottom: 0;
}

#enroll-disenroll-dialog {
	font-size: 14px;
	color: #666;
}

#enroll-disenroll-dialog p.desc {
	margin-bottom: 10px;
}

#enroll-disenroll-dialog .class-list {
	max-height: 400px;
	overflow-y: auto;
	margin-bottom: 10px;
}

#enroll-disenroll-dialog .class-list li {
	list-style: none;
	padding: 8px 20px;
	background-color: #f2f2f2;
	margin-bottom: 2px;
	border-radius: 5px;
}

#enroll-disenroll-dialog .class-list li:hover {
	background-color: #e6e6e6;
}

#enroll-disenroll-dialog .class-list li.active {
	color: #fff;
	background-color: #12728e;
}

#enroll-disenroll-dialog .class-list li input {
	margin-right: 10px;
}

#invite-students-dialog .heading {
	margin-bottom: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

#invite-students-dialog .student-li {
	margin-bottom: 10px;
}

#invite-students-dialog .name {
	display: inline-block;
	width: 200px;
}

#invite-students-dialog .input,
#invite-students-dialog input {
	display: inline-block;
	width: 260px;
}

#invite-parents-dialog .heading {
	margin-bottom: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

#invite-parents-dialog .student-li {
	margin-bottom: 10px;
}

#invite-parents-dialog .student-name-col {
	display: inline-block;
	width: 200px;
}

#invite-parents-dialog .parent-name-col {
	display: inline-block;
	width: 200px;
	margin-right: 10px;
}

#invite-parents-dialog .email-col {
	display: inline-block;
	width: 200px;
}

.ProfilePicture {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#full-student-view #class-list {
	margin: 10px 20px 20px;
}

#full-student-view .full-student-class {
	position: relative;
	border-bottom: 1px solid #b3b3b3;
	padding: 10px 0;
}

#full-student-view .full-student-class .info {
	width: 400px;
}

#full-student-view .full-student-class .info h2 {
	font-size: 24px;
	font-weight: 400;
	color: #666;
}

#full-student-view .full-student-class .info p {
	color: gray;
}

#full-student-view .full-student-class .graph {
	display: block;
	position: absolute;
	height: 50px;
	left: 170px;
	bottom: 0;
	right: 0;
}

#full-student-view .view {
	padding-top: 20px;
}

#full-student-view #photo {
	height: 100px;
	width: 100px;
	overflow: hidden;
	border-radius: 50px;
}

#full-student-view #photo,
#full-student-view #student-notes,
#full-student-view #student-performance,
#full-student-view #student-properties {
	margin-left: 20px;
	float: left;
}

#full-student-view #student-notes .property,
#full-student-view #student-performance .property,
#full-student-view #student-properties .property {
	margin-bottom: 5px;
}

#full-student-view #student-notes .label,
#full-student-view #student-performance .label,
#full-student-view #student-properties .label {
	font-size: 14px;
	color: #aaa;
}

#full-student-view #student-notes .value,
#full-student-view #student-performance .value,
#full-student-view #student-properties .value {
	color: #666;
}

#full-student-view #student-notes {
	width: 200px;
}

#full-student-view #student-prop-average {
	font-size: 24px;
}

.student-picture-100 {
	position: relative;
	width: 100px;
	height: 100px;
}

.student-picture-100 img {
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 50px;
}

.student-picture-100 .profile-picture-click {
	font-size: 24px;
	color: #fff;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -12px;
	opacity: 0;
	-webkit-transition: opacity 0.25s;
	transition: opacity 0.25s;
}

.student-picture-100 .profile-picture-click:hover {
	text-decoration: none;
	text-shadow: 0 1px 7px #000;
}

.student-picture-100:hover .profile-picture-click {
	opacity: 1;
}

#classroom-student-view {
	min-width: 750px;
}

#classroom-student-view .no-assessments-in-class {
	padding: 20px;
	background-color: #ffdf8d;
	color: #bc711c;
}

#classroom-student-view h2 {
	font-size: 20px;
	font-weight: 700;
	color: #4d4d4d;
}

#classroom-student-view h4 {
	font-size: 15px;
	font-weight: 400;
	color: gray;
}

#classroom-student-view #student-header {
	padding-top: 20px;
	height: 142px;
	white-space: nowrap;
	text-align: center;
}

#classroom-student-view #student-header #next-student {
	position: absolute;
	top: 20px;
	right: 20px;
}

#classroom-student-view #student-header #prev-student {
	position: absolute;
	top: 20px;
	left: 20px;
}

#classroom-student-view #student-header .profile-picture-wrap {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 70px;
	height: 70px;
}

#classroom-student-view #student-header .profile-picture-wrap .profile-picture-click {
	font-size: 24px;
	color: #fff;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -12px;
	opacity: 0;
	-webkit-transition: opacity 0.25s;
	transition: opacity 0.25s;
}

#classroom-student-view #student-header .profile-picture-wrap .profile-picture-click:hover {
	text-decoration: none;
	text-shadow: 0 1px 7px #000;
}

#classroom-student-view #student-header .profile-picture-wrap:hover .profile-picture-click {
	opacity: 1;
}

#classroom-student-view #student-header .profile-picture-wrap img {
	display: inline-block;
	vertical-align: top;
	width: 70px;
	height: 70px;
	border-radius: 35px;
}

#classroom-student-view #student-header .section {
	vertical-align: top;
	display: inline-block;
	margin-left: 20px;
	text-align: left;
}

#classroom-student-view #student-header .section h1 {
	font-weight: 400;
}

#classroom-student-view #student-header #student-header-segmented-control {
	margin: 20px 0 0;
}

#classroom-student-view #student-header #student-header-segmented-control a {
	display: inline-block;
	width: 100px;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	color: #463e83;
	border: 1px solid #463e83;
	border-right: 0;
	line-height: 20px;
}

#classroom-student-view #student-header #student-header-segmented-control a:hover {
	text-decoration: none;
}

#classroom-student-view #student-header #student-header-segmented-control a:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

#classroom-student-view #student-header #student-header-segmented-control a:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-right: 1px solid #463e83;
}

#classroom-student-view #student-header #student-header-segmented-control a.active,
#classroom-student-view #student-header #student-header-segmented-control a:active {
	background-color: #463e83;
	color: #fff;
}

#classroom-student-view #main-graph {
	height: 300px;
	margin-bottom: 20px;
	background-color: #ebeaf2;
}

#classroom-student-view #main-graph .y.axis path {
	fill: none;
	stroke: #463e83;
}

#classroom-student-view #main-graph .y.axis line {
	stroke: #463e83;
}

#classroom-student-view #main-graph .y.axis text {
	fill: #463e83;
	font-size: 12px;
}

#classroom-student-view #student-buckets-graph rect {
	fill: #c4c3d5;
}

#classroom-student-view #student-buckets-graph rect.no-mark {
	fill: #ebeaf2;
}

#classroom-student-view #student-buckets-graph text {
	fill: #463e83;
}

#classroom-student-view #student-buckets-graph text.bold {
	font-weight: 700;
}

#classroom-student-view #student-growing-success-graph text {
	text-anchor: middle;
}

#classroom-student-view #student-growing-success-graph text.label {
	fill: #fff;
	font-weight: 700;
	font-size: 15px;
}

#classroom-student-view #student-growing-success-graph text.percentage {
	font-weight: 700;
	font-size: 15px;
}

#classroom-student-view .info-line {
	white-space: nowrap;
	padding-bottom: 20px;
	padding-left: 20px;
}

#classroom-student-view .info-line .chunk {
	margin-right: 20px;
	vertical-align: top;
	display: inline-block;
}

#classroom-student-view .info-line .chunk h2 {
	margin-bottom: 10px;
}

#classroom-student-view .info-line .chunk h1 {
	font-weight: 400;
	color: #463e83;
}

#classroom-student-view #timeline {
	position: absolute;
	top: 162px;
	bottom: 0;
	width: 100%;
	overflow-y: auto;
	padding-top: 20px;
	background-color: #f2f2f2;
}

#classroom-student-view #timeline #timeline-centered {
	width: 500px;
	margin: 0 auto;
}

#classroom-student-view #timeline #new-post-area {
	margin-bottom: 20px;
}

#classroom-student-view #timeline #new-post-area #new-post-click {
	display: block;
	height: 40px;
	padding: 20px;
	background-color: #e6e6e6;
	color: gray;
	border-radius: 5px;
}

#classroom-student-view #timeline #new-post-area #new-post-click:hover {
	text-decoration: none;
	background-color: #ccc;
}

#classroom-student-view #timeline #new-post-area textarea {
	padding: 19px;
	height: 80px;
}

#classroom-student-view #timeline #new-post-area .edsx-label-with-toggle {
	margin-top: 10px;
}

#classroom-student-view #timeline #new-post-area .edsx-btn-40 {
	display: inline-block;
	margin-top: 10px;
	vertical-align: top;
	width: 245px;
}

#classroom-student-view #timeline #new-post-area .cancel {
	margin-right: 10px;
}

#classroom-student-view #timeline .post-view {
	position: relative;
	margin-bottom: 20px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	background-color: #fff;
	border-radius: 5px;
}

#classroom-student-view #timeline .post-view .image-space img {
	display: block;
	width: 500px;
}

#classroom-student-view #timeline .post-view .text-space {
	padding: 20px;
	position: relative;
}

#classroom-student-view #timeline .post-view .meta-data {
	padding-top: 10px;
	font-size: 13px;
	color: gray;
}

#classroom-student-view #timeline .post-view .meta-data .is-published {
	margin-left: 5px;
}

#classroom-student-view #timeline .post-view .action-more {
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	text-align: center;
	font-size: 24px;
	line-height: 30px;
	height: 30px;
	width: 30px;
	color: #666;
}

#classroom-student-view #timeline .post-view .action-more:hover {
	background-color: #e6e6e6;
	text-decoration: none;
}

#classroom-student-view #info {
	width: 400px;
	margin: 0 auto;
	text-align: center;
}

#classroom-student-view #detailed-assessment-list #wrapper {
	width: 500px;
	margin: 0 auto;
	padding-bottom: 50px;
}

#classroom-student-view #detailed-assessment-list .inline {
	display: inline-block;
}

#classroom-student-view #detailed-assessment-list .row {
	padding: 5px 0;
}

#classroom-student-view #detailed-assessment-list .head.row {
	font-weight: 700;
	border-bottom: 2px solid #000;
	color: #000;
}

#classroom-student-view #detailed-assessment-list .bucket.row {
	font-weight: 600;
	border-bottom: 1px solid #333;
	color: #333;
}

#classroom-student-view #detailed-assessment-list .assessment.row {
	color: #666;
}

#classroom-student-view #detailed-assessment-list .name {
	width: 150px;
}

#classroom-student-view #detailed-assessment-list .weight {
	width: 60px;
}

#classroom-student-view #detailed-assessment-list .grade {
	text-align: center;
	padding: 4px 10px;
	display: inline-block;
	border-radius: 2px;
}

.edsx-label-with-toggle .label {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.edsx-label-with-toggle .toggle {
	vertical-align: middle;
}

#ClassroomStudentAssessmentList {
	width: 490px;
	margin: 0 auto;
}

#ClassroomStudentAssessmentList .dropdown {
	display: inline-block;
	width: 200px;
	margin-left: 10px;
}

#ClassroomStudentAssessmentList .bucket .col-name {
	width: 200px;
}

#ClassroomStudentAssessmentList .bucket .col-date {
	width: 120px;
}

#ClassroomStudentAssessmentList .bucket .col-grade,
#ClassroomStudentAssessmentList .bucket .col-weight {
	width: 70px;
}

#ClassroomStudentAssessmentList .bucket .item {
	display: inline-block;
	margin-right: 10px;
}

#ClassroomStudentAssessmentList .bucket .item:last-child {
	margin-right: 0;
}

#ClassroomStudentAssessmentList .bucket .header {
	font-weight: 700;
}

#ClassroomStudentAssessmentList .bucket .line {
	padding: 5px 0;
	border-top: 1px solid #e6e6e6;
}

#ClassroomStudentAssessmentList .bucket .line .col-grade-cell {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 2px;
}

#admin-school-view #search-panel {
	position: absolute;
	background-color: #fff;
	top: 0;
	left: 0;
	width: 360px;
	padding: 20px;
	bottom: 0;
	overflow-y: auto;
}

#admin-school-view #search-panel .grade-search {
	display: inline-block;
	width: 50px;
}

#admin-school-view #students-panel {
	position: absolute;
	top: 0;
	left: 400px;
	right: 0;
	bottom: 0;
	padding: 20px;
	overflow-y: auto;
}

#admin-school-view #students-panel #students-list li {
	background-color: #d8d8d8;
	padding: 8px 20px;
	margin-bottom: 2px;
	list-style: none;
}

#admin-school-view #students-panel #students-list li .average {
	display: inline-block;
	width: 60px;
}

#manage-classes {
	margin-bottom: 20px;
}

#manage-classes .edsx-btn-40 {
	margin-bottom: 5px;
}

.permissions-li {
	list-style: none;
	padding: 10px;
	background-color: #f2f2f2;
	margin-bottom: 2px;
	border-radius: 5px;
}

.permissions-li:last-child {
	margin-bottom: 0;
}

.permissions-li:hover {
	background-color: #e6e6e6;
}

.permissions-li .inline {
	display: inline-block;
}

.permissions-li .name {
	line-height: 35px;
}

.permissions-li .segment {
	padding-left: 10px;
	padding-right: 10px;
}

.permissions-li ul {
	max-height: 400px;
}

#all-classes-view #classes-table {
	padding: 20px;
	min-width: 915px;
}

#all-classes-view #classes-table .select {
	width: 25px;
}

#all-classes-view #classes-table .class-desc,
#all-classes-view #classes-table .class-name,
#all-classes-view #classes-table .teacher-name {
	width: 200px;
}

#all-classes-view #classes-table .course-code {
	width: 150px;
}

#all-classes-view #classes-table .permissions {
	width: 100px;
}

#all-classes-view #classes-table .sst-head a {
	display: inline-block;
}

#all-classes-view #classes-table .checkbox {
	margin-right: 10px;
	text-decoration: none;
	color: gray;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#all-classes-view #classes-table .checkbox.fa-check-square {
	color: #0d4574;
}

#profile-preferences {
	padding-top: 20px;
	padding-left: 20px;
}

#profile-preferences .label-group,
#profile-preferences section {
	margin-bottom: 10px;
}

#profile-preferences .dropdown {
	width: 250px;
}

#query-operator-dropdown {
	vertical-align: top;
	display: inline-block;
	width: 150px;
	margin-right: 10px;
}

#query-compare-to {
	vertical-align: top;
	width: 50px;
}

#query-results-table {
	margin: 20px;
}

#query-results-table .cell {
	border-top: 1px solid #d8d8d8;
	padding: 8px 15px;
}

#query-results-table .cell:first-child {
	border-top: none;
}

#buckets {
	background-color: #bfbfbf;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	padding-right: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	#buckets {
		overflow-x: scroll;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
	}
}

#buckets .inline {
	box-sizing: border-box;
	vertical-align: top;
	width: 300px;
	border-radius: 10px;
	margin-top: 20px;
	margin-left: 20px;
}

#buckets #buckets-container,
#buckets .inline {
	display: inline-block;
}

#buckets .inline-intro {
	position: relative;
	font-size: 14px;
	background-color: #e6e6e6;
	padding: 20px 20px 10px;
	white-space: normal;
}

#buckets .inline-intro h1,
#buckets .inline-intro h2,
#buckets .inline-intro p {
	margin-bottom: 10px;
}

#buckets .inline-intro h2 {
	font-size: 18px;
	font-weight: 400;
	color: #333;
}

#buckets .inline-intro p {
	color: #666;
}

#buckets .inline-intro #close-assessments-intro {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAB1ElEQVRIDcWXO24CMRBADVUKWijScQKKdFEkboAi5QRcIjVNquQOtClzA7p06WjSpoi0lEmJFGeehRF41/asdyVGGmbBM/P8mbXNwOhkKG63oveiN6LXBxVjvg/6IfZN9F30T7STXEn0o2glapWKLzHEFsmDRH2JaoGhH7HkUMtAPJ9Ew0Sl38lFzqTg8CpaConFkTMJ73OkYSfI3SisR+jc9/famlOBXQpJ20EYZ9VO+WuDu/rBcjKUz+h7OhqN7HK5VMHm87mdzWY5X1gwzZ1o1Hk8HtvtdmtXq1XUh3igVVU5m8p3aINpXnKOOXhLKAOAaTY5MO0xeAEUMEzzSWKNhvBCKCyY5lcD9T4evl6v26xpODCY7cB0YLFY2P1+b4H7DrW0P+Kvn2qS++kFrqn2SIfcVG8ijbXReCiWGD/tuVetIT/M/OtEILDdbufsaaJC+DPg5AaSgvoOFMDdBpLcMqfTaeNIPdTbyWTi1lyxvR63TIl1d6TamvqkwP1zyjJy9vaUj7QdDwl5dkcVR1YuqGs7jLNjEfhFLgKAkYtcfQBf7LLn4X2OnFzJGybQU2HNuxQcseQoEiqQ8o9ejaQtrHR8ialVr/x2FO0UDCWi1z9t/8tqFvy8KJo5AAAAAElFTkSuQmCC);
	background-repeat: no-repeat;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 0.25;
}

@media (-webkit-min-device-pixel-ratio: 1.3), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
	#buckets .inline-intro #close-assessments-intro {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADv0lEQVRoBeWbu2obQRSG14UIBFIZJdETpFdaEytNIA9g/AJ+AJtU6fQoqlQb/AZJcKp0blK5jSEYQyBg4mjzf8uOkFZZ7+7cdoQOHMZ7OWf+b2a9Mzse72Xh7KlSH8hfy1+V/lLls9JVZL9K/6Hye+nfVH6R/5Ynb8+l8FT+SX4vzy2dWHKQi5zJ2RspupD/kdtC1sWRk9zU0bu9lYLP8jqxvs9T10Qe3UaqcS73DdQ2H3WjIYq9Vy138rbiQt2HBrQEtQ/K/lceCqJrXrSgybs9UcaZvKugWPejDY1ebKgsl/JY4m3rQSNanYxW2wZY00hoderpmRKYZNtSotnKeBlsC2RVZ+cXGa/7lN7GVaCmY7S3HrIY0FMYZ5ugmq7D0GpyMteNTcm25Tosj9pEV7cFpq1OmGot5odAW8Gu98H0XzvUWdfkqcbDtmEXOmMteDQaWcfW1bu/v58PBgMfeWFbM1YVrD/ex+Nxfnt7m0+nUx/iihzD4TC/urrKz8/PfUDDtrZycqoT1mKPjo7yh4eHHPMBbWDJBzQ97aKvjIVxaawfOSU9Pj72Al2F5dhVWxkPY2GsLt7LnRO7QgeEhQ1GWLN3cmdYk8MWOjCs4YM1+2jE+iq7QkeCBRrWMCsZbaEjwgI8A/ir3HS517IJOjIsbLBm16GAyVsH3QMswLBmPxEW0qvQPcHCCKufIampwVahb25umFMUkwrgm2I9XmdoigOM6JOTk3yxWBSwQEeGpWEL4OCPNLCrj7GB9jENJXcHLx7p6w4BXZIv712FZW5MT/uce3fQD2u4YQkhVVjzGK/+Tkfs6WJYmiEshNfBmrp6gIbV/9QSoCZY7sEjQxdTS68fD11ge4AuPh68fR7awEaEZkgqPg9VFhtInH+P2z7GBrJaBn68lwsAADst8SDcFdbAB4ReW+JxWsTzBRsQemMRT3UVW4OsHuuzszPvc2PT06yGelgC3limBZh9UFbAxAFNT7vkqMayGsoScPW8xXHtHq+d+lOLGi5jo5mPFk0pxwSwx2yuiykJdtECS6ONdMed3KWiFGJhgKWV7dSWB9MibAxJoadsNKDdymaKsqmwzxg0WxubvC7lfQJ0qRutaHayndp6aFqKVpvJu7R2zHvR5tyzyrFhvAxS2rAWbPvwKjlDVgrjNBpa77ZbBbD5mQG9zxkZdbeeVNgA1sVMdCHmBwd1UWfvdigFfHNa7wRSbN1Ljpzkpo7k7IUUncpZP7qX10E0nSeWHORa226kYyfbc4p+PJgVwuT+Fe8fQ0do/r1LeEsAAAAASUVORK5CYII=);
	}
}

#buckets .inline-intro #close-assessments-intro:hover {
	opacity: 0.5;
}

#buckets #new-bucket-wrap a {
	display: block;
	padding: 10px 20px;
	margin-bottom: 10px;
	color: #666;
	background-color: #e6e6e6;
	border-radius: 5px;
}

#buckets #new-bucket-wrap a:hover {
	background-color: #fff;
}

#buckets #new-bucket-wrap .new-bucket {
	padding: 20px;
}

.assessment-bucket {
	position: relative;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: #fff;
}

.assessment-bucket:hover {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.assessment-bucket.ui-sortable-helper {
	-webkit-transform: rotate(3deg);
	transform: rotate(3deg);
	overflow: hidden;
}

.bucket-front .header {
	padding-top: 12px;
	height: 98px;
	background: #fff;
}

.bucket-front .header h2,
.bucket-front .header h3 {
	text-align: center;
	font-weight: 400;
}

.bucket-front .header h2 {
	font-size: 18px;
}

.bucket-front .header h3 {
	font-size: 13px;
	color: gray;
}

.bucket-front .header .actions-dropdown {
	top: 10px;
	right: 10px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 5px;
}

.bucket-front .header .add-assessment-btn {
	position: absolute;
	top: 60px;
	left: 10px;
	right: 10px;
	height: 40px;
}

.bucket-front .bucket-assessments {
	width: 100%;
	padding-top: 10px;
	overflow-y: auto;
	background-color: #e6e6e6;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.bucket-front .bucket-assessments {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
}

.bucket-front .bucket-assessments .no-assessments-placeholder {
	margin: 0 10px 10px;
	border: 1px dashed #999;
	padding: 10px;
	color: gray;
	border-radius: 5px;
}

.actions-dropdown {
	display: block;
	font-size: 24px;
	text-align: center;
	position: absolute;
	background-color: #f2f2f2;
	color: #333;
}

.actions-dropdown:hover {
	background-color: #d8d8d8;
	text-decoration: none;
}

.edit-bucket-view {
	padding: 20px;
	font-size: 14px;
}

.edit-bucket-view .title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}

.edit-bucket-view .edsx-input-group,
.edit-bucket-view .edsx-input-group-extra-width {
	margin-bottom: 10px;
}

.edit-bucket-view .edsx-input-group-extra-width .label,
.edit-bucket-view .edsx-input-group .label {
	display: inline-block;
	vertical-align: middle;
	width: 70px;
	color: #666;
}

.edit-bucket-view .edsx-input-group-extra-width input,
.edit-bucket-view .edsx-input-group input {
	width: 190px;
}

.edit-bucket-view .edsx-input-group #bucket-kica-toggle,
.edit-bucket-view .edsx-input-group-extra-width #bucket-kica-toggle {
	vertical-align: middle;
}

.edit-bucket-view .edsx-input-group-extra-width .label {
	width: 135px;
}

.edit-bucket-view .edsx-input-group-extra-width input {
	width: 124px;
}

.edit-bucket-view .bucket-toggle {
	width: 190px;
	height: 36px;
	margin: 0 auto 10px;
}

.edit-bucket-view .bucket-toggle .label {
	float: left;
	padding-top: 8px;
	color: gray;
}

.edit-bucket-view .bucket-toggle .eds-toggle-bg {
	float: right;
}

.edit-bucket-view .bucket-save {
	margin-left: 10px;
}

.edit-bucket-view .bucket-cancel,
.edit-bucket-view .bucket-save {
	display: inline-block;
	vertical-align: top;
	width: 125px;
}

.assessment-li {
	cursor: pointer;
	background-color: #fff;
	position: relative;
	margin: 0 10px 10px;
	padding: 10px;
	white-space: normal;
	word-break: break-word;
	border-radius: 5px;
}

.assessment-li:hover {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	background-color: #f2f2f2;
}

.assessment-li .actions-dropdown {
	top: 0;
	right: 0;
	height: 30px;
	width: 30px;
	line-height: 30px;
	border-top-right-radius: 5px;
}

.assessment-li .meta {
	font-size: 13px;
	color: #666;
}

.assessment-li .assessment-is-published {
	margin-left: 5px;
}

.assessment-li .dots {
	position: absolute;
	height: 8px;
	bottom: 10px;
	right: 10px;
}

.assessment-li .dot {
	display: block;
	float: left;
	margin-left: 2px;
	width: 8px;
	height: 8px;
	border-radius: 4px;
}

.assessment-li .K-kica-label {
	background-color: #a8dd37;
}

.assessment-li .I-kica-label {
	background-color: #12728e;
}

.assessment-li .C-kica-label {
	background-color: #54227b;
}

.assessment-li .A-kica-label {
	background-color: #ea125a;
}

.bucket-assessment-placeholder {
	height: 50px;
	list-style: none;
	margin: 0 10px 10px;
	border-radius: 5px;
	background-color: #d8d8d8;
}

.draggable-bucket-placeholder {
	border-radius: 5px;
	background-color: #b3b3b3;
}

.assessment-li.ui-sortable-helper {
	-webkit-transform: rotate(3deg);
	transform: rotate(3deg);
	border: 1px solid #bfbfbf;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

#assessment-dialog {
	padding: 20px;
	font-size: 15px;
}

#assessment-dialog .edit-bucket-view .edsx-input-group-extra-width,
#assessment-dialog .edsx-input-group,
#assessment-dialog h1,
.edit-bucket-view #assessment-dialog .edsx-input-group-extra-width {
	margin-bottom: 10px;
}

#assessment-dialog .edit-bucket-view .edsx-input-group-extra-width .label,
#assessment-dialog .edsx-input-group .label,
.edit-bucket-view #assessment-dialog .edsx-input-group-extra-width .label {
	display: inline-block;
	width: 70px;
	color: #666;
	vertical-align: middle;
}

#assessment-dialog .edit-bucket-view .edsx-input-group-extra-width input,
#assessment-dialog .edsx-input-group input,
.edit-bucket-view #assessment-dialog .edsx-input-group-extra-width input {
	width: 270px;
}

#assessment-dialog .edit-bucket-view .edsx-input-group-extra-width #kica-toggle,
#assessment-dialog .edsx-input-group #kica-toggle,
.edit-bucket-view #assessment-dialog .edsx-input-group-extra-width #kica-toggle {
	display: inline-block;
	vertical-align: middle;
}

#assessment-dialog #assessment-single-multiplier {
	width: 60px;
}

#assessment-dialog #assessment-multiplier-slider {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

#assessment-dialog .multiplier-dialog {
	position: absolute;
	z-index: 9000;
	top: -3px;
	left: -3px;
	padding: 2px;
	width: 270px;
	background: #fff;
	border: 1px solid #bfbfbf;
	border-radius: 8px;
}

#assessment-dialog .multiplier-dialog .slider {
	margin-left: 10px;
	display: inline-block;
	vertical-align: middle;
}

#assessment-dialog #assessment-kica {
	margin-bottom: 10px;
}

#assessment-dialog #assessment-kica .labels {
	margin-top: 30px;
	width: 70px;
	float: left;
}

#assessment-dialog #assessment-kica .labels .label {
	height: 35px;
	line-height: 35px;
	margin-top: 10px;
	color: #666;
}

#assessment-dialog #assessment-kica .segments {
	width: 270px;
	float: right;
}

#assessment-dialog #assessment-kica .segments .segment {
	float: left;
	width: 60px;
	margin-left: 10px;
}

#assessment-dialog #assessment-kica .segments .segment input {
	width: 100%;
}

#assessment-dialog #assessment-kica .segments .segment:first-child {
	margin-left: 0;
}

#assessment-dialog #assessment-kica .segments .segment .points-input {
	margin-bottom: 10px;
}

#assessment-dialog #assessment-kica .segments .segment .abbr-label {
	box-sizing: border-box;
	display: block;
	height: 30px;
	width: 30px;
	padding-top: 4px;
	margin: 0 auto 10px;
	border: 2px solid;
	text-align: center;
	font-size: 16px;
	border-radius: 15px;
}

#assessment-dialog #assessment-kica .segments .segment .abbr-label:hover {
	text-decoration: none;
}

#assessment-dialog #assessment-kica .segments .segment .abbr-label.active {
	padding-top: 6px;
	border: none;
	color: #fff !important;
}

#assessment-dialog #assessment-kica .segments .segment #K-abbr-label {
	color: #c8e292;
	border-color: #c8e292;
}

#assessment-dialog #assessment-kica .segments .segment #I-abbr-label {
	color: #a8d3e7;
	border-color: #a8d3e7;
}

#assessment-dialog #assessment-kica .segments .segment #C-abbr-label {
	color: #c9b8d7;
	border-color: #c9b8d7;
}

#assessment-dialog #assessment-kica .segments .segment #A-abbr-label {
	color: #ec7fa3;
	border-color: #ec7fa3;
}

#assessment-dialog #assessment-kica .segments .segment #K-abbr-label.active {
	background-color: #a8dd37;
}

#assessment-dialog #assessment-kica .segments .segment #I-abbr-label.active {
	background-color: #12728e;
}

#assessment-dialog #assessment-kica .segments .segment #C-abbr-label.active {
	background-color: #54227b;
}

#assessment-dialog #assessment-kica .segments .segment #A-abbr-label.active {
	background-color: #ea125a;
}

.ui-datepicker {
	background-color: #fff;
	border: 1px solid #bfbfbf;
	border-radius: 5px;
}

.ui-datepicker td:hover {
	background-color: #a8d3e7;
}

.ui-datepicker-prev {
	border-right: 10px solid #000;
}

.ui-datepicker-next,
.ui-datepicker-prev {
	margin: 0;
	padding: 0;
	height: 0 !important;
	width: 0 !important;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

.ui-datepicker-next {
	border-left: 10px solid #000;
}

.ui-datepicker-current-day {
	background-color: #a8d3e7;
}

#copy-assessments-dialog p.center {
	text-align: center;
	margin-bottom: 10px;
	color: gray;
}

#copy-assessments-dialog .class-list li {
	background-color: #f2f2f2;
	list-style: none;
	padding: 8px 20px;
	margin-bottom: 2px;
	border-radius: 5px;
}

#copy-assessments-dialog .class-list li .count {
	margin-left: 10px;
	color: gray;
}

#copy-assessments-dialog .class-list li:last-child {
	margin-bottom: 0;
}

#copy-assessments-dialog .class-list li:hover {
	background-color: #d8d8d8;
}

#class-overview-view .loaded {
	background: #3f414c;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	min-width: 900px;
	overflow: auto;
}

#class-overview-view .axis line,
#class-overview-view .axis path {
	fill: none;
	stroke: #000;
}

#ov-summary {
	left: 0;
	width: 200px;
	box-sizing: border-box;
	padding: 20px;
	background-color: #fff;
}

#ov-graphs,
#ov-summary {
	position: absolute;
	top: 0;
	height: 300px;
}

#ov-graphs {
	left: 200px;
	right: 0;
	background-color: #ddd;
}

#ov-graph-tabs {
	height: 50px;
	white-space: nowrap;
}

#ov-graph-tabs .ov-graph-tab {
	display: inline-block;
	height: 30px;
	width: 110px;
	padding: 20px 20px 0;
	color: #000;
}

#ov-graph-area,
#ov-graph-tabs .ov-graph-tab.active {
	background-color: #eee;
}

#ov-graph-area {
	height: 250px;
	position: relative;
}

.ov-graph {
	height: 250px;
}

#ov-kica {
	position: absolute;
	top: 303px;
	left: 0;
	height: 210px;
	width: 410px;
	background-color: #6366b5;
}

#ov-kica.no-kica {
	display: none;
}

#ov-students {
	position: absolute;
	top: 303px;
	left: 413px;
	right: 0;
	height: 210px;
	background-color: #fff;
}

#ov-students.no-kica {
	left: 0;
}

#ov-strands {
	height: 300px;
	background: #fff;
}

#ov-strands-summary {
	height: 300px;
	width: 300px;
	float: left;
}

#ov-strands-summary h1 {
	padding-top: 20px;
	padding-left: 20px;
	color: #676290;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
}

.ov-strands-link {
	display: block;
	padding: 5px 20px;
}

.ov-strands-link:hover {
	background-color: #eee;
}

#ov-strands-summary h2 {
	font-size: 16px;
	width: 200px;
	float: left;
	color: #a6a4bb;
}

#ov-strands-summary .ov-strands-percent {
	float: right;
	width: 50px;
	color: #463e83;
	font-weight: 700;
	text-align: right;
}

#ov-strands-graph {
	height: 300px;
	margin-left: 300px;
	background: #eee;
}

.overview-box-height {
	height: 200px;
}

#overview-summary {
	width: 300px;
	float: left;
	background-color: #e6e7ef;
}

#overview-graph {
	margin-left: 300px;
	background-color: #c5c8dd;
}

#overview-kica {
	width: 400px;
	float: left;
	background-color: #6366b5;
}

#overview-students {
	margin-left: 400px;
	background-color: #8e90ca;
}

ul.overview-student-display {
	list-style: none;
	width: 50%;
	height: 200px;
	float: left;
	color: #fff;
}

div#overview-graph-legend {
	height: 40px;
	margin-left: 300px;
	background: #242738;
}

ul#overview-top-students {
	background: #9698c5;
}

ul#overview-top-students h1.overview-title {
	background: #7b7db6;
}

ul#overview-bottom-students {
	background: #b4b5d1;
}

ul#overview-bottom-students h1.overview-title {
	background: #a9aacc;
}

ul.overview-student-display h1.overview-title {
	font-size: 16px;
	height: 25px;
	text-align: center;
	margin: 0;
	padding-top: 5px;
	text-transform: uppercase;
}

a.overview-bottom-student,
a.overview-top-student {
	color: #2f2863;
	display: block;
	padding: 6px 10px 0;
	height: 28px;
}

a.overview-bottom-student span,
a.overview-top-student span {
	float: right;
	font-weight: 600;
}

ul#overview-top-students a.overview-bottom-student:hover,
ul#overview-top-students a.overview-top-student:hover {
	background: #b0b5d3;
}

ul#overview-bottom-students a.overview-bottom-student:hover,
ul#overview-bottom-students a.overview-top-student:hover {
	background: #c5c8dd;
}

#overview-view-welcome {
	padding: 20px;
}

#classroom-assessment-view {
	width: 100%;
	height: 100%;
}

#classroom-assessment-view #histogram {
	height: 200px;
	background-color: #f7f7f7;
}

#classroom-assessment-view #histogram .axis path {
	fill: none;
	stroke: #463e83;
}

#classroom-assessment-view #histogram .axis line {
	stroke: #463e83;
}

#classroom-assessment-view #histogram .axis text {
	fill: #463e83;
	font-size: 12px;
}

#class-settings .toggle-inline,
#class-settings h2 {
	margin-bottom: 10px;
}

#class-settings .conv-table {
	width: 200px;
	margin-bottom: 10px;
}

#class-settings .conv-table .symbol {
	margin-bottom: 2px;
}

#class-settings .conv-table .symbol:last-child {
	margin-bottom: 0;
}

#class-settings .conv-table .key {
	display: inline-block;
	padding: 5px 10px;
	margin-right: 10px;
	width: 30px;
	text-align: center;
	font-weight: 700;
	background-color: #fff;
	border-radius: 5px;
}

.gradebook-view-body-40 {
	position: absolute;
	top: 40px;
	width: 100%;
	bottom: 0;
	overflow-y: auto;
}

#gradebook-view {
	position: absolute;
	top: 76px;
	bottom: 0;
	width: 100%;
}

#gradebook-header {
	background-color: #494949;
	height: 29px;
	padding-top: 11px;
	padding-left: 20px;
}

#gradebook-header a {
	color: #b3b3b3;
	white-space: nowrap;
	margin-right: 20px;
}

#legend {
	height: 26px;
	padding-top: 10px;
	background-color: #fff;
	padding-left: 20px;
	font-size: 13px;
	color: gray;
	overflow: hidden;
}

#gradebook {
	position: absolute;
	height: 100%;
	width: 100%;
	font-size: 14px;
}

#assessments-header-top {
	white-space: nowrap;
}

#assessments-header-top .assessment {
	display: inline-block;
	position: relative;
	width: 70px;
	margin-right: 8px;
	margin-left: -4px;
}

#assessments-header-top .assessment:last-child {
	margin-right: 0;
}

#assessments-header-top .assessment .name {
	top: 10px;
	left: 10px;
	right: 10px;
	position: absolute;
	color: #12728e;
	overflow: hidden;
	text-transform: capitalize;
}
#assessments-header-top .assessment .name:hover {
	text-decoration: underline;
}

#assessments-header-top .assessment .assessment-parts {
	height: 15px;
	background-color: #d8d8d8;
	margin-top: 35px;
}

#assessments-header-top .assessment .assessment-parts .assessment-part {
	color: #666;
	text-align: center;
	font-size: 12px;
	vertical-align: top;
	font-weight: 700;
	display: inline-block;
	width: 60px;
}

#assessments-header-top .assessment:hover {
	background-color: #fbfbfb;
}

#assessments-header-top .assessment:hover .assessment-parts {
	background-color: #12728e;
}

#assessments-header-top .assessment:hover .assessment-parts .assessment-part {
	color: #fff;
}

#gradebook-cell-content {
	background-color: #e2e2e2;
	display: table;
}

#gradebook-cell-content .gb-row {
	white-space: nowrap;
	min-height: var(--gb-cell-height, 50px);
}

#gradebook-cell-content .gb-row .assessment-cell-group {
	display: inline-block;
	border-right: 8px solid #eee;
	margin-left: -4px;
}

#gradebook-cell-content .gb-row .assessment-cell-group:last-child {
	border-right: 0;
}

#gradebook-cell-content .grade-cell {
	display: inline-block;
	position: relative;
	width: 70px;
	height: var(--gb-cell-height, 50px);
	line-height: 50px;
	text-align: center;
	cursor: pointer;
	color: #29292a;
}

#gradebook-cell-content .grade-cell:hover {
	background-color: white !important;
	color: #29292a !important;
}

#gradebook-cell-content .grade-cell .comment-indicator {
	position: absolute;
	border-right: 10px solid rgba(0, 0, 0, 0.5);
	border-top: 10px solid transparent;
	bottom: 0;
	right: 0;
	height: 0;
	width: 0;
}

#gradebook-cell-content .grade-cell.hover {
	background-color: #fff !important;
	color: #000 !important;
}

.grade-dialog .line-1 .grade-input {
	display: inline-block;
	box-sizing: border-box;
	padding: 0 10px;
	font-family: HelveticaNeue, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #000;
	width: 64px;
	height: 36px;
}

.grade-dialog .line-1 .grade-label {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
	color: gray;
}

.grade-dialog .line-2 .comment-input {
	box-sizing: border-box;
	display: inline-block;
	height: 35px;
	padding: 0 10px;
	font-size: 15px;
}

.grade-dialog .line-2 .submit {
	box-sizing: border-box;
	vertical-align: top;
	display: inline-block;
	margin-left: 5px;
	background-color: #12728e;
	text-align: center;
	height: 35px;
	line-height: 35px;
	color: #fff;
}

#gradebook-settings-dialog .eds-dropdown {
	margin-bottom: 10px;
}

#gradebook-settings-dialog .show-color-toggle-wrap span {
	vertical-align: middle;
}

#gradebook-settings-dialog .show-color-toggle-wrap #show-color-toggle {
	margin-left: 10px;
	vertical-align: middle;
}

#gradebook-settings-dialog .color-code-legend .item {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 5px;
}

#filter-gradebook-dialog #filter-by-standard-segments a {
	display: inline-block;
	margin-right: 10px;
	padding: 5px 10px;
	background-color: #e6e6e6;
	color: #666;
	border-radius: 5px;
}

#filter-gradebook-dialog #filter-by-standard-segments a:hover {
	text-decoration: none;
	background-color: #ccc;
}

#filter-gradebook-dialog #filter-by-standard-segments a.active,
#filter-gradebook-dialog #filter-by-standard-segments a:active {
	background-color: #999;
	color: #333;
}

.scrollbar {
	background-color: #fff;
}

.scrollbar-draggable {
	background-color: gray;
	border-radius: 10px;
}

.divider {
	display: inline-block;
	vertical-align: top;
	height: 100%;
	width: 3px;
	background-color: #eee;
}

.grade-cell-comment {
	display: inline-block;
	position: relative;
	height: 50px;
	line-height: 50px;
	text-align: center;
	padding-left: 15px;
	cursor: pointer;
}

.grade-cell {
	display: inline-block;
	position: relative;
	width: 70px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
}

.grade-cell .comment-indicator {
	position: absolute;
	border-right: 10px solid rgba(0, 0, 0, 0.5);
	border-top: 10px solid transparent;
	bottom: 0;
	right: 0;
	height: 0;
	width: 0;
}

.grade-cell:hover {
	background-color: white !important;
	color: #29292a !important;
}

.grade-dialog {
	box-sizing: border-box;
	padding: 2px;
	padding-left: 5px;
	position: absolute;
	width: 205px;
	z-index: 10;
	height: 94px;
	text-align: left;
	top: 0px;
	background: black;
}

.grade-dialog .line-1 {
	white-space: nowrap;
	text-align: left;
}

.grade-dialog .grade-input {
	display: inline-block;
	box-sizing: border-box;
	padding: 0 10px;
	font-family: HelveticaNeue, Helvetica, Arial, sans-serif;
	font-size: 16px;
	width: 56px;
	height: 36px;
}

.grade-dialog .grade-label {
	margin-left: 10px;
	margin-right: 10px;
	display: inline-block;
	color: gray;
}

.grade-dialog .line-2 {
	margin-top: -7px;
	white-space: nowrap;
}

.grade-dialog .comment-input {
	font-family: HelveticaNeue, Helvetica, Arial, sans-serif;
	display: inline-block;
	height: 35px;
	width: 100px;
	padding: 0 10px;
	color: black;
	font-size: 16px;
}

.grade-dialog .submit {
	margin-top: 8px;
	padding: 0 10px;
}

#reporting-module-wrap {
	margin-top: 20px;
	padding: 0 20px;
	min-width: 950px;
}

#reporting-module-wrap .sst-head {
	padding-left: 70px;
}

#reporting-module-wrap .column-item {
	display: inline-block;
	vertical-align: top;
}

#reporting-module-wrap .thumbnail-column {
	width: 60px;
	padding-left: 10px;
}

#reporting-module-wrap .expectation-column,
#reporting-module-wrap .student-name-column {
	width: 200px;
}

#reporting-module-wrap .expectation-column .dropdown {
	width: 190px;
}

#reporting-module-wrap .average-column,
#reporting-module-wrap .manual-column,
#reporting-module-wrap .most-recent-column {
	width: 120px;
}

#reporting-module-wrap .manual-column .manual-input {
	width: 110px;
	color: #bfbfbf;
}

#reporting-module-wrap .manual-column .manual-input.active {
	border-color: #12728e;
	color: #12728e;
}

#reporting-module-wrap .final-column {
	width: 100px;
}

#reporting-module-wrap .student {
	box-sizing: border-box;
	background: #fff;
	padding: 5px 0;
	border-bottom: 1px solid #d8d8d8;
}

#reporting-module-wrap .student .column-item {
	vertical-align: middle;
}

#reporting-module-wrap .student .student-thumbnail {
	display: block;
	width: 50px;
	height: 50px;
	float: left;
}

#reporting-module-wrap .student .grade {
	box-sizing: border-box;
	text-align: center;
	display: block;
	height: 35px;
	padding-top: 8px;
	margin-right: 10px;
	color: #bfbfbf;
	border: 1px solid #bfbfbf;
	border-radius: 5px;
}

#reporting-module-wrap .student .grade.active {
	color: #12728e;
	border: 1px solid #12728e;
}

#reporting-module-wrap .student .report-comment-wrap {
	margin-left: 270px;
	margin-bottom: 10px;
	width: 470px;
	font-size: 14px;
}

#reporting-module-wrap .student:last-child {
	border-bottom: none;
}

#reporting-module-header {
	background: #ddd;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 14px;
}

#reporting-module-header .title {
	text-transform: uppercase;
	color: #666;
}

#reporting-module-details {
	position: relative;
	padding: 20px;
	background-color: #ccc;
}

#reporting-module-details .close-button {
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAACe0lEQVRYCc2ZTUoDMRTHo91UcNWFgluhF/AA7Q0EL9A76AEEPYsbd57AC9SVUHAhFAqtLXTlthjfbzAlTecjXyN98JjMNPm/X5LJx6RHKt4upei1+JX4heWSVHPL3yT9Iv4p3rqdSYQH8XdxHeiUoSwa2e1UFO/Fv8VDwdz8aKCFZha7EZUvcTdQ6j2aaEfbkZSkpj/iqTBV5dEmBrGC7ERyP4tXCed+Tixiehm1+U84U1lierUkTW4K/feV2LXGS9vmO9dUYWJXDhyGfRujtQnK/R2G7RR0LDfG7iRxbm7Krp1Op+xx0DMPDRhg2TFm99pJWIT1eDzWg8HArbH3fb/f15PJRPd6vaYysOysOI/yoKlQAbdaraIggZvNZno0GjXG+WNhWdzau6S8CtKCoZARcLDAVBi7Ei84ky8EMhLO8MCmbk3gkKsPZCIckLCppxAwO28dZAY4AGFTr3bQ0HQZZCY4AGFTH6FQbn4bMiMcgLDVz38uTNU9kOv1Wi+Xy5CpBIg6/2YlIUOyLRYLtdlsVLfbVdPpNFnvT6BgS+5iu1vt7pYgda3j81vRxa8pQjac0ckICVv8NFMGlxmymGaiJuo6uIyQxUQdvNT5wGWCLJY60fL/EA+BS4TcbhYAZGvTOKpi4IxuxMDZ2W55bVjZbAbs5/YqPBwO9Xw+j9qw0or3prZVV4+d8B6Uq+WpAcueHeRHk0t5Iw8O9rPTwDZ2tWRs7MrIPKVda8DM9eCPPgA96MMjuyVp8jbfSbSJ4XVoZMDcKwOnjSOR5ANMG5QpiJryxa8THQ20tucvks5mrDiP4qyToaCUYfnaOdKQ+1pL6Xt2Gq3/DfELijMlycPUI7oAAAAASUVORK5CYII=);
	background-repeat: no-repeat;
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
}

@media (-webkit-min-device-pixel-ratio: 1.3), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
	#reporting-module-details .close-button {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAFbUlEQVR4Ae2dTWvcVhSGNV20BDxgQu12UeLs2k0XAa+8McTtshv/ihTSRfo3vCg42XiRhX9CtknpLhuDCa1daBdFEAjEOBCGgks2Vd9HnWs0mtGMPu6XhA8c9DHSPec80pWuzr3SjJKw8qnM35N+WdDPNT8uqGaTvwv6VvN/FvSV5t9Jg8jIs9VbsveN9P5Uv9a0qw+ZyjiT/jLVnzX9RzoYAdCu9Kl0IiVgl4oNbGGz68FREeHkE5l+IP1L6hLYsrKxjQ/40huhmj6SvpEuC87nb/iCT/gWtXwn71KpTzhNbOEbPkYnW/LombRJMCG3xdc7sVDclyPvewTPHDh8xvdg8rEsH0qNQ32dEgOxeJXbsvZS2ldoZb+JhZi8yBey8ru07ETfl4mJ2JwKj1yvpX2HVeU/sRGjE+HoDBmegUqM1s9Erg9DrLYGWnlKrNauidyhhnTDKMOqWiZmK3fnQxVUZWTo64m9k+xr76FDWhUfDFrJlvbq4xPGKiBNf4dBq8e+Pj3bNoXSdHtYNBIyFk2NDH372lkccmbpDcC5Ewgmc/nEj7SyLN9rxd3yyjbL4/G4zW5W9xmNRsna2pqNMu+qELLbS4XU9xtp5+p4cHCQnZ+fZ5ubm53LauuP4GVHR0fZyclJtr6+bsMP2CztHoBwZ0M683J4mSQURAMPH66urrKdnZ3OcU3ZVJ6F9GBZ6wDizAMe4htiGd7e3p4teJQDo4W9fbtTwtaMhYDoGJ5hA6s5eao1ZgNrU58QPcGDDaxmhNvzRGoNXLEsHxA9woMRrGaaNM4bzi4heoZnTrKZhvVPxTPG1bwLiIHgARFm1/Kr5gxZp1ObEAPCgxHMcmGI2b9Sp+CK5duAGBgerGAGu+RbqTd4xlYXiBHAM7xgl/xggvI9bQMxInhAfChNnvgGV7TXBGJk8AAIu+RFMaAQ83UgRggPgLBLfgsBrWxzGcRI4QEQdvEkTxdBjBgeAFMAMsKdhSi0DPH4+DjP6JCSspxVsRFv/nbAh1jgGT+KEKEXKTwOwIdFKX2tDyuXl5fJ6enptRMXFxfJ2RlvMsQpUVXh8jUvTdO8CvtOyupQ1anieRVOa25cp8BO25Thcc0rVucIIcIujmbMInjmwEYMMW/GBG9IL4MXOcTnnIFBH+XqwIsY4mMAPjQO+p42gWd8i6w6wy5MOqsNvAgh5ukskoJeE6pd4EUE8TqhKp/y9HSnJogJbNXUBjxjI3B1vk7py5+8g8Q5QJvwIoA406nkvFvTBbzAEGe6NZ12rLuEVwVxY2PDZY2a61iXH/lwBetGfcALAHFuaAcAd40jtqY+4RmfyzcWR2cirObE6vC2EPAUUV6DgFYcWmcZYuXwNohaGWAZEp4HiJUDLAFoZYivxiTnw2pDZ5JNdZ5MJtn29raN6/vKIb5AfCTtbIwxyRaH1bb2h+prCR4+wGal0KRJpa2dHui+MJkZE6jlSnHesJblvh2gmYZzJbnCD896GKSrgwKLxrKlPXjRzpVTfSkXBnca05vuwKuefQnUlZ8w6CSH2tuVc7GXS+yd5eaV/84I//8Aw81HJzqCvPnsSUeA7M5HaYb87RhiI0anwpk4xOpMTNY/uFN1JG7rh5fS2O+idf0jFmLyKtydh9DEIQYrH9hpS39fO/bxiQWf8T0K2ZIXfXp2xtfWj2cuiZOxSKV1rz2+t8O3xlkVl8AWlU3O7Ecp2VvfgKrs4Qs+1c7nadvgQvcA/Qd0wlQF5no9tvEBX3or9PbtSulLnUhdQ8MGtrC58OMQWm9NnBsoeUoVGtSfEfgGWOKZv297Tyu/kvIIhX4mHRdUszN/h3GhZfN3GH9o/pU0Hy2vqXf5DxB1G1/RAOfFAAAAAElFTkSuQmCC);
	}
}

#reporting-module-details h1 {
	margin-bottom: 10px;
}

#reporting-module-details .slider {
	margin: 29px 0;
	background-color: #bfbfbf;
}

#reporting-module-details #filter-most-recent-by-standard {
	margin-top: 10px;
}

#reporting-module-details #dropdown-most-recent-by-standard {
	display: inline-block;
	width: 250px;
}

#learning-skills-view {
	overflow: scroll;
}

#learning-skills-view #skills {
	position: absolute;
	top: 0;
	left: 250px;
	height: 150px;
}

#learning-skills-view #skills .header-skill {
	display: inline-block;
	position: relative;
	width: 60px;
	height: 100%;
}

#learning-skills-view #skills .header-skill .name {
	position: absolute;
	left: -3px;
	bottom: 60px;
	width: 120px;
	-webkit-transform: rotate(300deg);
}

#learning-skills-view #data {
	position: absolute;
	top: 150px;
	left: 250px;
}

#learning-skills-view #students {
	position: absolute;
	top: 150px;
	width: 250px;
	left: 0;
}

#learning-skills-view .row {
	white-space: nowrap;
}

#learning-skills-view .ls-cell {
	display: inline-block;
	box-sizing: border-box;
	height: 50px;
	width: 60px;
	line-height: 50px;
	cursor: pointer;
	text-align: center;
}

#learning-skills-view .ls-cell:hover {
	background-color: #fff;
}

#learning-skills-view #ls-student-header .student-cell {
	display: block;
	padding: 5px 0;
}

#learning-skills-view #ls-student-header .student-cell .picture {
	display: inline-block;
	margin-left: 10px;
	width: 40px;
	height: 40px;
	vertical-align: middle;
	border-radius: 20px;
}

#learning-skills-view #ls-student-header .student-cell .name {
	margin-left: 10px;
	display: inline-block;
	vertical-align: middle;
	width: 130px;
}

#learning-skills-view #ls-student-header .student-cell .final-average {
	width: 50px;
	display: inline-block;
	vertical-align: middle;
	text-align: right;
}

#learning-skills-view #ls-student-header .student-cell:hover {
	background-color: #fff;
	border-left: 3px solid #12728e;
}

.ls-dialog {
	z-index: 100;
	background: #000;
	padding: 2px;
}

.ls-dialog .select {
	display: inline-block;
	padding: 10px;
	background: #d8d8d8;
	margin-right: 2px;
}

.ls-dialog .select:last-child {
	margin-right: 0;
}

.ls-dialog .select:hover {
	background: #fff;
	text-decoration: underline;
}

.ls-dialog .select.active {
	background: #f2f2f2;
}

#tablet-grade-dialog {
	background-color: gray;
	color: #fff;
	border-radius: 10px;
}

#tablet-grade-dialog a {
	color: #12728e;
	background-color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	border-radius: 5px;
}

#tablet-grade-dialog a:hover {
	background-color: #d9d9d9;
	text-decoration: none;
}

.gb-level-grade-dialog {
	white-space: nowrap;
	position: absolute;
	background: #4d4d4d;
	padding: 3px;
	z-index: 5000;
}

.gb-level-grade-dialog .decorator {
	background-color: #4d4d4d;
}

.gb-level-grade-dialog a {
	display: inline-block;
	height: 40px;
	width: 40px;
	background: #d9d9d9;
	line-height: 40px;
	text-align: center;
	margin-right: 2px;
}

.gb-level-grade-dialog a:hover {
	background: #f2f2f2;
	text-decoration: none;
}

.gb-level-grade-dialog a:last-child {
	margin-right: 0;
}

.gb-level-grade-dialog a.active {
	background: #fff;
}

.gb-level-grade-dialog a.keyboard-active {
	background: #eba731;
	color: #fff;
}

#onboard-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	background: -webkit-linear-gradient(#bac4d5, #f7f4f5);
	background: linear-gradient(#bac4d5, #f7f4f5);
	z-index: 4;
	overflow-y: auto;
}

#onboard-background .onboard-dialog {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
}

#onboard-background .onboard-dialog h1 {
	font-weight: 400;
	text-align: center;
}

#onboard-background .onboard-dialog .margin-bottom,
#onboard-background .onboard-dialog h1,
#onboard-background .onboard-dialog p {
	margin-bottom: 10px;
}

#onboard-background .onboard-dialog .no-margin {
	margin-bottom: 0;
}

.invite-single {
	margin-bottom: 10px;
}

.invite-single .email,
.invite-single .name,
.invite-single .parent-name {
	display: inline-block;
	width: 200px;
	margin-right: 10px;
}

.invite-single .email:last-child,
.invite-single .name:last-child,
.invite-single .parent-name:last-child {
	margin-right: 0;
}

#ClassroomSettingsPage h1,
#ClassroomSettingsPage h2,
#ClassroomSettingsPage p {
	margin-bottom: 10px;
}

a img {
	border: none;
}

.left {
	float: left;
}

.right {
	float: right;
}

a:focus,
img:focus,
input:focus,
textarea:focus {
	outline: none;
}

input {
	border: none;
}

.eds-inline-error {
	color: #fdf0d3;
}

.eds-inline-error-35 {
	box-sizing: border-box;
	padding: 8px 10px;
	font-size: 16px;
	font-weight: 700;
	height: 35px;
}

.eds-btn,
.eds-btn-35,
.eds-btn-white {
	box-sizing: border-box;
	display: block;
	color: #12728e;
	border: 1px solid #12728e;
	text-align: center;
	border-radius: 5px;
}

.eds-btn-35:hover,
.eds-btn-white:hover,
.eds-btn:hover {
	border-bottom-width: 3px;
	text-decoration: none;
}

.active.eds-btn-35,
.active.eds-btn-white,
.eds-btn-35:active,
.eds-btn-white:active,
.eds-btn.active,
.eds-btn:active {
	color: #fff;
	background-color: #12728e;
}

.eds-btn-35,
.eds-btn-white {
	height: 35px;
	padding: 8px 20px 0;
	font-weight: 400;
	font-size: 16px;
}

.eds-btn-white {
	border-color: #fff;
}

.eds-btn-white.active,
.eds-btn-white:active {
	background-color: #fff;
	color: #12728e;
}

.eds-btn-gray {
	border-color: #999;
	color: #999;
}

.eds-btn-gray.active,
.eds-btn-gray:active {
	background-color: #999;
}

.eds-btn-red {
	border-color: #ea4843;
	color: #ea4843;
}

.eds-btn-red.active,
.eds-btn-red:active,
.eds-inline-error {
	background-color: #ea4843;
}

.eds-inline-error {
	height: 21px;
	color: #fcaaaa;
	padding: 4px 10px 0;
	font-family: Helvetica Neue, Helvetica, Aria, sans-serif;
	font-size: 14px;
	border-radius: 2px;
}

.edsx-btn,
.edsx-btn-40,
.edsx-btn-gray,
.edsx-btn-green {
	box-sizing: border-box;
	display: block;
	background-color: #12728e;
	padding: 10px 20px;
	height: 35px;
	text-align: center;
	font-size: 15px;
	color: #fff;
	border-radius: 5px;
}

.edsx-btn-40:hover,
.edsx-btn-gray:hover,
.edsx-btn-green:hover,
.edsx-btn:hover {
	padding-top: 9px;
	text-decoration: none;
	background-color: #58b5e1;
	border-bottom: 3px solid #3481a6;
}

.active.edsx-btn-40,
.active.edsx-btn-gray,
.active.edsx-btn-green,
.edsx-btn-40:active,
.edsx-btn-gray:active,
.edsx-btn-green:active,
.edsx-btn.active,
.edsx-btn:active {
	padding-top: 7px;
	background-color: #3481a6;
	border-bottom: none;
	border-top: 3px solid #22566e;
	color: #22566e;
}

.disabled.edsx-btn-40,
.disabled.edsx-btn-gray,
.disabled.edsx-btn-green,
.edsx-btn.disabled {
	background-color: #a8d3e7;
	padding-top: 10px;
	cursor: auto;
	border: none;
	color: #fff;
}

.edsx-btn-gray {
	background-color: #ccc;
	color: gray;
}

.edsx-btn-gray:hover {
	background-color: #d8d8d8;
	border-bottom-color: #b3b3b3;
}

.edsx-btn-gray.active,
.edsx-btn-gray:active {
	color: #666;
	background-color: #b3b3b3;
	border-top-color: gray;
}

.edsx-btn-green {
	background-color: #a1db89;
	color: #fff;
}

.edsx-btn-green:hover {
	background-color: #b6e5a2;
	border-bottom-color: #8acc6e;
}

.edsx-btn-green.active,
.edsx-btn-green:active {
	color: #fff;
	background-color: #8acc6e;
	border-top-color: #6eb252;
}

.edsx-btn-40 {
	height: 40px;
	padding-top: 11px;
}

.edsx-btn-40:hover {
	padding-top: 10px;
}

.edsx-btn-40.active,
.edsx-btn-40:active {
	padding-top: 8px;
}

.edsx-btn-40.disabled {
	padding-top: 11px;
}

.edsx-thin-button {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	border: 1px solid gray;
	color: gray;
	padding: 0 10px;
	border-radius: 5px;
}

.edsx-thin-button:hover {
	background-color: #bfbfbf;
	text-decoration: none;
}

.edsx-modal-dialog {
	box-sizing: border-box;
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	font-family: proxima-nova, HelveticaNeue, Helvetica, Arial, sans-serif;
	font-size: 15px;
	color: #666;
}

.edsx-modal-dialog .close-btn {
	position: absolute;
	top: 0;
	left: -50px;
	display: block;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAACe0lEQVRYCc2ZTUoDMRTHo91UcNWFgluhF/AA7Q0EL9A76AEEPYsbd57AC9SVUHAhFAqtLXTlthjfbzAlTecjXyN98JjMNPm/X5LJx6RHKt4upei1+JX4heWSVHPL3yT9Iv4p3rqdSYQH8XdxHeiUoSwa2e1UFO/Fv8VDwdz8aKCFZha7EZUvcTdQ6j2aaEfbkZSkpj/iqTBV5dEmBrGC7ERyP4tXCed+Tixiehm1+U84U1lierUkTW4K/feV2LXGS9vmO9dUYWJXDhyGfRujtQnK/R2G7RR0LDfG7iRxbm7Krp1Op+xx0DMPDRhg2TFm99pJWIT1eDzWg8HArbH3fb/f15PJRPd6vaYysOysOI/yoKlQAbdaraIggZvNZno0GjXG+WNhWdzau6S8CtKCoZARcLDAVBi7Ei84ky8EMhLO8MCmbk3gkKsPZCIckLCppxAwO28dZAY4AGFTr3bQ0HQZZCY4AGFTH6FQbn4bMiMcgLDVz38uTNU9kOv1Wi+Xy5CpBIg6/2YlIUOyLRYLtdlsVLfbVdPpNFnvT6BgS+5iu1vt7pYgda3j81vRxa8pQjac0ckICVv8NFMGlxmymGaiJuo6uIyQxUQdvNT5wGWCLJY60fL/EA+BS4TcbhYAZGvTOKpi4IxuxMDZ2W55bVjZbAbs5/YqPBwO9Xw+j9qw0or3prZVV4+d8B6Uq+WpAcueHeRHk0t5Iw8O9rPTwDZ2tWRs7MrIPKVda8DM9eCPPgA96MMjuyVp8jbfSbSJ4XVoZMDcKwOnjSOR5ANMG5QpiJryxa8THQ20tucvks5mrDiP4qyToaCUYfnaOdKQ+1pL6Xt2Gq3/DfELijMlycPUI7oAAAAASUVORK5CYII=);
	background-repeat: no-repeat;
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
}

@media (-webkit-min-device-pixel-ratio: 1.3), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
	.edsx-modal-dialog .close-btn {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAFbUlEQVR4Ae2dTWvcVhSGNV20BDxgQu12UeLs2k0XAa+8McTtshv/ihTSRfo3vCg42XiRhX9CtknpLhuDCa1daBdFEAjEOBCGgks2Vd9HnWs0mtGMPu6XhA8c9DHSPec80pWuzr3SjJKw8qnM35N+WdDPNT8uqGaTvwv6VvN/FvSV5t9Jg8jIs9VbsveN9P5Uv9a0qw+ZyjiT/jLVnzX9RzoYAdCu9Kl0IiVgl4oNbGGz68FREeHkE5l+IP1L6hLYsrKxjQ/40huhmj6SvpEuC87nb/iCT/gWtXwn71KpTzhNbOEbPkYnW/LombRJMCG3xdc7sVDclyPvewTPHDh8xvdg8rEsH0qNQ32dEgOxeJXbsvZS2ldoZb+JhZi8yBey8ru07ETfl4mJ2JwKj1yvpX2HVeU/sRGjE+HoDBmegUqM1s9Erg9DrLYGWnlKrNauidyhhnTDKMOqWiZmK3fnQxVUZWTo64m9k+xr76FDWhUfDFrJlvbq4xPGKiBNf4dBq8e+Pj3bNoXSdHtYNBIyFk2NDH372lkccmbpDcC5Ewgmc/nEj7SyLN9rxd3yyjbL4/G4zW5W9xmNRsna2pqNMu+qELLbS4XU9xtp5+p4cHCQnZ+fZ5ubm53LauuP4GVHR0fZyclJtr6+bsMP2CztHoBwZ0M683J4mSQURAMPH66urrKdnZ3OcU3ZVJ6F9GBZ6wDizAMe4htiGd7e3p4teJQDo4W9fbtTwtaMhYDoGJ5hA6s5eao1ZgNrU58QPcGDDaxmhNvzRGoNXLEsHxA9woMRrGaaNM4bzi4heoZnTrKZhvVPxTPG1bwLiIHgARFm1/Kr5gxZp1ObEAPCgxHMcmGI2b9Sp+CK5duAGBgerGAGu+RbqTd4xlYXiBHAM7xgl/xggvI9bQMxInhAfChNnvgGV7TXBGJk8AAIu+RFMaAQ83UgRggPgLBLfgsBrWxzGcRI4QEQdvEkTxdBjBgeAFMAMsKdhSi0DPH4+DjP6JCSspxVsRFv/nbAh1jgGT+KEKEXKTwOwIdFKX2tDyuXl5fJ6enptRMXFxfJ2RlvMsQpUVXh8jUvTdO8CvtOyupQ1anieRVOa25cp8BO25Thcc0rVucIIcIujmbMInjmwEYMMW/GBG9IL4MXOcTnnIFBH+XqwIsY4mMAPjQO+p42gWd8i6w6wy5MOqsNvAgh5ukskoJeE6pd4EUE8TqhKp/y9HSnJogJbNXUBjxjI3B1vk7py5+8g8Q5QJvwIoA406nkvFvTBbzAEGe6NZ12rLuEVwVxY2PDZY2a61iXH/lwBetGfcALAHFuaAcAd40jtqY+4RmfyzcWR2cirObE6vC2EPAUUV6DgFYcWmcZYuXwNohaGWAZEp4HiJUDLAFoZYivxiTnw2pDZ5JNdZ5MJtn29raN6/vKIb5AfCTtbIwxyRaH1bb2h+prCR4+wGal0KRJpa2dHui+MJkZE6jlSnHesJblvh2gmYZzJbnCD896GKSrgwKLxrKlPXjRzpVTfSkXBnca05vuwKuefQnUlZ8w6CSH2tuVc7GXS+yd5eaV/84I//8Aw81HJzqCvPnsSUeA7M5HaYb87RhiI0anwpk4xOpMTNY/uFN1JG7rh5fS2O+idf0jFmLyKtydh9DEIQYrH9hpS39fO/bxiQWf8T0K2ZIXfXp2xtfWj2cuiZOxSKV1rz2+t8O3xlkVl8AWlU3O7Ecp2VvfgKrs4Qs+1c7nadvgQvcA/Qd0wlQF5no9tvEBX3or9PbtSulLnUhdQ8MGtrC58OMQWm9NnBsoeUoVGtSfEfgGWOKZv297Tyu/kvIIhX4mHRdUszN/h3GhZfN3GH9o/pU0Hy2vqXf5DxB1G1/RAOfFAAAAAElFTkSuQmCC);
	}
}

.edsx-modal-dialog h1 {
	font-size: 24px;
	font-weight: 400;
	color: #000;
	text-align: center;
}

.edsx-modal-dialog h2 {
	font-size: 18px;
}

.edsx-modal-dialog p.small-text {
	font-size: 13px;
	color: #999;
}

.edsx-modal-dialog .actions,
.edsx-modal-dialog .edsx-input-group,
.edsx-modal-dialog .edsx-textarea,
.edsx-modal-dialog .margin-bottom,
.edsx-modal-dialog > .edsx-btn,
.edsx-modal-dialog > .edsx-btn-40,
.edsx-modal-dialog > .edsx-btn-gray,
.edsx-modal-dialog > .edsx-btn-green,
.edsx-modal-dialog > .edsx-dropdown,
.edsx-modal-dialog h1,
.edsx-modal-dialog h2,
.edsx-modal-dialog p {
	margin-bottom: 10px;
}

.edsx-modal-dialog .standard ol,
.edsx-modal-dialog .standard ul {
	margin-left: 50px;
}

.edsx-modal-dialog .text-align-center {
	text-align: center;
}

.edsx-modal-dialog .two-actions {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 5px);
}

.edsx-modal-dialog .two-actions.secondary {
	margin-right: 10px;
}

.edsx-modal-dialog .no-margin,
.edsx-modal-dialog > :last-child {
	margin-bottom: 0;
}

.edsx-input-group .label {
	display: inline-block;
	color: #666;
	width: 100px;
}

.edsx-input-group .inline {
	display: inline-block;
}

.edsx-input-group .edsx-input-group-right,
.edsx-input-group input {
	display: inline-block;
	width: 210px;
}

.edsx-input,
.edsx-input-40,
.edsx-textarea {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	height: 35px;
	width: 100%;
	padding: 0 10px;
	border: 1px solid #bfbfbf;
	font-family: proxima-nova, HelveticaNeue, Helvetica, Arial, sans-serif;
	font-size: 15px;
	border-radius: 5px;
}

.edsx-input-40:focus,
.edsx-input:focus,
.edsx-textarea:focus {
	border-color: #12728e;
	box-shadow: 0 0 5px #12728e;
}

.edsx-input.error,
.error.edsx-input-40,
.error.edsx-textarea {
	border-color: #ea4843;
}

.edsx-input.error:focus,
.error.edsx-input-40:focus,
.error.edsx-textarea:focus {
	border-color: #ea4843;
	box-shadow: 0 0 5px #ea4843;
}

.edsx-input-40 {
	height: 40px;
}

.edsx-textarea {
	height: auto;
	width: 100%;
	height: 200px;
	padding: 10px;
	resize: none;
}

.edsx-slider-bar {
	height: 2px;
	background: #ccc;
}

.edsx-slider-bar .slider-handle {
	margin-top: -17px;
	height: 35px;
	width: 35px;
	background-color: #fff;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	border-radius: 18px;
}

.edsx-slider-bar .slider-progress {
	background-color: #12728e;
}

.edsx-action-sheet {
	z-index: 100;
	position: absolute;
	background-color: #fff;
	padding: 10px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
	min-width: 100px;
	border-radius: 5px;
}

.edsx-action-sheet h2 {
	text-transform: uppercase;
	font-size: 15px;
	color: gray;
	margin-bottom: 10px;
}

.edsx-action-sheet a {
	display: block;
	padding: 5px 10px;
	margin: 0 -10px;
	color: #333;
}

.edsx-action-sheet a:hover {
	text-decoration: none;
	background-color: #12728e;
	color: #fff;
}

.edsx-fa-16 {
	font-size: 16px;
}

.eds-dropdown {
	color: gray;
}

.eds-dropdown-btn {
	display: block;
	box-sizing: border-box;
	border: 1px solid #b3b3b3;
	padding-top: 8px;
	padding-left: 10px;
	font-size: 15px;
	background-color: #fff;
	color: gray;
	border-radius: 5px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAPCAYAAADd/14OAAAAAXNSR0IArs4c6QAAAF1JREFUKBXdkVEKwDAIQ82hPN+683koNweO1Mro9wpiTR4FU5FyzGxEFVnAQgAAjtDc/VTVkf4LMpQmww/YQRXGF8Rw3n/Rt7fezzFz6fJcfqaDGUp/6vFy1CTewwWfbElPm3xuYQAAAABJRU5ErkJggg==);
	background-size: 10px 15px;
	width: 10px;
	height: 15px;
	width: inherit;
	height: 35px;
	background-position-y: 50%;
	background-position-x: calc(100% - 10px);
	background-repeat: no-repeat;
	overflow: hidden;
	white-space: nowrap;
}

@media (-webkit-min-device-pixel-ratio: 1.3), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
	.eds-dropdown-btn {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAAXNSR0IArs4c6QAAAJ9JREFUSA3t1UkKwCAMBVBzKM9Xez4PZUlBSW0mh6VCsIvvQ1KahuBYOeeE5YgGsEIIAcCFuVLKHWNM2hkVpFhFLFQEOcyDsqCGWegP9GAa+gFHMAlt4AzGoS+4gvUo7MAoWp/PfjpwOqB1YPunt3841OuvDAn6n2nzEOEZlGJofMBRtMdY0ItymAhaqISpoIRqmAn2qIVh3rXw7WN5wg8FWJlZ7BAtOQAAAABJRU5ErkJggg==);
	}
}

.eds-dropdown-btn.error {
	border-color: #ea4843;
	color: #ea4843;
}

.eds-dropdown-dropview {
	box-sizing: border-box;
	padding: 4px;
	background-color: #fff;
	border: 1px solid #bfbfbf;
	border-radius: 10px;
}

.eds-dropdown-list-item {
	list-style: none;
	display: block;
	box-sizing: border-box;
	padding-top: 7px;
	padding-left: 10px;
	height: 35px;
	font-size: 15px;
	margin-top: 4px;
	border-radius: 5px;
	white-space: nowrap;
	overflow: hidden;
}

.eds-dropdown-list-item.hover {
	color: #fff;
	background-color: #12728e;
	cursor: pointer;
}

.edsx-toggle-inline {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.eds-toggle-bg {
	cursor: pointer;
	border-radius: 36px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.eds-toggle-circle {
	border-radius: 100%;
}

.esui-switch {
	cursor: pointer;
	border-radius: 36px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: background-color, -webkit-transform 0.2s;
	transition: background-color, transform 0.2s;
	transition: background-color, transform 0.2s, -webkit-transform 0.2s;
	-webkit-transition: background-color, -webkit-transform 0.2s;
}

.esui-switch:hover {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.esui-switch .esui-switch-inner {
	-webkit-transition: left 0.2s;
	transition: left 0.2s;
	border-radius: 100%;
}

.edsx-global-notification {
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	color: #fff;
	background-color: #9c86b3;
}

.edsx-global-notification:hover {
	cursor: pointer;
}

.edsx-global-notification .border {
	height: 3px;
	background-color: #000;
	opacity: 0.3;
}

.edsx-global-notification .content {
	padding: 10px 20px;
	line-height: 30px;
}

.edsx-global-notification a {
	color: #fff;
	text-decoration: underline;
}

.edsx-global-notification .close {
	float: right;
}

.edsx-close-30 {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAB1ElEQVRIDcWXO24CMRBADVUKWijScQKKdFEkboAi5QRcIjVNquQOtClzA7p06WjSpoi0lEmJFGeehRF41/asdyVGGmbBM/P8mbXNwOhkKG63oveiN6LXBxVjvg/6IfZN9F30T7STXEn0o2glapWKLzHEFsmDRH2JaoGhH7HkUMtAPJ9Ew0Sl38lFzqTg8CpaConFkTMJ73OkYSfI3SisR+jc9/famlOBXQpJ20EYZ9VO+WuDu/rBcjKUz+h7OhqN7HK5VMHm87mdzWY5X1gwzZ1o1Hk8HtvtdmtXq1XUh3igVVU5m8p3aINpXnKOOXhLKAOAaTY5MO0xeAEUMEzzSWKNhvBCKCyY5lcD9T4evl6v26xpODCY7cB0YLFY2P1+b4H7DrW0P+Kvn2qS++kFrqn2SIfcVG8ijbXReCiWGD/tuVetIT/M/OtEILDdbufsaaJC+DPg5AaSgvoOFMDdBpLcMqfTaeNIPdTbyWTi1lyxvR63TIl1d6TamvqkwP1zyjJy9vaUj7QdDwl5dkcVR1YuqGs7jLNjEfhFLgKAkYtcfQBf7LLn4X2OnFzJGybQU2HNuxQcseQoEiqQ8o9ejaQtrHR8ialVr/x2FO0UDCWi1z9t/8tqFvy8KJo5AAAAAElFTkSuQmCC);
	background-repeat: no-repeat;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
}

@media (-webkit-min-device-pixel-ratio: 1.3), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
	.edsx-close-30 {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADv0lEQVRoBeWbu2obQRSG14UIBFIZJdETpFdaEytNIA9g/AJ+AJtU6fQoqlQb/AZJcKp0blK5jSEYQyBg4mjzf8uOkFZZ7+7cdoQOHMZ7OWf+b2a9Mzse72Xh7KlSH8hfy1+V/lLls9JVZL9K/6Hye+nfVH6R/5Ynb8+l8FT+SX4vzy2dWHKQi5zJ2RspupD/kdtC1sWRk9zU0bu9lYLP8jqxvs9T10Qe3UaqcS73DdQ2H3WjIYq9Vy138rbiQt2HBrQEtQ/K/lceCqJrXrSgybs9UcaZvKugWPejDY1ebKgsl/JY4m3rQSNanYxW2wZY00hoderpmRKYZNtSotnKeBlsC2RVZ+cXGa/7lN7GVaCmY7S3HrIY0FMYZ5ugmq7D0GpyMteNTcm25Tosj9pEV7cFpq1OmGot5odAW8Gu98H0XzvUWdfkqcbDtmEXOmMteDQaWcfW1bu/v58PBgMfeWFbM1YVrD/ex+Nxfnt7m0+nUx/iihzD4TC/urrKz8/PfUDDtrZycqoT1mKPjo7yh4eHHPMBbWDJBzQ97aKvjIVxaawfOSU9Pj72Al2F5dhVWxkPY2GsLt7LnRO7QgeEhQ1GWLN3cmdYk8MWOjCs4YM1+2jE+iq7QkeCBRrWMCsZbaEjwgI8A/ir3HS517IJOjIsbLBm16GAyVsH3QMswLBmPxEW0qvQPcHCCKufIampwVahb25umFMUkwrgm2I9XmdoigOM6JOTk3yxWBSwQEeGpWEL4OCPNLCrj7GB9jENJXcHLx7p6w4BXZIv712FZW5MT/uce3fQD2u4YQkhVVjzGK/+Tkfs6WJYmiEshNfBmrp6gIbV/9QSoCZY7sEjQxdTS68fD11ge4AuPh68fR7awEaEZkgqPg9VFhtInH+P2z7GBrJaBn68lwsAADst8SDcFdbAB4ReW+JxWsTzBRsQemMRT3UVW4OsHuuzszPvc2PT06yGelgC3limBZh9UFbAxAFNT7vkqMayGsoScPW8xXHtHq+d+lOLGi5jo5mPFk0pxwSwx2yuiykJdtECS6ONdMed3KWiFGJhgKWV7dSWB9MibAxJoadsNKDdymaKsqmwzxg0WxubvC7lfQJ0qRutaHayndp6aFqKVpvJu7R2zHvR5tyzyrFhvAxS2rAWbPvwKjlDVgrjNBpa77ZbBbD5mQG9zxkZdbeeVNgA1sVMdCHmBwd1UWfvdigFfHNa7wRSbN1Ljpzkpo7k7IUUncpZP7qX10E0nSeWHORa226kYyfbc4p+PJgVwuT+Fe8fQ0do/r1LeEsAAAAASUVORK5CYII=);
	}
}

.eds-segmented-control {
	height: 35px;
	color: #12728e;
	font-weight: 400;
}

.eds-segmented-control a {
	color: #666;
	box-sizing: border-box;
	float: left;
	text-align: center;
	padding-top: 8px;
	height: 100%;
	font-size: 15px;
	border: 1px solid #bfbfbf;
	border-left: none;
}

.eds-segmented-control a:hover {
	border-bottom-width: 3px;
	text-decoration: none;
}

.eds-segmented-control a:first-child {
	border-left: 1px solid #bfbfbf;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.eds-segmented-control a:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.eds-segmented-control a.active,
.eds-segmented-control a:active {
	background-color: #d8d8d8;
}

.esui-checkbutton {
	vertical-align: top;
	background-color: #bfbfbf;
	text-align: center;
	transition: background-color, -webkit-transform 0.2s;
	transition: background-color, transform 0.2s;
	transition: background-color, transform 0.2s, -webkit-transform 0.2s;
	-webkit-transition: background-color, -webkit-transform 0.2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.esui-checkbutton:hover {
	cursor: pointer;
	background-color: orange;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.esui-checkbutton .esui-checkbutton-inner {
	transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	transition: transform 0.2s, -webkit-transform 0.2s;
	-webkit-transition: -webkit-transform 0.2s;
	background-color: #fff;
}

.gbui-students-table-header .gbui-student-cell {
	display: flex;
	padding: 5px 15px 0;
	height: var(--gb-cell-height, 50px);
	overflow: hidden;
}

.gbui-students-table-header .gbui-student-cell .picture {
	display: inline-block;
	margin-left: 10px;
	width: 40px;
	height: 40px;
	vertical-align: middle;
	border-radius: 20px;
}

.gbui-students-table-header .gbui-student-cell .name {
	margin-left: 10px;
	display: inline-block;
	vertical-align: middle;
	width: 50%;
	text-overflow: ellipsis;
	text-transform: capitalize;
	overflow: hidden;
	white-space: nowrap;
}

.gbui-students-table-header .gbui-student-cell .final-average {
	display: inline-block;
	vertical-align: middle;
	text-align: right;
	margin-left: auto;
}

.gbui-students-table-header .gbui-student-cell:hover {
	background-color: #fff;
	border-left: 3px solid #12728e;
}

.gbui-student-grid {
	padding-top: 20px;
}

.gbui-student-grid .gbui-student-grid-cell {
	display: block;
	position: relative;
	float: left;
	height: 150px;
	width: 100px;
	margin-left: 20px;
	margin-bottom: 20px;
	color: #000;
	text-align: center;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	border-radius: 5px;
}

.gbui-student-grid .gbui-student-grid-cell:hover {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

.gbui-student-grid .gbui-student-grid-cell .grade {
	position: absolute;
	top: -5px;
	right: -5px;
	padding: 4px 8px;
	background-color: #ccc;
	color: #999;
	font-size: 13px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	border-radius: 20px;
}

.gbui-student-grid .gbui-student-grid-cell .image {
	width: 100px;
	height: 100px;
	margin-bottom: 10px;
	overflow: hidden;
	position: relative;
}

.gbui-student-grid .gbui-student-grid-cell .image img {
	width: 100px;
	heigth: 100px;
	display: block;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.gbui-student-grid .gbui-student-grid-cell .first-name,
.gbui-student-grid .gbui-student-grid-cell .last-name {
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
}

.gbui-student-grid .gbui-student-grid-cell .primary-name {
	font-weight: 700;
}

.gbui-sidebar-view {
	z-index: 4;
	background-color: #2b2e2f;
	color: #b3b3b3;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.gbui-sidebar-view {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
}

.gbui-sidebar-view a:hover {
	text-decoration: none;
}

.gbui-sidebar-view #sb-activate-account a {
	display: block;
	padding: 10px 20px;
}

.gbui-sidebar-view #new-features-button {
	display: block;
	padding: 10px 0 10px 20px;
}

.gbui-sidebar-view #sb-logo {
	margin-top: 20px;
	margin-left: 9px;
	margin-bottom: 20px;
	background: no-repeat;
	display: block;
}

.gbui-sidebar-view #sb-navigation a {
	display: block;
	padding: 10px 20px;
}

.gbui-sidebar-view #sb-classes {
	position: relative;
	padding-top: 10px;
}

.gbui-sidebar-view #sb-classes .all-classes {
	position: absolute;
	top: 10px;
	right: 20px;
}

.gbui-sidebar-view #sb-classes .all-classes:hover {
	text-decoration: underline;
}

.gbui-sidebar-view #sb-classes .label {
	margin-left: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: 700;
}

.gbui-sidebar-view #sb-bottom {
	position: fixed;
	bottom: 0;
	width: 200px;
}

.gbui-sidebar-view #sb-bottom a {
	display: block;
	box-sizing: border-box;
	padding-top: 10px;
	height: 40px;
	margin: 20px;
	border: 1px solid;
	text-align: center;
	border-radius: 5px;
}

.gbui-sidebar-view #sb-activate-account a {
	background-color: #b1403c;
}

.gbui-sidebar-view #sb-activate-account a:hover {
	background-color: #ea4843;
}

.gbui-sidebar-view #sb-activate-account a:active {
	background-color: #773736;
}

.gbui-sidebar-view a,
.gbui-sidebar-view a:hover {
	color: #fff;
}

.gbui-sidebar-view .sb-link {
	color: #d9d9d9;
}

.gbui-sidebar-view .sb-link .secondary {
	color: #999;
}

.gbui-sidebar-view .sb-link:hover {
	color: #fff;
	background: #555758;
}

.gbui-sidebar-view .sb-link:hover .secondary {
	color: #b3b3b3;
}

.gbui-sidebar-view .sb-link.active,
.gbui-sidebar-view .sb-link:active {
	color: #b3b3b3;
	background: #000;
}

.gbui-sidebar-view .sb-link.active .secondary,
.gbui-sidebar-view .sb-link:active .secondary {
	color: gray;
}

.gbui-sidebar-view #new-features-button {
	background-color: gray;
}

.gbui-sidebar-view #new-features-button:hover {
	background-color: #999;
}

.gbui-sidebar-view #sb-logo {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAAUCAYAAABBPOWjAAAAAXNSR0IArs4c6QAABwtJREFUaAXVmnmIV1UUxxuXMLU0dCpN0RnNhSTKhSz1j9GyEiVKo2WCoQUDg0qIiEYclyzITC2FbNHMbE9sJ8VGHReKciG1pA3TdNTMHXL99fn+5t3pvjtv+y0zTgc+c+8995xzl3ffffe93xSc18CSSqWa0qRw5XRBQcFZVxlVtmKdwjeViy2xOuDfH7rDKfgRqoh7ktQn2DZB0Qxi++zZDsS2JxTCcaiGNcTeS1pH8GkuJfXqR6Rga+YzPQdWOdIv50oa2gTZSJkax3FeiPNZ9EdgO7wPD0P7qA5TPw0kw6LsvHbLa0xTI21bdG1gNpzw6u2kmkKpbe/FGusZ3e/WmTL1LWEi7PVs3UTjXQHXGh+TovsTdppyVIrdTJBosWl+p6ZLGf7Rqm4sUkBHLvToQXoHaJBzSSdydxwlzasQW3f2e3ATbIM5sB26wlDQIngLu2a0v5B8IsH+Sgw/hSLQ3f8CrIN9cBH0gXtAbazFfjzxXyKfD9lKkCUBgQag6wxfwXG3vjEtBLdvKmuLfAxuYbJKmKw9UuZRHiWWFkElDCf+aSv2fNqskh6CJtYy/S+LT29Ka6ENfAJlxD1Easvn2D2PogKeAt0EtkQ+5mxDN09b76ITPqG9xSi0+MZh85uvkkI+FsIy4pxxAweUdwXopNKk7Qf1pQsUQyuwRc/X5QymL4M4aVfkmL/T8y8nrr0I0mp088iIREL/WmCoRaNFMAUmESPwoqLXnOnR8Tr5HeRt0cII9LONMsy7i83nHrgQ6NwFWLWkgwd81sGF0dgdC65KpK3Af4WxpG11eAxUgLZYI8o/AU8bRR7STl6MLXmIpRAPQS/YBJMZV+zFxMZdBLjWi0T2pYnbJBeiCJ2eZxpQg4smDz6g4X7wjdOBR+if3efIwTm+QUVzIOsWVJmFbrzno2d+Rm9ATlu5jssJF1+0J1Unzptx+Q6ujnetXwsm8gQtjIYjVkuF5Adb5cjtzrILy27wKuYw9kvCjJLo8deO1QU20/eVSXwibHIdV0To4Kr0o4FBqOFymAy+xRHs5tP+hH/cCu7K5CQ5R/gC46PXKJ2+7Vc4Tfhqn2H2hWm46pwwCLbS1gTSd2jXXnyoEkl/z0oHzFChjfZU6tHryj7a1eI30hTbzqYQkepNK2dpRmM62CyCUVlGuzxLv6Ru2x3DS51y1kUmfjfj11vBArgKXoZZ6JaSzqFeB9mkYnaUXTEOC6kfEWAzFF2lp9eN1RH+8Mr1nmhHGAvZLoJ67yANuNvk+flslIu9gQuv88it8ADcCHcJ9OtJb8emmjRO0rsrRnE73xfY7LCC6UPQNVbZZPWu/6YpRKTazbSIcxJ9KJnOgPcQ5RUI2rLiGtiKQdzBKO7REdVGkVOZ5KI4LtFF5kCvjh8J5kJbdxk8DteBPviUYBN3d+pjkSRyxyLO3Bqzmr/EfpacuxC0+A9iO862DcrjPxN97gtBwWlQX89+ILsEiqXLQAbifywD+8Sm9Kk1xu42qoVn5JSXSbKAjY0ueqgwlr+onEHb80m/Bh2cp4IWR5Rs8yrTn3qjDBtjXRPTKSZgM/n+8KXRNYJUu5R59qo7B2CVMp5oJ5MkOacYm901LtF/mY+DWJg7siTaOl37LX//hoEsolxfvXPZQRN0ta5J7UJQlTf4kWSnQNx2L5d6ESayGywg+N1OA7Poo31H7/Tqezp2QUVzceIOc7avXqX1zG9nK4Py9Et2r4LOCjOCbDLQ6dHQoGIOOLWNMiAtgAouRNLOjMc2yWdfvR7p4rpyL/7Xo2wBnaArDIKmYIseXc/ZCvIr4TCUEuNJ4gf2g7re2GjL1s/Kumtrhbq26A7VKvyZIorqh1lw/tq6pemoHoQRxB1D3A/rmpwzTdLrmayDDDDbn6H16In6GZrQofIzNR2CeohePyFLZofUt6BuddoildLbQFoo62fi12AP9DB6O0Wvs5OkwtGH/gyN7XA44zGJ1LfrOnH0reANkJSYOvJZ/wxtYrgpMd9WI0ixW6dyaCeDjM+RbhHtDuDuMucBtxvaJVSnz88fwxBoDe3gNvTrYQisAb0Z2NKHwmVQie190An0/wmD4TP0pVAFz0AioZ/LMBwN/4AW0CpiaccqglZQDDfABOp+hzJIgez/P8IAGmJH0A4wF/QVMVaw6wWbIUyWUNHWDYTuYlgU4qR/HNFdVBjgF7ojGFv8esBSiJLDVL4IvjMO5frYERZ7HQncETJ+bhCsH4NtZQacQXqcu+V7/PXcDXrX1l2h573OEr7neJI2iKtnuT4GDYOOoPPCTlhKvA2koYKvDpL6oHQFNAe9oi7HbyNpHcFebzKa0F+x2V/HwFJg24XiKNDFbg/V8IvHOvyPkvcJPn2liOu3bLz4emxuwT70NR677tio/Y3YnSD1yb/aWAUVc6pMOAAAAABJRU5ErkJggg==);
	background-repeat: no-repeat;
	background-size: 130px 20px;
	width: 130px;
	height: 20px;
	opacity: 0.5;
}

@media (-webkit-min-device-pixel-ratio: 1.3), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
	.gbui-sidebar-view #sb-logo {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQQAAAAoCAYAAAAYEYTzAAAAAXNSR0IArs4c6QAADlVJREFUeAHtnQm0VVUZx8EJFBFFFg4ZhoShpolThSgqJpiCmZiZhhYOaKwUJ9ZKM4tlrFyKkrocssApB0zEoXLCAURTsuWEQw4xqTEmIoqKr99f7r7rY793z3TPOfe85/nW+q+999nftL+9zz5773Peu+3alVRGoIxAGYFKBNq39Ug0NTWtQxs3itHO1e3bt/8wBn9iVnzb2Ah/jN2PTTlx1tP7CXpXRVWGbBd4h4H+YDfQHXQGy8BC8Ca4H/wNvQtIIxO61Q/qD1Fqca7oPQidg0EPsBXYEii+S8HiCv5N+iCYhu/vk0amDH3XPdjJOLIK3z4x5XbYtuPEVrW+PI2ZCPKkaTZKGN4tgfFPkFkM3gD/ANeBUaA/sJ1nTcXKo2dDYOm3sRQEMKN0pVF8TQBrtQr+ruAq8IGRDcp+RuWNYOuqkpAMvLOMwhkh7KHV6BoIpgLbXmOiZlb9+yDYO9RIhQFejQNHM6PKhfGhcFuntJKOtjJc28Crz7ToZmvrQ5lv1249grA52A7sBUaAy8F0oIniNjAErE+51RPt0NN1NhgJoq6m9GQ7FryG/HDS3Ah7O4H7MPgQGAo2jGlc/XsgmIGee0CfmPJpsjelqaxeXQpM1tTWtiUdCdgPKtDkMJb8lSzzVmcdyCz04//B6J0COnj6F1F+GrwO5oNuoCcQv7YQjrRimoSeDYlBpNWIE0ySYud85IR1W5DX1uAp8DZ4B6wA2vJo+9AbaHL3H4KHcm0Aeo/Gf00yeVOh7o88JoS8A5ynPd0kE8BxDKiRDKhn8jQeYCvSIMPnHuiYDOxkoJvpd+APtKfZWQoyehofDy4Cbm8re5dS9wAyb5FPndAtH/8IjvGUa799E7gFPIL9T736ahEdmhgOA6eBHaoVayY4bT1OR/4Kcz2PbNgKQe3x2xzkV18qzzIM48i/aMqNzRLkiSBPmmZbjOEkZwhJ/F2N0AnWdlAe3oafIeCDbgJLOjPRVimU4PsqmFMRnke6R5gQPInOEJDrCB4DPj3KhR3D7Pr1yKwHTgfvAUfqv5o3HnUNOUPwfQ8r4+chrkGV9MAwGVvvL59sXZmPFwHF8lo64cR4Yo3hxk8t/7X/dqRT96E8IZe4C0EpfNpKSF5vHPagPCuIv846PbX39XScjc39gM4+YhEyn4LLEPoWmAv0lB7BtZtJ86awFUKu/pRbhnTDraXzNdxseoV4fbqqU9emcxBLl+DzS/ZCWB7+5+AZHMZXT31lgh1hdHxG/mRsX2euJcqi42X090N4b/K3J1LSxoSKMCGcS0yXpxjX+TF13Qv/HZ6M9qtdwRZg9wo2Io1CmhQuZ6A9xCBbEEWgQTxql6W7bKEIeWKoVczlni9aGdQ9GTidlT4qJ4NKQIowIfyJTnnXdVAD0hewH/g0Z2Cuj186jNJ2QK/owkin8FqSHhnG2MB6fbxj6T+2UJD8efihydnRw2QudYUyTT8Csc4QuDF0kGT3nel7VECNTBj62u8OMAj3DgFzIrg5jFiJv6i0mefYBl65oUVi1wsHhhsn9MbjOPqgUHtu41/SrFaUhaHIEwIdNASvdXDUpzDeN8ARBuRfMbsneCGC+VMi8DSKZalneHuv3OjiOThgV7DXE/sib8GSxqtQE1zohMBEsA4YS2ungi5JW92W5BiYi2jPQBB2XjGI2HUqaNv9bZpWPoUgYqanprZojnTTlFsFF40M08AJgY7RwZq+3tJerlBLmwxjEkl1ZVIYFcLckfqDQ3gaVf2oZ/hM+rsoqz99XKMDXUfTifdrrlCm2UWg5oTA4NgVs9oiDM7OfOvWzCDVqunJkFbYJ10Ia67V8l1f+TnSGcI0+n0vd6GBqT/m1vrYrIF+tXnTdo9WbSyDQoc5VwN9ppo16Y9L7MBMam8AN2gaeuLavxWBbwcI9Q6oa1gVsVpA3PVK7wzjhN48PM51vSEZB897pi7PrD4YsvSILZT57CKw1oTAQNDrNe3VfpadyWaaQz95bSbR8oWaq52W2VO7qkPGCQHa7NI3gK0hVb/C6r7A9oFe840BJzMeNNndyMQwkzRP8mP2XFLjtEF/v7BdDPl5tHdeCH9n9OqDpjTIb2saOhPrqE4INFB/1z4ZpNXQxE61MsGwwVOoDrexZeCvoN+/y7Ubgf+KdFOujRTgeYP0JqBvRuaSZk3djQF99VnPSuUIdOnT56g0FsbzQ5i/Tv0TITytsvrzpyodvg/ePwvKySBmNzJYVyHyvwAx/RGT/XPhANb8q/B/EdCe/ViwqIYHvbiu1cSbtOUvYL8afGldthPC4rSUlnrCI6BXinpC6NCmsE+y8GY0nGPdEA86hdQ3vJpJ4Wac6APGgFdrOKR2fh88wrh5HiifKqFTb7O0bXGkCbeknCKgLcP9QOcGZ+dks02ZYQB3pEFBK4DPqK/15C1ULJgU9LHSRQLt0qpxONBN3xX4tDMXtFq4lvQ0ZD/yGZKU0YPKJq0K3AOqWxI9RuYW8o+Zsp/dmAtP+hdDyjrT0IoqDdJWXfdgIWg9OmA1npxDJzxNOhEoQCVFj4AbuLUktCRXjFsV4fN0HJ7OuDiV9CDwYzAM+Kuhk7jWDb4jkdHklwYtRImLqw7wOqA70UoBOU1y/leZVR/RvUm1ED2zEr0vRmevzYn95bVr86+pHirSwDtwbjYu3Am+lqMrU7D1YQr2GnXTDQjx/d2Q+kJXMy70Klcfp93H+Nie9FxwDLATg1YRYyt1JHXTf9GgFYijr5B51RXKNLsIVCcEmaDzZ9Ppe5GdBA4HaVDYF46nYrc13zRDQ4L0Zki9q07ztam9WZ3+ulP66TWUHMcYuYr0LuCe4tI9muvj4VmiQp0kOwcaHZp0ywnBBCSrbLNBSIdqCaNXNb8AaSwBm7JyvtF6uQG2xYdDQvy4u0a99tw2Nqls1fBJk/wGxmYaqy+j7vMHx1NcGASsbn3ENnItxuQFf0+9f3JVpWScCDSbECTMpNAExpEdDNKY8aW2LdJ4GtUxoGFabk9tqV4x5voKU9fZ5OvJ+nviet7h1/QD/3WwdonH0N8rJy1OQ/BjI3wQE91GplxmM4pAixOCs0WnP0h+d/BPd61M10SAAXomOe2dg+hhYrgsgOFdU7edydeT7ekJaz+eFU30FH/ZKycqEjNNlDOMcFfyx5tymc0oAoETgmzSOXNINPP7na/qLxwxEawLzqPhF0dovF7nBpHdF+8cxBijbheP9xWvnGbxLZStMgq3Mfl6s1d4CvRfkkPHqydTFmNGIFKAmRQ+Aj9Ft/aIdgDENNd62RmMekE+kBY8A3SiHkaTidkDIUwvmfou6N/TlJNmv+MJ6s1RJkT7tO153yhfafL1ZnVo+S+jpDf58lsZE5AsspEmBGeYAXAN+Stdua2m3Jj6HYDuoC8YDibQ1rngIdA3Qru15B0dgc+fMI6KIFOTBT+1zz7UMOj/RdptiamqP4u9DmjZ3Giab/J1ZSuTzQWekt9gM0r8PbGyGDUCOpGORXTUp7EEwplfoZPTeJthLd2Gn6fYCwH5Mdi3Tx69Jq3ntZ3aon8TviDApquaTkZ/B7Fp5cJJ+KI/O17iGGKmo+DvbGRqveGosmCvH/ZmVi/Ey+gNi+Ll6FmXSSPFr7vx7x50Dano09uTyVzbn7p5adgodawdgVgrhLVFUyt1QdNmKaNTDO8UA02MDvVMBjKr7yr+rEwYwae3EJMMn25mvbmITdwkOkzUq2JHmrgnuYKfwq9V0NVcf4L0RL8+rIyMXpNe4PHd5JXTKOoLydeNol7k9SOtvc21MptSBPKYEOwTJCW3C6lG++nR3OTaVsWhC2G2+3BtUeyNHaoLfn0gNBVocnWk32a0N5K73g5+fYn6NDi5cvH3XAv7nsLKa9xo0tu5enHN2coTppxKlja8hyK9zbHnEz0oz8RnTRaJCXk9BH6UWEE6goW6P/KYENIJW7G1zMG9Axi8l8V1E5nFyJznyV3IYNWn5HrqBxI8R8MwC9ib823Kvw4Q1I2wjanXtxT6z1Xao+sDo5pEvZ7MU4BbxotXK50TaIsmxdQJvS+gdCDQ3zg46kbmBvzR7zv2A5FvLHi3BD9H/lVwlVNYpmv/m+syHvEjoPOCieAMBu3y+OJrJJDVE3pHSu6JrYojwKFcv4X070BvN5YA3bx6Qh4AhoE9gKUPKAxBZ83vD6h7Cb26ofWdiZsAdEP9EoyibhLpA2AO0KGkJg/5p5vyJ0ATiiPF4CR0Pu8uZJGi/yn8+ia67wU7GRsDyGtloh+evb2S14QoqE90PqMtqSYyxaof6A9aehhqQpsPSsoqAnTSRJA33eDag+HdMjCuXw0eD3o6O/Wm6NIvEl8H6qGFCOumjUTw6gvAd+owuBLZ4ZGMwQTvLGNrRlQ5y4f8JuBi8JHRlUZ2Ckr8bziqpqnL6tefe3jOj64aTZBBV/nrzwnilkTkZYR0PqA955d4YmlV8FYSRS3JoEu/SHwCdUcBvXmIS/cjsAs6Ho4qCK9WAX2Als160seh6TD3RUd18o0jnJQXe8vBWcjvAG4Fcf22phdQuBTsis7DQaarHGu4qHktEzMlZqyhGPhGpkaaK3+eztUhm55K3Ul0E8eh1TAvBdrfC3PQpzQXwufOGBoGjgf7gFr9JB+1pbge/7SlSEzY3B5h2TwcaGndEmnLoknkSuxpmR6LsKF+UH+I3kaHlvh1ETq3QIG2P98DWh1pS1WLFC+dtyhWaod+70HbhFDCzg9h2rLC+A5yt4UKRWBAr/p6hGF9HN3PmnKsLPq0aj3MCN2JvrmmHJitNdAChcrK/CJAB3fC2lZga6ABqdN2t0deSGfX84REVXPCpvbdOjeQza5AN5KeprOxF+kGgjd3wm+dbWiCUJwUs43BMqCJTLGKfGPA/4Wk/wPEdU6eXXqThwAAAABJRU5ErkJggg==);
	}
}

.gbui-sidebar-view #sb-logo:hover {
	opacity: 0.75;
}

.gbui-sidebar-view #sb-classes .all-classes {
	color: #bfbfbf;
}

.gbui-sidebar-view #sb-classes .label {
	color: gray;
}

.gbui-sidebar-view #sb-bottom {
	background-color: #2b2e2f;
}

.gbui-sidebar-view #sb-bottom a {
	border-color: #ffa924;
	color: #ffa924;
}

.gbui-sidebar-view #sb-bottom a:hover {
	background-color: #ffa924;
	color: #fff;
}

.gbui-sidebar-view.role-student {
	background-color: #70c1b3;
	color: #093851;
}

.gbui-sidebar-view.role-student a,
.gbui-sidebar-view.role-student a:hover {
	color: #093851;
}

.gbui-sidebar-view.role-student #sb-logo {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAAUCAYAAABBPOWjAAAAAXNSR0IArs4c6QAACdZJREFUaAXNWg1sHMUVnpm9819ICI6Dg30/e2cjQJSIFkISBBQh0pCUtqQlVGlIKYU0SkWhKYVAqqhGShNRSAQUEZWf0oRUNCUF+qNGaaVUIESS0tJQIlqQ7dv78dmOHceJ8c/d3s30m43X3tvbW9/5guOR7mbmvTdv/t689+bNUlJiCoTVrSU2MciHOXmmR9O6Ak2hbxMhLs3jwUiacNJPGO3gXD+aaE+0gkbk0VkAgSb1LlBckhlJb0kmk0MWVF7RFw5+ixH6uQFy6vGT7SdPWQl8Yd8VjHk3YlxXEkpUKsgA8P/mhOyOt2m/tdLKsr859FXKxSKhZ5+Nx+NJO96sXxQKBT2M30kJXQ5YiBJyAfJ+QWicUHFQ18Wuzmj0vya9mcs1xsTj8XZtpwkrlPvD6irwvcKcV8H1LcRAwint9LjhnXCU0Ued4BPBKgTZC5ouLPRKSumtjvTsDFRhXhJsCsVQ24NN3tHR0XHCiR4LcAcEZzn4bQfeVRAYYytAf3vNcM1zJ8m4IKCfzYKIFuCYoCQCPv9Cfjk2bxmGswwLe2csK24nmjZijoERcQv6XZ9h7DXAnATBCyHdQil5AGwrwX8Q/D8Rgn5EqZiD8nys/gKvh/zY3xTaGW+L/Ah8dJO/XGNKxBHUJxQE0Mp5rawW1TuNebmtr9lBXi6OliwIeTw+KwAlAbDepFR71wXDwXXR9ujvz3ZXvqbgCmzSYxDOZDYjVic07S2zj0A4cB1hyhvYzGsaCbm0g5CjJs4tr62tnTXzgll/wCm7Ebz7sOFr+UhmXyKRGDbb1dXVzayZdd494L0Nv/sCzeqJWKvWYuLLyfUsuU+h+iY7D8Y8bwJWz3lmsR2H+Q9PX0EYHS1O5hyc0L1QgWugKl/Nm0QZAIXSn0m9SAS/I6FF37WyirXH3mkIha6Dih7p1LSoFedSphCCXYYQCPKezunKzkgkr21vb+8A6e19yhfyHcQGrY+1adtceJaEcupPMgg2qynMlcPkfujEsCxBwCIlslnirOZtvXUI8bENZFRxEm8UlPZTIaqoAjtKyWVA3AsBaDDpofoVuAsvwua+W2iiJm2xeX19/QwszGU4tSdibblCYPJIRiKOYzbx9hxmZA1O123wW2I8pX+x06IF7LSynogk/oNsvRPubMOwVzhPhZOTIDA4K1ti7VqeeslnI1IdEe2DfHjxEKHrxyw+gLSLhKjqtgATG2H/Wow6/iAMNV6FbEFxjQkrJ9d1Xak6w2DM9pfDD22lh7NZ8uBCPGI1BRJ2rhOEwE0OjMGPjdHn89XCXu2frEM4xqjcAhwzCOJjQvAXbKxug5CM7p8NU2K1r6/vNG4JGjRPY7ApeG2JzfPIfaq6ANqsWQjx/tk2YXmdfQaAMY3QqKpXMg95HQsTKr4fej5st7tqo6QPV7C9xfMcp8wM6z/01FTK69F5EirzRkUshuP293GqMkqUvIHWGwhl+/3h4IZ4e/RXk+VGFXGzMUJB/jhZHueynSEI8MpXw4C8ACGoLmUw2Jg6aI/n3NoIQY4BPylBkLEB2N3DkAAs8pnkEWTMdzBhk82jGbIpqIhFsDuLcb18CVdJXPfIKyTDfxONRjtL4Yu1CEp6ToSjM2byCoZD23FRnW3WzVwfSv8gNxZCw3DwXjLxBXMhFkh/t9zkweSfxEI/WD6rcodSqL1ADGF8dAjG1BWiLBkOExQl5Hp/c/ABStgGrCfu9+QJ4mVbg03qvkyW/LxD04q6NuIQzTH6ZxRXxsJJUAENRy+yUwxVVDwImDUWMhfz/q6dLq8+vjR5qFIAjHOoMkG6S2k0pbSU1lr7g+bKiQpacZMsZ+Ot0R2x1oiK03wLbPwu3CTSOGWrPAo5FAgFvlIU39FxYZNnudFnhtPzR8RQvflDfwed6KWvYdK45bgN/MmpvR0mbw12mLXuiUcib8NJvEqp8iBgQxdakROWheiCQ7fWjY5zNuCGnwDngUN3tVX1Uc7hIuQmLFox52IiGgiEdgCcD8ybN++hihnVW3FTuZcoyuv+sP/aeHv8vdxebTVBk4biEvxiGyanCvXfawVA86StdbMM7aR3t3YfN+uF8kBzqKhbDybvOn/DR8BVRy7uDQiL/gKT/16hTu1wLP9grC32Zzv8bNVhtuDIGfF5gyU2fCg1lBoP/FC8TSAJrxdqlOQssNEg509IVUvS6bTRJgdlq3R1dfUAtBabNAPrsUowzzrUXQVB8OxbVFF+QilbCtrtNpbTvirvvmZKI8KFCRsnPGUCz1UOlbwEgrbV2j9OyZvd3d2DJgyOaEKWvUz4TJhL7odyPNXT0/OpC00uSog9EoC3heZcRH4tFom9LYNTOHZL/CH/9fkU0xtiFQRjpNHW6IvZrH7DVA+7oaGhBiHdSxDjvxUncT9O11+xqIbGkmOR2iCdpblBLs4/NHCMfsltvHhdvBhCoMJIGvRutFZchp9x/GB5MlZ4gXIKV4YnJI4yzw6ZFaA7J+AJfQSnUSH0+Q8nuB0Gx6gJ5iRrhxeo74bGuduOU6q8x8EDbgAdFUpEk20JQsAxkXvs4eWYYPsCRDyNtndDkB6321+TDaPKQ6DB6zJ53oTJHIGkmwRljXAUX7HCzTJTxJflfmJHD5swtzzGydNBJr6Jrq7GnF7mqcz66RJhxBxcBTNPI7hN1AmHSbNifmjr2JfZ1on3KOw0NnC103cBxtMwJ7/EVs3xVFf+pSHcIF8srUlejzdjiGuhtpPY8N+ZSEQCF+Iq+jeoml/7m9TvmHAzBwwbyh6R7Yay4lkT7prjOprKkK+DZxTzuotVeo8EmgOXO7WBQzoXUdxHYf6uccJPNWxM9U51x0X0l4ImeBUveC2dkcKvfwhFt+D0fQELv9RLKj5GGZ6/+AT8Z0NAluAcqOBzEs+vKwAb833w5HwEtE+i3cM4Ki8jeHM/8Ic5pxy+yCL8roIAfprNkG/ID2qKGK9B0qVp2oWhCxdWsRl7wONmQpRjCIr9Exv+ARPyoxTpz9AwcPPRoBK/0xjfM/2aNub7FNvXKJ3rSS+WV8mCgEHLK1bJCZsyap/F+3DyvHYGmA0HrB8b14WTeig7nD5oeYyyk1vr0sldjoey+2Ffvo8F/pqpBbHogziduzIkvTkZScatjWQZ7TbCPBxAfw9DIG4C6PMMegvt+jDG54ez5KeOQiDERxCSAwrnp+08Zf145LiMyyzB9w7LFIIrKCVL8XUUrsGAgjm+Tkri/xAep14bGRjabXdgR9f4f5LXRAlWEwEvOpMPctdrJHi+g+4LBuPOijRNNNipxM9W1dk1lNYrmcwAPiOTG1KsD1MZDAYbOOcpt8/PJjkXZa6qzvVSej7T9dh08Rusc/k/7UPCtW2kW94AAAAASUVORK5CYII=);
	background-repeat: no-repeat;
	background-size: 130px 20px;
	width: 130px;
	height: 20px;
	opacity: 0.75;
}

@media (-webkit-min-device-pixel-ratio: 1.3), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
	.gbui-sidebar-view.role-student #sb-logo {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQQAAAAoCAYAAAAYEYTzAAAAAXNSR0IArs4c6QAAE1hJREFUeAHtXQl0HMWZrqrumZGE5Atk2ZLmkGSOhDgbnkNgzRlzJCYbDGyCswGv80J2TVg2MXksxy6BPB4Y2JiEsPbuQgIhNvGSxBtjXiDhCGs2ZB1wwDgJwQ90zCXJtmyDjbGk0XTVfjVSz9RIc3TPdOvy1Hv96uj//+uv6qq//vrraEpcdvX19bUuZ5FFvq+vbwAJSSXRAx58SrxgEPhDABgsCOTMyyy+kO8HICscIK2jvFUmHdA9ijA348X85tbmhZRqlzJCFwtCTwJLx1NCGRjrA+5ekHqdE/pM3CDbSDgs69qqY+CrxgTO8Z3MV7b9xtbGgE59yygRi4E8D898Qug8QYVBBd0viNiPtD7EXyWcPxfrjL2OuOU6ASxR27HDbaTY98pqJ5IXt5wsF3WLuEk3uKDFiUZukivqC0FWRju6NpiAgbaWv6eUPGTGLfqD6JqHAPsemN+LZxcRfCdj5I1Ie+SPSJdCoyznbw1exxhbbxJJ8sTJ3Z3db5vxUn1/W2g5o/QJEz9J+OLu9sh2M57PD7QGziZUuxd1dVY+GDUdnewgOuDtqI//RLqhvssV9rf5P8KoLutu2Bn8K5GuyCNm1LYfClX5NfEPKOtV6Pyn2cEH7wcAvzFxZGDNnj17pKAr6tR2LIT4XrQjvLookgWAwIKWz6MT/tQEFcI4O9oR/a0ZL7H9mui2fJTrMd0WxrED7COUzEVx5+JjnYTnHAySqdIHFoQOQlj8FJ1hY6Qj8n/ToEpYcEFoLQTpaggDywMEQOegI65Dg101xMlne7u6IuNUFxSd6Gp8g7sppf5S8gTvxwNvta+2+hp8z+9Ek+Rem9pOKdlOCZyKQLD5mVIdgZJr0RmuRWd4R1ByY6y96ymbZCYLOAu0hR5FWVZCGGQ5CIg/Qui9yYl4B2r3B4SKJkLYxzCFOBsdMQ2N0EIvI//r9/uXxGKxjiwiDkca2hrm+kj1FmS+OKfoEuQPGP13I9tePD0Ie8DzPPA4DwLkDPijBUgdvucdQV18aqCtYdnejr37HGZ5ypGrCIQyPhka2IlonFvRqbYmReJrPZ090TLIjTuqf0FwNTrESjVjqI0vcoPcGQ+HX1LTzfC8UCjk08QaQunfmGnonAHm1dYhvjSd5nAgsCBwKhXsaeQbzCItRAQC7QeGGPpJvDP+Tta7URF/q//j0PSWo8zXQaal7RnAP7OKVL8yPxi8pDcSeWsU2oRGORl6kXAN0yJrDtPQr6NNfkJC41u+y4W43hom4DntrAgEq7VVAA6Na5mH+pYE2gJL1flfAZQJf9XY1uhHx7hTZQQN6EHMjb+upo0O7wmHw0j7IrSjbRCIKdsMbCybB4/0f2k0rFPxplDoTPD6LATPDIVmQnBxf3IgcVdPT480nBZ1MCb+HkC/R9kf1IV3Lb7blSYSND1DM4zDZnyy+PGOeDt4kY8lh+nU5QBMCQTU19F4R2STJcQRoIpAsFNbhWHrYJT7FYxzS6Od0ZcLg7r3Fo0c/bO406n3GnSy40xIqNfPQRh8w4wX82G4fRjz7yZMJ4YQvhvwlvItRnf0+7ktcxs0jfw30tPCALz2cCO5NN4V/8NoeCvxno6eGOCWQ6jhO4kHMKJGoeEt6Yn3dFvBn84wFYHg4NdFw6oVTPtlc0vzBWisrzpI2jIpjPKQCeCkiAPEchMEOCJhkFWIG2aaFT/aHr7DClwZMHqVVgMDLm00aUAYdJEEvzAejXeaaaX6EGT/hlWZGE2KXT2RqTXdK7XMxfAmVCDAcPUnSOi1xZi08x4tO71kYwUPauctUK32mLAY5tCdaB0mYLOR3orIGeDzZEu9DESkUGCa/kMEYYArf3nS5MtJv6GhAZoBPcWkiTLuGpkKmEmTwoeN4yZ8i3MVZg4nkmTJnmg0rKSVFYx1hJ8si8A0Q55QgQBh0A019UcTWacGGdrS3VF4/T8YDM6HvfpLUMZXjTFq5WAejfjDgdbQN6Kd4ftyvJ7wJK/XKzfvZJwg4UxkcoTmzJkzA9ORG6WENR2E9fWTUXCZ/E0Hf3hx3WJJILEtzzEtkpwSYJFIpBfq8T0Rg5wClfVeNEx1J2TuMlByuzTc5X45wakeMlvlADsSPWp8MoRrZ824AVpZmk/Map6KtndtnAy8TWceLAmExsbGmmBbaBMj7P7pXBlFy4atuhAMt0Ig/DVgE4Xg0ZhrPMS3shCMG++QL9gr7GiSHhwFcfKo+IRGm5ubq1GOG1QmOE/ercYrYXdqoKhAwIaTNk+1bztU5cy6szu8TBmqciMS1neLd3YqrhjvQkmjYrE8BwcH90pDYgZOtGIN/kOZ+ASHfNr5mCrMNLkApy9PlJHW5OFY8QsKhOa24FLq1Xbg43z0WKkQq+WEMeoJ9KmtheHpabA/tBSGcfatFQ1h7969OEhF5Zp8ygGHeXX674gUFSYjKK56aJRZG5xQz9hNWXHjUQP5BAINtrXchhNvv0BjSc/jxoOhqZQHdsfdVIxfodFLi8E4+R6dx2KnFpuz8qX0fOy43KKe6st6P64R9mk1u6SgL6rxSti9GhizyiCtu7WzZ2zAWIHjpBbbVqn8UXoWNodkTsCVSoeIZ7BacXPJ6CUiytOJOBi0EwPraflIwGB3Yr53bqRb0RBkvsn+xDq92nc9lhzThk/gLqueedwbwbqamyOdEbkZaNwd7AdzwFO6zuS+g96ucGTcGTlGM8wSCHIeCdVxC+wF42Jkgriphcz5SNl1n9rPUDaV0ggI+gzKkFcg4JBkQ2mES8OSGgJcUWS53bc5FFqh6dgSTIjPRMAg0EYY3SwFNahs4InkJhxa6jHfu+0bmtagKZnARPqGErUdxCaxj2pMq7WKiBOsrwF2sAj8/GBbUN69UL7DHhe3x107TKYFQnNr8AqNsceAXGeHwLEOixEsVlCTEuMrEOx8D3mAyb8gtAyd7ocQIvNVXMiUhYh/Gzak+7A//tfEMDZEu6I/Q1qxzqKSsR3WKJ2rIsHyaem+AhVHDTPmeQQd7uNqWqEwbD6tWGbuKgSDuroSWiGe6eekDYFhE80aCAOpIlaEgc1vjBl7epdjLlSMsuOqIaCxKqsHuTjKTou1h599Xxz6EDSLh/CMwQU9hjJcRDVtIy4JicG2dBfUehyFdscxPVsgQNjudyenCtVcNcCwv+BxfPJbc72spBWvAcZFWsvKBY1ru9IHiHK9dzpNThns0ny3891DsMFci1vFTodI+AGkwpE8NOox2v4Lq/KEYYD8iTwKnQeunOQqFRnlcVUjUfOqhAnRBw3yzz5dYA2ayr33FWezBnC/YH2+pZoUKSHvIZwaDke3XwOnf4ezDqu9x1Uth3LwRWwvPx9agjqtl1NeHXamK3EvwsVYmv4yjthucaqE2N/Rh2lDhhwVJ2Qi9kMikfyC8JLqfJgo2lXQQm7J9z5XOgTm40Ik78v1zn4a+xSjbK19PHcwdLk3HCrgYkj9h/EZrnYnm+lLFUbD7HMBY4pKe8ckTfKE4X0KRK79PyqPH1ez6s8LwuTdlNKukHGUzsLtq5shFD7nlFDQqMCtRRmBgM5alkAodosTNJ1eJbtM2QqFhDgQ64j9qRCI1Xewz2Awnjwupe7G4/F+sLQClYNNSPT+1AgwDjxC0sZxqvDpcrOiXOwol0ap+Jixn1uoQRWzMZSabz48uzaEfHTM9H1d+6SGsw7PehieL9cY/aaqTUobA4TCj2HNP7PU+wnMvKSf7E/u06u9mSRKWjKRSsjtGsia/2Ie+aC/xb+TMv1naOTuG8OEeHN47up2Md2hHwgEZmOR75zMeJYrH96ZKxWdKsuAJ7in4MwjN42xqTjOraXMgGNflZsi4p2Rn4PIFlyMcgdG7jtMghAK1Uzz3IZ42Zb37u7uPTBevg9aIwZuukge1x7RWswsK75LNTCmEca6Yr8xBocWYe74O5fynD5kdajRcj5dyAn+VM7XlEitLO00ZlheK08j5Qigc2bTMdjRHGDlJAkc8PoWBM89WUSEuEL+HyErrbRIElrjCwqqx1tXfbYSrwRdrIExAkHmhSlEd6Q9fB4svA+7mPeUJo1DX43YwCNHxQJO7M4310TdHlYROWWOLPkKyrPo6Jxn5aPmWU4Ydz18Ex03YtKAINI06v1LM16Oj92dv1LxoUtdrsYrYfdqIKdAGMkuAXV+FcEPNRCvLP0o3+CEE06owy3Dm6EdZI/GCowMwmK+eVRSOsqokHPztNM5aU1HyglwlqYDoSMGBgbculrcwBXtG7JZFc3Z8dJiSTGYJRBA5W+bmpqOL41aBctODRQSCCk68u86OIt+TsoAaIfyNIWVmkHNzLpfwvhacDTEDsYPcBtTXg3LGDB2q1UkGHXkRClWAhQ6NO7q3FvQt9QyQEtwRCDI6+why9JTLWmj0Ku816l5VcLu1EBRgSCzxfXVOwbF0UVQEbe5w8bkpzq7dfZMeWMU8+m70enOKsqxIHeO3O6bExTGswO4pzijJVByYU5AG4lScwFvn8igiD9nws6HGMme9uBviVl2kXJyTCbFt6SGY9LAas1N8m4OM17x3amBwgYxJc+Rv9pcpCRN1yBFx6r1zvTO8hDPidj4h5+fyqVF+hkUOH0IqHDhxVuYbn23MAzMtoQ/RwlbIeFgtf+w/P9hPptDMVryfc2susvgpXnELsnnrOCVCiMoa1JXWKAVxUulNRqvJxLZiV208gLUlP1ATs+oT3sccWlgNEbDV+LO1IBlgTCSXdKZbNNULsbGjKF0zKEA5rYXxdvD26yQ05j3TfCQARVYtoMzEzIhM6WoDyOeuBpQxcvFoRZrJCUQJFVGtVvhXSXDJTgM2OJmCK40Kn4cmla704lKQF6NR32+E7u7unYpydaDlPyVCow//7ymxssN84TxT7DVfBJlmjVMi56JvTLrIWy/inhaeyg3nwp+pgYsTRky4M6GZMdD89WdfjQhLJdrTN6KMLBbWmi4RwU3PoM/Ir9uBZcP8acxqqaPFkNB/gJ+9HKBFdzRMKnfslF6ajpdiP8Z+etPOkkNyF+j6TXeHbpGnk+tmKgvLYRx/HcJBNAlJih4b8fpyVfMuBO+3GUoBF+hTh3weVYF2oI/Av2s7dRO5FehgUGpUgnO1IAUBoTzy+z8tSm1QxS2BpMDNHZsa9f+q6ml5S/MNCs+fjZyGS7AvVeFNQwitY2cLtgSvIYItkNOUwBQT736k/WhUJEt2BlSTa1NJ2FpcDP4TXdKSvkDGQjnQqjPX0Bo3qVSRDWtwMU0v24MhU5R0+2GU4KQ0gvt4k1n+IpAcOTrit9xkfwY7gt43i45qL+PQPd9VcGrx6j9GxwzvhFpyh5eBWIkKHdKQoWWvyKTy5ueDIR4tNBozTXSgM5cbcJDTTu9WievWdFOAi2Bz+E3cM8Df7aJD01hO7Si/0jHHQ7EOiK3QyikBecweXqeR6e7sGvyHrsaDi6GOQO7IddjOtKBuvusw+xOaXJ2bQhTurBOM5+aIhCxBg1Wjs6lGrqSA8YHl1azmlcwVw6O8Ij/RJJvo7F/FXlsIpw9T5LJ9v7+/ve9M7yzYexciC3TFwNGntQbtT4vXsKmMjnHzuti7ZE1ULvxm3T2jyYQ6GCjlfYCRl7YE8T3sRNxV5Iko/wo7/dUe07BfytPhRD4shQeJk7KFyKc4KkbuXlWusMR+du4YGvwbcLYIyBtGk694PsW4tVuQl29TATdTDiWczXSwwd4r2RBCi6uafX4PyS0Loq/P4sLgNOSYk9OWBUHoXNwgPU7vbNTyWHyBysCoYRvhBE9jl1H63C92Peh9h8sgUQWijxABPX30x5d4Bix8os1QvErOeyG1AgenRzny2xCzG7Kw+Qwj3+BDPErEUtkZZAjEu2IrEYnMmCa+xryUDRFKjvOOpnikdP0Aluv0IH+PMTpJb1dXZEcWTiehHsefxxcEHwL05XvolOfa2Ywwr88ZHYuQc+XTqtKz2ZGzYtz1JwghyB4v3PkvcMPHDx40JWdnSavk92vCAQLXwgCAPvryU4sE76Ek33bop2RZ4Hm6IpLTzi8G1b/RVqN70H0xWsssKWCJMDfbfh56Vokgl1LjmPUvcHf6t8EU8BDEAKnWcIaBhpEB/oepju3IzpoA69s0BGD7Xny6jfUEzSzjAC1Qxz8y3raDvwnDhti43vh8Ht28KcrrOsCAarnDeNdeUk69I6ZJxdD25nQbfGAkS8BXfMAFXy/IbT9iSNHOvr6+o6YNN3y5cWnoP0VGO3+FfP0lWixK6DV+vPnJ3YJTh4bpP2bRvaJ5AfN80ZuOsOr09HBLsSZgSsw8i7DSNuQCxx96E3Uzc8Hef/6kWPRucBypkkVnvqUtqCVd3gOV79tRUZbA22BRdAYcEM4uwx1tTBn5kgcFgC0HTfM7YAoeAW/f39S7ojMBz86XW3HnJOdo9+XGud86A1GMu1TDOHv1mU4yvljqI/fShKUCdttNof+VAY3FVSna4BCazie+Vgj1fT5GPtnYbNB35BBe/rZoV559ZnTGYIew7mBRuqlqTypwT2CaPsGhHi7Lxze40J+jpGUx6Q9tZ75TLB5qKt5HEsf2NxxkPDkgSNcj1W0AMequkKoUgOVGjgWauD/AVw/Xh/2+QUMAAAAAElFTkSuQmCC);
	}
}

.gbui-sidebar-view.role-student #sb-logo:hover {
	opacity: 0.85;
}

.gbui-sidebar-view.role-student #sb-activate-account a {
	color: #fff;
}

.gbui-sidebar-view.role-student .sb-link {
	color: #093851;
}

.gbui-sidebar-view.role-student .sb-link .secondary {
	color: #093851;
	opacity: 0.6;
}

.gbui-sidebar-view.role-student .sb-link:hover {
	background: #84d2be;
}

.gbui-sidebar-view.role-student .sb-link.active,
.gbui-sidebar-view.role-student .sb-link:active {
	background: #479a8b;
}

.gbui-sidebar-view.role-student #sb-classes .label {
	color: #093851;
}

.gbui-sidebar-view.role-student #sb-bottom {
	background-color: #70c1b3;
}

.gbui-sidebar-view.role-student #sb-bottom a {
	border-color: #093851;
	color: #093851;
}

.gbui-sidebar-view.role-student #sb-bottom a:hover {
	background-color: #093851;
	color: #fff;
}

.sst-table.default-style .sst-head {
	background-color: #bfbfbf;
	padding: 8px 15px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.sst-table.default-style .sst-head a {
	color: #333;
	display: inline-block;
}

.sst-table.default-style .sst-body-cells {
	background-color: #fff;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.sst-table.default-style .sst-body-footer {
	margin-top: 10px;
	text-align: center;
}

.sst-table.default-style .inline {
	display: inline-block;
	vertical-align: middle;
}

.sst-table.default-style .cell {
	border-top: 1px solid #d8d8d8;
	padding: 8px 15px;
}

.sst-table.default-style .cell:first-child {
	border-top: none;
}

.sst-table .sst-arrow.asc {
	border-bottom: 10px solid #666;
}

.sst-table .sst-arrow.asc,
.sst-table .sst-arrow.desc {
	display: inline-block;
	margin-left: 10px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}

.sst-table .sst-arrow.desc {
	border-top: 10px solid #666;
}

.net-promoter-question-button {
	display: inline-block;
	margin-right: 10px;
	background-color: #f2f2f2;
	text-align: center;
	width: 32px;
	height: 44px;
	line-height: 44px;
	font-size: 17px;
	font-weight: 700;
	border-radius: 5px;
}

.net-promoter-question-button:last-child {
	margin-right: 0;
}

.net-promoter-question-button:hover {
	background-color: #d9d9d9;
	text-decoration: none;
}

.eds-graph-tooltip {
	max-width: 300px;
	font-size: 14px;
	padding: 10px;
	background-color: #000;
	color: #ddd;
	z-index: 200;
}

.timelineNoteMarkdownWrapper ul {
	margin-left: 20px;
}

.timelineNoteMarkdownWrapper p {
	white-space: pre-wrap;
}

.cropper {
	border-radius: 8px;
	border: 2px dashed #ccc;
}

.responsive-dialog {
	max-width: 1080px;
	max-height: 810px;
}

.mt7 {
	margin-top: 7px !important;
}

.published {
	background-color: #e86a3a !important;
}

.gradable {
	background-color: #5ec708 !important;
}

.not-gradable {
	background-color: #b3b3b3 !important;
}

.base--jss-0-30 {
	display: inline-block;
	margin-left: 10px;
	padding: 1px 5px;
	background-color: #b3b3b3;
	color: white;
	font-size: 12px;
	border-radius: 3px;
}

.base--jss-0-31 {
	display: inline-block;
	margin-left: 0px;
	padding: 1px 5px;
	background-color: #b3b3b3;
	color: white;
	font-size: 12px;
	border-radius: 3px;
}

.modal-content {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.bottom-surround {
	text-align: center;
	height: 40px;
	width: 100%;
	border: 1px dashed rgb(153, 153, 153);
	color: rgb(153, 153, 153);
	border-radius: 5px;
	line-height: 40px;
	margin-top: 10px;
	float: left;
}

.cursor-hand {
	cursor: pointer;
}

.gradable-text {
}

.gradable-text:hover {
	text-decoration: underline !important;
}

.not-gradable-text {
	color: #848484;
}

.not-gradable-text:hover {
	text-decoration: none !important;
}

.gradable-item {
}

.not-gradable-item {
}

.modal-content {
	box-shadow: none !important;
}

.assessment-toolbar {
	width: 100%;
	margin-right: 0px;
	min-height: 60px;
	left: 0;
}

.back-assessment-button {
}

.assessment-score-title {
	display: block;
	text-align: center;
}

.close-assessment {
	color: #12728e;
	cursor: pointer;
}

.settings-search {
	height: 46px;
	padding-left: 30px;
}

.small-search {
	width: 400px;
	margin-left: 15px;
	margin-top: 15px;
	margin-bottom: 10px;
}

.loc-setup-search-icon {
	position: absolute;
	top: 30px;
	left: 25px;
	color: #595959;
}

.ed-style {
	border-radius: 10px;
	color: #808080 !important;
	background: #f2f2f2;
}

.narcissus_o0akeu {
	display: block;
	color: #666666;
	width: 260px;
	border-radius: 5px;
	margin-left: 20px;
	margin-bottom: 10px;
	padding: 10px 20px;
	background-color: #d7dbde;
}

.deep-shadow {
	box-shadow: 0 5px 2px rgba(0, 0, 0, 0.25) !important;
}

.gb-height {
	min-height: 85px;
}

.md-custom-header {
	width: 100%;
	min-height: 140px;
	display: table;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
	background-color: #eceff1;
}

.tcell {
	display: table-cell;
	position: relative;
	vertical-align: middle;
}

.timg {
	width: 120px;
	padding-left: 30px;
	padding-right: 20px;
}

.ttools {
	text-align: right;
	width: 190px;
}

.text-lower {
	margin-top: -5px;
}

.list-block {
	display: block;
}

.no-float {
	float: none !important;
}

.text-class-selector {
	line-height: 34px !important;
	font-size: 14px !important;
}

.group-header {
	font-weight: bold !important;
	text-transform: uppercase !important;
	font-size: 13px !important;
	margin-top: 13px !important;
	margin-bottom: 10px !important;
}

.jfk-textinput {
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	border: 1px solid #d9d9d9;
	border-top: 1px solid #c0c0c0;
	font-size: 13px;
	height: 33px;
	padding: 1px 8px;
}

.jfk-textinput:focus {
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
	border: 1px solid #4d90fe;
	outline: none;
}

.google-button {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #f5f5f5;
	background-image: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
	background-image: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
	background-image: -ms-linear-gradient(top, #f5f5f5, #f1f1f1);
	background-image: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
	background-image: linear-gradient(top, #f5f5f5, #f1f1f1);
	border: 1px solid #dcdcdc;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: #333;
	cursor: default;
	font-family: inherit;
	font-size: 12px;
	font-weight: bold;
	height: 29px;
	line-height: 27px;
	min-width: 72px;
	outline: 0;
	padding: 0 8px;
}

.google-button:active {
	-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
	background-color: #f8f8f8;
	background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
	background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
	background-image: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
	background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
	background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
	border: 1px solid #c6c6c6;
	color: #111;
}

.google-button-action {
	background-color: #4d90fe;
	background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed);
	background-image: -moz-linear-gradient(top, #4d90fe, #4787ed);
	background-image: -ms-linear-gradient(top, #4d90fe, #4787ed);
	background-image: -o-linear-gradient(top, #4d90fe, #4787ed);
	background-image: linear-gradient(top, #4d90fe, #4787ed);
	border: 1px solid #3079ed;
	color: #fff;
}

.google-button-action:active {
	background-color: #357ae8;
	background-image: -webkit-linear-gradient(top, #4d90fe, #357ae8);
	background-image: -moz-linear-gradient(top, #4d90fe, #357ae8);
	background-image: -ms-linear-gradient(top, #4d90fe, #357ae8);
	background-image: -o-linear-gradient(top, #4d90fe, #357ae8);
	background-image: linear-gradient(top, #4d90fe, #357ae8);
	border: 1px solid #2f5bb7;
	color: #fff;
}

.class_sel li {
	position: relative;
	display: block;
	padding-left: 5px;
}

.class_sel li.active {
	color: rgba(0, 0, 0, 0.87);
	background-color: #dddee0;
	padding-left: 5px;
	border-radius: 3px;
}

.sub-table tbody {
	display: block;
	min-height: 470px;
	overflow: auto;
}

.sub-table thead,
.sub-table tbody tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.sub-table table {
}

.no-shadow-zone .mdtTableContainer {
	box-shadow: none !important;
}

.ml-n20 {
	margin-left: -20px !important;
}

#when_class_selected md-tab-content {
	overflow: hidden !important;
}

.md-panel-outer-wrapper {
	z-index: inherit !important;
}

.sub-list-img {
	position: absolute;
	top: 33px;
	left: 35px;
}

.pdt-10 {
	padding-top: 10px !important;
}

.detail-info-term {
	padding-top: 32px;
	margin-left: 160px;
}

.sub-list-img-sub-detail {
	position: absolute;
	top: 80px;
	left: 75px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-60 {
	margin-top: 60px;
}

.extra-section-assessment {
	display: inline-block !important;
	margin-right: 50px !important;
}

.ngav-bdr {
	border: 6px solid #d5d5d5;
	margin-right: 0px;
	border-radius: 50%;
}

.spinner-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.spinner-starter {
	-webkit-animation: rotator 1.4s linear infinite;
	animation: rotator 1.4s linear infinite;
	display: block;
	top: 50%;
	left: 50%;
}

@-webkit-keyframes rotator {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}

@keyframes rotator {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}
.path-loader {
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
	animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
	0% {
		stroke: #12728e;
	}
	25% {
		stroke: #de3e35;
	}
	50% {
		stroke: #f7c223;
	}
	75% {
		stroke: #1b9a59;
	}
	100% {
		stroke: #12728e;
	}
}

@keyframes colors {
	0% {
		stroke: #12728e;
	}
	25% {
		stroke: #de3e35;
	}
	50% {
		stroke: #f7c223;
	}
	75% {
		stroke: #1b9a59;
	}
	100% {
		stroke: #12728e;
	}
}
@-webkit-keyframes dash {
	0% {
		stroke-dashoffset: 187;
	}
	50% {
		stroke-dashoffset: 46.75;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	100% {
		stroke-dashoffset: 187;
		-webkit-transform: rotate(450deg);
		transform: rotate(450deg);
	}
}
@keyframes dash {
	0% {
		stroke-dashoffset: 187;
	}
	50% {
		stroke-dashoffset: 46.75;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	100% {
		stroke-dashoffset: 187;
		-webkit-transform: rotate(450deg);
		transform: rotate(450deg);
	}
}

.loader-contain {
	margin-left: auto !important;
	margin-right: auto !important;
	margin-bottom: 45px !important;
}

.high-z {
	z-index: 999;
}

.nation-sub-teachers {
	position: absolute;
	width: 40px;
	left: 53px;
	top: 43px;
}

.mtab {
	width: 100%;
	min-height: 350px;
}

.wip {
	margin-left: 10px;
	margin-top: 15px;
}

.red-bubble {
	position: absolute;
	background-color: #f44336;
	height: 32px;
	width: 32px;
	border-radius: 50%;
	text-align: center;
	padding-top: 5px;
	color: white;
	border: 1px solid white;
	right: -16px;
	z-index: 9999;
}

.flag-style-teacher {
	width: 28px !important;
	height: 28px !important;
	border-radius: 50% !important;
	border: 3px solid white !important;
}

.round-image-input input {
	padding-left: 40px;
}

.t-att g .button-back {
	display: none;
}

.score-text {
	margin-top: 10px;
	font-size: 14px;
}

.cassessment-title {
	margin-bottom: -5px;
	margin-top: 15px;
}

.score-item {
	padding-top: 0px !important;
	margin-top: 0px !important;
}

.inline-scores-loader {
	display: inline-block;
	position: absolute;
	top: 5px;
	margin-left: -33px;
}

.minh-200 {
	min-height: 200px !important;
}

.report-image-part {
	display: inline-block;
	min-width: 100px;
}

.report-content-part {
	display: inline-block;
	height: 140px;
	border-left: 1px solid rgba(89, 89, 89, 0.27);
	margin-left: 24px;
}

.report-content-part .heading-part {
	display: block;
	margin-left: 18px;
}
.report-content-part .bottom-part {
	display: block;
	margin-left: 14px;
	margin-top: 10px;
}

.report-title {
	color: #595959;
	font-size: 20px;
}

.report-description {
	font-size: 15px;
	color: gray;
}

.gradebook-toolbar {
	width: 107%;
	overflow: hidden;
	height: 32px;
	background-color: black;
	margin: -32px;
}

.gradebook-options {
	position: absolute;
	margin-top: 25px;
	margin-left: 15px;
}

.std-img {
	height: 390px;
	width: 350px;
	background-size: cover !important;
}

.std-info {
	padding: 15px;
}

.sidecol {
	margin-top: -32px;
	position: absolute;
	background-color: white;
	width: 330px;
}

.mycol {
	display: inline-block;
	min-width: 300px;
}

.ml-left-w {
	margin-left: 345px;
}

.std-prof-det-img {
	border-radius: 50%;
	width: 130px;
	padding: 15px;
	margin: 15px;
}

.bg-slx {
	color: white;
	padding-bottom: 50px;
	background: url(../images/patterns/poly-bg.svg) center no-repeat;
	background-size: 110%;
	background-position-y: 75%;
	background-color: #002cdc;
}

.chevy {
	margin-left: 3px;
	margin-right: 3px;
}

.cmb {
	margin: 0 auto !important;
}

.theNC {
	margin-left: -6px !important;
	margin-right: -6px !important;
}

.tre {
	font-size: 14px !important;
	/*padding-top: 3px!important;*/
	/*padding-bottom: 3px!important;*/
	/*padding-right: 2px!important;*/
	/*padding-left: 2px!important;*/
}

.cursor-hand {
	cursor: pointer !important;
}

.student-report-card-download-button {
	position: absolute;
	right: 16px;
	top: 16px;
}

/* ------------------------- Separate line ------------------------- */
:root {
	--breadcrumb-theme-1: #e91e63;
	--breadcrumb-theme-2: #fff;
	--breadcrumb-theme-3: #d80d52;
	--breadcrumb-theme-4: #c70041;
}
.breadcrumb {
	padding: 4px 4px;
	margin-bottom: 0;
	margin-top: 5px;
	text-align: center;
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	counter-reset: flag;
}
.breadcrumb__step {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	padding: 0 10px 0 60px;
	position: relative;
	background: var(--breadcrumb-theme-2);
	color: var(--breadcrumb-theme-1);
	transition: background 0.5s;
}
.breadcrumb__step:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px;
}
.breadcrumb__step:first-child::before {
	left: 14px;
}
.breadcrumb__step:last-child {
	border-radius: 0 5px 5px 0;
	padding-right: 20px;
}
.breadcrumb__step:last-child::after {
	content: none;
}
.breadcrumb__step::before {
	content: counter(flag);
	counter-increment: flag;
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	font-weight: bold;
	background: var(--breadcrumb-theme-2);
	box-shadow: 0 0 0 1px var(--breadcrumb-theme-1);
}
.breadcrumb__step::after {
	content: '';
	position: absolute;
	top: 0;
	right: -18px;
	width: 36px;
	height: 36px;
	transform: scale(0.707) rotate(45deg);
	z-index: 1;
	border-radius: 0 5px 0 50px;
	background: var(--breadcrumb-theme-2);
	transition: background 0.5s;
	box-shadow: 2px -2px 0 2px var(--breadcrumb-theme-4);
}
.breadcrumb__step--active {
	color: var(--breadcrumb-theme-2);
	background: var(--breadcrumb-theme-1);
}
.breadcrumb__step--active::before {
	color: var(--breadcrumb-theme-1);
}
.breadcrumb__step--active::after {
	background: var(--breadcrumb-theme-1);
}
.breadcrumb__step:hover {
	color: var(--breadcrumb-theme-2);
	background: var(--breadcrumb-theme-3);
}
.breadcrumb__step:hover::before {
	color: var(--breadcrumb-theme-1);
}
.breadcrumb__step:hover::after {
	color: var(--breadcrumb-theme-1);
	background: var(--breadcrumb-theme-3);
}

/* Configuring the school photos */
div.i-container {
	max-width: 236px;
	position: relative;
	height: auto;
	float: left;
	padding: 4px 0 0 4px;
	cursor: pointer;
}

#uploadFAB {
	position: absolute;
	right: 200px;
	top: 30px;
	background-color: #12728e !important;
}

.my-departments {
	padding: 10px;
	padding-left: 40px;
}

h4.department-title {
	margin-bottom: 30px;
}

.department-list {
	display: flex;
	flex-direction: row;
	margin-bottom: 60px;
}

.dept-card {
	display: flex;
	flex-direction: column;
	width: 200px;
	background: white;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
	cursor: pointer;
	border-radius: 3px;
}

.dept-card > img {
	width: 128px;
}

.dept-card > .title {
	color: black !important;
}

.amount-panel .amt-value {
	font-weight: 100;
	font-size: 20px;
}

.prom-panel {
}

.prom-panel .student-list {
}

.prom-panel .student-list .upper {
}

.prom-panel .student-list .lower {
}

.prom-panel .divider {
}

.prom-panel .promotion-list {
}

.sc {
	display: flex;
}

.hc {
	position: absolute;
	right: 6px;
	bottom: 6px;
	color: #eb4743;
	font-size: 20px;
}

.dhc {
	position: absolute;
	right: 6px;
	bottom: 6px;
	color: rgb(71, 212, 127);
	font-size: 20px;
}

.sc .img > img {
	width: 48px;
	height: 48px;
}

.sc .sub-flex {
	display: flex;
	justify-content: space-between;
}

.sc .sub-flex .cc {
}

.sc .sub-flex .cc .name {
}

.sc .sub-flex .cc .gender {
}

.sc .sub-flex .number {
}

.custom-side-by-side {
	display: flex;
	direction: row;
}

.copy-term-subject-dialog {
	height: 650px;
	width: 1080px;
}

.copy-term-subject-dialog .step--wrapper {
	display: none;
}

.copy-term-subject-dialog .step--wrapper.show {
	display: initial;
}
.copy-term-subject-dialog .step--indicator {
	border: 3px solid #0000;
}
.copy-term-subject-dialog .step--indicator-completed {
	border: 3px solid #0000;
	box-sizing: border-box;
	border-bottom-color: #00b0ff;
}
.class_promotion--card::before {
	content: '';
	background: url(/images/computer-mouse.svg);
	position: fixed;
	width: 100%;
	height: 40%;
	background-repeat: no-repeat;
	background-position: left bottom;
	right: -6%;
	bottom: 25px;
	background-blend-mode: luminosity;
	z-index: -1;
	overflow: hidden;
}

.student-card--list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.student-card--list::before {
	display: none;
}
.student-card--list-item {
	text-transform: capitalize;
	width: 107px;
}

.student-card--letter-initial {
	display: block;
	width: 100%;
	height: 100%;
}

.tr-class--actions--list-item {
	overflow: unset;
	position: relative;
}

.tr-class--actions--list-item .badge {
	position: absolute;
	right: -20px;
}

.tr-class--actions--list {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}

.tr-class--students--card {
	display: inline;
	/* height: fit-content; */
	/* border: 1px solid; */
	position: absolute;
	width: 100%;
	padding: 0;
	margin: 0;
	left: 0;
	top: 0;
	height: 60%;
}

.sc--profile-orb {
	position: absolute;
	top: 0;
	right: 0;
}

.sc--header--title {
	line-height: 1.3em;
	font-size: 1.7rem;
}

@media screen and (max-width: 800px) {
	/* navbar styling mobile */
	.sc--navbar {
		display: flex;
		flex-direction: column;
	}
}

@media screen and (max-width: 1200px) {
	.navbar--header {
	}

	.navbar--subheader {
		padding: 10px 20px;
	}

	md-select.top-select {
		position: unset !important;
		margin: 0;
		padding: 0;
	}

	.box-cell .box-inner {
		position: relative;
		padding: 0;
	}

	.box,
	.box-row,
	.box-cell,
	.box-inner {
		all: unset;
	}

	.box .box-row {
		all: unset;
		width: 100%;
		display: block;
	}

	.box .custom-tabs {
		width: 100%;
		overflow-x: hidden;
		display: block;
	}

	.box-row .box-cell .box-inner .nav-lines {
		/* margin-top: 50px; */
	}

	.md-tr--dash-nav {
	}

	.t-student-card {
		width: 100%;
	}

	.t-student-image {
		width: 100%;
		height: 100%;
	}

	.t-student-image img {
		width: 100%;
	}

	.hand-job-free {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		padding-left: 0;
	}

	.hand-job-free > i {
		position: absolute;
	}

	.tr-gradebook--viewport {
		width: 100%;
		height: 80%;
		overflow-y: auto;
		bottom: 0;
		/* padding-top: 35px;
		padding-right: 15px; */
	}

	.tr-gradebook--viewport::-webkit-scrollbar {
		display: none;
	}

	.tr-dash--subjects--item .md-list-item-left {
		position: relative;
	}

	.tr-class--actions--list::before {
		display: none;
	}
	.tr-class--actions--list {
		justify-content: center;
		padding: 0 5px !important;
	}

	.tr-dash--subjects--item .sub-list-img {
		position: absolute;
		top: 0px;
		left: 40px;
	}

	#gradebook-cell-content {
		padding-right: 20px;
		padding-bottom: 20px;
		background-color: unset;
	}

	/* assessment mobile styling */
	.assessment-is-ready {
		overflow-x: scroll;
	}
}

.grade-dialog {
	right: 15px;
}

@media screen and (max-width: 480px) {
	.grade-dialog {
		right: -3px;
	}

	.sm-no-pos-abt {
		position: initial;
	}
}

.edge__right__blue {
	box-sizing: border-box;
	border-right: 5px solid var(--sc-hue-primary);
}

.btn_subject_menu {
	margin-right: -14px !important;
}

.loading-spinner-overlay {
	position: fixed;
	z-index: 10;
	inset: 0;
	display: grid;
	background: rgb(0 0 4 / 64%);
	place-items: center;
}

.margin-auto {
	margin: auto;
}

.margin-right-auto {
	margin-right: auto;
}

.margin-left-auto {
	margin-left: auto;
}

.margin-top-auto {
	margin-top: auto;
}

.margin-bottom-auto {
	margin-bottom: auto;
}

md-dialog.dialog-height {
	height: 70%;
}

:is(.height-auto, md-toast > .md-toast-content.height-auto) {
	height: auto;
}

.inset-0 {
	inset: 0;
}

.z-index--1 {
	z-index: -1;
}
.z-index--5 {
	z-index: -5;
}
.z-index--10 {
	z-index: -10;
}
.z-index-1 {
	z-index: 1;
}
.z-index-5 {
	z-index: 5;
}
.z-index-10 {
	z-index: 10;
}

.gridify {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(var(--gridify-min-width, 250px), 1fr));
}

.gridify--w--mc {
	grid-template-columns: repeat(auto-fill, maxcontent);
}

.imp.h-full {
	height: 100% !important;
}

.promotion-display-img {
	object-fit: cover;
	height: 70%;
}

.pa__wards > .pa__ward__item {
	display: grid;
	grid-template-columns: 20% auto;
	place-items: center;
}

sp-loader {
	pointer-events: none;
}

.floating-panel-arrow {
	--arrow-size: 6px;
	display: inline-block;
	position: absolute;
	transform: rotate(45deg);
	padding: var(--arrow-size);
	top: calc(0px - var(--arrow-size));
	right: calc(var(--arrow-size) + 4px);
}

.gradebook-content {
	display: grid;
	grid-template-rows: 55px 1fr;
	grid-template-columns: 20% 80%;
	grid-template-areas:
		'gb-blank gb-scores'
		'gb-nav gb-scores';
}

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

md-input-container.no-md-errors-spacer .md-errors-spacer {
	display: none;
}

img-crop{width:100%;height:100%;display:block;position:relative;overflow:hidden}img-crop canvas{display:block;position:absolute;top:50%;left:50%;outline:0;-webkit-tap-highlight-color:transparent}