@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;
}

/* Animations */
.slide-animation-container {
    position:relative;
}

.slide-animation.ng-enter, .slide-animation.ng-leave {
    -moz-transition: 0.5s linear all;
    -o-transition: 0.5s linear all;
    -webkit-transition: 0.5s linear all;
    transition: 0.5s linear all;
    position: relative;
    /*top: 0;
    left: 0;
    right: 0;*/
    height: 1000px;
}

.slide-animation.ng-enter {
  z-index:100;
  left:100px;
  opacity:0;
}

.slide-animation.ng-enter.ng-enter-active {
  left:0;
  opacity:1;
}

.slide-animation.ng-leave {
  z-index:101;
  opacity:1;
  left:0;
}

.slide-animation.ng-leave.ng-leave-active {
  left:-100px;
  opacity:0;
}

body.skip-animations * {
  -webkit-transition:none!important;
  -moz-transition:none!important;
  -o-transition:none!important;
  transition:none!important;
}

.show-hide-animation.ng-hide-add,
.show-hide-animation.ng-hide-remove {
  -webkit-transition:all linear 0.3s;
  -moz-transition:all linear 0.3s;
  -o-transition:all linear 0.3s;
  transition:all linear 0.3s;
  display:block!important;
  height: 1000px;
}
 
.show-hide-animation.ng-hide-remove {
  opacity:0;
}
.show-hide-animation.ng-hide-remove.ng-hide-remove-active {
  opacity:1;
}
.show-hide-animation.ng-hide-add {
  opacity:1;
}
.show-hide-animation.ng-hide-add.ng-hide-add-active {
  opacity:0;
}

.repeat-animation.ng-enter, 
.repeat-animation.ng-leave, 
.repeat-animation.ng-move {
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
  position:relative;
}

.repeat-animation.ng-enter {
  left:10px;
  opacity:0;
}
.repeat-animation.ng-enter.ng-enter-active {
  left:0;
  opacity:1;
}

.repeat-animation.ng-leave {
  left:10px;
  opacity:1;
}
.repeat-animation.ng-leave.ng-leave-active {
  left:-10px;
  opacity:0;
}

.repeat-animation.ng-move {
  opacity:0.5;
}
.repeat-animation.ng-move.ng-move-active {
  opacity:1;
}



/* Custom show/hide */
.animate-fade-show-hide.ng-hide-add {
    animation: 0.5s fadeOut ease;
}
.animate-fade-show-hide.ng-hide-remove {
    animation: 0.5s fadeIn ease;
}

/* Dual list view */
.dualList {
    display: inline-block;
    width: 100%;
}

.dualList select{
    height: 150px;
}

.dualList .buttons-table {
    display: inline-table;
}

.dualList .buttons-row {
    width: 100%;
    display: table-row;
}
.dualList .buttons-row button {
    width: 50%;
    display: table-cell;
    padding: 10px 20px;
    margin: 5px 0px;
}

/* Remove pesky green/red border by colors */
input.color-picker-input.ng-pristine{
    border-left: 0
}
input.color-picker-input.ng-dirty {
    border-left: 0
}
input.color-picker-input.ng-touched {
    border-left: 0
}

.ignore-ng-validate.ng-pristine{
    border-left: 0
}
.ignore-ng-validate.ng-dirty {
    border-left: 0
}
.ignore-ng-validate.ng-touched {
    border-left: 0
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://themes.googleusercontent.com/static/fonts/roboto/v9/Pru33qjShpZSmG3z6VYwnT8E0i7KZn-EPnyo3HZu7kw.woff) format("woff"); }

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Regular"), local("Roboto-Regular"), url(https://themes.googleusercontent.com/static/fonts/roboto/v9/Xyjz-jNkfiYuJf8UC3Lizw.woff) format("woff"); }

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://themes.googleusercontent.com/static/fonts/roboto/v9/oOeFwZNlrTefzLYmlVV1UD8E0i7KZn-EPnyo3HZu7kw.woff) format("woff"); }

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://themes.googleusercontent.com/static/fonts/roboto/v9/97uahxiqZRoncBaCEI3aWz8E0i7KZn-EPnyo3HZu7kw.woff) format("woff"); }

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(https://themes.googleusercontent.com/static/fonts/roboto/v9/7m8l7TlFO-S3VkhHuR0at9Ih4imgI8P11RFo6YPCPC0.woff) format("woff"); }

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://themes.googleusercontent.com/static/fonts/roboto/v9/dFWsweFqlD8ExfyN7Gh_GPesZW2xOQ-xsNqO47m55DA.woff) format("woff"); }

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(https://themes.googleusercontent.com/static/fonts/roboto/v9/OLffGBTaF0XFOW1gnuHF0dIh4imgI8P11RFo6YPCPC0.woff) format("woff"); }

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url(https://themes.googleusercontent.com/static/fonts/roboto/v9/t6Nd4cfPRhZP44Q5QAjcC9Ih4imgI8P11RFo6YPCPC0.woff) format("woff"); }

/* Helper classes */
.float-right {
  float: right !important; }

.float-left {
  float: left !important; }

.center-margin {
  margin: 0 auto; }

.position-fixed {
  position: fixed !important; }

/* Fill the contianer up with the button */
.btn-fill-width {
  width: 100%; }

.full-height {
  height: 100%; }

.border-white {
  border: 1px solid white !important; }

.border-color {
  border-left: 1px solid !important; }

.box-shadow {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }

.box-shadow-outline {
  border: 2px solid #2196F3;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.24), 0 0 8px rgba(0, 0, 0, 0.12);
  text-decoration: none; }

.border-right {
  border-right: 1px solid #fff; }

.border-left {
  border-left: 1px solid #fff; }

.material-header {
  padding: 20px; }

.dcmt-mgmt-header {
  padding: 20px 20px 10px 20px; }

.rotate,
.rotateCounterwise {
  -webkit-transition: 300ms ease all;
  -moz-transition: 300ms ease all;
  -o-transition: 300ms ease all;
  transition: 300ms ease all; }

.rotate {
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  -ms-transform: rotate(180deg);
  /* IE 9 */
  transform: rotate(180deg); }

.rotateCounterwise {
  -webkit-transform: rotate(0deg);
  /* Chrome, Safari, Opera */
  -ms-transform: rotate(0deg);
  /* IE 9 */
  transform: rotate(0deg); }

.display-inline {
  display: inline !important; }

.display-inline-block {
  display: inline-block !important; }

.table-hover:hover {
  background-color: #eee;
  cursor: pointer; }

.table-focus:focus {
  background-color: #EEE;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.14), 0 4px 5px 0 rgba(0, 0, 0, 0.098), 0 1px 10px 0 rgba(0, 0, 0, 0.084); }

.align-vert-center {
  vertical-align: middle; }

.disabled-override {
  cursor: not-allowed !important;
  color: rgba(0, 0, 0, 0.38) !important; }

.cursor-default {
  cursor: default !important; }

.fixed-scroll-list {
  height: 500px;
  overflow-y: auto; }

.text-blur {
  color: transparent;
  text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px; }

.cursor-move {
  cursor: move; }

/* Navbar */
.nav-toolbar {
  height: 64px !important; }

.context-bar {
  width: 350px; }

.img-container-nav {
  display: inline-table;
  width: 37px;
  height: 37px;
  overflow: hidden;
  position: relative; }

.img-container-nav img {
  display: inline;
  height: inherit;
  left: -100%;
  right: -100%;
  top: -100%;
  bottom: -100%;
  margin: auto;
  min-height: 100%;
  min-width: 100%; }

/* Sidebar */
.st-content {
  margin-left: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.st-content-inner {
  position: relative; }

.st-collapsed + .st-content {
  margin-left: 50px; }

.st-container {
  margin: 64px auto -50px;
  position: relative;
  overflow: hidden; }

.st-pusher {
  position: relative;
  left: 0;
  z-index: 0;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s; }

.st-pusher::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.2);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s; }

.st-menu {
  overflow-y: auto;
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 999;
  width: 250px;
  height: 100%;
  background: #595959;
  -webkit-transition: all 0.3s;
  transition: 0.3s;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }

.st-menu-sm {
  width: 95%; }

.st-menu.st-collapsed {
  left: -200px;
  overflow-y: hidden;
  position: fixed;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.st-menu.st-collapsed-sm {
  left: -95%;
  overflow-y: hidden;
  position: fixed;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

/* Menu styling */
.st-menu ul {
  padding: 0;
  list-style: none; }

.st-menu ul li a {
  height: 52px;
  display: block;
  padding: 1em;
  outline: none;
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
  color: #f3efe0;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  font-weight: 400;
  -webkit-transition: background 0.3s, box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s;
  cursor: pointer; }

.st-menu ul li ul li {
  box-shadow: none;
  background-color: #737373; }
  .st-menu ul li ul li a {
    height: 30px;
    padding-left: 2em;
    padding-top: 5px;
    padding-bottom: 5px;
    text-transform: none;
    box-shadow: none; }
  .st-menu ul li ul li a:focus {
    text-decoration: none; }

.st-menu ul li a:hover {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px transparent;
  color: #fff;
  text-decoration: none; }

.st-menu .st-expander {
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  padding-bottom: 15px; }

.st-menu .st-expander:hover {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px transparent; }

.btn.active, .btn:active {
  box-shadow: none !important; }

.dropdown-menu {
  border: none !important; }

.btn-evoq-blue {
  color: FFF;
  background-color: #225288 !important; }

.btn-flat-evoq-blue {
  color: #225288 !important; }

.btn-flat-evoq-blue:hover {
  background-color: #d2dce7 !important; }

.btn {
  white-space: normal !important;
  word-wrap: break-word; }

.btn-focus:focus {
  border: 1px solid #2196F3;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.24), 0 0 8px rgba(0, 0, 0, 0.12);
  text-decoration: none; }

.btn.active {
  background-color: #f7f7f7; }

.btn-return-keep-width {
  float: right;
  margin-top: 5px;
  margin-bottom: 5px; }

.btn-return {
  float: right;
  width: 15%; }

/* Make button padding even instead of more on the sides */
.btn-even-padding {
  padding: 6px; }

/* Add to default button styling */
.md-button {
  white-space: normal !important;
  word-wrap: break-word; }

.btn-modal {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.btn-nav-search {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  color: #FFF;
  background-color: #3F51B5;
  border-color: #46b8da;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  border: 1px solid transparent; }

.btn-nav-search:hover {
  color: #3F51B5;
  background-color: rgba(63, 81, 181, 0.15); }

.btn-nav-info {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  background-color: transparent;
  border: 1px solid #ccc; }

.btn-group-vertical > .btn,
.btn-group > .btn {
  padding: 6px 12px !important; }

/* Tabs for patients, docMgmt */
a.delete {
  border-radius: 50%;
  padding: 1px 6px;
  width: 14px;
  height: 14px; }

a.delete:hover {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 1px 2px #9FA8DA;
  background: #7986CB;
  color: #eee;
  text-decoration: none;
  cursor: default; }

.nav-tabs {
  border-bottom: 2px solid #DDD; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  border-width: 0; }

.nav-tabs > li > a {
  border: none;
  color: #666; }

.nav-tabs > li.active > a,
.nav-tabs > li > a:hover {
  border: none;
  color: #4285F4 !important;
  background: transparent; }

.nav-tabs > li > a::after {
  content: "";
  background: #4285F4;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: -1px;
  transition: all 250ms ease 0s;
  transform: scale(0); }

.nav-tabs > li.active > a::after,
.nav-tabs > li:hover > a::after {
  transform: scale(1); }

.tab-nav > li > a::after {
  background: #21527d none repeat scroll 0% 0%;
  color: #fff; }

.tab-content {
  padding: 0; }

.nav-tabs > li > a {
  border-radius: 0; }

/* Vertical tabs */
.vertical-tab-list {
  padding: 0 !important; }

/* Custom scrollbars */
body::-webkit-scrollbar {
  width: 15px; }

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

body::-webkit-scrollbar-thumb {
  background-color: #B9B9B9;
  border-radius: 3px; }

body::-webkit-scrollbar-thumb:hover {
  background-color: #a8a8a8; }

nav::-webkit-scrollbar {
  width: 15px; }

nav::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

nav::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 3px; }

iframe::-webkit-scrollbar {
  width: 15px; }

iframe::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

iframe::-webkit-scrollbar-thumb {
  background-color: #B9B9B9;
  border-radius: 3px; }

iframe::-webkit-scrollbar-thumb:hover {
  background-color: #a8a8a8; }

div::-webkit-scrollbar {
  width: 15px; }

div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

div::-webkit-scrollbar-thumb {
  background-color: #B9B9B9;
  border-radius: 3px; }

div::-webkit-scrollbar-thumb:hover {
  background-color: #a8a8a8; }

/* UI.Grid pagination */
.ui-grid-pager-control > input.ui-grid-pager-control-input {
  border-left: 1px solid #ccc !important; }

.ui-grid-pager-row-count-picker > select {
  border-left: 1px solid #ccc !important; }

.ui-grid-cell-contents a {
  cursor: pointer; }

/* UI.Grid list grid styles */
.list-grid {
  height: 65vh; }

.list-grid .ui-grid-header-cell {
  border-bottom: none !important; }

.list-grid .ui-grid-header-cell {
  border-bottom: none !important; }

.ui-grid-row:nth-child(even) .ui-grid-cell {
  background-color: #fff; }

.ui-grid-row:nth-child(odd) .ui-grid-cell {
  background-color: #fff; }

.ui-grid-cell {
  border-top: 1px solid #ddd;
  padding: 5.5px;
  vertical-align: middle;
  height: 40px !important; }

.ui-grid-row:hover .ui-grid-cell {
  background-color: #f5f5f5; }

.ui-grid-checkbox {
  margin-top: 5px; }

.success-box {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #C8E6C9;
  border-radius: 2px;
  background-color: #E8F5E9;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4CAF50; }

.error-box {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #FFCDD2;
  border-radius: 2px;
  background-color: #FFEBEE;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #F44336; }

.warning-box {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #C5CAE9;
  border-radius: 2px;
  background-color: #E8EAF6;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3F51B5; }

.info-box {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #C5CAE9;
  border-radius: 2px;
  background-color: #E8EAF6;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3F51B5; }

.sample-show-hide {
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s; }

.sample-show-hide.ng-hide {
  opacity: 0; }

/* Base Styles */
body {
  margin-top: 64px;
  margin-bottom: 50px;
  font-family: 'Roboto';
  background-color: transparent !important; }

*:focus {
  outline: 0 !important;
  outline: none !important; }

a {
  cursor: pointer; }

a:hover {
  text-decoration: none; }

textarea {
  resize: vertical; }

div.main-view {
  padding-top: 0 !important;
  padding-bottom: 60px; }

.fixed-width {
  width: 1024px;
  margin: 0 auto; }

header.navbar {
  z-index: 1001;
  border: none; }

.modal {
  display: block;
  overflow: hidden;
  overflow-y: hidden; }

.modal-backdrop, .modal-backdrop.fade.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

/* ng-cloak */
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng.ng-cloak {
  display: none; }

/* loading spinner always above any elements */
#loading {
  z-index: 2011; }

.overlayContainer,
.overlayBackground,
.overlayContent {
  z-index: 2011; }

/* wcOverlay directive CSS styles */
.overlayContainer {
  display: none; }

.overlayBackground {
  top: 0px;
  left: 0px;
  padding-left: 100px;
  position: fixed;
  z-index: 2010;
  height: 100%;
  width: 100%;
  background-color: #808080;
  opacity: 0.3; }

.overlayContent {
  position: fixed;
  font-weight: bold;
  height: 100px;
  width: 300px;
  z-index: 2011;
  text-align: center; }

/* Login Page */
.login-body {
  background-color: transparent; }

.login-background {
  background-image: url(../images/login-background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

.login-card a {
  color: #fff; }

.login-card {
  background-color: #225288 !important;
  color: #fff; }

/* Generic search box */
div .inline-labels label {
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: normal !important; }
  div .inline-labels label input {
    display: inline-block;
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    position: relative;
    top: -1px;
    *overflow: hidden; }

.label-success {
  background-color: #C8E6C9 !important;
  color: #1B5E20; }

.label-important {
  background-color: #FFCDD2 !important;
  color: #B71C17; }

/* Validation Stuff */
.statusRow {
  height: 50px; }

.radio-focus:focus {
  background-color: #2196F3; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: transparent; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: transparent; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: transparent !important; }

:-moz-placeholder {
  /* Firefox 18- */
  color: transparent; }

.errorMessage {
  position: absolute;
  padding: 5px;
  background-color: #E03930;
  color: white;
  top: 0px;
  left: 270px; }

/* CMPI */
.pagination li {
  cursor: pointer; }

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #027FF4;
  border-color: #027FF4; }

th.xs {
  width: 35px; }

tr > td.center-subheader {
  text-align: center;
  font-weight: bold; }

/* CMPI rules */
.fixed-table {
  table-layout: fixed; }

/* Dropdown stuff */
.dropdown.dropdown-lg .dropdown-menu {
  margin-top: -1px;
  padding: 6px 20px; }

.input-group-btn .btn-group {
  display: flex !important; }

.btn-group .btn {
  border-radius: 0;
  margin-left: -1px; }

.btn-group .btn:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.form-horizontal .form-group {
  margin-left: 0;
  margin-right: 0;
  width: 400px; }

.form-group .form-control:last-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

/* Navbar / footer / body styles */
html {
  background-color: #F5F5F5 !important; }

body {
  margin-top: 64px;
  margin-bottom: 50px; }

@media screen and (max-width: 640px) {
  navbar-toggle {
    display: none; }
  #ng-view {
    padding-top: 90px; }
  .navbar-brand {
    font-size: 12pt; }
  .nav.navBarPadding {
    margin-left: -10px; }
  .nav > li > a {
    padding-right: 5px;
    padding-left: 5px; } }

.navbar-brand {
  float: none; }

a.navbar-brand {
  color: #fff; }

.navbar-inner {
  padding-left: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #225288;
  background-image: none;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1000; }

.navbar-inner.toolbar {
  background-color: #fafafa; }

.navbar-inner.footer {
  background-color: #fafafa;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  height: 50px; }

.navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
  background-color: #efefef;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #808080; }

.navbar .nav li.toolbaritem a:hover, .navbar .nav li a:hover {
  color: #5cb85c; }

.navbar .nav > li {
  cursor: pointer; }

.navbar .nav > li > a {
  color: white;
  font-weight: bold;
  -webkit-text-shadow: none;
  text-shadow: none;
  height: 30px;
  padding-top: 6px;
  padding-bottom: 0px; }

.navbar .nav > li.toolbaritem > a {
  color: black;
  font-weight: bold;
  -webkit-text-shadow: none;
  text-shadow: none; }

.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  -webkit-box-shadow: 0 1px 0px transparent;
  -moz-box-shadow: 0 1px 0px transparent;
  box-shadow: 0 1px 0px transparent; }

.nav.navBarPadding {
  margin-left: 25px;
  margin-top: 5px; }

.navbarText {
  font-weight: bold; }

.navbar .brand {
  margin-top: 2px;
  color: #fff;
  -webkit-text-shadow: none;
  text-shadow: none; }

.navbar-toggle .icon-bar {
  background-color: white; }

.main-logo {
  height: 30px;
  margin-left: 50px;
  margin-top: 5px; }

.appTitle {
  line-height: 50px; }

#nav-login {
  margin-left: 30px; }

.navbar-header {
  margin-right: 0; }

#navbar {
  padding-left: 0px;
  padding-right: 0px;
  display: block; }

.material-body {
  min-height: 100%;
  height: 100% !important;
  position: relative !important; }

.md-content-main {
  min-height: 100%; }

.main-header {
  background-color: #eee; }

.padding-menu {
  padding-top: 64px; }

.footer {
  z-index: 0;
  bottom: 0;
  position: relative;
  width: 100%;
  height: 50px; }
  .footer span {
    padding-top: 15px; }

.footer, .push {
  height: 50px;
  /* .push must be the same height as .footer */ }

/* Template Editor */
.std-tmpl {
  color: #5cb85c; }

.tmpl-rb {
  margin: 0; }

.add-dt {
  font-weight: bold;
  padding: 10px;
  margin: 0; }

.add-dt:hover {
  color: #5cb85c;
  background-color: #eee;
  text-decoration: none; }

.remove-dt {
  margin: 0 !important; }

.remove-dt:hover {
  color: #E03930;
  background-color: #eee;
  text-decoration: none; }

.handle {
  padding: 0 50px !important; }

.dt-section-well {
  overflow: hidden;
  padding-bottom: 0; }

#dt-section-handle {
  margin: 0;
  cursor: move; }

.dt-section-placeholder {
  overflow: hidden;
  height: 110px;
  border: 2px dashed #9E9E9E;
  vertical-align: middle;
  margin: 25px 0; }

.ds-section-placeholder {
  overflow: hidden;
  height: 300px;
  border: 2px dashed #9E9E9E;
  vertical-align: middle;
  margin: 25px 0; }

/* Not sure what this stuff is for */
.xs-margin-btm {
  margin-bottom: 6px; }

.form-control.no-padding {
  padding: 0; }

.form-control.no-margin {
  margin: 0; }

.gray-row-header {
  height: 100%;
  background-color: lightgray;
  vertical-align: middle; }

.form-control-padding {
  padding: 6px 12px; }

.sm-vert-margin {
  margin-top: 5px;
  margin-bottom: 5px; }

/* For things that need to be that much smaller vertically */
.form-control-padding-low {
  padding: 5px 12px; }

/* Material-calendar stuff */
.md-datepicker-calendar-pane.md-pane-open {
  width: 25em !important; }

.md-calendar-scroll-mask {
  width: 25em !important;
  padding-left: 16px; }

.md-calendar-date:first-child {
  padding-left: 0 !important; }

.md-calendar-scroll-container.md-virtual-repeat-container {
  width: 25em !important; }

.md-calendar-scroll-container.md-virtual-repeat-container .md-virtual-repeat-scroller {
  width: 25em !important; }

.md-calendar-scroll-container {
  box-shadow: none !important; }

form div md-datepicker.format-like-input {
  position: relative;
  left: -75px;
  top: -15px; }
  form div md-datepicker.format-like-input .md-datepicker-input-container {
    margin-left: 0; }
  form div md-datepicker.format-like-input .md-datepicker-button.md-icon-button {
    margin-right: 0; }

.validation-messages.dtpk {
  opacity: 1;
  font-size: 12px;
  color: #dd2c00;
  margin: 0; }

input.material-input {
  border-left: none; }

.checkbox__label {
  padding-left: 32px !important; }

.dual-list {
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden; }

/* Generic LumX Stuff */
.lx-select--theme-dark.lx-select--is-disabled .lx-select-selected__value {
  color: #fff !important; }

.dropdown {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%; }

.dropdown-menu {
  position: absolute;
  display: inherit;
  border-radius: 2px;
  background-color: #FFF;
  text-align: left;
  opacity: 0;
  overflow: auto;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  top: auto;
  float: none;
  min-width: 0;
  padding: 0;
  margin: 0;
  background-clip: none; }

a.dropdown-link:hover {
  text-decoration: none; }

i.icon-align {
  vertical-align: middle; }

span.icon-align {
  vertical-align: middle; }

.lx-date-picker__current-year .lx-date-picker__current-date {
  text-decoration: none; }

/* LumXify that time picker */
td.uib-time input {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  box-shadow: none;
  overflow: hidden;
  cursor: text;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 100%;
  font-weight: 400; }

td.uib-time button {
  color: #3F51B5;
  border-radius: 2px;
  transition-property: background-color;
  transition-duration: .2s;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 13px;
  font-size: .8125rem;
  line-height: 36px;
  z-index: 2;
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  border: none;
  background-color: transparent;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer; }

td.uib-time button:hover {
  background-color: rgba(63, 81, 181, 0.15);
  color: #3F51B5; }

.select-list-row:hover {
  background-color: #eee;
  cursor: pointer; }

.select-list-row-alt:hover {
  cursor: pointer;
  border: 2px solid #0D47A8;
  border-radius: 2px;
  color: #0D47A8;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.24), 0 0 8px rgba(0, 0, 0, 0.12);
  text-decoration: none; }

.edit-list-border {
  border-bottom: 1px solid grey;
  padding-bottom: 10px; }

/* Generic material stuff */
.md-padding {
  padding: 10px; }

/* Material-bootstrap massaging */
md-input-container .novalidate {
  border-left: 0px solid #ccc !important; }

.novalidate {
  border-left: 1px solid #ccc !important; }

md-input-container {
  width: 100%; }

.md-fill {
  width: 100%; }

/* Rules for sizing the icon. */
.material-icons.md-18 {
  font-size: 18px; }

.material-icons.md-24 {
  font-size: 24px; }

.material-icons.md-36 {
  font-size: 36px; }

.material-icons.md-48 {
  font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54); }

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: white; }

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3); }

/* Bootstrap style buttons for material, use with class="md-raised", if used with material icons color styling is not applied by default */
.md-success {
  background-color: #5cb85c !important;
  color: rgba(255, 255, 255, 0.87) !important; }

.md-warning {
  background-color: #f0ad4e !important;
  color: rgba(255, 255, 255, 0.87) !important; }

.md-info {
  background-color: #5bc0de !important;
  color: rgba(255, 255, 255, 0.87) !important; }

md-card.list-search-form {
  margin-bottom: 35px; }

.md-modal {
  background-color: transparent; }

md-progress-linear.alignBtnFlex {
  margin-left: 8px; }

md-content.material-search {
  padding: 20px 20px 0 20px; }

md-content.material-search md-input-container {
  margin: 0; }

.input-pdd-left {
  padding-right: 10px; }

.input-pdd-right {
  padding-left: 10px; }

.edit-form-pdd-left {
  padding-right: 30px; }

.edit-form-pdd-right {
  padding-left: 30px; }

select.alignBtnFlex {
  margin-left: 8px; }

.nv-point {
  stroke-opacity: 1 !important;
  stroke-width: 5px !important;
  fill-opacity: 1 !important; }

.modal-dialog.vitals {
  width: 90%; }

.dual-box {
  padding-left: 0;
  padding-right: 0; }

/* Material Select Box */
.md-select-menu-container {
  z-index: 100 !important; }

/* Material icons colors */
.material-icons.success {
  color: #5cb85c; }

.gridContainer div {
  padding-left: 0px; }

.close {
  font-size: 15pt;
  opacity: 1.0; }

.identifiers {
  border: 1px cadetblue dashed; }

.identifiers .row {
  padding: 5px; }

.identifiers .row div {
  padding-left: 6px;
  padding-right: 6px; }

.radio-inline.radio-button.radio-button--accent {
  margin-bottom: 8px !important; }

.fake-lumx-label {
  color: rgba(0, 0, 0, 0.54) !important; }

.frame-square, .frame-round {
  display: inline-block;
  vertical-align: top;
  width: 250px;
  height: 250px;
  margin-right: .5em;
  margin-bottom: .3em;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }

.frame-round {
  border-radius: 50%;
  overflow: hidden; }

.crop {
  height: 100%;
  overflow: hidden;
  position: relative; }
  .crop img {
    display: block;
    min-width: 100%;
    min-height: 100%;
    margin: auto;
    position: absolute;
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%; }

.image-cropper-lg {
  width: 300px;
  height: 300px;
  position: relative;
  border: 2px solid white;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  overflow: hidden;
  margin: 0 auto; }
  .image-cropper-lg img {
    display: block;
    margin: 0 auto;
    height: auto;
    width: 100%; }

.image-cropper-mlg {
  width: 220px;
  height: 220px;
  position: relative;
  -webkit-border-radius: 220px;
  -moz-border-radius: 220px;
  border-radius: 220px;
  overflow: hidden;
  margin: 0 auto; }
  .image-cropper-mlg img {
    display: block;
    margin: 0 auto;
    height: auto;
    width: 100%; }

.image-cropper-md {
  width: 60px;
  height: 60px;
  position: relative;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  overflow: hidden;
  margin: 0 auto; }
  .image-cropper-md img {
    display: block;
    margin: 0 auto;
    height: auto;
    width: 100%; }

.image-cropper-40 {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  overflow: hidden;
  margin: 0 auto; }
  .image-cropper-40 img {
    display: block;
    margin: 0 auto;
    height: auto;
    width: 100%; }

.image-cropper-sm {
  width: 37px;
  height: 37px;
  position: relative;
  -webkit-border-radius: 37px;
  -moz-border-radius: 37px;
  border-radius: 37px;
  overflow: hidden;
  margin: 0 auto; }
  .image-cropper-sm img {
    display: block;
    margin: 0 auto;
    height: auto;
    width: 100%; }

.vAccordion--default v-pane.is-expanded > v-pane-header {
  border-bottom-color: #3F51B5; }

.vAccordion--default v-pane-header::after, .vAccordion--default v-pane-header::before {
  background-color: #3F51B5; }

.vAccordion--default v-pane-header:focus, .vAccordion--default v-pane-header:hover {
  color: #3F51B5; }

.fix-to-top {
  position: fixed;
  top: 72px;
  width: 238px; }

.fixed-row-active {
  border-left: 2px solid #3F51B5; }

.match,
.textdiff span {
  color: gray; }

.ins,
ins {
  color: black;
  background: #bbffbb; }

.del,
del {
  color: black;
  background: #ffbbbb; }

/*# sourceMappingURL=../../maps/content/css/styles.css.map */

.agents .search-agents-block {
  background: aliceblue;
  padding: 20px; }

.agents u {
  text-decoration: underline !important; }

.agents .center {
  margin: 0 auto;
  display: block; }

.agents md-button.sidepad {
  padding-left: 20px  !important;
  padding-right: 20px !important; }

.agents input.fake-input {
  cursor: text !important;
  background: white;
  color: black; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/agents/agents.css.map */

.good-doggo-success {
  text-align: center;
  vertical-align: middle; }

.common-row-thing {
  background-color: rgba(77, 179, 81, 0.52); }
  .common-row-thing .good-doggo-success {
    background-color: rgba(77, 179, 175, 0.52); }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/cmpi/cmpi.css.map */

.DictationScriptsForm {
  /*select {
        margin-top: 35px;
    }*/ }
  .DictationScriptsForm md-input-container {
    margin: 5px 0 !important; }
  .DictationScriptsForm md-input-container.md-default-theme .md-input[disabled], .DictationScriptsForm md-input-container .md-input[disabled], .DictationScriptsForm md-input-container.md-default-theme .md-input [disabled], .DictationScriptsForm md-input-container .md-input [disabled] {
    color: rgba(0, 0, 0, 0.87); }
  .DictationScriptsForm #vertical-container {
    height: 320px;
    width: 100%; }
  .DictationScriptsForm .repeated-item {
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    height: 40px;
    padding-top: 10px; }
  .DictationScriptsForm md-content {
    margin: 16px; }
  .DictationScriptsForm md-virtual-repeat-container {
    border: solid 1px grey; }
  .DictationScriptsForm .md-virtual-repeat-container .md-virtual-repeat-offsetter div {
    padding-left: 16px; }
  .DictationScriptsForm .right-inner-addon i {
    pointer-events: auto !important;
    margin-bottom: 8px; }
  .DictationScriptsForm md-checkbox#selectAll {
    margin-top: 8px; }
  .DictationScriptsForm button.md-button {
    width: 100%; }
  .DictationScriptsForm .md-button.matchSelect {
    margin-top: 0px;
    color: white !important; }
  .DictationScriptsForm .ace_editor {
    height: 320px; }

.modal-dialog.printTemplateForm {
  width: 100%;
  margin: 0px auto; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/dictationScripts/dictationScriptsEdit.css.map */

@charset "UTF-8";
.dcmt-print-toolbar {
  background-color: #e3f2fd;
  color: #1e88e5;
  font-size: 16px; }

.dcmt-btn-padding {
  padding: 10px 0; }

.dcmt-iframe {
  height: 65vh;
  width: 100%; }

.dcmt-print-modal {
  height: 70vh;
  width: 100%; }

.dcmt-print-iframe {
  height: 65vh;
  width: 100%; }

.dcmt-edt {
  width: 100%; }

.dcmt-edt-text {
  padding: 30px 15px; }

.dcmt-edt-label {
  vertical-align: top;
  padding-top: 20px; }

.dcmt-edit-border {
  border-bottom: 1px solid #EEEEEE; }

.dcmt-search-exp-btn {
  margin-top: 20px !important;
  float: right; }

.dcmt-audit {
  height: 70vh;
  overflow-y: auto; }

.dcmt-audit-table {
  padding: 0 20px; }

.final-sign {
  color: #5cb85c; }

.unsigned {
  color: #d9534f; }

.dropdown-fill-width {
  width: 100%; }

.provider-count-table {
  height: 200px;
  overflow-x: hidden !important;
  overflow-y: auto !important; }

.ogDocHead {
  width: 25px;
  padding-right: 0 !important; }

.ogDoc:before {
  content: "•";
  font-size: 32px;
  color: #FF9800; }

.dcmt-edit-toolbar {
  width: 100%;
  z-index: 1000;
  position: fixed;
  right: 0;
  left: 25px;
  margin-right: auto;
  margin-left: auto; }

.doc-edit-section-placeholder {
  overflow: hidden;
  height: 300px;
  border: 3px dashed #828282;
  vertical-align: middle;
  margin: 25px 0; }

.ta-scroll-window.form-control {
  padding: 16px !important; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/documentMgmt/documentMgmt.css.map */

.clinicalsummary, .medicationtable {
  width: 100%;
  margin: 0;
  table-layout: fixed; }

div #SUMMARYHEADER {
  margin-top: 16px; }
  div #SUMMARYHEADER span {
    color: rgba(0, 0, 0, 0.54) !important;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/emrReconciliation/emrReconciliation.css.map */

.identifier-exceptions tr.mr-meeskes-subrow {
  border-left: 8px solid #225288;
  background-color: #d4e7f9; }

.identifier-exceptions .jelly-preserves {
  white-space: pre-line;
  padding-left: 10px;
  background-color: gainsboro; }

.identifier-exceptions .bar-right {
  border-right: 2px solid gray; }

.identifier-exceptions .highlight {
  background-color: yellow; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/identifierExceptions/identifierExceptions.css.map */


/*# sourceMappingURL=../../../maps/evoqWebApp/components/impersonate/impersonate.css.map */

.insurance .subheader {
  width: 100%;
  background-color: aliceblue; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/insurance/insurance.css.map */

.patients .vert-tab-items ul.nav.nav-tabs.nav-stacked {
  background-color: #FFF !important; }

.patients .vert-tab-items ul.nav.nav-tabs.nav-stacked::before {
  content: '';
  border-top: 0; }

.patients .nav-tabs {
  /* vertical stuff */ }
  .patients .nav-tabs li.vert-tab-item.uib-tab.active::before {
    content: '' !important;
    border: 0 !important; }
  .patients .nav-tabs li.vert-tab-item.uib-tab {
    background-color: #FFF !important; }
  .patients .nav-tabs li.vert-tab-item.uib-tab {
    background-color: #FFF !important;
    /* The top shadow of mordor */ }
    .patients .nav-tabs li.vert-tab-item.uib-tab a, .patients .nav-tabs li.vert-tab-item.uib-tab a:focus, .patients .nav-tabs li.vert-tab-item.uib-tab a:hover {
      background-color: #FFF !important; }
    .patients .nav-tabs li.vert-tab-item.uib-tab ul.nav.nav-tabs::before {
      content: '';
      border-top: 0;
      width: 100%; }

.patients a.delete {
  position: relative;
  right: -20px;
  top: -5px; }

.add-patient-modal {
  width: 75% !important;
  margin-left: -37.5% !important; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/patients/patients.css.map */

pre.queryReport {
  max-height: 300px; }

pre.queryReport-big {
  max-height: 550px; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/queryReport/queryCache.css.map */

.cr-container,
.cr-pusher,
.cr-content {
  min-height: 100%; }

.fill-height {
  height: 60vh; }

.cr-content {
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  margin-left: 375px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.cr-content-inner {
  position: relative; }

.cr-collapsed + .cr-content {
  overflow-y: auto;
  margin-left: 0; }

.cr-container {
  position: relative;
  overflow: visible;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  width: 100%; }

.cr-pusher {
  position: relative;
  left: 0;
  z-index: 0;
  height: 100%;
  border-bottom: 1px solid #ccc;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s; }

.cr-pusher::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.2);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s; }

.cr-menu {
  overflow-y: auto;
  position: absolute;
  left: 0;
  bottom: auto;
  z-index: 999;
  width: 375px;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: 0.3s; }

.cr-menu-sm {
  width: 95%; }

.cr-menu.cr-collapsed {
  box-shadow: none; }

.rfrl-table-container {
  height: 70vh;
  overflow-y: auto;
  overflow-x: hidden !important; }

.rfrl-table-head {
  background-color: #eef6fc; }

.rfrl-data-table td:first-child,
.rfrl-data-table th:first-child {
  padding-left: 12px !important;
  padding-right: 12px !important; }

.rfrl-data-table td,
.rfrl-data-table th {
  padding-right: 28px !important; }

.img-container-patient {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%; }

.img-container-patient img {
  position: absolute;
  left: -100%;
  right: -100%;
  top: -100%;
  bottom: -100%;
  margin: auto;
  min-width: 100%;
  min-height: 100%; }

.img-container {
  position: relative;
  overflow: hidden;
  height: 250px;
  width: 250px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }

.img-container img {
  position: absolute;
  left: -100%;
  right: -100%;
  top: -100%;
  bottom: -100%;
  margin: auto;
  min-width: 100%; }

.img-container-rfrl {
  width: 60px;
  height: 60px;
  overflow: hidden;
  position: relative; }

.img-container-rfrl img {
  left: -100%;
  right: -100%;
  top: -100%;
  bottom: -100%;
  margin: auto;
  min-height: 100%;
  min-width: 100%; }

.rfrl-mgmt-menu {
  position: fixed !important;
  width: 10%;
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  z-index: 1; }

.rfrl-mgmt-list {
  left: 11%;
  width: 88%;
  position: relative;
  z-index: 0; }

.referral-modal {
  width: 95% !important;
  height: auto;
  margin-left: -47.5% !important; }

.referral-selected {
  background-color: #E8F5E9 !important;
  color: #1B5E20;
  text-decoration: none; }

.referral-selected:hover {
  background-color: #E8F5E9 !important;
  color: #1B5E20;
  text-decoration: none; }

.referral-selected-alt {
  background-color: #BDBDBD;
  color: #333; }

.referral-selected-alt:hover {
  background-color: #BDBDBD !important;
  color: #333; }

.referral-list:hover {
  background-color: #eee;
  cursor: pointer; }

.rfrl-card {
  height: 55vh; }

.rfrl-card-left {
  width: 33%; }

.rfrl-card-left-inside {
  overflow-y: auto;
  overflow-x: hidden; }

.rfrl-card-right {
  width: 66%; }

.rfrl-card-right-inside {
  overflow-y: auto;
  overflow-x: hidden; }

.animate-enter,
.animate-leave {
  -webkit-transition: 400ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -moz-transition: 400ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -ms-transition: 400ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -o-transition: 400ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  transition: 400ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  position: relative;
  display: block; }

.animate-enter.animate-enter-active,
.animate-leave {
  opacity: 1;
  top: 0;
  height: 30px; }

.animate-leave.animate-leave-active,
.animate-enter {
  opacity: 0;
  top: -50px;
  height: 0px; }

.chat-bubble-right {
  margin: 10px 0 30px 250px;
  display: inline-block;
  position: relative;
  height: auto;
  background-color: #FFB74D;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  color: #fff;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }

.chat-bubble-left {
  margin: 10px 250px 30px 0;
  display: inline-block;
  position: relative;
  height: auto;
  background-color: #fff;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  color: #000000;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }

.tri-right.border.right-top:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: auto;
  right: -40px;
  top: auto;
  bottom: -8px;
  border: 32px solid;
  border-color: #666 #666 transparent transparent; }

.tri-right.right-top:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: auto;
  right: -10px;
  top: auto;
  bottom: 0;
  border: 8px solid;
  border-color: transparent transparent #FFB74D #FFB74D;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.14); }

.tri-right.border.left-top:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: -40px;
  right: auto;
  top: -8px;
  bottom: auto;
  border: 32px solid;
  border-color: transparent transparent transparent transparent; }

.tri-right.left-top:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: -10px;
  right: auto;
  top: auto;
  bottom: 0;
  border: 8px solid;
  border-color: transparent #fff #fff transparent;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.14); }

.comment-modal {
  height: auto;
  overflow-y: auto; }

.comment-date {
  font-size: 9px; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/referrals/referrals.css.map */

iframe.reports {
  width: 100%;
  height: 75vh; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/reports/reports.css.map */

.schedule-menu {
  position: fixed !important;
  width: 15%;
  top: 50px;
  bottom: 50px;
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  z-index: 1; }

.adjust-width {
  width: 77% !important;
  left: 21% !important; }

.schedule-list {
  left: 5%;
  width: 95%;
  position: relative;
  z-index: 0; }

.activeCalendarView {
  border-radius: 0 !important;
  border-bottom: 2px solid #3F51B5 !important; }

.calendar-view {
  height: 65vh;
  overflow-y: auto;
  overflow-x: auto; }

.week-column {
  width: 14.285714285714285%; }

.week-card {
  margin: 0 2px 4px 2px;
  cursor: pointer; }

.dh-event-multiple {
  border: 1px solid #37474F !important;
  background-color: #ECEFF1 !important; }

.appt-time-container-1 {
  width: 25%;
  height: 93%;
  position: absolute; }

.appt-time-container-2 {
  width: 50%;
  left: 25%;
  height: 100%;
  position: absolute; }

.appt-time-container-3 {
  width: 25%;
  left: 75%;
  height: 100%;
  position: absolute; }

.appt-time-card-week {
  height: 50px;
  width: 50px;
  min-width: 45px;
  margin: 5px 0;
  border-radius: 4px !important;
  background: -webkit-linear-gradient(left top, #8c8c8c, #616161);
  background: linear-gradient(to top left, #616161, #8c8c8c); }

.appt-time-card-day {
  height: 100%;
  width: auto;
  margin-bottom: 5px;
  border-radius: 4px !important;
  background: -webkit-linear-gradient(left top, #8c8c8c, #616161);
  background: linear-gradient(to top left, #616161, #8c8c8c); }

.appt-time-hour {
  color: #fff;
  font-size: 18px;
  padding: 2px 0 0 3px; }

.appt-time-hour-day {
  color: #fff;
  font-size: 20px;
  padding-left: 5px; }

.appt-time-minutes {
  color: #fff;
  font-size: 8px;
  line-height: 8px; }

.text-overflow {
  white-space: nowrap;
  text-overflow: ellipsis; }

.appt-reason {
  font-size: 10px;
  line-height: 12px; }

.appt-location {
  font-size: 12px;
  line-height: 14px; }

.doc-status-container {
  margin: auto 0 auto auto; }

.docViewer.ng-enter {
  -webkit-animation: fadeInLeft 0.3s;
  -moz-animation: fadeInLeft 0.3s;
  -ms-animation: fadeInLeft 0.3s;
  animation: fadeInLeft 0.3s; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/schedule/schedule.css.map */

.hipaa {
  background-color: white; }

/*# sourceMappingURL=../../../maps/evoqWebApp/components/static/static.css.map */

.evoq-error-log-message {
  /* Custom edit css */ }
  .evoq-error-log-message input[type=text] {
    padding-left: 5px; }
  .evoq-error-log-message input.paladin {
    width: 100%;
    border-left: 1px solid; }
  .evoq-error-log-message div.msgField {
    border-bottom: 1px solid #e0e0e0; }
  .evoq-error-log-message pre.jelly-preserves {
    white-space: pre; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/apiLogs/edit/apiLogsEdit.css.map */

.evoq-api-logs-list .uib-timepicker {
  margin: 4px !important; }

.evoq-api-logs-list tr.clip-wrapper td {
  word-break: break-word; }

div.inline-labels label.radio-inline.override-me-man {
  padding-right: 0 !important;
  margin-left: 0 !important; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/apiLogs/list/apiLogsList.css.map */

.systems-failure {
  background-color: #ff7878 !important;
  color: white; }
  .systems-failure span.fs-title {
    color: white !important; }
  .systems-failure span.fs-body-2 {
    padding: 16px !important; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/clients/edit/clientsEdit.css.map */

.DocumentTypesForm {
  /*select {
        margin-top: 35px;
    }*/ }
  .DocumentTypesForm md-input-container {
    margin: 5px 0 !important; }
  .DocumentTypesForm md-input-container.md-default-theme .md-input[disabled], .DocumentTypesForm md-input-container .md-input[disabled], .DocumentTypesForm md-input-container.md-default-theme .md-input [disabled], .DocumentTypesForm md-input-container .md-input [disabled] {
    color: rgba(0, 0, 0, 0.87); }
  .DocumentTypesForm #vertical-container {
    height: 320px;
    width: 100%; }
  .DocumentTypesForm .repeated-item {
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    height: 40px;
    padding-top: 10px; }
  .DocumentTypesForm md-content {
    margin: 16px; }
  .DocumentTypesForm md-virtual-repeat-container {
    border: solid 1px grey; }
  .DocumentTypesForm .md-virtual-repeat-container .md-virtual-repeat-offsetter div {
    padding-left: 16px; }
  .DocumentTypesForm .right-inner-addon i {
    pointer-events: auto !important;
    margin-bottom: 8px; }
  .DocumentTypesForm md-checkbox#selectAll {
    margin-top: 8px; }
  .DocumentTypesForm button.md-button {
    width: 100%; }
  .DocumentTypesForm .md-button.matchSelect {
    margin-top: 0px;
    color: white !important; }
  .DocumentTypesForm .ace_editor {
    height: 320px; }

.modal-dialog.printTemplateForm {
  width: 100%;
  margin: 0px auto; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/documentTypes/edit/documentTypesEdit.css.map */

.unmatched-carriers-list th.quick-add {
  width: 48px; }

.unmatched-carriers-list th.copy-from-above {
  width: 48px; }

.unmatched-carriers-list th.apply-row {
  width: 48px; }

.unmatched-carriers-list .disable-click {
  cursor: initial !important; }

.unmatched-carriers-list th.address-space {
  width: 25%; }

.unmatched-carriers-list th.select-doggo-pupper {
  width: 10%; }

.unmatched-carriers-list td.search-finder {
  background-color: rgba(0, 0, 0, 0.1); }

.unmatched-carriers-list .m-search-row {
  width: 100%; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/insurance/unmatched/unmatchedCarrier.css.map */

.locationsEditForm md-input-container {
  margin-bottom: 0px; }

.locationsEditForm md-input-container.topless {
  margin-top: 0px; }

.locationsEditForm img.thumbnail {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  cursor: pointer; }

.locationsEditForm label.fix-height {
  height: 36px; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/locations/edit/locationsEdit.css.map */

/* The top shadow of mordor */
/* Coloring and whatnot */
ul.nav.nav-tabs {
  background-color: #eef6fc; }

.nav-tabs {
  border-bottom: 0px solid; }
  .nav-tabs li {
    margin-bottom: 0; }
  .nav-tabs li.uib-tab.active::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    bottom: -5px;
    margin-left: -5px;
    border: 5px solid;
    border-color: #eee transparent transparent #eee;
    z-index: 100;
    ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    /* generic */ }
  .nav-tabs li.uib-tab {
    background-color: #eef6fc;
    color: #a0a3a7 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.active {
    background-color: #c3daf3;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li > a::after {
    height: 0px !important; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li > a {
    background-color: inherit;
    color: #a0a3a7 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li > a:hover {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li.active > a {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li.active > a:hover {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.ogDocTab {
    background-color: #FFF3E0 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.active.ogDocTab {
    background-color: #FFCC80 !important;
    transition: background-color .15s ease; }

.ogDocTab {
  background-color: transparent;
  transition: background-color .15s ease; }

.fix-to-top ul.nav.nav-tabs {
  position: fixed;
  top: 64px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  width: 1200px;
  z-index: 1030; }

.fix-to-top div.tab-content {
  margin-top: 40px;
  height: inherit; }

.embedded-doc {
  border: 1px solid black;
  width: 100%;
  min-height: 800px; }

.patient-tab .evoq-data-table header {
  background-color: #c3daf3; }

.patient-tab .evoq-data-table .data-table thead {
  background-color: #eef6fc; }

.patient-tab div.source-system-overview {
  background-color: #eef6fc; }

.patient-tab strong.source-header {
  color: #185c92;
  text-transform: uppercase;
  font-style: oblique; }

.patient-tab .facesheet .table-control-global {
  text-transform: uppercase; }

.patient-tab .facesheet .divider.thick {
  height: 3px !important; }

.patient-tab .facesheet div.divider--vert {
  height: 34px;
  width: 1px; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/patients/tab/tabStyles.css.map */

.printTemplateForm {
  /*select {
        margin-top: 35px;
    }*/ }
  .printTemplateForm md-input-container {
    margin: 5px 0 !important; }
  .printTemplateForm md-input-container.md-input-focused textarea {
    background-color: whitesmoke; }
  .printTemplateForm textarea {
    transition: background-color 0.5s ease; }
  .printTemplateForm #vertical-container {
    height: 320px;
    width: 100%; }
  .printTemplateForm .repeated-item {
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    height: 40px;
    padding-top: 10px; }
  .printTemplateForm md-content {
    margin: 16px; }
  .printTemplateForm md-virtual-repeat-container {
    border: solid 1px grey; }
  .printTemplateForm .md-virtual-repeat-container .md-virtual-repeat-offsetter div {
    padding-left: 16px; }
  .printTemplateForm .right-inner-addon i {
    pointer-events: auto !important;
    margin-bottom: 8px; }
  .printTemplateForm md-checkbox#selectAll {
    margin-top: 8px; }
  .printTemplateForm .depth-1 {
    background-color: orange; }
  .printTemplateForm .depth-2 {
    background-color: yellow; }
  .printTemplateForm .depth-3 {
    background-color: lightblue; }
  .printTemplateForm .depth-4 {
    background-color: lightgray; }
  .printTemplateForm button.md-button {
    width: 100%; }
  .printTemplateForm .md-button.matchSelect {
    margin-top: 0px;
    color: white !important; }
  .printTemplateForm .diff-bg {
    background-color: whitesmoke; }
  .printTemplateForm .md-button.md-orange-button {
    background-color: orange; }
  .printTemplateForm a.md-orange-button.md-button.md-default-theme.md-raised:not([disabled]):hover,
  .printTemplateForm a.md-orange-button.md-button.md-raised:not([disabled]):hover,
  .printTemplateForm .md-orange-button.md-button.md-default-theme.md-raised:not([disabled]):hover,
  .printTemplateForm .md-orange-button.md-button.md-raised:not([disabled]):hover {
    background-color: orange !important; }
  .printTemplateForm .ace_editor {
    height: 320px; }

.modal-dialog.printTemplateForm {
  width: 100%;
  margin: 0px auto; }

.value-selector {
  padding-top: 0 !important;
  width: 64px;
  margin: auto 10px; }

.preview-container {
  right: 1%;
  top: 10%;
  width: 400px;
  z-index: 2005;
  box-shadow: 0 6px 6px rgba(10, 16, 20, 0.15), 0 0 52px rgba(10, 16, 20, 0.12) !important; }

.preview-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin: auto auto;
  width: 100%;
  height: 100%;
  bottom: 0; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/printTemplates/edit/printTemplatesEdit.css.map */

.PrintTemplatesReprocessForm button.md-button {
  width: 100%; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/printTemplates/reprocess/reprocess.css.map */

.list-grid .ui-grid-header-cell {
  border-right: 0;
  border-bottom: 2px solid #DDD;
  background-color: #225288;
  color: #FFF;
  font-size: 14px;
  padding: 3px; }

.list-grid .ui-grid-cell {
  border-right: 0;
  border-bottom: 0; }

.list-grid .ui-grid-viewport {
  overflow-x: hidden !important; }

.list-grid.ui-grid {
  border: 0; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/userAgreements/list/userAgreementsList.css.map */

div.users-edit.lx-select.fixed-label {
  padding-top: 8px !important; }

.users-edit.v-center {
  line-height: 36px; }

.users-edit.checkbox-with-textbox {
  padding-top: 3px !important;
  padding-bottom: 3px !important; }

.users-edit.label-with-textbox {
  text-align: right;
  padding-right: 10px;
  padding-top: 8px; }

.users-edit.clear-lockout {
  padding-top: 2px; }

.users-edit-form input {
  padding-left: 0px; }

/* DEBUGAN - Reenable when taxonomy selects are fixed
.taxonomy-list {
    .taxonomy-btn {
        margin-top: 24px;
    }
}
*/
.users-edit-form .center {
  margin: auto; }

.users-edit-form .center-fixed-width {
  margin: auto;
  width: 200px; }

.users-edit-form .password-reset-btn {
  margin-top: 24px; }

.users-edit-form .password-exipred-notice {
  padding-top: 24px !important;
  padding-bottom: 0px !important; }

.glyphicon-ok {
  color: green; }

.glyphicon-remove {
  color: red; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/components/users/edit/usersEdit.css.map */

span.notify-v-center.contact-field span {
  line-height: 36px; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/contactFieldVerification/contactFieldVerification.css.map */

.evoq-bread-crumbs .separator {
  color: white;
  border-right: 1px rgba(173, 173, 173, 0.58) solid; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqBreadCrumbs/evoqBreadCrumbs.css.map */

.evoq-context-button img {
  padding: 8px; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqContextButton/evoqContextButton.css.map */

/* The top shadow of mordor */
/* Coloring and whatnot */
ul.nav.nav-tabs {
  background-color: #eef6fc; }

.nav-tabs {
  border-bottom: 0px solid; }
  .nav-tabs li {
    margin-bottom: 0; }
  .nav-tabs li.uib-tab.active::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    bottom: -5px;
    margin-left: -5px;
    border: 5px solid;
    border-color: #eee transparent transparent #eee;
    z-index: 100;
    ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    /* generic */ }
  .nav-tabs li.uib-tab {
    background-color: #eef6fc;
    color: #a0a3a7 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.active {
    background-color: #c3daf3;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li > a::after {
    height: 0px !important; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li > a {
    background-color: inherit;
    color: #a0a3a7 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li > a:hover {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li.active > a {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li.active > a:hover {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.ogDocTab {
    background-color: #FFF3E0 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.active.ogDocTab {
    background-color: #FFCC80 !important;
    transition: background-color .15s ease; }

.ogDocTab {
  background-color: transparent;
  transition: background-color .15s ease; }

.fix-to-top ul.nav.nav-tabs {
  position: fixed;
  top: 64px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  width: 1200px;
  z-index: 1030; }

.fix-to-top div.tab-content {
  margin-top: 40px;
  height: inherit; }

.evoq-data-table .no-animate {
  -webkit-transition: none !important;
  transition: none !important; }

.evoq-data-table tr.hide-full-select td {
  cursor: text; }

.evoq-data-table tr.hide-full-select td.force-cursor-we-able {
  cursor: pointer; }

.evoq-data-table .selectable-is-small {
  width: 75px !important; }

.evoq-data-table .easy-trans {
  transition: background-color .15s ease; }

.evoq-data-table .table-hover td {
  cursor: pointer !important; }

.evoq-data-table .hdr {
  width: 100%; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqDataTable/evoqDataTable.css.map */

.evoq-deck-grid {
  /*
    .deck-card-container {
        width: 100px;
        height: 100px;
        overflow: hidden;
    }

    .deck-card {
        min-width: 100%;
        min-height: 100%;
    }*/ }
  .evoq-deck-grid .card-row {
    display: block; }
  .evoq-deck-grid .deck-card-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 250px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
    background-color: white;
    float: left; }
    .evoq-deck-grid .deck-card-container img {
      position: absolute;
      left: -100%;
      right: -100%;
      top: -100%;
      bottom: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqDeckGrid/evoqDeckGrid.css.map */

.evoq-hl7-accordion .child-block {
  margin-left: 20px !important; }

.evoq-hl7-accordion .vAccordion--default v-pane-header {
  margin-bottom: 5px !important; }

.evoq-hl7-accordion v-pane-content div {
  padding-bottom: 0 !important; }

.evoq-hl7-accordion .highlight {
  background-color: yellow; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqHL7Accordion/evoqHL7Accordion.css.map */

.inbox-modal {
  width: 95% !important;
  height: 95% !important;
  margin-left: -47.5% !important; }

.inbox-overview {
  width: 25%;
  overflow-y: auto;
  position: fixed;
  height: 100%;
  padding-top: 64px;
  bottom: 0;
  background-color: #fff;
  z-index: 1001;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }

.message-toolbar {
  position: fixed;
  left: 25%;
  width: 75%;
  background-color: #fff;
  z-index: 1000; }
  .message-toolbar .toolbar {
    margin-left: 64px; }

.toolbar-patient-name {
  margin: 0 32px 0 8px; }

.message-detail {
  left: 25%;
  width: 75%;
  overflow-y: auto;
  position: relative;
  height: 100%; }

.message-detail-modal {
  position: fixed !important;
  padding-bottom: 64px; }

.message-detail-inner {
  margin: 80px 16px 0 32px; }

.new-message-line {
  position: fixed;
  bottom: 0;
  left: 25%;
  width: 75%;
  background-color: #fff; }

.new-message-line-inner {
  margin: 0 16px 0 64px;
  padding-bottom: 8px; }

.chat-send-btn {
  position: absolute !important;
  bottom: 12px;
  right: 32px; }

.unread-dot::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 10px;
  left: 0;
  background-image: radial-gradient(circle at center, #2196F3 5px, transparent 5px), radial-gradient(circle at center, #2196F3 5px, transparent 5px);
  background-size: 10px 10px;
  background-position: center left;
  background-repeat: no-repeat; }

.tc-unread span, .tc-unread div {
  color: black !important;
  font-weight: 900 !important; }

.checkbox-inline {
  margin: 0 8px; }
  .checkbox-inline .checkbox {
    margin-right: 8px;
    display: inline-flex; }

.blynq-badge {
  overflow: visible !important; }
  .blynq-badge span[data-badge]:after {
    content: attr(data-badge);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: -2px;
    right: -8px;
    z-index: 1000;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 600;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #F44336;
    color: #fff; }

.blynq-badge-inline {
  overflow: visible !important; }
  .blynq-badge-inline span[data-badge]:after {
    content: attr(data-badge);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 4px;
    right: 10px;
    z-index: 1000;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-weight: 600;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #E91E63;
    color: #fff; }

.blynq-badge.ng-enter {
  opacity: 0;
  transition: all .5s ease; }

.blynq-badge.ng-enter-active {
  opacity: 1; }

.inbox-filter {
  height: 20px;
  width: 20px;
  margin: 0 auto; }

.participants-line {
  line-height: 20px !important; }

.chat-list.ng-enter {
  opacity: 0;
  transition: all .3s ease; }

.chat-list.ng-enter-active {
  opacity: 1; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqInbox/evoqInbox.css.map */

.evoq-json-structured-content-parser .jelly-preserves {
  white-space: pre; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqJsonStructuredContentRenderer/renderer.css.map */

.nav-toolbar {
  height: 64px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }

#nav-login {
  margin-left: 30px; }

.navbar-header {
  margin-right: 0px !important; }

.appTitle {
  line-height: 50px; }

#navbar {
  padding-left: 0px;
  padding-right: 0px;
  display: block; }

.notification {
  max-width: 500px !important; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqNavbar/evoqNavbar.css.map */

.evoq-pagination .lower-info {
  color: gray !important;
  font-size: 0.8em;
  align-items: center; }
  .evoq-pagination .lower-info .move-bot-lane {
    vertical-align: bottom !important;
    color: gray !important;
    line-height: 20px !important; }
  .evoq-pagination .lower-info .vert-divider {
    width: 1px;
    height: 12px;
    background-color: gray;
    content: ''; }

.evoq-pagination ul li {
  display: inline; }
  .evoq-pagination ul li i {
    vertical-align: middle;
    text-align: center; }
  .evoq-pagination ul li span {
    vertical-align: middle;
    text-align: center; }
  .evoq-pagination ul li button {
    min-width: 32px !important; }
  .evoq-pagination ul li button:hover {
    background-color: rgba(63, 81, 181, 0.12) !important; }
  .evoq-pagination ul li button:disabled:hover {
    background-color: transparent !important; }
  .evoq-pagination ul li button.active-item {
    background-color: #C5CAE9; }
  .evoq-pagination ul li button.active-item:hover {
    background-color: #C5CAE9 !important; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqPagination/evoqPagination.css.map */


/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqProviderEnroller/evoqProviderEnroller.css.map */

/* The top shadow of mordor */
/* Coloring and whatnot */
ul.nav.nav-tabs {
  background-color: #eef6fc; }

.nav-tabs {
  border-bottom: 0px solid; }
  .nav-tabs li {
    margin-bottom: 0; }
  .nav-tabs li.uib-tab.active::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    bottom: -5px;
    margin-left: -5px;
    border: 5px solid;
    border-color: #eee transparent transparent #eee;
    z-index: 100;
    ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    /* generic */ }
  .nav-tabs li.uib-tab {
    background-color: #eef6fc;
    color: #a0a3a7 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.active {
    background-color: #c3daf3;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li > a::after {
    height: 0px !important; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li > a {
    background-color: inherit;
    color: #a0a3a7 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li > a:hover {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li.active > a {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li.active > a:hover {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.ogDocTab {
    background-color: #FFF3E0 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.active.ogDocTab {
    background-color: #FFCC80 !important;
    transition: background-color .15s ease; }

.ogDocTab {
  background-color: transparent;
  transition: background-color .15s ease; }

.fix-to-top ul.nav.nav-tabs {
  position: fixed;
  top: 64px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  width: 1200px;
  z-index: 1030; }

.fix-to-top div.tab-content {
  margin-top: 40px;
  height: inherit; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/evoqTabs/evoqTabs.css.map */

.lumx-file-upload .upload-btn {
  margin-top: 24px; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/components/lumxFileUpload/lumxFileUpload.css.map */

audio.dictationAudioPlayer {
  width: 100%; }

embed.dictationAudioPlayer {
  width: 100%;
  height: 60px; }

.audio-loading {
  max-height: 32px; }
  .audio-loading .progress-circular {
    bottom: 32px; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/directives/dictationAudioPlayer/player.css.map */


/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/directives/sidebar/sidebar.css.map */

.error-handler-dialog {
  width: 75% !important;
  margin-left: -37.5% !important; }

/*# sourceMappingURL=../../../../maps/evoqWebApp/shared/services/errorHandler/errorModalStyle.css.map */


/*# sourceMappingURL=../../../../../maps/evoqWebApp/components/patients/tab/careTeam/careTeam.css.map */

.patients .documents th.expand-me-sir {
  width: 128px; }

.patients .documents th.col-width-fill-fix {
  width: 100%; }

.patients .documents th.col-width-half-fill-fix {
  width: 50%; }

.patients .documents .subway-sandwich-table {
  background-color: whitesmoke; }

.patients .documents .purple-dino tr th {
  background-color: #d8daff !important; }

.patients .documents .purple-dino .baby-dino {
  background-color: #EDE7F6 !important; }

.patients .documents .purple-dino header.hdr {
  background-color: #a4aaff !important; }

.patients .documents .subtable-marine tr th {
  background-color: #f0fff7 !important; }

.patients .documents .subtable-marine header.hdr {
  background-color: #a4ffce !important; }

.patients .documents .pre {
  white-space: pre !important; }

.patients .documents .img-container {
  position: relative;
  overflow: hidden;
  height: 25px;
  width: 25px;
  box-shadow: 0 !important; }

.patients .documents .img-container img {
  position: absolute;
  left: -100%;
  right: -100%;
  top: -100%;
  bottom: -100%;
  margin: auto;
  min-width: 100%; }

/*# sourceMappingURL=../../../../../maps/evoqWebApp/components/patients/tab/documents/documents.css.map */

/* The top shadow of mordor */
/* Coloring and whatnot */
ul.nav.nav-tabs {
  background-color: #eef6fc; }

.nav-tabs {
  border-bottom: 0px solid; }
  .nav-tabs li {
    margin-bottom: 0; }
  .nav-tabs li.uib-tab.active::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    bottom: -5px;
    margin-left: -5px;
    border: 5px solid;
    border-color: #eee transparent transparent #eee;
    z-index: 100;
    ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    /* generic */ }
  .nav-tabs li.uib-tab {
    background-color: #eef6fc;
    color: #a0a3a7 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.active {
    background-color: #c3daf3;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li > a::after {
    height: 0px !important; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li > a {
    background-color: inherit;
    color: #a0a3a7 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li > a:hover {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li.active > a {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.active > a, .nav-tabs li.active > a:focus, .nav-tabs li.active > a:hover {
    background-color: inherit;
    color: #185c92 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.ogDocTab {
    background-color: #FFF3E0 !important;
    transition: background-color .15s ease;
    margin-right: 0; }
  .nav-tabs li.uib-tab.active.ogDocTab {
    background-color: #FFCC80 !important;
    transition: background-color .15s ease; }

.ogDocTab {
  background-color: transparent;
  transition: background-color .15s ease; }

.fix-to-top ul.nav.nav-tabs {
  position: fixed;
  top: 64px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  width: 1200px;
  z-index: 1030; }

.fix-to-top div.tab-content {
  margin-top: 40px;
  height: inherit; }

.patient-tab .facesheet div.source-system-overview {
  background-color: #eef6fc; }

.patient-tab .facesheet strong.source-header {
  color: #185c92;
  text-transform: uppercase;
  /* font-style: oblique; */ }

.patient-tab .facesheet .table-control-global {
  text-transform: uppercase; }

.patient-tab .facesheet .divider.thick {
  height: 3px !important; }

.patient-tab .facesheet div.divider--vert {
  height: 34px;
  width: 1px; }

.patient-tab .facesheet .circled {
  border: 1px black solid;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  border-radius: 50%;
  vertical-align: middle;
  display: inline-flex; }

.patient-tab .facesheet span.source-index {
  color: #185c92;
  font-weight: bold;
  font-size: larger; }

.patient-tab .facesheet .easy-trans {
  transition: background-color .15s ease; }

.patient-tab .facesheet .show-patient-active-bg {
  background-color: #c3daf3; }

.patient-tab .facesheet .show-patient-inactive-bg {
  background-color: #eef6fc; }

.patient-tab .facesheet span.source-index::before div:before {
  content: '';
  float: left;
  width: auto;
  padding-bottom: 100%; }

/*# sourceMappingURL=../../../../../maps/evoqWebApp/components/patients/tab/facesheet/facesheet.css.map */

.facesheet-table header.data-table-header {
  -webkit-transition: border-bottom 0.5s ease;
  -moz-transition: border-bottom 0.5s ease;
  -o-transition: border-bottom 0.5s ease;
  transition: border-bottom 0.5s ease; }

.facesheet-table header.data-table-header.collapsed {
  border-bottom: 0px #FFF solid !important; }

.facesheet-table .numberCircle {
  display: inline-block;
  line-height: 0px;
  border-radius: 50%;
  border: 2px solid;
  font-size: 32px; }

.facesheet-table .numberCircle span {
  display: inline-block;
  padding-top: 50%;
  padding-bottom: 50%;
  margin-left: 8px;
  margin-right: 8px; }

.facesheet-table th.source {
  width: 10%; }

.facesheet-table span.num-sources {
  color: orangered; }

/*# sourceMappingURL=../../../../../maps/evoqWebApp/components/patients/tab/facesheet/facesheetTable.component.css.map */

.evoq-insurance-by-system .pull-right {
  text-align: right; }

/*# sourceMappingURL=../../../../../maps/evoqWebApp/components/patients/tab/insurance/insuranceBySystem.css.map */

.patient-labs .minor-severity {
  color: #ff7f00; }

.patient-labs .major-severity {
  color: red; }

.patient-labs th.tiny-col {
  width: 50px; }

/*# sourceMappingURL=../../../../../maps/evoqWebApp/components/patients/tab/labs/labs.css.map */
